show package for each module in documentation
The package is normally determined automatcially, but the `defmodule' form also supports a `#:packages' option. original commit: 5457f72391d83615e21924537e3a60749232d1f6
This commit is contained in:
parent
0170b0a672
commit
0e5dd24c61
|
@ -538,7 +538,8 @@ corresponding @racketidfont{racket...} binding.}
|
||||||
(code:line #:use-sources (src-module-path ...))
|
(code:line #:use-sources (src-module-path ...))
|
||||||
(code:line #:link-target? link-target?-expr)
|
(code:line #:link-target? link-target?-expr)
|
||||||
#:lang
|
#:lang
|
||||||
#:reader])]{
|
#:reader
|
||||||
|
(code:line #:packages (pkg-expr ...))])]{
|
||||||
|
|
||||||
Produces a sequence of flow elements (in a @racket[splice])
|
Produces a sequence of flow elements (in a @racket[splice])
|
||||||
to start the documentation for a module---or for multiple modules, if
|
to start the documentation for a module---or for multiple modules, if
|
||||||
|
@ -590,6 +591,13 @@ If @racket[#:reader] is provided, then the module name is shown after
|
||||||
@racketmetafont{#reader} to indicate that the module path is intended
|
@racketmetafont{#reader} to indicate that the module path is intended
|
||||||
for use as a reader module.
|
for use as a reader module.
|
||||||
|
|
||||||
|
By default, the package (if any) that supplies the documented module
|
||||||
|
is determined automatically, but a set of providing packages can be
|
||||||
|
specified explicitly with @racket[#:packages]. Each @racket[pkg-expr]
|
||||||
|
result is passed on to a function like @racket[tt] for
|
||||||
|
typesetting. Provide an empty sequence after @racket[#:packages] to
|
||||||
|
suppress any package name in the output.
|
||||||
|
|
||||||
Each @racket[option] form can appear at most once, and @racket[#:lang]
|
Each @racket[option] form can appear at most once, and @racket[#:lang]
|
||||||
and @racket[#:reader] are mutually exclusive.
|
and @racket[#:reader] are mutually exclusive.
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,14 @@
|
||||||
"../struct.rkt"
|
"../struct.rkt"
|
||||||
"../basic.rkt"
|
"../basic.rkt"
|
||||||
"../manual-struct.rkt"
|
"../manual-struct.rkt"
|
||||||
|
(only-in "../core.rkt" table-columns)
|
||||||
"manual-ex.rkt"
|
"manual-ex.rkt"
|
||||||
"manual-style.rkt"
|
"manual-style.rkt"
|
||||||
"manual-scheme.rkt"
|
"manual-scheme.rkt"
|
||||||
|
"manual-utils.rkt"
|
||||||
|
setup/main-collects
|
||||||
|
pkg/path
|
||||||
|
racket/list
|
||||||
(for-syntax scheme/base
|
(for-syntax scheme/base
|
||||||
syntax/parse)
|
syntax/parse)
|
||||||
(for-label scheme/base))
|
(for-label scheme/base))
|
||||||
|
@ -38,8 +43,6 @@
|
||||||
(make-element (make-style #f (list (make-background-color-property "yellow"))) content))
|
(make-element (make-style #f (list (make-background-color-property "yellow"))) content))
|
||||||
;; ---------------------------------------------------------------------------------------------------
|
;; ---------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
(define spacer (hspace 1))
|
|
||||||
|
|
||||||
(begin-for-syntax
|
(begin-for-syntax
|
||||||
(define-splicing-syntax-class link-target?-kw
|
(define-splicing-syntax-class link-target?-kw
|
||||||
#:description "#:link-target? keyword"
|
#:description "#:link-target? keyword"
|
||||||
|
@ -57,6 +60,7 @@
|
||||||
#:defaults ([link-target-expr #'#t]))
|
#:defaults ([link-target-expr #'#t]))
|
||||||
(~optional (~seq #:use-sources (pname ...)))
|
(~optional (~seq #:use-sources (pname ...)))
|
||||||
(~optional (~seq #:module-paths (modpath ...)))
|
(~optional (~seq #:module-paths (modpath ...)))
|
||||||
|
(~optional (~seq #:packages (pkg ...)))
|
||||||
(~optional (~and #:no-declare no-declare))
|
(~optional (~and #:no-declare no-declare))
|
||||||
(~optional (~or (~and #:lang language)
|
(~optional (~or (~and #:lang language)
|
||||||
(~and #:reader readr))))
|
(~and #:reader readr))))
|
||||||
|
@ -81,6 +85,15 @@
|
||||||
[modpaths (if (attribute modpath)
|
[modpaths (if (attribute modpath)
|
||||||
#'(list (racketmodname modpath) ...)
|
#'(list (racketmodname modpath) ...)
|
||||||
#'#f)]
|
#'#f)]
|
||||||
|
[packages (if (attribute pkg)
|
||||||
|
#'(list pkg ...)
|
||||||
|
#'#f)]
|
||||||
|
[module-path (let ([l (syntax->list
|
||||||
|
(if (attribute modpath)
|
||||||
|
#'(modpath ...)
|
||||||
|
#'(name2 ...)))])
|
||||||
|
(and (pair? l)
|
||||||
|
(car l)))]
|
||||||
[req (if (attribute req)
|
[req (if (attribute req)
|
||||||
#'req
|
#'req
|
||||||
#'(racket require))]
|
#'(racket require))]
|
||||||
|
@ -92,6 +105,8 @@
|
||||||
decl-exp ...
|
decl-exp ...
|
||||||
(*defmodule (list show-name ...)
|
(*defmodule (list show-name ...)
|
||||||
modpaths
|
modpaths
|
||||||
|
'module-path
|
||||||
|
packages
|
||||||
link-target-expr
|
link-target-expr
|
||||||
kind
|
kind
|
||||||
(list . content)
|
(list . content)
|
||||||
|
@ -167,35 +182,83 @@
|
||||||
|
|
||||||
;; ----------------------------------------
|
;; ----------------------------------------
|
||||||
|
|
||||||
(define (*defmodule names modpaths link-target? lang content req)
|
(define (*defmodule names modpaths module-path packages link-target? lang content req)
|
||||||
(let ([modpaths (or modpaths names)])
|
(let ([modpaths (or modpaths names)])
|
||||||
|
(define pkg-spec
|
||||||
|
(let ([pkgs
|
||||||
|
(or packages
|
||||||
|
(let* ([path (with-handlers ([exn:missing-module? (lambda (exn) #f)])
|
||||||
|
(and module-path
|
||||||
|
(resolved-module-path-name
|
||||||
|
(module-path-index-resolve (module-path-index-join module-path #f)))))]
|
||||||
|
[pkg (and path
|
||||||
|
(or (path->pkg path)
|
||||||
|
(let ([c (path->main-collects-relative path)])
|
||||||
|
(and c
|
||||||
|
"base"))))])
|
||||||
|
(if pkg
|
||||||
|
(list pkg)
|
||||||
|
null)))])
|
||||||
|
(and pkgs
|
||||||
|
(pair? pkgs)
|
||||||
|
(make-flow
|
||||||
|
(list
|
||||||
|
(make-omitable-paragraph
|
||||||
|
(list (elem #:style "RpackageSpec"
|
||||||
|
(list* (smaller (format "package~a:"
|
||||||
|
(if (null? (cdr pkgs))
|
||||||
|
""
|
||||||
|
"s")))
|
||||||
|
" "
|
||||||
|
(add-between (map tt pkgs) ", "))))))))))
|
||||||
|
(define (flow-width f) (apply max (map block-width f)))
|
||||||
|
(define libs-specs
|
||||||
|
(map
|
||||||
|
(lambda (name modpath)
|
||||||
|
(define modname (if link-target?
|
||||||
|
(make-defracketmodname name modpath)
|
||||||
|
name))
|
||||||
|
(list
|
||||||
|
(make-flow
|
||||||
|
(list
|
||||||
|
(make-omitable-paragraph
|
||||||
|
(cons
|
||||||
|
spacer
|
||||||
|
(case lang
|
||||||
|
[(#f)
|
||||||
|
(list (racket (#,req #,modname)))]
|
||||||
|
[(#t)
|
||||||
|
(list (hash-lang) spacer modname)]
|
||||||
|
[(reader)
|
||||||
|
(list (racketmetafont "#reader") spacer modname)]
|
||||||
|
[(just-lang)
|
||||||
|
(list (hash-lang) spacer modname)]
|
||||||
|
[else (error 'defmodule "unknown mode: ~e" lang)])))))
|
||||||
|
'cont))
|
||||||
|
names
|
||||||
|
modpaths))
|
||||||
|
|
||||||
(make-splice
|
(make-splice
|
||||||
(cons
|
(cons
|
||||||
(make-table
|
(make-table
|
||||||
"defmodule"
|
(make-style "defmodule"
|
||||||
(map
|
(list (table-columns (list
|
||||||
(lambda (name modpath)
|
(make-style #f '(left))
|
||||||
(define modname (if link-target?
|
(make-style #f '(right))))))
|
||||||
(make-defracketmodname name modpath)
|
(if pkg-spec
|
||||||
name))
|
(if ((+ (flow-width (caar libs-specs))
|
||||||
(list
|
(flow-width pkg-spec)
|
||||||
(make-flow
|
8)
|
||||||
(list
|
. < . (current-display-width))
|
||||||
(make-omitable-paragraph
|
(cons
|
||||||
(cons
|
(cons (car (car libs-specs))
|
||||||
spacer
|
(list pkg-spec))
|
||||||
(case lang
|
(cdr libs-specs))
|
||||||
[(#f)
|
(append
|
||||||
(list (racket (#,req #,modname)))]
|
libs-specs
|
||||||
[(#t)
|
(list (list (make-flow (list (make-omitable-paragraph (list 'nbsp))))
|
||||||
(list (hash-lang) spacer modname)]
|
pkg-spec))))
|
||||||
[(reader)
|
libs-specs))
|
||||||
(list (racketmetafont "#reader") spacer modname)]
|
|
||||||
[(just-lang)
|
|
||||||
(list (hash-lang) spacer modname)]
|
|
||||||
[else (error 'defmodule "unknown mode: ~e" lang)])))))))
|
|
||||||
names
|
|
||||||
modpaths))
|
|
||||||
(append (if link-target?
|
(append (if link-target?
|
||||||
(map (lambda (modpath)
|
(map (lambda (modpath)
|
||||||
(make-part-tag-decl
|
(make-part-tag-decl
|
||||||
|
|
|
@ -206,6 +206,10 @@
|
||||||
margin: 0em 0em 0em 0em;
|
margin: 0em 0em 0em 0em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.RpackageSpec {
|
||||||
|
padding-right: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
/* ---------------------------------------- */
|
/* ---------------------------------------- */
|
||||||
/* For background labels */
|
/* For background labels */
|
||||||
|
|
||||||
|
|
|
@ -67,3 +67,5 @@
|
||||||
|
|
||||||
\newcommand{\RBackgroundLabel}[1]{}
|
\newcommand{\RBackgroundLabel}[1]{}
|
||||||
\newenvironment{RBackgroundLabelInner}{}{}
|
\newenvironment{RBackgroundLabelInner}{}{}
|
||||||
|
|
||||||
|
\newcommand{\RpackageSpec}[1]{\hspace{5ex} #1}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user