diff --git a/NOTES b/NOTES index f65ad42..fdf36fe 100644 --- a/NOTES +++ b/NOTES @@ -572,4 +572,15 @@ we need. May 25, 2011 -About to make modules work. Need to make sure exports can rename names. \ No newline at end of file +About to make modules work. Need to make sure exports can rename names. + + + +---------------------------------------------------------------------- + +What's currently preventing racket/base? + +Nan, INF Numbers, Regular expressions, keywords, byte strings, +character literals + +Missing #%paramz module \ No newline at end of file diff --git a/js-assembler/get-runtime.rkt b/js-assembler/get-runtime.rkt index 25180ee..c1a0fe5 100644 --- a/js-assembler/get-runtime.rkt +++ b/js-assembler/get-runtime.rkt @@ -9,11 +9,22 @@ (provide/contract [get-runtime (-> string?)]) +(define-runtime-path jquery.js "runtime-src/jquery-1.6.1.min.js") (define-runtime-path runtime.js "mini-runtime.js") -(define text (call-with-input-file runtime.js - (lambda (ip) - (port->string ip)))) + +(define (path->string p) + (call-with-input-file p + (lambda (ip) + (port->string ip)))) + + +(define text (string-append + (path->string jquery.js) + (path->string runtime.js))) + + + (define (get-runtime) text) \ No newline at end of file diff --git a/js-assembler/mini-runtime.js b/js-assembler/mini-runtime.js index cd12e08..5b358f6 100644 --- a/js-assembler/mini-runtime.js +++ b/js-assembler/mini-runtime.js @@ -65,47 +65,50 @@ this.control = []; // Arrayof (U Frame CallFrame PromptFrame) this.running = false; this.modules = {}; // String -> ModuleRecord - this.params = { 'currentDisplayer': function(v) {}, - - 'currentOutputPort': new StandardOutputPort(), - 'currentSuccessHandler': function(MACHINE) {}, - 'currentErrorHandler': function(MACHINE, exn) {}, - - 'currentNamespace': {}, - - // These parameters control how often - // control yields back to the browser - // for response. The implementation is a - // simple PID controller. - // - // To tune this, adjust desiredYieldsPerSecond. - // Do no touch numBouncesBeforeYield or - // maxNumBouncesBeforeYield, because those - // are adjusted automatically by the - // recomputeMaxNumBouncesBeforeYield - // procedure. - 'desiredYieldsPerSecond': 5, - 'numBouncesBeforeYield': 2000, // self-adjusting - 'maxNumBouncesBeforeYield': 2000, // self-adjusting + this.params = { - + // currentDisplayer: DomNode -> Void + // currentDisplayer is responsible for displaying to the browser. + 'currentDisplayer': function(v) { + $(document.body).append(v); + }, + + 'currentOutputPort': new StandardOutputPort(), + 'currentSuccessHandler': function(MACHINE) {}, + 'currentErrorHandler': function(MACHINE, exn) {}, + + 'currentNamespace': {}, + + // These parameters control how often + // control yields back to the browser + // for response. The implementation is a + // simple PID controller. + // + // To tune this, adjust desiredYieldsPerSecond. + // Do no touch numBouncesBeforeYield or + // maxNumBouncesBeforeYield, because those + // are adjusted automatically by the + // recomputeMaxNumBouncesBeforeYield + // procedure. + 'desiredYieldsPerSecond': 5, + 'numBouncesBeforeYield': 2000, // self-adjusting + 'maxNumBouncesBeforeYield': 2000, // self-adjusting - - 'current-print': new Closure( - function(MACHINE) { - var elt = MACHINE.env.pop(); - var outputPort = - MACHINE.params.currentOutputPort; - if (elt !== undefined) { - outputPort.write(MACHINE, elt); - outputPort.write(MACHINE, "\n"); - } - var frame = MACHINE.control.pop(); - return frame.label(MACHINE); - }, - 1, - [], - "printer") + 'current-print': new Closure( + function(MACHINE) { + var elt = MACHINE.env.pop(); + var outputPort = + MACHINE.params.currentOutputPort; + if (elt !== undefined) { + outputPort.write(MACHINE, elt); + outputPort.write(MACHINE, "\n"); + } + var frame = MACHINE.control.pop(); + return frame.label(MACHINE); + }, + 1, + [], + "printer") }; @@ -222,7 +225,19 @@ var StandardOutputPort = function() {}; StandardOutputPort.prototype = heir(OutputPort.prototype); StandardOutputPort.prototype.write = function(MACHINE, v) { - MACHINE.params['currentDisplayer'](v); + var domNode; + // TODO: v must be coerced into a DOMNode in a more systematic way. + // This function may need to be a Closure. + if(typeof(v) === 'string' || + typeof(v) === 'number' || + typeof(v) === 'boolean' || + typeof(v) === 'null' || + typeof(v) === 'undefined') { + domNode = $('').text(String(v)).css('white-space', 'pre'); + } else { + domNode = $('').text(String(v)).css('white-space', 'pre'); + } + MACHINE.params['currentDisplayer'](domNode); }; diff --git a/js-assembler/package.rkt b/js-assembler/package.rkt index c66ac85..fb42131 100644 --- a/js-assembler/package.rkt +++ b/js-assembler/package.rkt @@ -69,31 +69,50 @@ - ;; package-standalone-xhtml: X output-port -> void (define (package-standalone-xhtml source-code op) - (fprintf op #< - - - - Example - - + + + +EOF +) + + +(define *invoke-main-module-text* + #<\n\n\n" op)) +) diff --git a/js-assembler/quote-cdata.rkt b/js-assembler/quote-cdata.rkt index 1d90039..9af1a2d 100644 --- a/js-assembler/quote-cdata.rkt +++ b/js-assembler/quote-cdata.rkt @@ -3,34 +3,41 @@ ;; quoting cdata for script tags. This is used to help generate SCRIPT bodies in XHTML. ;; Note that this won't help too much in regular HTML5 documents. -(require racket/list) -(require/typed racket/base (regexp-split (Regexp String -> (Listof String)))) - -(provide quote-as-cdata get-cdata-chunks) +(provide quote-cdata) -(: quote-as-cdata (String -> String)) -(define (quote-as-cdata str) - (let ([chunks (regexp-split #rx"\\]\\]>" str)]) - (apply string-append (map wrap (process chunks))))) +(: quote-cdata (String -> String)) +(define (quote-cdata s) + (string-append "" + s + "]]]]>") + "]]>")) + + + +;; (: quote-cdata (String -> String)) +;; (define (quote-cdata str) +;; (let ([chunks (regexp-split #rx"\\]\\]>" str)]) +;; (apply string-append (map wrap (process chunks))))) -(: get-cdata-chunks (String -> (Listof String))) -(define (get-cdata-chunks s) - (let ([chunks (regexp-split #rx"\\]\\]>" s)]) - (process chunks))) +;; (: get-cdata-chunks (String -> (Listof String))) +;; (define (get-cdata-chunks s) +;; (let ([chunks (regexp-split #rx"\\]\\]>" s)]) +;; (process chunks))) -(: process ((Listof String) -> (Listof String))) -(define (process lst) - (cond - [(empty? (rest lst)) - lst] - [else - (cons (string-append (first lst) "]]") - (process (cons (string-append ">" (second lst)) - (rest (rest lst)))))])) +;; (: process ((Listof String) -> (Listof String))) +;; (define (process lst) +;; (cond +;; [(empty? (rest lst)) +;; lst] +;; [else +;; (cons (string-append (first lst) "]]") +;; (process (cons (string-append ">" (second lst)) +;; (rest (rest lst)))))])) -(: wrap (String -> String)) -(define (wrap s) - (string-append "")) \ No newline at end of file +;; (: wrap (String -> String)) +;; (define (wrap s) +;; (string-append "")) diff --git a/tests/browser-evaluate.rkt b/tests/browser-evaluate.rkt index 49ac626..185274d 100644 --- a/tests/browser-evaluate.rkt +++ b/tests/browser-evaluate.rkt @@ -219,12 +219,8 @@ var comet = function() { var output = []; var startTime, endTime; var params = { currentDisplayer: function(v) { - var pNode = document.createElement("span"); - pNode.style.whiteSpace = 'pre'; - pNode.appendChild(document.createTextNode(String(v))); - document.body.appendChild(pNode); - //console.log(v); - output.push(String(v)); } }; + $(document.body).append(v); + output.push($(v).text()); } }; var onSuccess = function(v) { endTime = new Date();