removing the other planet requires

This commit is contained in:
Danny Yoo 2013-02-21 17:42:12 -07:00
parent fae62e782c
commit e0e8d720cb
88 changed files with 209 additions and 237 deletions

View File

@ -1,7 +1,7 @@
#lang planet dyoo/whalesong
#lang whalesong
(require (planet dyoo/whalesong/world)
(planet dyoo/whalesong/image))
(require whalesong/world
whalesong/image)
(define-struct world (x direction))

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
#lang whalesong
(require (planet dyoo/whalesong/js))
(require whalesong/js)
(when (in-javascript-context?)
(viewport-width))

View File

@ -12,7 +12,7 @@
;; my-image-url: (parameterof stx)
;;
;; During the dynamic extent of expand-out-images, this will be defined
;; as the unique name for the image-url function in (planet dyoo/whalesong/image).
;; as the unique name for the image-url function in whalesong/image.
(define-runtime-path whalesong/image
"image.rkt")
(define my-image-url (make-parameter #f))

View File

@ -55,7 +55,7 @@
;; Does it look like something out of moby or js-vm? Abort early, because if we don't do
;; this up front, Racket will try to install the deprecated module, and that's bad.
(when (looks-like-old-moby-or-js-vm? module-source-path)
(fprintf (current-report-port) "ERROR: The program in ~e appears to be written using the deprecated project js-vm or Moby.\n\nPlease change the lang line to:\n\n #lang planet dyoo/whalesong\n\ninstead.\n"
(fprintf (current-report-port) "ERROR: The program in ~e appears to be written using the deprecated project js-vm or Moby.\n\nPlease change the lang line to:\n\n #lang whalesong\n\ninstead.\n"
module-source-path)
(abort-abort))

View File

@ -2,12 +2,14 @@
;; Provides a mapping of the core bindings in kernel, so that we know statically
;; if something is implemented as a primitive or a closure.
(require planet/util)
(require syntax/modresolve)
(provide bound-procedure-names)
(define ns (make-base-empty-namespace))
(define bound-procedure-names
(let ([path (resolve-planet-path `(planet ,(this-package-version-symbol lang/kernel)))])
(let ([path (resolve-module-path 'whalesong/lang/kernel #f)])
(parameterize ([current-namespace ns])
(namespace-require path)
(for/list ([name (namespace-mapped-symbols)]

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
#lang whalesong
(require (planet dyoo/whalesong/web-world)
(require whalesong/web-world
"geo.rkt")

View File

@ -1,7 +1,7 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/js/world)
(planet dyoo/whalesong/js)
(planet dyoo/whalesong/web-world))
#lang whalesong
(require whalesong/js/world
whalesong/js
whalesong/web-world)
;; Test of getting world events from arbitrary JavaScript function application.

View File

@ -1,5 +1,2 @@
#lang s-exp syntax/module-reader
#:language (lambda ()
`(planet ,(this-package-version-symbol lang/korean)))
(require planet/version)
#:language (lambda () 'whalesong/lang/korean)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
;; A rewrite of the cloth simulation application from the Codea project
;; into world form.

View File

@ -1,7 +1,7 @@
#lang planet dyoo/whalesong
#lang whalesong
(require (planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource))
(require whalesong/web-world
whalesong/resource)
(define-resource index.html)

View File

@ -1,14 +1,14 @@
#lang racket
(require (planet dyoo/whalesong/get-module-bytecode)
(planet dyoo/whalesong/parser/parse-bytecode)
(planet dyoo/whalesong/compiler/compiler)
(planet dyoo/whalesong/compiler/compiler-structs)
(planet dyoo/whalesong/js-assembler/assemble))
(require whalesong/get-module-bytecode
whalesong/parser/parse-bytecode
whalesong/compiler/compiler
whalesong/compiler/compiler-structs
whalesong/js-assembler/assemble)
(define bytecode
(get-module-bytecode
(open-input-string
(string-append "#lang planet dyoo/whalesong\n"
(string-append "#lang whalesong\n"
"(define (f x)\n"
" (if (= x 0)\n"
" 1\n"

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
#lang whalesong
(require (planet dyoo/whalesong/storage))
(require whalesong/storage)
(storage-length)
(storage-ref "whalesong test")

View File

@ -1,7 +1,7 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource)
(planet dyoo/whalesong/storage))
#lang whalesong
(require whalesong/web-world
whalesong/resource
whalesong/storage)
;; The world is our TODO list, represented as a list of strings.

View File

@ -1,8 +1,5 @@
#lang scribble/manual
@(require planet/scribble
planet/version
planet/resolver
scribble/eval
@(require scribble/eval
scribble/bnf
racket/sandbox
racket/port
@ -76,7 +73,7 @@ Run the following to create the @filepath{whalesong} launcher program in
your current directory.
@codeblock|{
#lang racket/base
(require (planet dyoo/whalesong:1:12/make-launcher))
(require whalesong/make-launcher)
}|
This may take a few minutes, as Racket is compiling Whalesong, its
dependencies, and its documentation. When it finally finishes,
@ -156,8 +153,8 @@ Let's look at a few of them.
@subsection{Hello world}
Let's try making a simple, standalone executable. At the moment, the
program should be written in the base language of @racket[(planet
dyoo/whalesong/cs019)], as it provides the language features that
program should be written in the base language of
@racket[whalesong/cs019], as it provides the language features that
you've been using in cs019 (@racket[local], @racket[shared], etc...),
as well as support for the @racketmodname/this-package[web-world]
package described later in this document.
@ -166,7 +163,7 @@ package described later in this document.
Write a @filepath{hello.rkt} with the following content
@filebox["hello.rkt"]{
@codeblock{
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
"hello world"
}}
This program is a regular Racket program, and can be executed normally,
@ -242,7 +239,7 @@ Once we're happy with the statics of our program, we can inject dynamic behavior
Write a file called @filepath{tick-tock.rkt} with the following content.
@filebox["tick-tock.rkt"]{
@codeblock|{
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
(define-resource index.html)
@ -299,7 +296,7 @@ Finally, let's look at a program that displays our current geolocation.
@filebox["where-am-i.rkt"]{
@codeblock|{
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
(define-resource index.html)
@ -438,11 +435,11 @@ wants to reset the page.
]
These examples are written in a less featureful language level
(@litchar{#lang planet dyoo/whalesong}), which is why it uses explicit
(@litchar{#lang whalesong}), which is why it uses explicit
@racket[require] statements to pull in support for
@racketmodname/this-package[web-world] and
@racketmodname/this-package[resource]. As long as you use
@litchar{#lang planet dyoo/whalesong/cs019}, you shouldn't need to
@litchar{#lang whalesong/cs019}, you shouldn't need to
require those particular libraries.
@ -768,7 +765,7 @@ can accept the event as an argument.
You can construct events for testing purposes by using @racket[make-event].
@codeblock|{
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
;; Synthesizing a location event
(define my-event (make-event '((latitude 41)
(longitude -71))))
@ -794,7 +791,7 @@ Get an list of the event's keys.
We often need to dynamically inject new dom nodes into an existing
view. As an example where the UI is entirely in code:
@codeblock|{
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
;; tick: world view -> world
(define (tick world view)
@ -892,14 +889,14 @@ to the program.
For example,
@codeblock|{
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
(define-resource my-whale-image-resource "humpback.png")
}|
}
Since the name we're using will often match the filename itself,
as a convenience, we can also write the following:
@codeblock|{
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
(define-resource humpback.png)
}|
which defines a variable named @racket[humpback.png] whose
@ -933,7 +930,7 @@ Given a resource, gets its URL.
For example,
@codeblock|{
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
(define-resource my-whale-image-resource "humpback.png")

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong/base
(require (planet dyoo/whalesong/image)
(planet dyoo/whalesong/resource))
#lang whalesong/base
(require whalesong/image
whalesong/resource)
;; color-near? : Color Color Number -> Boolean

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
(provide fact)
(define (fact x)
(cond

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
(define-struct f (x))
(define-struct g (a b))

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
(boolean? "t")

View File

@ -1,23 +0,0 @@
#lang planet dyoo/whalesong/base
(require (planet dyoo/whalesong/lang/bool))
(boolean? "t")
(boolean? #t)
(boolean? 0)
(boolean? #\t)
(char? "t")
(char? #t)
(char? 0)
(char? #\t)
(char=? #\a #\b)
(char=? #\a #\a)
(char=? #\a #\a #\b)
(char=? #\a #\b #\a)
(char=? #\a #\a #\a)
true
false
(false? true)
(false? false)

View File

@ -1,5 +1,5 @@
#lang planet dyoo/whalesong/base
(require (planet dyoo/whalesong/lang/bool))
#lang whalesong/base
(require whalesong/lang/bool)
(boolean? "t")
(boolean? #t)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(char-upcase #\a)
(char-upcase #\b)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
(define (greet name)
(string-append "hello " name))

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
(define (greet name)
(string-append "hello " name))

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(require (planet dyoo/whalesong/image))
(require whalesong/image)
(color 3 4 5 0)
(make-color 3 5 7 0)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(let ()
;; (define (caar l)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
(define (puzzle n)
(if (= n 0)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(define (puzzle n)
(if (= n 0)

View File

@ -1,3 +1,3 @@
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
.. ;; should raise a teaching syntax error

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(begin
(define make-parser
(lambda (grammar lexer)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
(define (fact x)
(cond
[(= x 0)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; File: fft.cl
; Description: FFT benchmark from the Gabriel tests.

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
;; A tree is either a symbol or a node.
(define-struct node (l r))

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
; Modified 2 March 1997 by Will Clinger to add graphs-benchmark
; and to expand the four macros below.
; Modified 11 June 1997 by Will Clinger to eliminate assertions

View File

@ -1,5 +1,5 @@
#lang planet dyoo/whalesong/base
(require (planet dyoo/whalesong/lang/private/shared))
#lang whalesong/base
(require whalesong/lang/private/shared)
;; boxes
"boxes"

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(hash? 1)
(hash? "potatoes")

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/bf
#lang whalesong/bf
+++++ +++++ [ > +++++ ++ > +++++ +++++ > +++ > + <<<< - ] > ++ . > +
. +++++ ++ . . +++ . > ++ . << +++++ +++++ +++++ . > . +++ .
----- - . ----- --- . > + . > .

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(displayln "hello world")

View File

@ -1,5 +1,5 @@
#lang planet dyoo/whalesong/base
(require (planet dyoo/whalesong/image))
#lang whalesong/base
(require whalesong/image)
(image-color? "red")
(image-color? "blue")

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(require (for-syntax racket/base
syntax/struct))

View File

@ -1,5 +1,5 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/js))
#lang whalesong
(require whalesong/js)
(define js-plus
(js-function->procedure "function(x, y) { return x + y; }"))

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
(define web-colors
(shared ([W (cons "white" G)]

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
'(1 2 3)
(list "hello" "world")

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
;; Knuth's Man-or-boy-test.
;; http://rosettacode.org/wiki/Man_or_boy_test

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
(map (lambda (x y) (+ x y)) (list 1 2 3) (list 4 5 6))
(map + (list 1 2 3) (list 4 5 6))

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
(require (for-syntax racket/base))
(provide x x++ x+1 x=0 get-x)
(define x 0)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
(require "module-scoping-helper.rkt")
x ;; 0
(get-x) ;; 0

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
;; Imperative body:
(define (loops n)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
;;; NQUEENS -- Compute number of solutions to 8-queens problem.
;; 2006/08 -- renamed `try' to `try-it' to avoid Bigloo collision (mflatt)
;; 2010/04 -- got rid of the one-armed id (stamourv)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(require (for-syntax racket/base))
; File: "nucleic2.scm"

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(number? 0)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
(current-print-mode "constructor")

View File

@ -1,2 +1,2 @@
#lang planet dyoo/whalesong
#lang whalesong
`(0 ,@(list 1 2) 4)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
;; Srinivasa Ramanujan's infinite series for approximating pi.
(define (sum f a b)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
;;; SCHEME -- A Scheme interpreter evaluating a sort, written by Marc Feeley.
; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
(define infinite-ones
(shared ([a (cons 1 a)])

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
(define infinite-ones
(shared ([a (cons 1 a)])

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
(define: x : Number$ 3)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(apply + 2 3 4 5 '())
(apply + 2 3 4 '(5))

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(provide (all-defined-out))

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(let myloop ([i 0] [acc 0])
(cond

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(define-struct pair (f r))
(define-struct color (r g b))

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
;; This should invoke the use of inline-variant from 5.2.1
(provide f)
(define (f x) x)

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(define (make-gen gen)
(let ([cont (box #f)])
(lambda ()

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(define (make-gen gen)
(let ([cont #f])
(lambda ()

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/base
#lang whalesong/base
(substring "hello world" 0)
(substring "hello world" 1)

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
#lang whalesong
(require (planet dyoo/whalesong/web-world))
(require whalesong/web-world)
(define view (->view (xexp->dom `(html (head)
(body (p "hello world, this is a test")

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong
#lang whalesong
(define program (lambda () (let ((y (call/cc (lambda (c) c)))) (display 1) (call/cc (lambda (c) (y c))) (display 2) (call/cc (lambda (c) (y c))) (display 3))))
(program)

View File

@ -57,8 +57,8 @@ then it should be trivial to make a program that just shows
that page:
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world))
#lang whalesong
(require whalesong/web-world)
(define-resource index.html)
@ -106,8 +106,8 @@ such as:
and then, in the programming language, add behavior:
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world))
#lang whalesong
(require whalesong/web-world)
(define-resource index.html)
@ -181,8 +181,8 @@ If index.html contains:
with some appropriate CSS to make the DIV look good, then the program
will be:
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world))
#lang whalesong
(require whalesong/web-world)
(define-resource index.html)
@ -236,8 +236,8 @@ handler takes, not only the world, but the current view.
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world))
#lang whalesong
(require whalesong/web-world)
(define-resource index.html)
(define-resource style.css)
@ -290,8 +290,8 @@ hide.
</html>
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world))
#lang whalesong
(require whalesong/web-world)
(define-resource index.html)
;; make-item: string -> view

View File

@ -1,7 +1,7 @@
#lang planet dyoo/whalesong
#lang whalesong
(require (planet dyoo/whalesong/resource)
(planet dyoo/whalesong/web-world))
(require whalesong/resource
whalesong/web-world)
(define-resource index.html)
(define-resource style.css)

View File

@ -24,10 +24,10 @@ This should be animating:
The program for this is:
<blockquote>
<pre>
#lang planet dyoo/whalesong
#lang whalesong
(require (planet dyoo/whalesong/resource)
(planet dyoo/whalesong/web-world))
(require whalesong/resource
whalesong/web-world)
(define-resource index.html)
(define-resource style.css)

View File

@ -1,9 +1,9 @@
#lang planet dyoo/whalesong
#lang whalesong
(require (planet dyoo/whalesong/js)
(planet dyoo/whalesong/image)
(planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource))
(require whalesong/js
whalesong/image
whalesong/web-world
whalesong/resource)
(define-resource index.html)

View File

@ -1,7 +1,7 @@
#lang planet dyoo/whalesong
#lang whalesong
(require (planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource))
(require whalesong/web-world
whalesong/resource)
;; The world is a string, the current color.
(define-resource view.html)

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource))
#lang whalesong
(require whalesong/web-world
whalesong/resource)
(define-resource index.html)
;; The world is the set of dwarfs.

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource))
#lang whalesong
(require whalesong/web-world
whalesong/resource)
(define-resource index.html)
;; The world is the set of dwarfs.

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource))
#lang whalesong
(require whalesong/web-world
whalesong/resource)
(define-resource index.html)

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource))
#lang whalesong
(require whalesong/web-world
whalesong/resource)
(define-resource index.html)

View File

@ -1,7 +1,7 @@
#lang planet dyoo/whalesong
#lang whalesong
(require (planet dyoo/whalesong/resource)
(planet dyoo/whalesong/web-world))
(require whalesong/resource
whalesong/web-world)
(define-resource index.html)

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource))
#lang whalesong
(require whalesong/web-world
whalesong/resource)
(define-resource index.html)
(define-resource style.css)

View File

@ -1,5 +1,5 @@
#lang planet dyoo/whalesong
#lang whalesong
(require (planet dyoo/whalesong/web-world))
(require whalesong/web-world)
(big-bang 0 (initial-view "hello world"))

View File

@ -1,4 +1,4 @@
#lang planet dyoo/whalesong/cs019
#lang whalesong/cs019
(define-resource index.html)

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource))
#lang whalesong
(require whalesong/web-world
whalesong/resource)
(define-resource index1.html)
(define-resource index2.html)

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource))
#lang whalesong
(require whalesong/web-world
whalesong/resource)
(define-resource index.html)

View File

@ -1,5 +1,5 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world))
#lang whalesong
(require whalesong/web-world)
;; tick: world view -> world
(define (tick world view)

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource))
#lang whalesong
(require whalesong/web-world
whalesong/resource)
(define-resource index.html)

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource))
#lang whalesong
(require whalesong/web-world
whalesong/resource)
;; The world is our TODO list, represented as a list of strings.

View File

@ -1,6 +1,6 @@
#lang planet dyoo/whalesong
(require (planet dyoo/whalesong/web-world)
(planet dyoo/whalesong/resource))
#lang whalesong
(require whalesong/web-world
whalesong/resource)
(define-resource index.html)

View File

@ -16,7 +16,6 @@
"logger.rkt"
"parameters.rkt"
"js-assembler/check-valid-module-source.rkt"
planet/version
(for-syntax racket/base))
(provide (all-defined-out))

View File

@ -3,13 +3,13 @@
(require racket/runtime-path
racket/path
planet/util)
syntax/modresolve)
;; We do things this way to ensure that we're using the latest
;; version of whalesong that's installed, and that the load-relative
;; path is in terms of the normalized paths, to avoid a very strange
;; low-level bug.
(define whalesong.cmd
(resolve-planet-path '(planet dyoo/whalesong/whalesong-cmd)))
(resolve-module-path 'whalesong/whalesong-cmd #f))
(dynamic-require (normalize-path whalesong.cmd) #f)