bkyk8rc3zvpnsf5inmcqq4n3k98cv6hj-my-site-hyper-literate-git.test.suzanne.soy-0.0.1

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit fe08f34ae588071b9b07c5d370188044b167a24c
parent 1abd3aa39e75e22eb335444b0c83bc47f7fac96d
Author: Eli Barzilay <eli@barzilay.org>
Date:   Mon, 31 May 2010 15:11:27 -0400

More plt-scheme -> racket-lang, specifically for planet and bugs urls.

original commit: d0ecc73df51faf23b0fd17714f535ea46f2717a3

Diffstat:
Mcollects/scribble/base.rkt | 4+++-
Mcollects/scribble/html-render.rkt | 2+-
Mcollects/scribble/urls.rkt | 2+-
3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/collects/scribble/base.rkt b/collects/scribble/base.rkt @@ -226,7 +226,9 @@ (case-lambda [(doc s) (if doc - (list (module-path-prefix->string doc) s) + (if (list? s) + (cons (module-path-prefix->string doc) s) + (list (module-path-prefix->string doc) s)) s)] [(doc prefix s) (doc-prefix doc (if prefix diff --git a/collects/scribble/html-render.rkt b/collects/scribble/html-render.rkt @@ -655,7 +655,7 @@ style-extra-files)) ,(scribble-js-contents script-file (lookup-path script-file alt-paths))) (body ([id ,(or (extract-part-body-id d ri) - "scribble-plt-scheme-org")]) + "scribble-racket-lang-org")]) ,@(render-toc-view d ri) (div ([class "maincolumn"]) (div ([class "main"]) diff --git a/collects/scribble/urls.rkt b/collects/scribble/urls.rkt @@ -7,4 +7,4 @@ (define url:drracket "http://racket-lang.org/") (define url:download-drracket "http://racket-lang.org/") -(define url:planet "http://planet.plt-scheme.org/") +(define url:planet "http://planet.racket-lang.org/")