From 0aa14ae363c66dc13d931729945bc85d80c6cacd Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 5 Dec 2007 21:41:07 +0000 Subject: [PATCH] Scribble improvements: defmodule & co. svn: r7902 original commit: cd7157641cc8a1dd6266c926675e5909daeb643f --- collects/scribble/decode.ss | 5 +- collects/scribble/doc/lang/reader.ss | 2 +- collects/scribble/doc/main.ss | 6 + .../scribble/{docreader.ss => doc/reader.ss} | 4 +- collects/scribble/latex-render.ss | 1 + collects/scribble/manual-struct.ss | 1 + collects/scribble/manual.ss | 87 ++++++++++- collects/scribble/scribble.css | 10 ++ collects/scribblings/scribble/basic.scrbl | 12 +- collects/scribblings/scribble/bnf.scrbl | 59 +++++++ collects/scribblings/scribble/decode.scrbl | 24 +-- collects/scribblings/scribble/doclang.scrbl | 13 +- collects/scribblings/scribble/docreader.scrbl | 11 +- collects/scribblings/scribble/eval.scrbl | 9 +- collects/scribblings/scribble/how-to.scrbl | 145 ++++++++++++------ collects/scribblings/scribble/manual.scrbl | 80 ++++++++-- collects/scribblings/scribble/reader.scrbl | 11 +- collects/scribblings/scribble/renderer.scrbl | 35 +++-- collects/scribblings/scribble/scheme.scrbl | 12 ++ collects/scribblings/scribble/scribble.scrbl | 53 +++---- collects/scribblings/scribble/struct.scrbl | 2 +- 21 files changed, 439 insertions(+), 143 deletions(-) create mode 100644 collects/scribble/doc/main.ss rename collects/scribble/{docreader.ss => doc/reader.ss} (89%) create mode 100644 collects/scribblings/scribble/bnf.scrbl create mode 100644 collects/scribblings/scribble/scheme.scrbl diff --git a/collects/scribble/decode.ss b/collects/scribble/decode.ss index af2affd3..0b11accc 100644 --- a/collects/scribble/decode.ss +++ b/collects/scribble/decode.ss @@ -26,7 +26,8 @@ [splice ([run list?])] [part-index-decl ([plain-seq (listof string?)] [entry-seq list?])] - [part-collect-decl ([element element?])]) + [part-collect-decl ([element element?])] + [part-tag-decl ([tag tag?])]) (define (decode-string s) (let loop ([l '((#rx"---" mdash) @@ -173,6 +174,8 @@ (loop (cdr l) next? (cons (car l) keys) colls accum title tag-prefix tags style)] [(part-collect-decl? (car l)) (loop (cdr l) next? keys (cons (part-collect-decl-element (car l)) colls) accum title tag-prefix tags style)] + [(part-tag-decl? (car l)) + (loop (cdr l) next? keys colls accum title tag-prefix (cons (part-tag-decl-tag (car l)) tags) style)] [(and (pair? (cdr l)) (splice? (cadr l))) (loop (cons (car l) (append (splice-run (cadr l)) (cddr l))) next? keys colls accum title tag-prefix tags style)] diff --git a/collects/scribble/doc/lang/reader.ss b/collects/scribble/doc/lang/reader.ss index fbe0d072..fa4f99f8 100644 --- a/collects/scribble/doc/lang/reader.ss +++ b/collects/scribble/doc/lang/reader.ss @@ -1,4 +1,4 @@ (module reader mzscheme - (require (prefix doc: (lib "docreader.ss" "scribble"))) + (require (prefix doc: (lib "reader.ss" "scribble" "doc"))) (provide (rename doc:read read) (rename doc:read-syntax read-syntax))) diff --git a/collects/scribble/doc/main.ss b/collects/scribble/doc/main.ss new file mode 100644 index 00000000..6dd33c88 --- /dev/null +++ b/collects/scribble/doc/main.ss @@ -0,0 +1,6 @@ +(module main scheme/base + (define-syntax-rule (out) + (begin (require scribble/doclang) + (provide (all-from-out scribble/doclang)))) + (out)) + diff --git a/collects/scribble/docreader.ss b/collects/scribble/doc/reader.ss similarity index 89% rename from collects/scribble/docreader.ss rename to collects/scribble/doc/reader.ss index b9e6ea8b..72cb2943 100644 --- a/collects/scribble/docreader.ss +++ b/collects/scribble/doc/reader.ss @@ -1,6 +1,6 @@ -(module docreader scheme/base - (require (prefix-in scribble: "reader.ss")) +(module reader scheme/base + (require (prefix-in scribble: "../reader.ss")) (provide (rename-out [*read read]) (rename-out [*read-syntax read-syntax])) diff --git a/collects/scribble/latex-render.ss b/collects/scribble/latex-render.ss index 6fed3162..f84b3fa6 100644 --- a/collects/scribble/latex-render.ss +++ b/collects/scribble/latex-render.ss @@ -50,6 +50,7 @@ (define-color "schemesymbol" "IdentifierColor") (define-color "schemevalue" "ValueColor") (define-color "schemevaluelink" "blue") + (define-color "schememodlink" "blue") (define-color "schemeresult" "ResultColor") (define-color "schemestdout" "OutputColor") (define-color "schememeta" "IdentifierColor") diff --git a/collects/scribble/manual-struct.ss b/collects/scribble/manual-struct.ss index eea0b8a8..11c0224e 100644 --- a/collects/scribble/manual-struct.ss +++ b/collects/scribble/manual-struct.ss @@ -4,6 +4,7 @@ scheme/contract) (provide-structs + [module-path-index-desc ()] [exported-index-desc ([name symbol?] [from-libs (listof module-path?)])] [(method-index-desc exported-index-desc) ([method-name symbol?] diff --git a/collects/scribble/manual.ss b/collects/scribble/manual.ss index e9e54c41..0359209c 100644 --- a/collects/scribble/manual.ss +++ b/collects/scribble/manual.ss @@ -47,8 +47,11 @@ #'here `(unsyntax (make-element #f - (list (schemefont ,(format "#lang ")) - (schemeidfont ,(format "~s" (syntax-e #'lang)))))) + (list hash-lang + (hspace 1) + (as-modname-link + ',#'lang + (to-element ',#'lang))))) #'lang)]) #'(schemeblock modtag rest ...))])) @@ -83,7 +86,76 @@ (define-code scheme to-element unsyntax keep-s-expr add-sq-prop) (define-code schemeresult to-element/result unsyntax keep-s-expr add-sq-prop) (define-code schemeid to-element/id unsyntax keep-s-expr add-sq-prop) - (define-code schememodname to-element unsyntax keep-s-expr add-sq-prop) + (define-code *schememodname to-element unsyntax keep-s-expr add-sq-prop) + + (define-syntax-rule (schememodname n) + (as-modname-link 'n (*schememodname n))) + + (define (as-modname-link s e) + (if (symbol? s) + (make-link-element "schememodlink" + (list e) + `(mod-path ,(symbol->string s))) + e)) + + (define-syntax-rule (defmodule*/no-declare (name ...) . content) + (*defmodule (list (schememodname name) ...) + #f + (list . content))) + + (define-syntax-rule (defmodule* (name ...) . content) + (begin + (declare-exporting name ...) + (defmodule*/no-declare (name ...) . content))) + + (define-syntax-rule (defmodule name . content) + (defmodule* (name) . content)) + + (define-syntax-rule (defmodulelang*/no-declare (lang ...) . content) + (*defmodule (list (schememodname lang) ...) + #t + (list . content))) + + (define-syntax-rule (defmodulelang* (name ...) . content) + (begin + (declare-exporting name ...) + (defmodulelang*/no-declare (name ...) . content))) + + (define-syntax-rule (defmodulelang lang . content) + (defmodulelang* (lang) . content)) + + (define (*defmodule names lang? content) + (make-splice + (cons + (make-table + "defmodule" + (map (lambda (name) + (list + (make-flow + (list (make-paragraph + (if lang? + (list (hspace 1) + hash-lang + (hspace 1) + (make-defschememodname name)) + (list + (hspace 1) + (scheme (require #,(make-defschememodname name)))))))))) + names)) + (append + (map (lambda (name) + (make-part-tag-decl `(mod-path ,(element->string name)))) + names) + (flow-paragraphs (decode-flow content)))))) + + (define (make-defschememodname mn) + (let ([name-str (element->string mn)]) + (make-index-element #f + (list mn) + `(mod-path ,name-str) + (list name-str) + (list mn) + (make-module-path-index-desc)))) (define (litchar . strs) (unless (andmap string? strs) @@ -148,6 +220,8 @@ schemeinput schememod scheme scheme/form schemeresult schemeid schememodname + defmodule defmodule* defmodulelang defmodulelang* + defmodule*/no-declare defmodulelang*/no-declare indexed-scheme litchar verbatim) @@ -1375,6 +1449,13 @@ c))) (provide pidefterm) + + (define hash-lang (make-link-element + "schememodlink" + (list (schememodfont "#lang")) + `(part ,(doc-prefix '(lib "scribblings/guide/guide.scrbl") + "hash-lang")))) + ;; ---------------------------------------- (provide math) diff --git a/collects/scribble/scribble.css b/collects/scribble/scribble.css index 0604c3fe..2365f237 100644 --- a/collects/scribble/scribble.css +++ b/collects/scribble/scribble.css @@ -289,6 +289,11 @@ background-color: #ddddff; } + .defmodule { + width: 100%; + background-color: #F5F5DC; + } + .specgrammar { float: right; } @@ -369,6 +374,11 @@ color: blue; } + .schememodlink { + text-decoration: none; + color: blue; + } + .schemesyntaxlink { text-decoration: none; color: black; diff --git a/collects/scribblings/scribble/basic.scrbl b/collects/scribblings/scribble/basic.scrbl index baf5a0a8..57c1592e 100644 --- a/collects/scribblings/scribble/basic.scrbl +++ b/collects/scribblings/scribble/basic.scrbl @@ -21,12 +21,12 @@ @title[#:tag "basic"]{Basic Document Forms} -@declare-exporting[scribble/basic] +@defmodule[scribble/basic]{The @schememodname[scribble/basic] libraryp +rovides functions and forms that can be used from code written either +in Scheme or with @elem["@"] expressions.} -The @filepath{basic.ss} libraryprovides functions and forms that can be -used from code written either in Scheme or with @elem["@"] -expressions. For example, the @scheme[title] and @scheme[italic] -functions might be called from Scheme as +For example, the @scheme[title] and @scheme[italic] functions might be +called from Scheme as @schemeblock[ (title #:tag "how-to" "How to Design " (italic "Great") " Programs") @@ -42,7 +42,7 @@ EOS Although the procedures are mostly design to be used from @elem["@"] mode, they are easier to document in Scheme mode (partly because we -have Scribble's @filepath{scheme.ss} and @filepath{manual.ss}). +have @schememodname[scribble/manual]). @; ------------------------------------------------------------------------ diff --git a/collects/scribblings/scribble/bnf.scrbl b/collects/scribblings/scribble/bnf.scrbl new file mode 100644 index 00000000..72cd5a80 --- /dev/null +++ b/collects/scribblings/scribble/bnf.scrbl @@ -0,0 +1,59 @@ +#lang scribble/doc +@(require scribble/manual + "utils.ss" + (for-label scribble/bnf)) + +@title[#:tag "bnf"]{Typesetting Grammars} + +@defmodule[scribble/bnf]{The @scheme[scribble/bnf] library +provides utilities for typesetting grammars.} + +See also @scheme[schemegrammar]. + +@defproc[(BNF [prod (cons element? (listof element?))] ...) table?]{ + +Typesets a grammar table. Each production starts with an element +(typically constructed with @scheme[nonterm]) for the non-terminal +being defined, and then a list of possibilities (typically constructed +with @scheme[BNF-seq], etc.) to show on separate lines.} + +@defproc[(nonterm (pre-content any/c) ...) element?]{ + +Typesets a non-terminal: italic in angle brackets.} + +@defproc[(BNF-seq [elem element?] ...) element?]{ + +Typesets a sequence.} + +@defproc[(BNF-group [pre-content any/c] ...) element?]{ + +Typesets a group surrounded by curly braces (so the entire group can +be repeated, for example).} + +@defproc[(optional [pre-content any/c] ...) element?]{ + +Typesets an optional element: in square brackets.} + +@defproc[(kleenestar [pre-content any/c] ...) element?]{ + +Typesets a 0-or-more repetition.} + +@defproc[(kleeneplus [pre-content any/c] ...) element?]{ + +Typesets a 1-or-more repetition.} + +@defproc[(kleenerange [n any/c] [m any/c] [pre-content any/c] ...) element?]{ + +Typesets a @scheme[n]-to-@scheme[m] repetition. The @scheme[n] and +@scheme[m] arguments are converted to a string using @scheme[(format +"~a" n)] and @scheme[(format "~a" m)].} + +@defproc[(BNF-alt [elem element?] ...) element?]{ + +Typesets alternatives for a production's right-hand side to appear on +a single line. The result is normally used as a single possibility in +a production list for @scheme[BNF].} + +@defthing[BNF-etc string?]{ + +A string to use for omitted productions or content.} diff --git a/collects/scribblings/scribble/decode.scrbl b/collects/scribblings/scribble/decode.scrbl index 92b2ad25..2bc88545 100644 --- a/collects/scribblings/scribble/decode.scrbl +++ b/collects/scribblings/scribble/decode.scrbl @@ -4,12 +4,11 @@ @title[#:tag "decode"]{Text Decoder} -@declare-exporting[scribble/decode] - -The @filepath{decode.ss} library helps you write document content in a -natural way---more like plain text, except for @litchar["@"] escapes. -Roughly, it processes a stream of strings to produces instances of the -@filepath{struct.ss} datatypes (see @secref["struct"]). +@defmodule[scribble/decode]{The @schememodname[scribble/decode] +library helps you write document content in a natural way---more like +plain text, except for @litchar["@"] escapes. Roughly, it processes a +stream of strings to produces instances of the +@schememodname[scribble/struct] datatypes (see @secref["struct"]).} At the flow level, decoding recognizes a blank line as a paragraph separator. At the paragraph-content level, decoding makes just a few @@ -39,9 +38,10 @@ Decodes a document, producing a part. In @scheme[lst], instances of @scheme[part-index-decl] (that precede any sub-part) add index entries that point to the section. Instances of @scheme[part-collect-decl] add elements to the part that are used only during the @techlink{collect -pass}. Instances of @scheme[part-start] at level 0 trigger sub-part -parsing. Instances of @scheme[section] trigger are used as-is as -subsections, and instances of @scheme[paragraph] and other +pass}. Instances of @scheme[part-tag-decl] add hyperlink tags to the +section title. Instances of @scheme[part-start] at level 0 trigger +sub-part parsing. Instances of @scheme[section] trigger are used as-is +as subsections, and instances of @scheme[paragraph] and other flow-element datatypes are used as-is in the enclosing flow. } @@ -129,6 +129,12 @@ See @scheme[decode]. } +@defstruct[part-tag-decl ([tag tag?])]{ + +See @scheme[decode]. + +} + @defstruct[splice ([run list?])]{ See @scheme[decode], @scheme[decode-part], and @scheme[decode-flow]. diff --git a/collects/scribblings/scribble/doclang.scrbl b/collects/scribblings/scribble/doclang.scrbl index 44bd1f3f..f2ebb8fe 100644 --- a/collects/scribblings/scribble/doclang.scrbl +++ b/collects/scribblings/scribble/doclang.scrbl @@ -4,13 +4,14 @@ @title[#:tag "doclang"]{Document Module Language} -The @filepath{doclang.ss} module is suitable for use as a module -language. It provides everything from @scheme[mzscheme], except that -it replaces the @scheme[#%module-begin] form. +@defmodule[scribble/doclang]{The @schememodname[scribble/doclang] +language provides everything from @scheme[scheme/base], except that it +replaces the @scheme[#%module-begin] form.} -The @filepath{doclang.ss} @scheme[#%module-begin] essentially packages the -body of the module into a call to @scheme[decode], binds the result to -@scheme[doc], and exports @scheme[doc]. +The @schememodname[scribble/doclang] @scheme[#%module-begin] +essentially packages the body of the module into a call to +@scheme[decode], binds the result to @scheme[doc], and exports +@scheme[doc]. Any module-level form other than an expression (e.g., a @scheme[require] or @scheme[define]) is remains at the top level, and diff --git a/collects/scribblings/scribble/docreader.scrbl b/collects/scribblings/scribble/docreader.scrbl index 24a92d9c..ebfc4899 100644 --- a/collects/scribblings/scribble/docreader.scrbl +++ b/collects/scribblings/scribble/docreader.scrbl @@ -5,9 +5,8 @@ @title[#:tag "docreader"]{Document Reader} -The @filepath{docreader.ss} module is suitable for use with -@schemefont{#reader} at the beginning of a file. It reads the entire -file with @scheme[read-inside-syntax] from Scribble's -@filepath{reader.ss}, and then wraps the result with @scheme[(module #, -@nonterm{name} (lib "doclang.ss" "scribble") ...)], where -@nonterm{name} is derived from the enclosing file's name. +@defmodule[scribble/doc]{The @schememodname[scribble/doc] language is +the same as @schememodname[scribble/doclang], except that +@scheme[read-inside-syntax] is used to read the body of the module. In +other words, the module body starts in Scribble ``text'' mode instead +of S-expression mode.} diff --git a/collects/scribblings/scribble/eval.scrbl b/collects/scribblings/scribble/eval.scrbl index eca3216c..2592e4e8 100644 --- a/collects/scribblings/scribble/eval.scrbl +++ b/collects/scribblings/scribble/eval.scrbl @@ -4,11 +4,10 @@ @title[#:tag "eval"]{Evaluation and Examples} -@declare-exporting[scribble/eval] - -The @filepath{eval.ss} library provides utilities for evaluating code at -document-build time and incorporating the results in the document, -especially to show example uses of defined procedures and syntax. +@defmodule[scribble/eval]{The @scheme[scribble/eval] library provides +utilities for evaluating code at document-build time and incorporating +the results in the document, especially to show example uses of +defined procedures and syntax.} @defform[(interaction datum ...)]{Like @scheme[schemeinput], except that the result for each input @scheme[datum] is shown on the next diff --git a/collects/scribblings/scribble/how-to.scrbl b/collects/scribblings/scribble/how-to.scrbl index 570d913b..4bec9e8e 100644 --- a/collects/scribblings/scribble/how-to.scrbl +++ b/collects/scribblings/scribble/how-to.scrbl @@ -19,7 +19,7 @@ To document a collection or @|PLaneT| package: @item{Start @filepath{manual.scrbl} like this: @verbatim[#<