[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher/HTTP - IPayload.py:1.1.2.5
Shane Hathaway
shane@digicool.com
Wed, 28 Nov 2001 10:29:36 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/Publisher/HTTP
In directory cvs.zope.org:/tmp/cvs-serv10288/Publisher/HTTP
Modified Files:
Tag: Zope-3x-branch
IPayload.py
Log Message:
Refined docs.
=== Zope3/lib/python/Zope/Publisher/HTTP/IPayload.py 1.1.2.4 => 1.1.2.5 ===
def processInputs(request):
"""
- Processes request inputs.
+ Processes the request in a way specific to the payload
+ type. For example, the browser request payload looks
+ for form variables and stores them in the request.
+ The XML-RPC request payload looks for a method call.
"""
def getPublication(request):
@@ -25,7 +28,8 @@
def debugInfo(request):
"""
- Returns text containing debugging information.
+ Returns text containing debugging information about
+ the request.
"""
@@ -38,6 +42,7 @@
def handleException(response, exc_info):
"""
- Calls setBody() with an error response.
+ Calls response.setBody() with an error response or
+ raises exceptions such as Retry or SystemExit.
"""