Merged changes from the 1.5.2p2 release.

(Very rough.)
This commit is contained in:
Fred Drake 2000-04-03 20:13:55 +00:00
parent 659ebfa79e
commit 38e5d27cae
59 changed files with 1248 additions and 516 deletions

View file

@ -3,6 +3,7 @@
\declaremodule{standard}{CGIHTTPServer}
\platform{Unix}
\sectionauthor{Moshe Zadka}{mzadka@geocities.com}
\modulesynopsis{This module provides a request handler for HTTP servers
which can run CGI scripts.}
@ -14,6 +15,9 @@ interface compatible with
from \class{SimpleHTTPServer.SimpleHTTPRequestHandler} but can also
run CGI scripts.
\strong{Note:} This module is \UNIX{} dependent since it creates the
CGI process using \function{os.fork()} and \function{os.exec()}.
The \module{CGIHTTPServer} module defines the following class:
\begin{classdesc}{CGIHTTPRequestHandler}{request, client_address, server}