Moved unstable/cce/scribble to unstable/scribble.

This commit is contained in:
Carl Eastlund 2010-05-30 15:52:54 -04:00
parent 5877732abf
commit f5b58403ba
8 changed files with 12 additions and 26 deletions

View File

@ -1,7 +1,7 @@
#lang scribble/doc
@(require scribble/manual
scribble/eval
"../scribble.ss"
unstable/scribble
"eval.ss")
@(require (for-label scheme unstable/cce/debug unstable/syntax))

View File

@ -1,7 +1,7 @@
#lang scribble/doc
@(require scribble/manual
unstable/scribble
"../../scribblings/utils.rkt"
"../scribble.ss"
(for-label scheme/base))
@title[#:style '(toc)]{@bold{Carl Eastlund's Scheme Utilities}}
@ -13,5 +13,3 @@
@include-section["set.scrbl"]
@include-section["debug.scrbl"]
@include-section["scribble.scrbl"]

View File

@ -1,7 +1,7 @@
#lang scribble/doc
@(require scribble/manual
scribble/eval
"../scribble.ss"
unstable/scribble
"eval.ss")
@(require (for-label scheme unstable/cce/set))

View File

@ -2,11 +2,9 @@
(require "checks.ss"
"test-debug.ss"
"test-scribble.ss"
"test-set.ss")
(run-tests
(test-suite "scheme.plt"
debug-suite
scribble-suite
set-suite))

View File

@ -1,10 +0,0 @@
#lang scheme
(require "checks.ss"
"../scribble.ss")
(provide scribble-suite)
(define scribble-suite
(test-suite "scribble.ss"))

View File

@ -1,7 +1,7 @@
#lang scheme/base
#lang racket/base
(require scribble/manual unstable/sandbox unstable/planet
(for-syntax scheme/base unstable/planet-syntax))
(for-syntax racket/base unstable/planet-syntax))
(define-for-syntax (make-planet-paths stx ids)
(map (lambda (id) (make-planet-path stx id)) (syntax->list ids)))

View File

@ -1,13 +1,12 @@
#lang scribble/doc
@(require scribble/manual
scribble/eval
#lang scribble/manual
@(require scribble/eval
scribble/bnf
"../scribble.ss"
(for-label scheme/base scribble/manual unstable/cce/scribble))
"utils.rkt"
(for-label racket/base scribble/manual unstable/scribble))
@title[#:tag "cce-scribble"]{Scribble Documentation}
@title{Scribble Documentation}
@defmodule[unstable/cce/scribble]
@defmodule[unstable/scribble]
This module provides tools for Scribble documentation; specifically, of
@|PLaneT| packages. In addition to the bindings described below, this module

View File

@ -90,6 +90,7 @@ Keep documentation and tests up to date.
@include-section["regexp.scrbl"]
@include-section["require.scrbl"]
@include-section["sandbox.scrbl"]
@include-section["scribble.scrbl"]
@include-section["srcloc.scrbl"]
@include-section["string.scrbl"]
@include-section["struct.scrbl"]