From f58ff2921defef330d53e08e427a82ced7585c88 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Tue, 13 Oct 2009 11:28:00 -0600 Subject: Giant webui patch take 2 --- ipalib/constants.py | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'ipalib/constants.py') diff --git a/ipalib/constants.py b/ipalib/constants.py index 9aff5e26..72b02b0a 100644 --- a/ipalib/constants.py +++ b/ipalib/constants.py @@ -99,11 +99,23 @@ DEFAULT_CONFIG = ( ('container_virtual', 'cn=virtual operations'), # Ports, hosts, and URIs: - ('lite_xmlrpc_port', 8888), - ('lite_webui_port', 9999), - ('xmlrpc_uri', 'http://localhost:8888'), + # FIXME: let's renamed xmlrpc_uri to rpc_xml_uri + ('xmlrpc_uri', 'http://localhost:8888/ipa/xml'), + ('rpc_json_uri', 'http://localhost:8888/ipa/json'), ('ldap_uri', 'ldap://localhost:389'), + # Web Application mount points + ('mount_ipa', '/ipa/'), + ('mount_xmlserver', 'xml'), + ('mount_jsonserver', 'json'), + ('mount_webui', 'ui/'), + ('mount_webui_assets', '_/'), + + # WebUI stuff: + ('webui_prod', True), + ('webui_assets_dir', None), + ('webui_assets_dburi', None), + # Debugging: ('verbose', False), ('debug', False), -- cgit