documentation should include the git head id

This commit is contained in:
Danny Yoo 2011-07-14 16:16:40 -04:00
parent 619abb1fca
commit 1f52f08ec0
3 changed files with 61 additions and 35 deletions

View File

@ -39,6 +39,6 @@ test-conform:
doc: doc:
racket make-last-commit-name.rkt
scribble ++xref-in setup/xref load-collections-xref --redirect-main http://docs.racket-lang.org/ --dest generated-docs --dest-name index.html scribblings/manual.scrbl scribble ++xref-in setup/xref load-collections-xref --redirect-main http://docs.racket-lang.org/ --dest generated-docs --dest-name index.html scribblings/manual.scrbl

20
make-last-commit-name.rkt Executable file
View File

@ -0,0 +1,20 @@
#lang racket/base
(require racket/runtime-path)
(define-runtime-path git-head-path ".git/refs/heads/master")
(define-runtime-path last-commit-name.rkt "last-commit-name.rkt")
(call-with-input-file git-head-path
(lambda (ip)
(call-with-output-file last-commit-name.rkt
(lambda (op)
(fprintf op "#lang racket/base
;; This file is automatically generated by make-last-commit-name.rkt.
;; Do not edit this file by hand.
(provide (all-defined-out))
(define git-head ~s)
"
(read-line ip)))
#:exists 'replace)))

View File

@ -12,6 +12,7 @@
racket/runtime-path racket/runtime-path
"scribble-helpers.rkt" "scribble-helpers.rkt"
"../last-commit-name.rkt"
"../js-assembler/get-js-vm-implemented-primitives.rkt") "../js-assembler/get-js-vm-implemented-primitives.rkt")
@ -50,6 +51,10 @@
@url{https://github.com/dyoo/whalesong}. The latest version of this @url{https://github.com/dyoo/whalesong}. The latest version of this
document lives in @url{http://hashcollision.org/whalesong}.}} document lives in @url{http://hashcollision.org/whalesong}.}}
@centered{@smaller{Current commit head is @tt{@git-head}.}}
@ -71,10 +76,10 @@ document lives in @url{http://hashcollision.org/whalesong}.}}
Whalesong is a compiler from Racket to JavaScript; it takes Racket Whalesong is a compiler from Racket to JavaScript; it takes Racket
programs and translates them so that they can run stand-alone on a programs and translates them so that they can run stand-alone on a
user's web browser. It should allow Racket programs to run with user's web browser. It should allow Racket programs to run with
(hopefully!) little modification, and provide access through the foreign-function (hopefully!) little modification, and provide access through the
interface to native JavaScript APIs. The included runtime library foreign-function interface to native JavaScript APIs. The included
also includes a framework to programming the web in functional runtime library supports the numeric tower, an image library, and a
event-driven style. framework to program the web in functional event-driven style.
The GitHub source repository to Whalesong can be found at The GitHub source repository to Whalesong can be found at
@ -103,10 +108,14 @@ Prerequisites: at least @link["http://racket-lang.org/"]{Racket
@subsection{Installing Whalesong} @subsection{Installing Whalesong}
At the time of this writing, although Whalesong has been deployed to At the time of this writing, although Whalesong has been deployed to
@link["http://planet.racket-lang.org"]{PLaneT}, what's up there is probably @link["http://planet.racket-lang.org"]{PLaneT}, the version on PLaneT
already out of date! You may want to get the latest sources instead is out of date. I'll be updating the PLaneT package as soon as
of using the version on PLaneT. Doing so Whalesong starts to stabilize, but the system as a whole is still in
requires doing a little bit of manual work. The steps are: some flux.
You may want to get the latest sources instead of using the version on
PLaneT. Doing so requires doing a little bit of manual work. The
steps are:
@itemlist[ @itemlist[
@item{Check Whalesong out of Github.} @item{Check Whalesong out of Github.}
@ -190,6 +199,10 @@ you should see a triumphant message show on screen.
We can do something slightly more interesting. Let's write a Whalesong program We can do something slightly more interesting. Let's write a Whalesong program
that accesses the JavaScript DOM. Call this file @filepath{dom-play.rkt}. that accesses the JavaScript DOM. Call this file @filepath{dom-play.rkt}.
@margin-note{
The generated program can be downloaded here: @link["http://hashcollision.org/whalesong/examples/dom-play.xhtml"]{dom-play.xhtml}
}
@filebox["dom-play.rkt"]{ @filebox["dom-play.rkt"]{
@codeblock|{ @codeblock|{
#lang planet dyoo/whalesong #lang planet dyoo/whalesong
@ -255,7 +268,7 @@ with generated JavaScript binaries here:
@filebox["fact.rkt"]{ @filebox["fact.rkt"]{
@verbatim|{ @codeblock|{
#lang planet dyoo/whalesong #lang planet dyoo/whalesong
(provide fact) (provide fact)
(define (fact x) (define (fact x)
@ -476,28 +489,6 @@ language.
@subsection{Misc}
The bindings here might relocate!
@defproc[(in-javascript-context?) boolean]{Returns true if the running context
supports JavaScript-specific functions.}
@defform[(viewport-width)]{
Can only be called in a JavaScript context.
Returns wthe width of the viewport.
}
@defform[(viewport-height)]{
Can only be called in a JavaScript context.
Returns the height of the viewport.
}
@section{The JavaScript API} @section{The JavaScript API}
@ -562,6 +553,24 @@ the document body.
@defproc[(in-javascript-context?) boolean]{Returns true if the running context
supports JavaScript-specific functions.}
@defproc[(viewport-width) number?]{
Can only be called in a JavaScript context.
Returns the width of the viewport.
}
@defproc[(viewport-height) number?]{
Can only be called in a JavaScript context.
Returns the height of the viewport.
}
} }
@ -904,7 +913,6 @@ We need to bring around the following types previously defined in @tt{js-vm}:
@item{regexp} @item{regexp}
@item{byteRegexp} @item{byteRegexp}
@item{character} @item{character}
@item{box}
@item{placeholder} @item{placeholder}
@item{path} @item{path}
@item{bytes} @item{bytes}
@ -912,8 +920,6 @@ We need to bring around the following types previously defined in @tt{js-vm}:
@item{keywords} @item{keywords}
@item{hash} @item{hash}
@item{hasheq} @item{hasheq}
@item{color}
@item{structs}
@item{struct types} @item{struct types}
@item{exceptions} @item{exceptions}
@item{thread cells} @item{thread cells}