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
This commit is contained in:
Matthew Flatt 2008-01-10 23:42:23 +00:00
parent 6c34d346a7
commit a5888ac26d
4 changed files with 48 additions and 18 deletions

View File

@ -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)])

View File

@ -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[#<<EOS
@ -67,15 +69,13 @@ EOS
collection, optionally supply @Flag{l} followed by the
collection name to limit the build process to that collection.}
@item{The generated documentation is
@filepath{compiled/doc/manual/index.html} within the
collection or @|PLaneT| package directory.
If you want the output to be relative to the PLT Scheme
documentation directory (which is recommend only for those who
produce the ``official'' PLT Scheme distribution, and even
then only in certain cases), add the @scheme['main-doc] option
to the @scheme[scribblings] definition in @filepath{info.ss}.}
@item{The generated documentation is normally
@filepath{doc/manual/index.html} within the collection or
@|PLaneT| package directory. If the collection in the PLT
Scheme installation's the main @filepath{collects} directory,
however, then the documentation is generated as
@filepath{manual/index.html} in the installation's main
@filepath{doc} directory.}
}

View File

@ -1,3 +1,4 @@
(module info setup/infotab
(define name "Scribblings: Scribble")
(define scribblings '(("scribble.scrbl" (multi-page main-doc)))))
(define scribblings '(("scribble.scrbl" (multi-page main-doc))))
(define doc-categories '(tool)))

View File

@ -638,17 +638,43 @@ and @litchar{^} for subscripts and superscripts.}
@; ------------------------------------------------------------------------
@section[#:tag "scribble:manual:section-links"]{Links}
@defproc[(secref [tag string?]) element?]{
@defproc[(secref [tag string?]
[#:doc module-path (or/c module-path? false/c) #f]
[#:underline? underline? any/c #t])
element?]{
Inserts the hyperlinked title of the section tagged @scheme[tag], but
@scheme{aux-element} items in the title content are omitted in the
hyperlink label.}
hyperlink label.
If @scheme[module-path] is provided, the @scheme[tag] refers to a tag
with a prefix determined by @scheme[module-path]. When
@exec{setup-plt} renders documentation, it automatically adds a tag
prefix to the document based on the source module. Thus, for example,
to refer to a section of the PLT Scheme reference,
@scheme[module-path] would be @scheme['(lib
"scribblings/reference/reference.scrbl")].
If @scheme[underline?] is @scheme[#f], then the hyperlink is rendered
in HTML without an underline.}
@defproc[(seclink [tag string?] [pre-content any/c] ...) element?]{
@defproc[(seclink [tag string?]
[#:doc module-path (or/c module-path? false/c) #f]
[#:underline? underline? any/c #t]
[pre-content any/c] ...) element?]{
The @tech{decode}d @scheme[pre-content] is hyperlinked to the section
tagged @scheme[tag].}
Like @scheme[secref], but the link label is the @tech{decode}d
@scheme[pre-content] insteda of the target section's name.}
@defproc[(other-manual [module-path module-path?]
[#:underline? underline? any/c #t])
element?]{
Like @scheme[secref] for the document's implicit @scheme["top"]
tag. Use this function to refer to a whole manual instead of
@scheme[secref], in case a special style in the future is used for
manual titles.}
@defproc[(schemelink [id symbol?] [pre-content any/c] ...) element?]{