From 8e7561cff6df60e470f1a576f8dca3f025db0586 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Wed, 7 May 2008 09:33:00 -0400 Subject: Refine our web space some more so that everything we reference is in /ipa UI: /ipa/ui XML-RPC: /ipa/xml errors: /ipa/errors config: /ipa/config I had to hardcode that URI into the CSS pages but TurboGears handles the rest of the translations with tg.url(). Added a version to ipa.conf and ipa-rewrite.conf so we can update them in the future if needed with ipa-upgradeconfig 440443 --- ipa-python/rpcclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipa-python') diff --git a/ipa-python/rpcclient.py b/ipa-python/rpcclient.py index ecd42b99..5a95d830 100644 --- a/ipa-python/rpcclient.py +++ b/ipa-python/rpcclient.py @@ -38,7 +38,7 @@ class RPCClient: def server_url(self, server): """Build the XML-RPC server URL from our configuration""" - url = "https://" + server + "/ipaxml" + url = "https://" + server + "/ipa/xml" if self.verbose: print "Connecting to IPA server: %s" % url return url -- cgit