hack to get around another weird issue with dynamic evaluation Also fixing initialRendering of a view.

This commit is contained in:
Danny Yoo 2011-08-23 15:55:25 -04:00
parent 97fffce623
commit 24030a4cfd
2 changed files with 20 additions and 2 deletions

View File

@ -1,5 +1,4 @@
#lang racket/base
(require racket/port)
(provide record-resource
get-records)
@ -15,6 +14,21 @@
(hash-ref records a-path '()))
;; Hack to work around bug that should be fixed after 5.1.3. The dynamic
;; require-for-syntax stuff isn't quite working right, which means
;; we can't use (require racket/port) here.
(define (port->bytes p)
(define out (open-output-bytes))
(let loop ()
(define b (read-byte p))
(cond
[(eof-object? b)
(get-output-bytes out)]
[else
(write-byte b out)
(loop)])))
;; record-javascript-implementation!: path path a-resource-path -> void
(define (record-resource a-module-path a-resource-path a-key)
(hash-set! records a-module-path

View File

@ -37,7 +37,11 @@
// FIXME: we should pull in the styles applied to body and its
// children and apply them here?
top.append(this.top.find("body").children());
if (this.top.find("body").length > 0) {
top.append(this.top.find("body").children());
} else {
top.append(this.top);
}
};
// Return a list of the event sources from the view.