Home | Trees | Index | Help |
---|
|
BaseRequestHandler --+ | SocketServer.StreamRequestHandler --+ | BaseHTTPServer.BaseHTTPRequestHandler --+ | SimpleHTTPServer.SimpleHTTPRequestHandler --+ | WebRequestHandler
Handler for HTTP requests.
This class groups callback functions that are invoked in response to HTTP requests by 'WebServer'.
Don't define '__init__' or store any persistent information in this class or subclasses; a new instance is created for each request. Instead, store the information in the server instance, available through the 'server' attribute.
|
|||
Inherited from |
|
|||
do_GET(self)
Process HTTP GET requests. |
|||
do_POST(self)
Process HTTP POST requests. |
|||
__HandleScriptRequest(self, request) | |||
__HandleFileRequest(self, request, path) | |||
__HandlePageCacheRequest(self,
request)
Process a retrieval request from the global page cache. |
|||
__HandleSessionCacheRequest(self,
request)
Process a retrieval request from the session page cache. |
|||
__HandleRequest(self,
request)
Process a request from a GET or POST operation. |
|||
log_message(self,
format,
*args)
Log a message; overrides 'BaseHTTPRequestHandler.log_message'. |
|||
Inherited from Inherited from Inherited from Inherited from |
|
|||
Inherited from Inherited from Inherited from |
|
|
|
|
|
|
|
Process a request from a GET or POST operation. 'request' -- A 'WebRequest' object. |
|
Home | Trees | Index | Help |
---|
Generated by Epydoc 3.0alpha2 on Fri Sep 28 00:57:34 2007 | http://epydoc.sf.net |