Rearranging docs

svn: r6651
This commit is contained in:
Jay McCarthy 2007-06-13 21:29:31 +00:00
parent 46f94d723b
commit c44c595e4d
3 changed files with 3 additions and 5 deletions

View File

@ -14,9 +14,6 @@ develop Web applications in Scheme.
@include-section["servlet.scrbl"] @include-section["servlet.scrbl"]
@include-section["lang.scrbl"] @include-section["lang.scrbl"]
@; XXX Move in to servlet.scrbl
@include-section["servlet-env.scrbl"]
@include-section["configuration.scrbl"] @include-section["configuration.scrbl"]
@include-section["dispatchers.scrbl"] @include-section["dispatchers.scrbl"]
@include-section["web-config-unit.scrbl"] @include-section["web-config-unit.scrbl"]

View File

@ -2,7 +2,7 @@
@require["../web-server.ss"] @require["../web-server.ss"]
@title[#:tag "servlet-env.ss" @title[#:tag "servlet-env.ss"
#:style 'toc]{Scheme Servlet Environment} #:style 'toc]{Environment}
The @web-server provides a means of running Scheme servlets The @web-server provides a means of running Scheme servlets
from within DrScheme, or any other REPL. from within DrScheme, or any other REPL.
@ -23,5 +23,4 @@ as well as the following:
@scheme[send-url] with a URL for the constructed servlet. The call blocks until the @scheme[send-url] with a URL for the constructed servlet. The call blocks until the
servlet finishes its computation, i.e. @scheme[servlet-expr] is evaluated, and servlet finishes its computation, i.e. @scheme[servlet-expr] is evaluated, and
returns its result. @scheme[servlet-expr] may use the entire Scheme servlet API. returns its result. @scheme[servlet-expr] may use the entire Scheme servlet API.
(See @secref["servlet"].)
} }

View File

@ -414,3 +414,5 @@ generated. For more information on their semantics, consult the paper @href-link
Binds @scheme[wc] to @scheme[v] in the current frame, shadowing any Binds @scheme[wc] to @scheme[v] in the current frame, shadowing any
other bindings to @scheme[wc] in the current frame. other bindings to @scheme[wc] in the current frame.
} }
@include-section["servlet-env.scrbl"]