scribble-enhanced/pkgs/scribble-pkgs/scribble-lib/scribble/lncs/lang.rkt
Matthew Flatt f0fd7106e3 move "props" test configs to test submodules or "info.rkt" files
The "props" file still has

 * ".rkt" `drdr:timeout` entries, needed until DrDr uses submodules and
   "info.rkt" files; although timeout information has been put in
   submodules for `raco test`, DrDr uses `raco test` in a way that does not
   enable timeouts, so that DrDr can implement timeouts itself (and record
   when a test times out)

 * ".rkt" `drdr:random #t` entries; not sure what to do with these, yet

 * ".rkt" `responsible` entries; not sure what to do with these, yet

 * ".rktl" `drdr:command-line #f` entries, needed until all ".rktl" files
   are disabled in DrDr

The following files were previously disabled for DrDr testing, but were
intentionally left as enabled with these changes:

pkgs/racket-pkgs/racket-test/tests/pkg/shelly.rkt
pkgs/racket-pkgs/racket-test/tests/pkg/util.rkt
pkgs/racket-pkgs/racket-test/tests/pkg/info.rkt
pkgs/racket-pkgs/racket-test/tests/pkg/basic-index.rkt
pkgs/racket-pkgs/racket-test/tests/racket/link.rkt
pkgs/racket-pkgs/racket-test/tests/racket/embed-in-c.rkt
pkgs/racket-pkgs/racket-doc/ffi/examples/use-c-printf.rkt
pkgs/racket-pkgs/racket-doc/ffi/examples/c-printf.rkt
pkgs/parser-tools-pkgs/parser-tools-lib/parser-tools/private-lex/error-tests.rkt
pkgs/mysterx/mysterx.rkt
pkgs/mysterx/main.rkt
pkgs/games/gobblet/test-model.rkt
pkgs/games/gobblet/test-explore.rkt
pkgs/games/gobblet/robot.rkt
pkgs/games/gobblet/check.rkt
pkgs/db-pkgs/db-lib/db/private/odbc/main.rkt
pkgs/db-pkgs/db-lib/db/private/odbc/ffi.rkt
pkgs/db-pkgs/db-lib/db/private/odbc/dbsystem.rkt
pkgs/db-pkgs/db-lib/db/private/odbc/connection.rkt
pkgs/distributed-places-pkgs/distributed-places-lib/racket/place/distributed/examples/hello-world.rkt
pkgs/redex-pkgs/redex-lib/redex/private/compiler/match.rkt
pkgs/redex-pkgs/redex-lib/redex/private/compiler/match.rkt
pkgs/htdp-pkgs/htdp-test/2htdp/utest/balls.rkt
pkgs/gui-pkgs/gui-test/framework/tests/test-suite-utils.rkt
pkgs/games/paint-by-numbers/raw-problems/size-calculation.rkt
pkgs/db-pkgs/db-lib/db/odbc.rkt
pkgs/compatibility-pkgs/compatibility-lib/mzlib/traceld.rkt
pkgs/cext-lib/dynext/private/stdio.rkt
pkgs/db-pkgs/db-lib/db/odbc.rkt
racket/collects/ffi/unsafe/objc.rkt
racket/collects/ffi/objc.rkt
pkgs/racket-pkgs/racket-test/tests/pkg/tests-db.rkt
pkgs/racket-pkgs/racket-test/tests/pkg/test-docs.rkt
pkgs/racket-pkgs/racket-test/tests/pkg/test-catalogs-api.rkt
pkgs/gui-pkg-manager-pkgs/gui-pkg-manager-lib/pkg/gui/main.rkt
pkgs/redex-pkgs/redex-lib/redex/private/compiler/redextomatrix.rkt
pkgs/typed-racket-pkgs/typed-racket-lib/typed-racket/base-env/base-special-env.rkt
pkgs/planet-pkgs/planet-test/tests/planet/version.rkt
pkgs/planet-pkgs/planet-test/tests/planet/test-docs-complete.rkt
pkgs/planet-pkgs/planet-test/tests/planet/lang.rkt
pkgs/planet-pkgs/planet-test/tests/planet/docs-build.rkt
pkgs/drracket-pkgs/drracket-test/tests/drracket/follow-log.rkt
pkgs/drracket-pkgs/drracket/drracket/private/dock-icon.rkt
pkgs/drracket-pkgs/drracket-test/tests/drracket/tool-lib-and-sig.rkt

original commit: e226ad66c5fb6095d5702e5c47f5c7cf73e914f5
2013-12-30 12:15:18 -07:00

194 lines
6.8 KiB
Racket

