Added place-holder mod_python_webui.py module; cleaned up lite-* and mod_python_* docstrings

This commit is contained in:
Jason Gerard DeRose 2008-10-22 22:14:58 -06:00
parent 98da855176
commit e93c0455d4
4 changed files with 34 additions and 6 deletions

View File

@ -23,6 +23,10 @@
# Authors:
# Rob Crittenden <rcritten@redhat.com>
"""
Production XML-RPC server using mod_python.
"""
import sys

View File

@ -0,0 +1,22 @@
# Authors:
# Jason Gerard DeRose <jderose@redhat.com>
#
# Copyright (C) 2008 Red Hat
# see file 'COPYING' for use and warranty information
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
Production Web UI using mod_python.
"""

View File

@ -19,7 +19,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
A web-UI test server using cherrypy.
In-tree Web UI using cherrypy.
"""
from cherrypy import expose, config, quickstart
@ -41,7 +41,5 @@ class root(object):
setattr(self, cmd.name, ctr)
quickstart(root())
if __name__ == '__main__'
quickstart(root())

View File

@ -15,6 +15,10 @@ import ipalib.load_plugins
from ipalib.util import xmlrpc_unmarshal
import traceback
"""
In-tree XML-RPC server using SimpleXMLRPCServer.
"""
PORT=8888
class StoppableXMLRPCServer(SimpleXMLRPCServer.SimpleXMLRPCServer):