diff --git a/examples/dom-play.rkt b/examples/dom-play.rkt
index 6e5c6b7..0f33854 100644
--- a/examples/dom-play.rkt
+++ b/examples/dom-play.rkt
@@ -5,12 +5,12 @@
;; insert-break: -> void
(define (insert-break)
- (call ($ "
") "appendTo" body)
+ (call-method ($ "
") "appendTo" body)
(void))
(define (write-message msg)
- (void (call (call (call ($ "") "text" msg)
+ (void (call-method (call-method (call-method ($ "") "text" msg)
"css" "white-space" "pre")
"appendTo"
body)))
@@ -18,8 +18,8 @@
;; Set the background green.
-(void (call body "css" "background-color" "lightgreen"))
-(void (call ($ "
Hello World
") "appendTo" body))
+(void (call-method body "css" "background-color" "lightgreen"))
+(void (call-method ($ "Hello World
") "appendTo" body))
(write-message "Hello, this is a test!")
(insert-break)
(let loop ([i 0])
diff --git a/js/js-impl.js b/js/js-impl.js
index a79a95f..3e86f0c 100644
--- a/js/js-impl.js
+++ b/js/js-impl.js
@@ -1,6 +1,6 @@
EXPORTS['alert'] =
RUNTIME.makePrimitiveProcedure(
- 'is-color?',
+ 'alert',
1,
function(MACHINE) {
var elt = MACHINE.env[MACHINE.env.length - 1];
@@ -20,9 +20,9 @@ EXPORTS['$'] =
return $(obj);
});
-EXPORTS['call'] =
+EXPORTS['call-method'] =
RUNTIME.makePrimitiveProcedure(
- 'call',
+ 'call-method',
new RUNTIME.ArityAtLeast(2),
function(MACHINE) {
var obj = MACHINE.env[MACHINE.env.length - 1];
diff --git a/js/main.rkt b/js/main.rkt
index 35d16af..02d1d03 100644
--- a/js/main.rkt
+++ b/js/main.rkt
@@ -5,5 +5,5 @@
#:javascript ("js-impl.js")
#:provided-values (alert
body
- call
+ call-method
$))
\ No newline at end of file
diff --git a/js/racket-impl.rkt b/js/racket-impl.rkt
index a9c55af..910e549 100644
--- a/js/racket-impl.rkt
+++ b/js/racket-impl.rkt
@@ -1,6 +1,6 @@
#lang s-exp "../lang/base.rkt"
-(provide alert body call $)
+(provide alert body call-method $)
(define (alert x)
(display x)
@@ -8,8 +8,8 @@
(define body 'blah)
-(define (call object method . args)
+(define (call-method object method . args)
'not-done-yet)
(define ($ name)
- 'not-done-yet)
\ No newline at end of file
+ 'not-done-yet)
diff --git a/scribblings/manual.scrbl b/scribblings/manual.scrbl
index c370a84..0662e9f 100644
--- a/scribblings/manual.scrbl
+++ b/scribblings/manual.scrbl
@@ -4,6 +4,7 @@
planet/resolver
scribble/eval
racket/sandbox
+ (only-in racket/contract any/c)
(for-label racket/base)
racket/runtime-path
"scribble-helpers.rkt"
@@ -272,15 +273,65 @@ commands to do something interesting...)
@section{The JavaScript API}
-(This needs to describe what hooks we've got from the JavaScript side of things.
+@defmodule/this-package[js]{
-In particular, we need to talk about the plt namespace constructed by the runtime,
-and the major, external bindings, like @tt{plt.runtime.invokeMains})
+
+This needs to describe what hooks we've got from the JavaScript side
+of things.
+
+In particular, we need to talk about the plt namespace constructed by
+the runtime, and the major, external bindings, like
+@tt{plt.runtime.invokeMains}.
+
+The contracts here are not quite right either. I want to use JQuery
+as the type in several of the bindings here, but don't quite know how
+to teach Scribble about them yet.
+
+
+
+@defproc[(alert [msg string?]) void]{
+
+Displays an alert. Currently implemented using JavaScript's
+@litchar{alert} function.}
+
+@defthing[body any/c]{
+A JQuery-wrapped value representing the body of the DOM.
+}
+
+@defproc[(call-method [object javascript-function]
+ [method-name string?]
+ [arg any/c] ...) any/c]{
+
+Calls theAssuming @racket[object] is a JavaScript value that supports
+the method call. Returns a raw JavaScript value back.
+
+For example,
+@racketblock[(call-method body "css" "background-color")]
+should return the css color of the body.
+}
+
+
+
+@defproc[($ [locator any/c]) -> any/c]{
+
+Uses JQuery to construct or collect a set of DOM elements, as
+described in the @link["http://api.jquery.com/jQuery/"]{JQuery
+documentation}.
+
+For example, @racketblock[(call-method ($ "Hello World
")
+"appendTo" body)] will construct a @tt{h1} header, and append it to
+the document body.
+
+
+}
+
+}
+
@;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@section{Internals}
@;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;