More name improvements: scribble/text/textlang' -> scribble/text/lang'

and the same for `scribble/html/lang'.
This commit is contained in:
Eli Barzilay 2010-10-26 16:17:09 -04:00
parent 667c682c2b
commit 69a490c10b
8 changed files with 9 additions and 10 deletions

View File

@ -1,6 +1,6 @@
#lang at-exp racket/base
(require scribble/html (only-in scribble/html/htmllang #%top))
(require scribble/html (only-in scribble/html/lang #%top))
;; list of a header paragraphs and sub paragraphs (don't use `p' since it looks
;; like they should not be nested)

View File

@ -1,6 +1,6 @@
#lang at-exp racket/base
(require scribble/html (only-in scribble/html/htmllang #%top)
(require scribble/html (only-in scribble/html/lang #%top)
(for-syntax racket/base syntax/name)
"utils.rkt" "resources.rkt")

View File

@ -1,6 +1,6 @@
#lang at-exp racket/base
(require scribble/html (only-in scribble/html/htmllang #%top))
(require scribble/html (only-in scribble/html/lang #%top))
(define-syntax-rule (define* id E) (begin (define id E) (provide id)))

View File

@ -1,7 +1,7 @@
#lang racket/base
(require scribble/html/htmllang
(require scribble/html/lang
"layout.rkt" "resources.rkt" "extras.rkt" "links.rkt" "utils.rkt")
(provide (all-from-out scribble/html/htmllang
(provide (all-from-out scribble/html/lang
"layout.rkt" "resources.rkt" "extras.rkt" "links.rkt"
"utils.rkt"))

View File

@ -1,6 +1,6 @@
#lang at-exp racket/base
(require scribble/html (only-in scribble/html/htmllang #%top))
(require scribble/html (only-in scribble/html/lang #%top))
;; These are some resources that are shared across different toplevel
;; sites. They could be included from a single place, but then when one

View File

@ -1,10 +1,9 @@
#lang racket/base
(require "main.rkt" scribble/text/textlang scribble/text/syntax-utils
(require "main.rkt" scribble/text/lang scribble/text/syntax-utils
(for-syntax racket/base))
(provide (except-out (all-from-out scribble/text/textlang)
#%top #%module-begin)
(provide (except-out (all-from-out scribble/text/lang) #%top #%module-begin)
(rename-out [top #%top] [module-begin #%module-begin])
(all-from-out "main.rkt"))

View File

@ -1,6 +1,6 @@
#lang s-exp syntax/module-reader
scribble/text/textlang
scribble/text/lang
#:read scribble:read-inside
#:read-syntax scribble:read-syntax-inside