From 7da8d2f296ce10fc926bff01bc22cd3e0d7b7c46 Mon Sep 17 00:00:00 2001 From: Petr Voborník Date: Thu, 23 Feb 2012 13:54:07 +0100 Subject: Added unsupported_validator dnszone attributes idnsallowquery and idnsallowtransfer have valid but currently unsupported values: 'localhost' and 'localnets'. New validator was introduced for unsuported values. By using this validator user can see that the value is currently unsupported instead of showing 'invalid value' or passing the value to server and creating error there. https://fedorahosted.org/freeipa/ticket/2351 --- ipalib/plugins/internal.py | 1 + 1 file changed, 1 insertion(+) (limited to 'ipalib/plugins/internal.py') diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py index 2ee4316f..c346b442 100644 --- a/ipalib/plugins/internal.py +++ b/ipalib/plugins/internal.py @@ -574,6 +574,7 @@ class i18n_messages(Command): "min_value": _("Minimum value is ${value}"), "net_address": _("Not a valid network address"), "required": _("Required field"), + "unsupported": _("Unsupported value"), }, }, } -- cgit