From c749b3ece5b54a10de54946b89c1e9e32a373a45 Mon Sep 17 00:00:00 2001 From: Carl Eastlund Date: Sun, 30 May 2010 15:09:01 -0400 Subject: [PATCH] Moved unstable/cce/planet to unstable/planet. --- collects/unstable/cce/reference/manual.scrbl | 2 -- collects/unstable/cce/reference/scribble.scrbl | 2 +- collects/unstable/cce/scribble.ss | 2 +- collects/unstable/cce/test/test-main.ss | 2 -- collects/unstable/cce/test/test-planet.ss | 11 ----------- collects/unstable/{cce/planet.ss => planet.rkt} | 2 +- .../{cce/reference => scribblings}/planet.scrbl | 12 +++++------- collects/unstable/scribblings/unstable.scrbl | 1 + 8 files changed, 9 insertions(+), 25 deletions(-) delete mode 100644 collects/unstable/cce/test/test-planet.ss rename collects/unstable/{cce/planet.ss => planet.rkt} (98%) rename collects/unstable/{cce/reference => scribblings}/planet.scrbl (82%) diff --git a/collects/unstable/cce/reference/manual.scrbl b/collects/unstable/cce/reference/manual.scrbl index b3de258322..d0ad0305eb 100644 --- a/collects/unstable/cce/reference/manual.scrbl +++ b/collects/unstable/cce/reference/manual.scrbl @@ -12,8 +12,6 @@ @include-section["set.scrbl"] -@include-section["planet.scrbl"] - @include-section["debug.scrbl"] @include-section["scribble.scrbl"] diff --git a/collects/unstable/cce/reference/scribble.scrbl b/collects/unstable/cce/reference/scribble.scrbl index 3e1597841b..9c8fe83c06 100644 --- a/collects/unstable/cce/reference/scribble.scrbl +++ b/collects/unstable/cce/reference/scribble.scrbl @@ -12,7 +12,7 @@ This module provides tools for Scribble documentation; specifically, of @|PLaneT| packages. In addition to the bindings described below, this module provides @scheme[this-package-version-symbol] from -@schememodname[unstable/cce/planet], @scheme[this-package-in] from +@schememodname[unstable/planet], @scheme[this-package-in] from @schememodname[unstable/require], and @scheme[make-scribble-evaluator] and @scheme[make-scribble-module-evaluator] from @schememodname[unstable/sandbox]. diff --git a/collects/unstable/cce/scribble.ss b/collects/unstable/cce/scribble.ss index e9e6118c48..f67b12af64 100644 --- a/collects/unstable/cce/scribble.ss +++ b/collects/unstable/cce/scribble.ss @@ -1,6 +1,6 @@ #lang scheme/base -(require scribble/manual unstable/sandbox "planet.ss" +(require scribble/manual unstable/sandbox unstable/planet (for-syntax scheme/base unstable/planet-syntax)) (define-for-syntax (make-planet-paths stx ids) diff --git a/collects/unstable/cce/test/test-main.ss b/collects/unstable/cce/test/test-main.ss index 03c2968cdc..dbac234533 100644 --- a/collects/unstable/cce/test/test-main.ss +++ b/collects/unstable/cce/test/test-main.ss @@ -2,13 +2,11 @@ (require "checks.ss" "test-debug.ss" - "test-planet.ss" "test-scribble.ss" "test-set.ss") (run-tests (test-suite "scheme.plt" debug-suite - planet-suite scribble-suite set-suite)) diff --git a/collects/unstable/cce/test/test-planet.ss b/collects/unstable/cce/test/test-planet.ss deleted file mode 100644 index e4fecdd9a5..0000000000 --- a/collects/unstable/cce/test/test-planet.ss +++ /dev/null @@ -1,11 +0,0 @@ -#lang scheme - -(require "checks.ss" - "../planet.ss" - planet/util) - -(provide planet-suite) - -(define planet-suite - (test-suite "planet.ss" - (test-suite "this-package-version-symbol"))) diff --git a/collects/unstable/cce/planet.ss b/collects/unstable/planet.rkt similarity index 98% rename from collects/unstable/cce/planet.ss rename to collects/unstable/planet.rkt index f78305f39a..60a5e9d70f 100644 --- a/collects/unstable/cce/planet.ss +++ b/collects/unstable/planet.rkt @@ -1,4 +1,4 @@ -#lang scheme +#lang racket (require (for-syntax unstable/planet-syntax) unstable/planet-syntax diff --git a/collects/unstable/cce/reference/planet.scrbl b/collects/unstable/scribblings/planet.scrbl similarity index 82% rename from collects/unstable/cce/reference/planet.scrbl rename to collects/unstable/scribblings/planet.scrbl index d114119396..7208e42e56 100644 --- a/collects/unstable/cce/reference/planet.scrbl +++ b/collects/unstable/scribblings/planet.scrbl @@ -1,14 +1,12 @@ -#lang scribble/doc -@(require scribble/manual - scribble/eval +#lang scribble/manual +@(require scribble/eval scribble/bnf - "../scribble.ss" - "eval.ss") -@(require (for-label scheme/base scribble/manual unstable/cce/planet)) + "utils.rkt" + (for-label racket/base scribble/manual unstable/planet planet/util)) @title[#:style 'quiet #:tag "cce-planet"]{@|PLaneT| Packages} -@defmodule[unstable/cce/planet] +@defmodule[unstable/planet] This module provides tools relating to @|PLaneT| packages. In addition to the binding described below, it provides @scheme[define-planet-package] and diff --git a/collects/unstable/scribblings/unstable.scrbl b/collects/unstable/scribblings/unstable.scrbl index c371790d7d..167eb8919d 100644 --- a/collects/unstable/scribblings/unstable.scrbl +++ b/collects/unstable/scribblings/unstable.scrbl @@ -83,6 +83,7 @@ Keep documentation and tests up to date. @include-section["list.scrbl"] @include-section["net.scrbl"] @include-section["path.scrbl"] +@include-section["planet.scrbl"] @include-section["port.scrbl"] @include-section["pretty.scrbl"] @include-section["queue.scrbl"]