summaryrefslogtreecommitdiffstats
path: root/lite-webui.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-10-07 23:01:11 -0600
committerJason Gerard DeRose <jderose@redhat.com>2008-10-07 23:01:11 -0600
commitac9597ddcbfed317b9622e4d2e7145555e4e9873 (patch)
treea249c6e864c853d0b7aa92b4be3919417994c76b /lite-webui.py
parent6489e4f3480e934893c5c18d1f6c34fd96f46479 (diff)
downloadfreeipa-ac9597ddcbfed317b9622e4d2e7145555e4e9873.tar.gz
freeipa-ac9597ddcbfed317b9622e4d2e7145555e4e9873.tar.xz
freeipa-ac9597ddcbfed317b9622e4d2e7145555e4e9873.zip
Renamed webui-cherry.py, simple-server.py to lite-webui.py, lite-xmlrpc.py respectively
Diffstat (limited to 'lite-webui.py')
-rwxr-xr-xlite-webui.py47
1 files changed, 47 insertions, 0 deletions
diff --git a/lite-webui.py b/lite-webui.py
new file mode 100755
index 000000000..985a838b0
--- /dev/null
+++ b/lite-webui.py
@@ -0,0 +1,47 @@
+#!/usr/bin/python
+
+# 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
+
+"""
+A web-UI test server using cherrypy.
+"""
+
+from cherrypy import expose, config, quickstart
+from ipa_webui.templates import form, main
+from ipa_webui import controller
+from ipalib import api
+from ipalib import load_plugins
+
+
+api.finalize()
+
+
+class root(object):
+ index = controller.Index(api, main)
+
+ def __init__(self):
+ for cmd in api.Command():
+ ctr = controller.Command(cmd, form)
+ setattr(self, cmd.name, ctr)
+
+
+
+
+
+quickstart(root())