[Python-checkins] r45795 - sandbox/trunk/wsgiref-docs sandbox/trunk/wsgiref-docs/wsgiref.tex

andrew.kuchling python-checkins at python.org
Sat Apr 29 02:34:37 CEST 2006


Author: andrew.kuchling
Date: Sat Apr 29 02:34:36 2006
New Revision: 45795

Added:
   sandbox/trunk/wsgiref-docs/
   sandbox/trunk/wsgiref-docs/wsgiref.tex
Log:
Begin rough outline of wsgiref docs

Added: sandbox/trunk/wsgiref-docs/wsgiref.tex
==============================================================================
--- (empty file)
+++ sandbox/trunk/wsgiref-docs/wsgiref.tex	Sat Apr 29 02:34:36 2006
@@ -0,0 +1,51 @@
+
+\section{wsgiref}
+
+XXX write introduction
+
+\subsection{Web Server Gateway Interface}
+
+Brief overview of application interface
+
+app(environ, start_response):
+   call start_response(status, header)
+   return iterable w/ text context
+
+Reference to PEP 333
+
+\subsection{wsgiref.handlers}
+
+BaseHandler
+
+SimpleHandler
+
+BaseCGIHandler
+
+CGIHandler
+
+
+\subsection{wsgiref.util}
+
+FileWrapper
+
+% XXX document guess_scheme, application_uri, request_uri, shift_path_info,
+% setup_testing_defaults?
+
+\subsection{wsgiref.simple_server}
+
+WSGIServer
+
+WSGIRequestHandler
+
+demo_app
+
+\subsection{Examples}
+
+Simple application: trivial 'hello world'
+
+Set up a server to run one application
+
+Other ideas?
+
+
+


More information about the Python-checkins mailing list