|
Revision 1926
(checked in by fumanchu, 7 months ago)
|
Renamed restsrv -> process in all referrers.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
"""Site container for an HTTP server. |
|---|
| 2 |
|
|---|
| 3 |
A Web Site Process Bus object is used to connect applications, servers, |
|---|
| 4 |
and frameworks with site-wide services such as daemonization, process |
|---|
| 5 |
reload, signal handling, drop privileges, PID file management, logging |
|---|
| 6 |
for all of these, and many more. |
|---|
| 7 |
|
|---|
| 8 |
The 'plugins' module defines a few abstract and concrete services for |
|---|
| 9 |
use with the bus. Some use tool-specific channels; see the documentation |
|---|
| 10 |
for each class. |
|---|
| 11 |
""" |
|---|
| 12 |
|
|---|
| 13 |
from cherrypy.process.wspbus import bus |
|---|
| 14 |
from cherrypy.process import plugins, servers |
|---|