| Home | Trees | Indices | Help |
|
|---|
|
|
object --+
|
Application
A CherryPy Application.
An instance of this class may also be used as a WSGI callable
(WSGI application object) for itself.
config [= {}]:
A dict of {path: pathconf} pairs, where 'pathconf' is itself a dict
of {key: value} pairs.
log [= None]:
A LogManager instance. See _cplogging.
root [= None]:
The top-most container of page handlers for this app. Handlers should
be arranged in a hierarchy of attributes, matching the expected URI
hierarchy; the default dispatcher then searches this hierarchy for a
matching handler. When using a dispatcher other than the default,
this value may be None.
script_name [= <property object at 0x40658c5c>]:
The URI "mount point" for this app; for example, if script_name is
"/my/cool/app", then the URL "http://my.domain.tld/my/cool/app/page1"
might be handled by a "page1" method on the root object. If script_name
is explicitly set to None, then the script_name will be provided
for each call from request.wsgi_environ['SCRIPT_NAME'].
wsgiapp [= None]:
A CPWSGIApp instance. See _cpwsgi.
|
|||
|
__metaclass__ Metaclass for declaring docstrings for class attributes. |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Inherited from |
|||
|
|||
root = None
|
|||
root__doc =
|
|||
config =
|
|||
config__doc =
|
|||
namespaces = cherrypy._cpconfig.NamespaceSet({})
|
|||
log = None
|
|||
log__doc = """A LogManager instance. See _cplogging."""
|
|||
wsgiapp = None
|
|||
wsgiapp__doc = """A CPWSGIApp instance. See _cpwsgi."""
|
|||
script_name__doc =
|
|||
|
|||
|
script_name The URI "mount point" for this app; for example, if script_name is "/my/cool/app", then the URL "http://my.domain.tld/my/cool/app/page1" might be handled by a "page1" method on the root object. |
|||
|
Inherited from |
|||
|
|||
|
|
|||
root__doc
|
config__doc
|
script_name__doc
|
|
|||
script_nameThe URI "mount point" for this app; for example, if script_name is "/my/cool/app", then the URL "http://my.domain.tld/my/cool/app/page1" might be handled by a "page1" method on the root object. If script_name is explicitly set to None, then the script_name will be provided for each call from request.wsgi_environ['SCRIPT_NAME'].
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0beta1 on Thu Jan 24 16:33:09 2008 | http://epydoc.sourceforge.net |