Compare commits

...

7 Commits

Author SHA1 Message Date
Georges Dupéron
804abc5ed7 Fixes bug #44 (Re-provided identifiers are not tracked across submodules) 2016-08-04 18:59:42 +02:00
Matthew Flatt
aca15dcc85 Fix use of namespace-require that can create conflicts
The current expader's `namespace-require` has a bug that prevents
it from reporting a conclict when `(for-label <lib>)` creates
a conflict due to different provided bindings of the same name
at different phases from <lib>. Avoid depending on that bug.
2016-08-01 13:23:24 -06:00
Asumu Takikawa
f4f3354466 Add doc examples for history form 2016-07-21 13:50:01 -04:00
ben
7836b78809 scribble/jfp: affiliation-mark example 2016-07-11 14:53:30 -04:00
Ben Greenman
2b972d9cc9 doc: add missing index-desc field descriptions 2016-07-08 22:28:53 -04:00
Ben Greenman
5505a5557a Add language-index-desc and reader-index-desc
Subtypes of module-index-desc.
Used to tell if a module implements a #lang or a #reader module.
2016-07-08 17:56:35 -04:00
Jay McCarthy
06e254f169 Adding elsarticle 2016-06-16 16:37:07 -04:00
11 changed files with 175 additions and 20 deletions

View File

@ -55,3 +55,19 @@ If different authors have different affiliations, use
use @racket[affiliation-mark] before each different affiliation within use @racket[affiliation-mark] before each different affiliation within
a single @racket[affiliation], using @racket[(affiliation-sep)] to a single @racket[affiliation], using @racket[(affiliation-sep)] to
separate affiliations.} separate affiliations.}
Examples:
@codeblock|{
#lang scribble/jfp
@title{My First Love Story}
@((author/short "Romeo M. and Juliet C.")
"ROMEO" (affiliation-mark "1")
" and "
"JULIET" (affiliation-mark "2")
@affiliation[
"House Montague" (affiliation-mark "1")
(affiliation-sep)
"House Capulet" (affiliation-mark "2")])
}|

View File

