diff options
author | Adam Young <ayoung@redhat.com> | 2010-11-05 19:48:42 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-11-08 14:17:47 -0500 |
commit | 90baf597ddfb6c435dc5e78d6917a28736abb8cf (patch) | |
tree | 4a81dfdd48cf0f6ae6d277f11ac1a2de64f82968 /ipalib | |
parent | 29c9c70d4672640f56307ce064599da80657834c (diff) | |
download | freeipa-90baf597ddfb6c435dc5e78d6917a28736abb8cf.tar.gz freeipa-90baf597ddfb6c435dc5e78d6917a28736abb8cf.tar.xz freeipa-90baf597ddfb6c435dc5e78d6917a28736abb8cf.zip |
Ticket Expiration
THis patch handles Kerberos ticket expiration in the UI. Additionally it removes the mod_atuh_kerb authorization for elements in the static directory, cutting down on the number of round trips required for initializing the web app
Conflicts:
install/static/ipa.js
Diffstat (limited to 'ipalib')
-rw-r--r-- | ipalib/plugins/internal.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py index e950796b..bf477b74 100644 --- a/ipalib/plugins/internal.py +++ b/ipalib/plugins/internal.py @@ -58,7 +58,14 @@ class json_metadata(Command): "mailing":_("Mailing Address"), "employee":_(" Employee Information"), "misc":_("Misc. Information"), - "to_top":_("Back to Top")} + "to_top":_("Back to Top")}, + "ajax":{ + "401":_("Your kerberos ticket no longer valid."+ + "Please run KInit and then click 'retry'"+ + "If this is your first time running the IPA Web UI"+ + "<a href='/ipa/errors/ssbrowser.html'> "+ + "Follow these directions</a> to configure your browser.") + } } takes_args = ( |