|
__init__(self,
contextRoot=None,
contextPath=None,
timeout=1800)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
awake(self,
transaction)
This message is sent to all objects that participate in the
request-response cycle in a top-down fashion, prior to respond(). |
source code
|
|
|
respond(self,
transaction)
Invokes the appropriate respondToSomething() method depending on the
type of request (e.g., GET, POST, PUT, ...). |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getParameter(self,
request,
key,
default='
' ) |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getRequestUri(self,
request)
The request's URL from the protocol name up to the query string |
source code
|
|
|
|
|
|
|
|
|
isSecure(self,
request)
Check whether the request is a HTTPS connection. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getSession(self,
request,
allowSessionCreation=True) |
source code
|
|
|
|
|
|
|
getSessionAttribute(self,
session,
name,
default=None) |
source code
|
|
|
setSessionAttribute(self,
session,
name,
value) |
source code
|
|
|
|
|
|
Inherited from paste.webkit.wkservlet.HTTPServlet :
notImplemented ,
respondToHead
Inherited from paste.webkit.wkservlet.Servlet :
__call__ ,
canBeReused ,
canBeThreaded ,
name ,
runTransaction ,
sleep ,
wsgi_application
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|