Adding customization of command-char to web-server/template

This entails adding it to include/text and read-syntax-inside as well.

original commit: 73232afd9934f5b7918d29414d835f33f21aa57c
This commit is contained in:
Jay McCarthy 2013-05-08 10:52:04 -06:00
parent fff0344f4e
commit bb9ffefd74
2 changed files with 31 additions and 19 deletions

View File

@ -172,15 +172,25 @@
#'(process-begin/text begin/collect begin expr ...)]))
;; include for templates
(require (for-syntax scheme/base (prefix-in scribble: "../reader.rkt"))
(require (for-syntax scheme/base (prefix-in scribble: "../reader.rkt") syntax/parse)
scheme/include)
(define-syntax-rule (include/text path-spec)
(define-syntax (include/text stx)
(syntax-case stx ()
[(_ path-spec)
(syntax/loc stx
(include/text #:command-char #f path-spec))]
[(_ #:command-char command-char path-spec)
(syntax/loc stx
(begin/text
(include-at/relative-to/reader path-spec path-spec path-spec
(let ([xs #f])
(include-at/relative-to/reader
path-spec path-spec path-spec
(let ([xs #f]
[command-char-v command-char])
(λ (src inp)
(unless xs
(set! xs (scribble:read-syntax-inside src inp))
(set! xs (if command-char-v
(scribble:read-syntax-inside #:command-char command-char-v src inp)
(scribble:read-syntax-inside src inp)))
(when (syntax? xs) (set! xs (or (syntax->list xs) (list xs)))))
(if (null? xs)
eof
@ -190,4 +200,4 @@
(let ([p (syntax-property x 'scribble)])
(and (pair? p) (eq? (car p) 'newline))))
eof ; throw away the last newline from the included file
x))))))))
x))))))))]))

View File

@ -188,10 +188,12 @@ for reading.
@defproc[(read-inside [in input-port? (current-input-port)]) any]{}
@defproc[(read-syntax-inside [source-name any/c (object-name in)]
[in input-port? (current-input-port)])
[in input-port? (current-input-port)]
[#:command-char command-char char? #\@])
(or/c syntax? eof-object?)]{
These @racketid[-inside] variants parse as if starting inside a
@litchar["@{"]...@litchar["}"], and they return a (syntactic) list.
The @racket[command-char] is used to customize the readtable.
Useful for implementing languages that are textual by default (see
@filepath{docreader.rkt} for example).
}