#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])
abstract include-abstract
authors author
institute institutes
email)
(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 cls-file
(let ([p (scribble-file "lncs/llncs.cls")])
(if (file-exists? (collects-relative->path p))
p
(downloaded-file "llncs.cls"))))
(define ((post-process) doc)
(add-defaults doc
(string->bytes/utf-8 (string-append "\\documentclass{llncs}\n"
unicode-encoding-packages))
(scribble-file "lncs/style.tex")
(list cls-file)
#f))
(define lncs-extras
(let ([abs (lambda (s)
(path->collects-relative
(collection-file-path s "scribble" "lncs")))])
(list
(make-css-addition (abs "lncs.css"))
(make-tex-addition (abs "lncs.tex")))))
(unless (or (not (path? cls-file))
(file-exists? cls-file))
(log-error (format "File not found: ~a" cls-file))
(define site "ftp.springer.de")
(define path "pub/tex/latex/llncs/latex2e")
(define file "llncs2e.zip")
(log-error (format "Downloading via ftp://~a/~a/~a..." site path file))
(define c (ftp-establish-connection site 21 "anonymous" "user@racket-lang.org"))
(ftp-cd c path)
(make-directory* (find-system-path 'temp-dir))
(ftp-download-file c (find-system-path 'temp-dir) file)
(ftp-close-connection c)
(define z (build-path (find-system-path 'temp-dir) file))
;; Poor man's unzip (replace it when we have an `unzip' library):
(define i (open-input-file z))
(define (skip n) (file-position i (+ (file-position i) n)))
(define (get n)
(define s (read-bytes n i))
(unless (and (bytes? s) (= n (bytes-length s)))
(error "unexpected end of file"))
s)
(let loop ()
(cond
[(equal? #"PK\3\4" (get 4))
;; local file header
(skip 2)
(define data-desc? (bitwise-bit-set? (bytes-ref (get 1) 0) 3))
(skip 11)
(define sz (integer-bytes->integer (get 4) #f #f))
(skip 4)
(define name-sz (integer-bytes->integer (get 2) #f #f))
(define extra-sz (integer-bytes->integer (get 2) #f #f))
(define name (bytes->string/utf-8 (get name-sz) #\?))
(skip extra-sz)
(if (equal? name "llncs.cls")
(call-with-output-file cls-file
(lambda (o)
(inflate i o)))
(begin
(skip sz)
(when data-desc?
skip 12)
(loop)))]
[else (error "didn't find file in archive")]))
(close-input-port i)
(delete-file z))
;; ----------------------------------------
;; Abstracts:
(define abstract-style (make-style "abstract" lncs-extras))
(define (abstract . strs)
(make-nested-flow
abstract-style
(decode-flow strs)))
(define (extract-abstract p)
(unless (part? p)
(error 'include-abstract "doc binding is not a part: ~e" p))
(unless (null? (part-parts p))
(error 'include-abstract "abstract part has sub-parts: ~e" (part-parts p)))
(when (part-title-content p)
(error 'include-abstract "abstract part has title content: ~e" (part-title-content p)))
(part-blocks p))
(define-syntax-rule (include-abstract mp)
(begin
(require (only-in mp [doc abstract-doc]))
(make-nested-flow abstract-style (extract-abstract abstract-doc))))
;; ----------------------------------------
;; Author
(define-syntax (author stx)
(raise-syntax-error 'author "can only be used inside 'authors'" stx))
(define-syntax (authors stx)
(syntax-case stx (author)
[(_ (author . args) ...)
#`(paragraph
(style 'author '())
(make-element (style "LNCSauthor" lncs-extras)
(decode-content
(list
#,@(apply
append
(add-between
(for/list ([stx (in-list (syntax->list #'(args ...)))])
(syntax-case stx ()
[(#:inst string rest ...)
(append (syntax->list #'(rest ...))
(list #'(element (style "LNCSinst" lncs-extras) (decode-content (list string)))))]
[(rest ...)
(syntax->list #'(rest ...))]))
(list #'(element (style "LNCSand" lncs-extras) '()))))))))]
[(_ . rest)
(raise-syntax-error 'authors "expected a sequence of authors" stx)]))
(define-syntax-parameter email-ok #f)
(define-syntax (institute stx)
(raise-syntax-error #f "can only be used inside 'institutes'" stx))
(define-syntax (institutes stx)
(syntax-case stx (author)
[(_ (inst . args) ...)
#`(syntax-parameterize
((email-ok #t))
(paragraph
(style 'author '())
(make-element (style "LNCSinstitutes" lncs-extras)
(decode-content
(list
#,@(apply
append
(add-between
(for/list ([stx (in-list (syntax->list #'(args ...)))])
(syntax-case stx ()
[(rest ...)
(syntax->list #'(rest ...))]))
(list #'(element (style "LNCSand" lncs-extras) '())))))))))]
[(_ . rest)
(raise-syntax-error 'institutes "expected a sequence of institutes" stx)]))
(define-syntax (email stx)
(syntax-case stx ()
[(_ . args)
(begin
(unless (syntax-parameter-value #'email-ok)
(raise-syntax-error 'email "email can appear inside institutes only"))
#'(make-element (style "LNCSemail" lncs-extras)
(decode-content (list . args))))]))