From a1f8c39f88dac7c0999175528d4c1e90a8dd1210 Mon Sep 17 00:00:00 2001 From: Petr Voborník Date: Thu, 9 Feb 2012 17:21:09 +0100 Subject: DNS Zone UI: added new attributes New attributes were added to DNS zone details facet. Attributes: idnsallowquery idnsallowtransfer idnsforwarders idnsforwardpolicy idnsallowsyncptr New network address validator created for idnsallowquery and idnsallowtransfer attributes. Network address validator also added to dnszone adder dialog - from_ip field. https://fedorahosted.org/freeipa/ticket/2351 --- install/ui/test/data/dnszone_show.json | 20 ++++++++++++++++++++ install/ui/test/data/ipa_init.json | 1 + 2 files changed, 21 insertions(+) (limited to 'install/ui/test') diff --git a/install/ui/test/data/dnszone_show.json b/install/ui/test/data/dnszone_show.json index b7d5b87b..b113f7d4 100644 --- a/install/ui/test/data/dnszone_show.json +++ b/install/ui/test/data/dnszone_show.json @@ -18,6 +18,11 @@ "dsrecord": "rscwo", "hinforecord": "rscwo", "idnsallowdynupdate": "rscwo", + "idnsallowquery": "rscwo", + "idnsallowsyncptr": "rscwo", + "idnsallowtransfer": "rscwo", + "idnsforwarders": "rscwo", + "idnsforwardpolicy": "rscwo", "idnsname": "rscwo", "idnssoaexpire": "rscwo", "idnssoaminimum": "rscwo", @@ -51,6 +56,21 @@ "idnsallowdynupdate": [ "FALSE" ], + "idnsallowquery": [ + "any" + ], + "idnsallowsyncptr": [ + "TRUE" + ], + "idnsallowtransfer": [ + "none" + ], + "idnsforwarders": [ + "2003:beef::24" + ], + "idnsforwardpolicy": [ + "only" + ], "idnsname": [ "example.com" ], diff --git a/install/ui/test/data/ipa_init.json b/install/ui/test/data/ipa_init.json index 267ab5c9..8e07dbc9 100644 --- a/install/ui/test/data/ipa_init.json +++ b/install/ui/test/data/ipa_init.json @@ -430,6 +430,7 @@ "ip_v6_address": "Not a valid IPv6 address", "max_value": "Maximum value is ${value}", "min_value": "Minimum value is ${value}", + "net_address": "Not a valid network address", "required": "Required field" } } -- cgit