From 589f42feb1bac61347b17d17e894dab117e74cf4 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Mon, 13 Jun 2011 17:58:58 -0400 Subject: [PATCH] Reorganize TR docs directory. --- .../typed-scheme/scribblings/{ => guide}/begin.scrbl | 2 +- .../typed-scheme/scribblings/{ => guide}/more.scrbl | 2 +- .../scribblings/{ => guide}/optimization.scrbl | 2 +- .../typed-scheme/scribblings/{ => guide}/quick.scrbl | 2 +- .../typed-scheme/scribblings/{ => guide}/types.scrbl | 2 +- .../typed-scheme/scribblings/{ => guide}/varargs.scrbl | 2 +- collects/typed-scheme/scribblings/ts-guide.scrbl | 10 +++++----- 7 files changed, 11 insertions(+), 11 deletions(-) rename collects/typed-scheme/scribblings/{ => guide}/begin.scrbl (98%) rename collects/typed-scheme/scribblings/{ => guide}/more.scrbl (99%) rename collects/typed-scheme/scribblings/{ => guide}/optimization.scrbl (99%) rename collects/typed-scheme/scribblings/{ => guide}/quick.scrbl (94%) rename collects/typed-scheme/scribblings/{ => guide}/types.scrbl (99%) rename collects/typed-scheme/scribblings/{ => guide}/varargs.scrbl (98%) diff --git a/collects/typed-scheme/scribblings/begin.scrbl b/collects/typed-scheme/scribblings/guide/begin.scrbl similarity index 98% rename from collects/typed-scheme/scribblings/begin.scrbl rename to collects/typed-scheme/scribblings/guide/begin.scrbl index 5c68d1272d..35f9553589 100644 --- a/collects/typed-scheme/scribblings/begin.scrbl +++ b/collects/typed-scheme/scribblings/guide/begin.scrbl @@ -1,7 +1,7 @@ #lang scribble/manual @begin[(require (for-label (only-meta-in 0 typed/racket)) scribble/eval - "utils.rkt" (only-in "quick.scrbl" typed-mod))] + "../utils.rkt" (only-in "quick.scrbl" typed-mod))] @(define the-eval (make-base-eval)) @(the-eval '(require typed/racket)) diff --git a/collects/typed-scheme/scribblings/more.scrbl b/collects/typed-scheme/scribblings/guide/more.scrbl similarity index 99% rename from collects/typed-scheme/scribblings/more.scrbl rename to collects/typed-scheme/scribblings/guide/more.scrbl index 09a9305507..c68af0703e 100644 --- a/collects/typed-scheme/scribblings/more.scrbl +++ b/collects/typed-scheme/scribblings/guide/more.scrbl @@ -1,6 +1,6 @@ #lang scribble/manual -@begin[(require "utils.rkt" +@begin[(require "../utils.rkt" scribble/core scribble/eval (for-label (only-meta-in 0 typed/racket) (only-in mzlib/etc let+)))] diff --git a/collects/typed-scheme/scribblings/optimization.scrbl b/collects/typed-scheme/scribblings/guide/optimization.scrbl similarity index 99% rename from collects/typed-scheme/scribblings/optimization.scrbl rename to collects/typed-scheme/scribblings/guide/optimization.scrbl index 0985d19eed..455d692210 100644 --- a/collects/typed-scheme/scribblings/optimization.scrbl +++ b/collects/typed-scheme/scribblings/guide/optimization.scrbl @@ -1,7 +1,7 @@ #lang scribble/manual @begin[(require (for-label (only-meta-in 0 typed/racket)) scribble/eval - "utils.rkt" (only-in "quick.scrbl" typed-mod))] + "../utils.rkt" (only-in "quick.scrbl" typed-mod))] @(define the-eval (make-base-eval)) @(the-eval '(require typed/racket)) diff --git a/collects/typed-scheme/scribblings/quick.scrbl b/collects/typed-scheme/scribblings/guide/quick.scrbl similarity index 94% rename from collects/typed-scheme/scribblings/quick.scrbl rename to collects/typed-scheme/scribblings/guide/quick.scrbl index f65dee19f0..a66639c2b7 100644 --- a/collects/typed-scheme/scribblings/quick.scrbl +++ b/collects/typed-scheme/scribblings/guide/quick.scrbl @@ -1,6 +1,6 @@ #lang scribble/manual -@(require "utils.rkt" (for-label (only-meta-in 0 typed/racket))) +@(require "../utils.rkt" (for-label (only-meta-in 0 typed/racket))) @(provide typed-mod) @title[#:tag "quick"]{Quick Start} diff --git a/collects/typed-scheme/scribblings/types.scrbl b/collects/typed-scheme/scribblings/guide/types.scrbl similarity index 99% rename from collects/typed-scheme/scribblings/types.scrbl rename to collects/typed-scheme/scribblings/guide/types.scrbl index 94c6d6cf75..6d1df99a90 100644 --- a/collects/typed-scheme/scribblings/types.scrbl +++ b/collects/typed-scheme/scribblings/guide/types.scrbl @@ -1,6 +1,6 @@ #lang scribble/manual -@begin[(require "utils.rkt" +@begin[(require "../utils.rkt" scribble/core scribble/eval (for-label (only-meta-in 0 typed/racket)))] diff --git a/collects/typed-scheme/scribblings/varargs.scrbl b/collects/typed-scheme/scribblings/guide/varargs.scrbl similarity index 98% rename from collects/typed-scheme/scribblings/varargs.scrbl rename to collects/typed-scheme/scribblings/guide/varargs.scrbl index 13661fd231..0c480323e7 100644 --- a/collects/typed-scheme/scribblings/varargs.scrbl +++ b/collects/typed-scheme/scribblings/guide/varargs.scrbl @@ -1,6 +1,6 @@ #lang scribble/manual -@begin[(require "utils.rkt" (for-label typed/racket/base))] +@begin[(require "../utils.rkt" (for-label typed/racket/base))] @title[#:tag "varargs"]{Variable-Arity Functions: Programming with Rest Arguments} diff --git a/collects/typed-scheme/scribblings/ts-guide.scrbl b/collects/typed-scheme/scribblings/ts-guide.scrbl index 8e75fe71b2..af01b3e82b 100644 --- a/collects/typed-scheme/scribblings/ts-guide.scrbl +++ b/collects/typed-scheme/scribblings/ts-guide.scrbl @@ -16,11 +16,11 @@ with Racket. For an introduction to Racket, see the @(other-manual '(lib "scrib @local-table-of-contents[] -@include-section["quick.scrbl"] -@include-section["begin.scrbl"] -@include-section["more.scrbl"] -@include-section["types.scrbl"] -@include-section["optimization.scrbl"] +@include-section["guide/quick.scrbl"] +@include-section["guide/begin.scrbl"] +@include-section["guide/more.scrbl"] +@include-section["guide/types.scrbl"] +@include-section["guide/optimization.scrbl"] @;@section{How the Type System Works}