[Python-checkins] r47039 - python/trunk/Doc/whatsnew/whatsnew25.tex

andrew.kuchling python-checkins at python.org
Tue Jun 20 13:52:17 CEST 2006


Author: andrew.kuchling
Date: Tue Jun 20 13:52:16 2006
New Revision: 47039

Modified:
   python/trunk/Doc/whatsnew/whatsnew25.tex
Log:
Uncomment wsgiref section

Modified: python/trunk/Doc/whatsnew/whatsnew25.tex
==============================================================================
--- python/trunk/Doc/whatsnew/whatsnew25.tex	(original)
+++ python/trunk/Doc/whatsnew/whatsnew25.tex	Tue Jun 20 13:52:16 2006
@@ -2074,10 +2074,9 @@
 
 
 %======================================================================
-%\subsection{The wsgiref package\label{module-wsgiref}}
+\subsection{The wsgiref package\label{module-wsgiref}}
 
 % XXX should this be in a PEP 333 section instead?
-\begin{comment}
 
 The Web Server Gateway Interface (WSGI) v1.0 defines a standard
 interface between web servers and Python web applications and is
@@ -2086,10 +2085,7 @@
 
 The package includes a basic HTTP server that will run a WSGI
 application; this server is useful for debugging but isn't intended for 
-production use.
-
-% XXX structure of WSGI applications?  
-% XXX provide an example using Django or some other framework?
+production use.  Setting up a server takes only a few lines of code:
 
 \begin{verbatim}
 from wsgiref import simple_server
@@ -2102,17 +2098,19 @@
 httpd.serve_forever()
 \end{verbatim}
 
+% XXX discuss structure of WSGI applications?  
+% XXX provide an example using Django or some other framework?
 
 \begin{seealso}
 
+\seeurl{http://www.wsgi.org}{A central web site for WSGI-related resources.}
+
 \seepep{333}{Python Web Server Gateway Interface v1.0}{PEP written by
 Phillip J. Eby.}
 
 \end{seealso}
 
 
-\end{comment}
-
 % ======================================================================
 \section{Build and C API Changes\label{build-api}}
 


More information about the Python-checkins mailing list