From 661f41e197779ac48e9f37f201080504962c8bed Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Fri, 22 Mar 2013 17:54:12 +0100 Subject: Added Web UI support for service PAC type option: NONE ipakrbauthzdata accepts [null, 'NONE', 'MS-PAC, 'PAD'] New nesting feature of radios/checkboxes was used to handle mutual exclusivity between ['MS-PAC', 'PAD'], 'NONE' and ''. https://fedorahosted.org/freeipa/ticket/3404 --- ipalib/plugins/internal.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ipalib/plugins') diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py index 85bf7d21..4cce2c60 100644 --- a/ipalib/plugins/internal.py +++ b/ipalib/plugins/internal.py @@ -266,6 +266,12 @@ class i18n_messages(Command): "search": _("Search"), }, "false": _("False"), + "krbauthzdata": { + "inherited": _("Inherited from server configuration"), + "mspac": _("MS-PAC"), + "override": _("Override inherited settings"), + "pad": _("PAD"), + }, "login": { "form_auth": _("To login with username and password, enter them in the fields below then click Login."), "header": _("Logged In As"), -- cgit