summaryrefslogtreecommitdiffstats
path: root/ipa-python
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2008-05-07 09:33:00 -0400
committerRob Crittenden <rcritten@redhat.com>2008-05-07 09:37:32 -0400
commit8b77a12bf00c6934cd6aefe4e8557feb0ea8d5bd (patch)
treede47cda89706de58d8a09124439919b1b5b4df99 /ipa-python
parent447f263f8d328beeda6788f0bad949562ef2e077 (diff)
downloadfreeipa-8b77a12bf00c6934cd6aefe4e8557feb0ea8d5bd.tar.gz
freeipa-8b77a12bf00c6934cd6aefe4e8557feb0ea8d5bd.tar.xz
freeipa-8b77a12bf00c6934cd6aefe4e8557feb0ea8d5bd.zip
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
Diffstat (limited to 'ipa-python')
-rw-r--r--ipa-python/rpcclient.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipa-python/rpcclient.py b/ipa-python/rpcclient.py
index ecd42b99d..5a95d8300 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