@ -1949,6 +1949,28 @@ produced by @racket[content-expr] should normally start with a capital
letter and end with a period, but it can be a sentence fragment such letter and end with a period, but it can be a sentence fragment such
as ``Added a @racket[#:changed] form.'' as ``Added a @racket[#:changed] form.''
Examples:
@codeblock[#:keep-lang-line? #f]|{
#lang scribble/manual
@defthing[tasty-burrito burrito?]{
Compatible with the API of a sandwich, but not legally a
sandwich in Massachusetts.
@history[#:added "1.0"
#:changed "1.1" "Refactored tortilla."
#:changed "1.2" @elem{Now includes @emph{guacamole}.}]
}
}|
@doc-render-examples[
@defthing[tasty-burrito burrito?]{
Compatible with the API of a sandwich, but not legally a
sandwich in Massachusetts.
@history[#:added "1.0"
#:changed "1.1" "Refactored tortilla."
#:changed "1.2" @elem{Now includes @emph{guacamole}.}]
}]
@history[#:added "1.1"]} @history[#:added "1.1"]}
@; ------------------------------------------------------------------------ @; ------------------------------------------------------------------------
@ -2049,6 +2071,16 @@ rendered document.}
Indicates that the index entry corresponds to a module definition via Indicates that the index entry corresponds to a module definition via
@racket[defmodule] and company.} @racket[defmodule] and company.}
@deftogether[(
@defstruct[(language-index-desc module-path-index-desc) ()]{}
@defstruct[(reader-index-desc module-path-index-desc) ()]{}
)]{
Indicates that the index entry corresponds to a module definition via
@racket[defmodule] with the @racket[#:lang] or @racket[#:reader] option.
For example, a module definition via @racket[defmodulelang] has a
@racket[language-index-desc] index entry and a module definition via
@racket[defmodulereader] has a @racket[reader-index-desc] index entry.}
@defstruct[exported-index-desc ([name symbol?] @defstruct[exported-index-desc ([name symbol?]
[from-libs (listof module-path?)])]{ [from-libs (listof module-path?)])]{

View File

@ -0,0 +1,2 @@
# to avoid committing it by accident, since we can't distribute it
/elsarticle.cls

View File

@ -0,0 +1,5 @@
\newcommand{\ELSauthor}[1]{\author{#1}}
\newcommand{\ELSaddress}[1]{\address{#1}}
\newcommand{\ELSemail}[1]{\ead{#1}}
\newcommand{\ELSabstract}[1]{\begin{abstract}#1\end{abstract}}

View File

@ -0,0 +1,68 @@
#lang racket/base
(require scribble/doclang
scribble/core
racket/file
(except-in scribble/base author)
(prefix-in s/b: scribble/base)
scribble/decode
"../private/defaults.rkt"
setup/collects
scribble/html-properties
scribble/latex-properties
scribble/latex-prefix
racket/stxparam
net/ftp
file/gunzip
(for-syntax racket/base
racket/list
racket/stxparam-exptime))
(module test racket/base)
(provide (except-out (all-from-out scribble/doclang) #%module-begin)
(all-from-out scribble/base)
(rename-out [module-begin #%module-begin])
frontmatter
abstract author email address)
(define-syntax (module-begin stx)
;; No options, currently, but keep in case we want to support some:
(syntax-case* stx () (lambda (a b) (eq? (syntax-e a) (syntax-e b)))
[(_ id ws . body)
;; Skip intraline whitespace to find options:
(and (string? (syntax-e #'ws))
(regexp-match? #rx"^ *$" (syntax-e #'ws)))
#'(module-begin id . body)]
[(_ id . body)
#'(#%module-begin id (post-process) () . body)]))
(define ((post-process) doc)
(add-defaults doc
(string->bytes/utf-8 (string-append "\\documentclass{elsarticle}\n"
unicode-encoding-packages))
(scribble-file "elsarticle/style.tex")
'()
#f))
(define elsarticle-extras
(let ([abs (lambda (s)
(path->collects-relative
(collection-file-path s "scribble" "elsarticle")))])
(list
(make-tex-addition (abs "elsarticle.tex")))))
(define (LaTeX-element i)
(λ strs
(make-element (style i elsarticle-extras)
;; XXX maybe decode-content
(decode-content strs))))
(define abstract (LaTeX-element "ELSabstract"))
(define author (LaTeX-element "ELSauthor"))
(define address (LaTeX-element "ELSaddress"))
(define email (LaTeX-element "ELSemail"))
(define (frontmatter #:authors as
#:abstract a)
(paragraph (style 'author '())
(append as (list a))))

View File

@ -0,0 +1,3 @@
#lang s-exp scribble/base/reader
scribble/elsarticle/lang
#:wrapper1 (lambda (t) (cons 'doc (t)))

View File

@ -0,0 +1,3 @@
\renewcommand{\titleAndVersionAndAuthors}[3]{\begin{frontmatter}\title{#1}#3\end{frontmatter}}
\renewcommand{\titleAndEmptyVersionAndAuthors}[3]{\titleAndVersionAndAuthors{#1}{#1}{#3}}

View File

@ -5,6 +5,8 @@
(provide-structs (provide-structs
[module-path-index-desc ()] [module-path-index-desc ()]
[(language-index-desc module-path-index-desc) ()]
[(reader-index-desc module-path-index-desc) ()]
[exported-index-desc ([name symbol?] [exported-index-desc ([name symbol?]
[from-libs (listof module-path?)])] [from-libs (listof module-path?)])]
[(method-index-desc exported-index-desc) ([method-name symbol?] [(method-index-desc exported-index-desc) ([method-name symbol?]

View File

@ -114,7 +114,15 @@
(let ([ns-id (let ([ns-id
(let ([ns (make-base-empty-namespace)]) (let ([ns (make-base-empty-namespace)])
(parameterize ([current-namespace ns]) (parameterize ([current-namespace ns])
(namespace-require `(for-label ,lib)) ;; A `(namespace-require `(for-label ,lib))` can
;; fail if `lib` provides different bindings of the
;; same name at different phases. We can require phases
;; 1 and 0 separately, in which case the phase-0
;; binding shadows the phase-1 one in that case.
;; This strategy only works for documenting bindings
;; at phases 0 and 1, though.
(namespace-require `(just-meta 1 (for-label ,lib)))
(namespace-require `(just-meta 0 (for-label ,lib)))
(namespace-syntax-introduce (datum->syntax #f 'x))))]) (namespace-syntax-introduce (datum->syntax #f 'x))))])
(let ([checker (let ([checker
(lambda (id) (lambda (id)

View File

@ -221,30 +221,36 @@
(add-between (map tt pkgs) ", ")))))))))) (add-between (map tt pkgs) ", "))))))))))
(define (flow-width f) (apply max (map block-width f))) (define (flow-width f) (apply max (map block-width f)))
(define libs-specs (define libs-specs
;; make-desc : element -> flow
;; index-desc : module-path-index-desc
(let-values ([(make-desc index-desc)
(case lang
[(#f)
(values (lambda (modname) (list (racket (#,req #,modname))))
the-module-path-index-desc)]
[(#t)
(values (lambda (modname) (list (hash-lang) spacer modname))
the-language-index-desc)]
[(reader)
(values (lambda (modname) (list (racketmetafont "#reader") spacer modname))
the-reader-index-desc)]
[(just-lang)
(values (lambda (modname) (list (hash-lang) spacer modname))
the-language-index-desc)]
[else (error 'defmodule "unknown mode: ~e" lang)])])
(map (map
(lambda (name modpath) (lambda (name modpath)
(define modname (if link-target? (define modname (if link-target?
(make-defracketmodname name modpath) (make-defracketmodname name modpath index-desc)
name)) name))
(list (list
(make-flow (make-flow
(list (list
(make-omitable-paragraph (make-omitable-paragraph
(cons (cons spacer (make-desc modname)))))
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)) 'cont))
names names
modpaths)) modpaths)))
(make-splice (make-splice
(cons (cons
@ -278,8 +284,10 @@
(flow-paragraphs (decode-flow content))))))) (flow-paragraphs (decode-flow content)))))))
(define the-module-path-index-desc (make-module-path-index-desc)) (define the-module-path-index-desc (make-module-path-index-desc))
(define the-language-index-desc (make-language-index-desc))
(define the-reader-index-desc (make-reader-index-desc))
(define (make-defracketmodname mn mp) (define (make-defracketmodname mn mp index-desc)
(let ([name-str (datum-intern-literal (element->string mn))] (let ([name-str (datum-intern-literal (element->string mn))]
[path-str (datum-intern-literal (element->string mp))]) [path-str (datum-intern-literal (element->string mp))])
(make-index-element #f (make-index-element #f
@ -287,7 +295,7 @@
(intern-taglet `(mod-path ,path-str)) (intern-taglet `(mod-path ,path-str))
(list name-str) (list name-str)
(list mn) (list mn)
the-module-path-index-desc))) index-desc)))
(define-syntax (declare-exporting stx) (define-syntax (declare-exporting stx)
(syntax-parse stx (syntax-parse stx

View File

@ -92,7 +92,8 @@
(let ([v (resolve-get/tentative part ri `(form ,eb))]) (let ([v (resolve-get/tentative part ri `(form ,eb))])
(or (and v `(form ,eb)) (or (and v `(form ,eb))
`(def ,eb))))] `(def ,eb))))]
[need-result? (and need-result? (not here-result))]) [need-result? (and need-result? (not here-result))]
[rmp-name (resolved-module-path-name rmp)])
;; Even if we've found `here-result', look deeper so that we have ;; Even if we've found `here-result', look deeper so that we have
;; consistent `dep' results. ;; consistent `dep' results.
(let ([nest-result (let ([nest-result
@ -102,7 +103,9 @@
;; Not defined through this path, so keep looking ;; Not defined through this path, so keep looking
(loop queue rqueue need-result?) (loop queue rqueue need-result?)
;; Check parents, if we can get the source: ;; Check parents, if we can get the source:
(if (and (path? (resolved-module-path-name rmp)) (if (and (or (path? rmp-name)
(and (list? rmp-name)
(path? (car rmp-name))))
(not (hash-ref seen (cons export-phase rmp) #f))) (not (hash-ref seen (cons export-phase rmp) #f)))
(let ([exports (let ([exports
(hash-ref (hash-ref
@ -114,7 +117,12 @@
(lambda () (lambda ()
;; First, try using bytecode: ;; First, try using bytecode:
(module-compiled-exports (module-compiled-exports
(get-module-code (resolved-module-path-name rmp) (get-module-code (if (list? rmp-name)
(car rmp-name)
rmp-name)
#:submodule-path (if (list? rmp-name)
(cdr rmp-name)
'())
#:choose (lambda (src zo so) 'zo)))) #:choose (lambda (src zo so) 'zo))))
(lambda () (lambda ()
(try (try