From a5888ac26d2a7e0115aa09bb1d00e9b70b49eed4 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 10 Jan 2008 23:42:23 +0000 Subject: [PATCH] doc build automatically go to main doc dir; added doc categories for start doc; fix locale-sensitive byte<->string ops to actually use the locale; other small edits svn: r8286 original commit: 1e069dd2bcd7b1dd84213f6943f6f549681219f8 --- collects/scribble/manual.ss | 5 ++- collects/scribblings/scribble/how-to.scrbl | 22 ++++++------- collects/scribblings/scribble/info.ss | 3 +- collects/scribblings/scribble/manual.scrbl | 36 +++++++++++++++++++--- 4 files changed, 48 insertions(+), 18 deletions(-) diff --git a/collects/scribble/manual.ss b/collects/scribble/manual.ss index 3fba5418..c47fc9b7 100644 --- a/collects/scribble/manual.ss +++ b/collects/scribble/manual.ss @@ -1771,6 +1771,9 @@ (define (seclink tag #:underline? [u? #t] #:doc [doc #f] . s) (make-link-element (if u? #f "plainlink") (decode-content s) `(part ,(doc-prefix doc tag)))) + (define (other-manual #:underline? [u? #t] doc) + (secref #:doc doc #:underline? u? "top")) + (define (*schemelink stx-id id . s) (let ([content (decode-content s)]) (make-delayed-element @@ -1786,7 +1789,7 @@ (define-syntax schemelink (syntax-rules () [(_ id . content) (*schemelink (quote-syntax id) 'id . content)])) - (provide secref seclink schemelink) + (provide secref seclink schemelink other-manual) (define (pidefterm . s) (let ([c (apply defterm s)]) diff --git a/collects/scribblings/scribble/how-to.scrbl b/collects/scribblings/scribble/how-to.scrbl index afcdbd05..cee2c9a9 100644 --- a/collects/scribblings/scribble/how-to.scrbl +++ b/collects/scribblings/scribble/how-to.scrbl @@ -19,8 +19,10 @@ To document a collection or @|PLaneT| package: @itemize{ @item{Create a file in your collection or planet package with the - file extension @filepath{.scrbl}. The remainder of these - instructions assume that the file is called @filepath{manual.scrbl}.} + file extension @filepath{.scrbl}. Beware that the file name you + choose will determine the output directory's name. The + remainder of these instructions assume that the file is called + @filepath{manual.scrbl}.} @item{Start @filepath{manual.scrbl} like this: @verbatim[#<