diff options
author | Rob Crittenden <rcritten@redhat.com> | 2008-05-07 09:33:00 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2008-05-07 09:41:32 -0400 |
commit | 8e7561cff6df60e470f1a576f8dca3f025db0586 (patch) | |
tree | 8a40271f260d1e026f02bcf601bd77594a6d34bf /ipa-python | |
parent | 5ad2af3429580bc45bdfb7de53601ddf615266bf (diff) | |
download | freeipa-8e7561cff6df60e470f1a576f8dca3f025db0586.tar.gz freeipa-8e7561cff6df60e470f1a576f8dca3f025db0586.tar.xz freeipa-8e7561cff6df60e470f1a576f8dca3f025db0586.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.py | 2 |
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 |