svn: r6505
This commit is contained in:
Jay McCarthy 2007-06-06 15:34:36 +00:00
parent 2bb03362d1
commit da9fee0afc
8 changed files with 15 additions and 8 deletions

View File

@ -2,7 +2,8 @@
@require["../web-server.ss"]
@; XXX require mzscheme, url.ss, and contract.ss
@title[#:style 'toc]{Configuration}
@title[#:tag "configuration"
#:style 'toc]{Configuration}
There are a number of libraries and utilities useful for
configuring the @file{web-server}.

View File

@ -1,7 +1,8 @@
#reader(lib "docreader.ss" "scribble")
@require["../web-server.ss"]
@title[#:style 'toc]{Continuation Managers}
@title[#:tag "managers"
#:style 'toc]{Continuation Managers}
Since Scheme servlets store their continuations on the server, they take
up memory on the server. Furthermore, garbage collection can not be used

View File

@ -1,7 +1,8 @@
#reader(lib "docreader.ss" "scribble")
@require["../web-server.ss"]
@title[#:style 'toc]{Internal}
@title[#:tag "private"
#:style 'toc]{Internal}
The @file{web-server} is a complicated piece of software and as a result,
defines a number of interesting and independently useful sub-components.

View File

@ -1,7 +1,7 @@
#reader(lib "docreader.ss" "scribble")
@require["../web-server.ss"]
@title{Web Server Reference Manual}
@title[#:tag "web-server-ref"]{Web Server Reference Manual}
The @file{web-server} collection provides libraries that can be used to
develop Web applications in Scheme.

View File

@ -1,7 +1,8 @@
#reader(lib "docreader.ss" "scribble")
@require["../web-server.ss"]
@title[#:style 'toc]{Running the Web Server}
@title[#:tag "run.ss"
#:style 'toc]{Running the Web Server}
There are a number of ways to run the Web Server. The two primary ways
are through a command-line tool or through a function call.

View File

@ -1,7 +1,8 @@
#reader(lib "docreader.ss" "scribble")
@require["../web-server.ss"]
@title[#:style 'toc]{Servlet Environment}
@title[#:tag "servlet-env.ss"
#:style 'toc]{Servlet Environment}
The @file{web-server} provides a means of running Scheme servlets
from within DrScheme, or any other REPL.

View File

@ -1,7 +1,8 @@
#reader(lib "docreader.ss" "scribble")
@require["../web-server.ss"]
@title[#:style 'toc]{Scheme Servlets}
@title[#:tag "servlet"
#:style 'toc]{Scheme Servlets}
The @file{web-server} allows servlets to be written in Scheme. It
provides the supporting API, described below, for the construction

View File

@ -1,7 +1,8 @@
#reader(lib "docreader.ss" "scribble")
@require["../web-server.ss"]
@title[#:style 'toc]{Web Config Unit}
@title[#:tag "web-config-unit.ss"
#:style 'toc]{Web Config Unit}
The @file{web-server} offers a unit-based approach to configuring the server.