Firewall GUI optimizations
authorSteven Barth <steven@midlink.org>
Fri, 9 Jan 2009 10:05:59 +0000 (10:05 +0000)
committerSteven Barth <steven@midlink.org>
Fri, 9 Jan 2009 10:05:59 +0000 (10:05 +0000)
applications/luci-fw/luasrc/model/cbi/luci_fw/rrule.lua
applications/luci-fw/luasrc/model/cbi/luci_fw/trule.lua

index 9c40d95..d3fc589 100644 (file)
@@ -40,7 +40,6 @@ s:option(Value, "src_ip", translate("firewall_redirect_srcip")).optional = true
 s:option(Value, "src_mac", translate("firewall_redirect_srcmac")).optional = true
 
 sport = s:option(Value, "src_port", translate("firewall_redirect_srcport"))
-sport.optional = true
 sport:depends("proto", "tcp")
 sport:depends("proto", "udp")
 sport:depends("proto", "tcpudp")
@@ -54,7 +53,6 @@ proto:value("tcpudp", "TCP+UDP")
 
 dport = s:option(Value, "src_dport", translate("firewall_redirect_srcdport"))
 dport.size = 5
-dport.optional = true
 dport:depends("proto", "tcp")
 dport:depends("proto", "udp")
 dport:depends("proto", "tcpudp")
index 72a36f9..c7aab0f 100644 (file)
@@ -52,13 +52,11 @@ s:option(Value, "dest_ip", translate("firewall_rule_destip")).optional = true
 s:option(Value, "src_mac", translate("firewall_rule_srcmac")).optional = true
 
 sport = s:option(Value, "src_port", translate("firewall_rule_srcport"))
-sport.optional = true
 sport:depends("proto", "tcp")
 sport:depends("proto", "udp")
 sport:depends("proto", "tcpudp")
 
 dport = s:option(Value, "dest_port", translate("firewall_rule_destport"))
-dport.optional = true
 dport:depends("proto", "tcp")
 dport:depends("proto", "udp")
 dport:depends("proto", "tcpudp")