]> granicus.if.org Git - python/commitdiff
Misc. changes related to the new sections.
authorFred Drake <fdrake@acm.org>
Mon, 14 Jun 1999 19:49:50 +0000 (19:49 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 14 Jun 1999 19:49:50 +0000 (19:49 +0000)
Doc/lib/lib.tex
Doc/lib/libbasehttp.tex
Doc/lib/libundoc.tex

index b9e89088b897df2670b4fce53e1bc65657a0e4ef..758cb239f79f8f5b0444d7ac06722351dceef90e 100644 (file)
@@ -75,6 +75,7 @@ add new extensions to Python and how to embed it in other applications.
 \input{libuserdict}
 \input{liboperator}
 \input{libtraceback}
+\input{liblinecache}
 \input{libpickle}
 \input{libcopyreg}             % really copy_reg
 \input{libshelve}
@@ -184,6 +185,8 @@ add new extensions to Python and how to embed it in other applications.
 \input{liburlparse}
 \input{libsocksvr}
 \input{libbasehttp}
+\input{libsimplehttp}
+\input{libcgihttp}
 
 \input{netdata}
 \input{libsgmllib}
index 0a8a0fc81e20466991201bff6f2715ec1d5a4a40..82714b1f7343c47dcbe2f018b829ed96c2ad921b 100644 (file)
@@ -15,9 +15,8 @@
 This module defines two classes for implementing HTTP servers
 (web servers). Usually, this module isn't used directly, but is used
 as a basis for building functioning web servers. See the
-\module{SimpleHTTPServer} and \module{CGIHTTPServer} modules.
-\refstmodindex{SimpleHTTPServer}
-\refstmodindex{CGIHTTPServer}
+\module{SimpleHTTPServer}\refstmodindex{SimpleHTTPServer} and
+\refmodule{CGIHTTPServer}\refstmodindex{CGIHTTPServer} modules.
 
 The first class, \class{HTTPServer}, is a
 \class{SocketServer.TCPServer} subclass. It creates and listens at the
@@ -221,3 +220,12 @@ Returns the current date and time, formatted for logging.
 Returns the client address, formatted for logging. A name lookup
 is performed on the client's IP address.
 \end{methoddesc}
+
+
+\begin{seealso}
+  \seemodule{CGIHTTPServer}{Extended request handler that supports CGI
+                            scripts.}
+
+  \seemodule{SimpleHTTPServer}{Basic request handler that limits response
+                               to files actually under the document root.}
+\end{seealso}
index 0c4fdf810d698212d62f142135333d41cddf8f31..69bfb766c5b61a927c5d5ae69c325d7ea5451b03 100644 (file)
@@ -23,12 +23,6 @@ on-line reference material.
 \item[Tkdnd.py]
 --- Drag-and-drop support for \module{Tkinter}.
 
-\item[CGIHTTPServer.py]
---- CGI-savvy HTTP Server
-
-\item[SimpleHTTPServer.py]
---- Simple HTTP Server
-
 \item[test]
 --- Regression testing framework.  This is used for the Python
 regression test, but is useful for other Python libraries as well.
@@ -53,9 +47,6 @@ Some of these are very old and/or not very robust; marked with ``hmm''.
 \item[dircmp.py]
 --- class to build directory diff tools on
 
-\item[linecache.py]
---- Cache lines from files (used by pdb)
-
 \item[pipes.py]
 --- Conversion pipeline templates (hmm)