Index of the interfaces module
-
m
wareweb.interfaces
...
- Descriptions of the main interfaces in Wareweb. These aren't formal
interfaces, they are just here for documentation purposes.
- C Attribute ...
-
C
IServlet
...
- a app_url ...
- a path_parts ...
- a fields ...
- a title ...
- a session ...
- a environ ...
- a path_info ...
- a config ...
- f redirect ... - Redirects to the given URL. If the URL is relative, then it will be resolved to be absolute with respect to self.app_url.
- f set_header ... - Sets the named header; overwriting any header that previously existed.
- f set_cookie ... - Creates the named cookie in the response.
- f teardown ... - Resource cleanup at the end of request.
- f respond ... - Called after .awake(), this typically produces the body of the response.
- f write ... - Writes the objects.
- f add_header ... - Adds the named header, appending to any previous header that might have been set.
- f run ... - 'Runs' the request.
- f __call__ ... - Implementation of the WSGI application interface.
- f awake ... - Called at beginning of request.
- f setup ... - Also called at beginning of requests.
- f sleep ... - Called at the end of a request, to clean up resources.