mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 23:50:03 -06:00
Added place-holder mod_python_webui.py module; cleaned up lite-* and mod_python_* docstrings
This commit is contained in:
parent
98da855176
commit
e93c0455d4
@ -23,6 +23,10 @@
|
||||
# Authors:
|
||||
# Rob Crittenden <rcritten@redhat.com>
|
||||
|
||||
"""
|
||||
Production XML-RPC server using mod_python.
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
||||
|
||||
|
22
ipa_webui/mod_python_webui.py
Normal file
22
ipa_webui/mod_python_webui.py
Normal 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.
|
||||
"""
|
@ -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())
|
||||
|
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user