Package cherrypy :: Package test :: Module modwsgi :: Class ModWSGISupervisor
[hide private]
[frames] | no frames]

Class ModWSGISupervisor

source code

       object --+    
                |    
helper.Supervisor --+
                    |
                   ModWSGISupervisor

Server Controller for ModWSGI and CherryPy.

Instance Methods [hide private]
 
__str__(self)
str(x)
source code
 
start(self, modulename) source code
 
stop(self)
Gracefully shutdown a server that is serving forever.
source code

Inherited from helper.Supervisor: __init__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Class Variables [hide private]
  using_apache = True
  using_wsgi = True
  template = '\n# Apache2 server conf file for testing CherryPy ...
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)

Class Variable Details [hide private]

template

Value:
'''
# Apache2 server conf file for testing CherryPy with modpython_gateway\
.

ServerName 127.0.0.1
DocumentRoot "/"
Listen %(port)s

...