Move meta/web/html' to
scribble/html'.
(See http://lists.racket-lang.org/dev/archive/2010-October/004691.html for a discussion on calling it `html' rather than `xhtml'.)
This commit is contained in:
parent
95729c3e95
commit
ca040ea42a
|
@ -1240,8 +1240,11 @@ path/s is either such a string or a list of them.
|
||||||
"collects/schemeunit" responsible (jay)
|
"collects/schemeunit" responsible (jay)
|
||||||
"collects/schemeunit/gui.rkt" drdr:command-line (gracket-text "-t" *)
|
"collects/schemeunit/gui.rkt" drdr:command-line (gracket-text "-t" *)
|
||||||
"collects/scribble" responsible (mflatt eli)
|
"collects/scribble" responsible (mflatt eli)
|
||||||
|
"collects/scribble/html" responsible (eli)
|
||||||
|
"collects/scribble/html.rkt" responsible (eli)
|
||||||
"collects/scribble/run.rkt" drdr:command-line (mzc *)
|
"collects/scribble/run.rkt" drdr:command-line (mzc *)
|
||||||
"collects/scribble/text" responsible (eli)
|
"collects/scribble/text" responsible (eli)
|
||||||
|
"collects/scribble/text.rkt" responsible (eli)
|
||||||
"collects/scribble/tools/drracket-buttons.rkt" drdr:command-line (gracket-text *)
|
"collects/scribble/tools/drracket-buttons.rkt" drdr:command-line (gracket-text *)
|
||||||
"collects/scribble/tools/private/mk-drs-bitmaps.rkt" drdr:command-line (gracket-text * "skip")
|
"collects/scribble/tools/private/mk-drs-bitmaps.rkt" drdr:command-line (gracket-text * "skip")
|
||||||
"collects/scribblings" responsible (mflatt eli robby matthias)
|
"collects/scribblings" responsible (mflatt eli robby matthias)
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
* html: generic shared code for (X)HTML generation (tag output and
|
|
||||||
resource rendering and referring).
|
|
||||||
|
|
||||||
* common: specific code for the PLT web pages.
|
* common: specific code for the PLT web pages.
|
||||||
|
|
||||||
* www: actual content of main site.
|
* www: actual content of main site.
|
||||||
|
|
|
@ -7,7 +7,7 @@ exec "$exe" "$0" "$@"
|
||||||
|
|
||||||
#lang racket/base
|
#lang racket/base
|
||||||
|
|
||||||
(require racket/cmdline racket/runtime-path racket/file meta/web/html
|
(require racket/cmdline racket/runtime-path racket/file scribble/html
|
||||||
"common/distribute.rkt" "config.rkt" "navbar.rkt")
|
"common/distribute.rkt" "config.rkt" "navbar.rkt")
|
||||||
|
|
||||||
(define build-mode #f)
|
(define build-mode #f)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#lang at-exp s-exp meta/web/html
|
#lang at-exp s-exp scribble/html
|
||||||
|
|
||||||
;; list of a header paragraphs and sub paragraphs (don't use `p' since it looks
|
;; list of a header paragraphs and sub paragraphs (don't use `p' since it looks
|
||||||
;; like they should not be nested)
|
;; like they should not be nested)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#lang at-exp s-exp meta/web/html
|
#lang at-exp s-exp scribble/html
|
||||||
|
|
||||||
(require (for-syntax racket/base syntax/name) "utils.rkt" "resources.rkt")
|
(require (for-syntax racket/base syntax/name) "utils.rkt" "resources.rkt")
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#lang at-exp s-exp meta/web/html
|
#lang at-exp s-exp scribble/html
|
||||||
|
|
||||||
(define-syntax-rule (define* id E) (begin (define id E) (provide id)))
|
(define-syntax-rule (define* id E) (begin (define id E) (provide id)))
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#lang racket/base
|
#lang racket/base
|
||||||
|
|
||||||
(require meta/web/html
|
(require scribble/html
|
||||||
"layout.rkt" "resources.rkt" "extras.rkt" "links.rkt" "utils.rkt")
|
"layout.rkt" "resources.rkt" "extras.rkt" "links.rkt" "utils.rkt")
|
||||||
(provide (all-from-out meta/web/html
|
(provide (all-from-out scribble/html
|
||||||
"layout.rkt" "resources.rkt" "extras.rkt" "links.rkt"
|
"layout.rkt" "resources.rkt" "extras.rkt" "links.rkt"
|
||||||
"utils.rkt"))
|
"utils.rkt"))
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#lang at-exp s-exp meta/web/html
|
#lang at-exp s-exp scribble/html
|
||||||
|
|
||||||
;; These are some resources that are shared across different toplevel
|
;; These are some resources that are shared across different toplevel
|
||||||
;; sites. They could be included from a single place, but then when one
|
;; sites. They could be included from a single place, but then when one
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#lang at-exp s-exp meta/web/html
|
#lang at-exp s-exp scribble/html
|
||||||
|
|
||||||
(require (for-syntax scheme/base))
|
(require (for-syntax scheme/base))
|
||||||
|
|
||||||
|
|
|
@ -55,10 +55,10 @@
|
||||||
@~
|
@~
|
||||||
It is also easy to setup a script that will automate the process of
|
It is also easy to setup a script that will automate the process of
|
||||||
retrieving the @tt{tgz} file, unpacking and installing it. This is
|
retrieving the @tt{tgz} file, unpacking and installing it. This is
|
||||||
explained in more details in @a[href: "script.html"]{scripts}. In
|
explained in more details in @pre-scripts{scripts}. In addition to being
|
||||||
addition to being convenient for updating your tree, it can be used by an
|
convenient for updating your tree, it can be used by an automatic job
|
||||||
automatic job scheduler (for example, a cron job on Unix) to make tree
|
scheduler (for example, a cron job on Unix) to make tree that is always
|
||||||
that is always updated.}
|
updated.}
|
||||||
@hr
|
@hr
|
||||||
@version-hole})
|
@version-hole})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user