Made distinction between INPUT and FORWARD rules less ambiguous
authorSteven Barth <steven@midlink.org>
Sat, 4 Oct 2008 11:43:47 +0000 (11:43 +0000)
committerSteven Barth <steven@midlink.org>
Sat, 4 Oct 2008 11:43:47 +0000 (11:43 +0000)
applications/luci-fw/luasrc/model/cbi/luci_fw/traffic.lua
applications/luci-fw/luasrc/model/cbi/luci_fw/trule.lua

index 660f970..b810f13 100644 (file)
@@ -67,7 +67,7 @@ end
 dest = s:option(DummyValue, "dest", translate("fw_dest"))
 function dest.cfgvalue(self, s)
        return "%s:%s:%s" % {
-               self.map:get(s, "dest") or "*",
+               self.map:get(s, "dest") or translate("device", "device"),
                self.map:get(s, "dest_ip") or "0.0.0.0/0",
                self.map:get(s, "dest_port") or "*"
        } 
index 2538c1b..fa5b44e 100644 (file)
@@ -25,12 +25,12 @@ back.titleref = luci.dispatcher.build_url("admin", "network", "firewall", "traff
 name = s:option(Value, "_name", translate("name")..translate("cbi_optional"))
 name.rmempty = true
 
-iface = s:option(ListValue, "src", translate("firewall_rule_src"))
+iface = s:option(ListValue, "src", translate("fw_src"))
 iface.rmempty = true
 
-oface = s:option(ListValue, "dest", translate("firewall_rule_dest"))
-oface:value("")
-oface.optional = true
+oface = s:option(ListValue, "dest", translate("fw_dest"))
+oface:value("", translate("device", "device"))
+oface.rmempty = true
 
 luci.model.uci.cursor():foreach("firewall", "zone",
        function (section)