scribble: add #:indirect option to defmodule

Also, fix up some command-line argument handling for `scribble`.

original commit: b8f6311e4b082cf7a5ce33f64d0dafeb9ffcfb36
This commit is contained in:
Matthew Flatt 2013-09-19 10:52:54 -05:00
parent 837249163c
commit 82b85a9155
4 changed files with 23 additions and 15 deletions

View File

@ -537,6 +537,7 @@ corresponding @racketidfont{racket...} binding.}
#:no-declare #:no-declare
(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)
#:indirect
#:lang #:lang
#:reader #:reader
(code:line #:packages (pkg-expr ...))])]{ (code:line #:packages (pkg-expr ...))])]{
@ -579,6 +580,12 @@ sub-parts). These link targets are referenced via
@racket[racketmodname], which thus points to the enclosing section, @racket[racketmodname], which thus points to the enclosing section,
rather than the individual @racket[module-path]s. rather than the individual @racket[module-path]s.
Specifying @racket[#:indirect] normally makes sense only when
@racket[#:link-target?] is specified with a true value. Specifying
@racket[#:indirect] makes the module path that is displayed (and that
normally refers to some other declaration of the module) use
@racket[racketmodname] with @racket[#:indirect].
If @racket[#:lang] is provided as an option, then the module name is If @racket[#:lang] is provided as an option, then the module name is
shown after @hash-lang[] (instead of in a @racket[require] form) to shown after @hash-lang[] (instead of in a @racket[require] form) to
indicate that the @racket[module-path]s are suitable for use by either indicate that the @racket[module-path]s are suitable for use by either

View File

@ -1220,7 +1220,8 @@
(and ext? external-tag-path)) (and ext? external-tag-path))
;; Redirected to search: ;; Redirected to search:
(url->string* (url->string*
(let ([u (string->url external-tag-path)]) (let ([u (string->url (or external-tag-path
"http://doc.racket-lang.com/"))])
(struct-copy (struct-copy
url url
u u

View File

@ -43,13 +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))
;; --------------------------------------------------------------------------------------------------- ;; ---------------------------------------------------------------------------------------------------
(begin-for-syntax
(define-splicing-syntax-class link-target?-kw
#:description "#:link-target? keyword"
(pattern (~seq #:link-target? expr))
(pattern (~seq)
#:with expr #'#t)))
(define-syntax (defmodule stx) (define-syntax (defmodule stx)
(syntax-parse stx (syntax-parse stx
[(_ (~or (~seq #:require-form req) [(_ (~or (~seq #:require-form req)
@ -58,6 +51,7 @@
name) name)
(~or (~optional (~seq #:link-target? link-target-expr) (~or (~optional (~seq #:link-target? link-target-expr)
#:defaults ([link-target-expr #'#t])) #:defaults ([link-target-expr #'#t]))
(~optional (~and #:indirect indirect))
(~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 (~seq #:packages (pkg ...)))
@ -71,7 +65,10 @@
#'(name2 ...))] #'(name2 ...))]
[(pname ...) (if (attribute pname) [(pname ...) (if (attribute pname)
#'(pname ...) #'(pname ...)
#'())]) #'())]
[(indirect-kw ...) (if (attribute indirect)
#'(#:indirect)
#'())])
(with-syntax ([(decl-exp ...) (with-syntax ([(decl-exp ...)
(if (attribute no-declare) (if (attribute no-declare)
#'() #'()
@ -83,7 +80,7 @@
[(attribute readr) #''reader] [(attribute readr) #''reader]
[else #'#f])] [else #'#f])]
[modpaths (if (attribute modpath) [modpaths (if (attribute modpath)
#'(list (racketmodname modpath) ...) #'(list (racketmodname modpath indirect-kw ...) ...)
#'#f)] #'#f)]
[packages (if (attribute pkg) [packages (if (attribute pkg)
#'(list pkg ...) #'(list pkg ...)
@ -100,7 +97,7 @@
[(show-name ...) [(show-name ...)
(if (attribute modpath) (if (attribute modpath)
#'(name2 ...) #'(name2 ...)
#'((racketmodname name2) ...))]) #'((racketmodname name2 indirect-kw ...) ...))])
#'(begin #'(begin
decl-exp ... decl-exp ...
(*defmodule (list show-name ...) (*defmodule (list show-name ...)

View File

@ -13,8 +13,8 @@
(define multi-html:render-mixin (define multi-html:render-mixin
(lambda (%) (html:render-multi-mixin (html:render-mixin %)))) (lambda (%) (html:render-multi-mixin (html:render-mixin %))))
(define current-render-mixin (make-parameter text:render-mixin)) (define current-render-mixin (make-parameter html:render-mixin))
(define current-html (make-parameter #f)) (define current-html (make-parameter #t))
(define current-dest-directory (make-parameter #f)) (define current-dest-directory (make-parameter #f))
(define current-dest-name (make-parameter #f)) (define current-dest-name (make-parameter #f))
(define current-info-output-file (make-parameter #f)) (define current-info-output-file (make-parameter #f))
@ -35,8 +35,6 @@
(let ([v (read i)]) (let ([v (read i)])
(and (eof-object? (read i)) v))))) (and (eof-object? (read i)) v)))))
(current-render-mixin html:render-mixin)
(define (run) (define (run)
(command-line (command-line
#:program (short-program+command-name) #:program (short-program+command-name)
@ -48,17 +46,22 @@
(current-html #t) (current-html #t)
(current-render-mixin multi-html:render-mixin)] (current-render-mixin multi-html:render-mixin)]
[("--latex") "generate LaTeX-format output" [("--latex") "generate LaTeX-format output"
(current-html #f)
(current-render-mixin latex:render-mixin)] (current-render-mixin latex:render-mixin)]
[("--pdf") "generate PDF-format output (with PDFLaTeX)" [("--pdf") "generate PDF-format output (with PDFLaTeX)"
(current-html #f)
(current-render-mixin pdf:render-mixin)] (current-render-mixin pdf:render-mixin)]
[("--latex-section") n "generate LaTeX-format output for section depth <n>" [("--latex-section") n "generate LaTeX-format output for section depth <n>"
(current-html #f)
(let ([v (string->number n)]) (let ([v (string->number n)])
(unless (exact-nonnegative-integer? v) (unless (exact-nonnegative-integer? v)
(raise-user-error 'scribble (format "bad section depth: ~a" n))) (raise-user-error 'scribble (format "bad section depth: ~a" n)))
(current-render-mixin (latex:make-render-part-mixin v)))] (current-render-mixin (latex:make-render-part-mixin v)))]
[("--text") "generate text-format output" [("--text") "generate text-format output"
(current-html #f)
(current-render-mixin text:render-mixin)] (current-render-mixin text:render-mixin)]
[("--markdown") "generate markdown-format output" [("--markdown") "generate markdown-format output"
(current-html #f)
(current-render-mixin markdown:render-mixin)] (current-render-mixin markdown:render-mixin)]
#:once-each #:once-each
[("--dest") dir "write output in <dir>" [("--dest") dir "write output in <dir>"