summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-fw/luasrc/controller/luci_fw
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2009-01-04 15:46:08 +0000
committerSteven Barth <steven@midlink.org>2009-01-04 15:46:08 +0000
commitbb44869de9ba8d5035d4c74e3651e911e959a863 (patch)
tree3ca6bf2c61fcb6d47e126349f80051f54773ec60 /applications/luci-fw/luasrc/controller/luci_fw
parentf911758bc2b5799f05290954bdfe23e81577548b (diff)
Cleanup overview / details nodes
Diffstat (limited to 'applications/luci-fw/luasrc/controller/luci_fw')
-rw-r--r--applications/luci-fw/luasrc/controller/luci_fw/luci_fw.lua24
1 files changed, 5 insertions, 19 deletions
diff --git a/applications/luci-fw/luasrc/controller/luci_fw/luci_fw.lua b/applications/luci-fw/luasrc/controller/luci_fw/luci_fw.lua
index 90213cf544..2be03d6883 100644
--- a/applications/luci-fw/luasrc/controller/luci_fw/luci_fw.lua
+++ b/applications/luci-fw/luasrc/controller/luci_fw/luci_fw.lua
@@ -3,25 +3,11 @@ module("luci.controller.luci_fw.luci_fw", package.seeall)
function index()
require("luci.i18n").loadc("luci-fw")
local i18n = luci.i18n.translate
-
- local nodes = {}
- table.insert(nodes, entry({"admin", "network", "firewall"}, alias("admin", "network", "firewall", "zones"), i18n("fw_fw"), 60))
- nodes[#nodes].index = true
-
- table.insert(nodes, entry({"admin", "network", "firewall", "zones"}, cbi("luci_fw/zones"), i18n("fw_zones"), 10))
- table.insert(nodes, entry({"admin", "network", "firewall", "redirection"}, cbi("luci_fw/redirect"), i18n("fw_redirect"), 30))
- table.insert(nodes, entry({"admin", "network", "firewall", "traffic"}, cbi("luci_fw/traffic"), i18n("fw_traffic"), 20))
-
- table.insert(nodes, entry({"admin", "network", "firewall", "rule"}, cbi("luci_fw/trule")))
- nodes[#nodes].leaf = true
- table.insert(nodes, entry({"admin", "network", "firewall", "redirect"}, cbi("luci_fw/rrule")))
- nodes[#nodes].leaf = true
-
- table.insert(nodes, entry({"mini", "network", "portfw"}, cbi("luci_fw/miniportfw", {autoapply=true}), i18n("fw_portfw", "Portweiterleitung"), 70))
+ entry({"admin", "network", "firewall"}, alias("admin", "network", "firewall", "zones"), i18n("fw_fw"), 60).i18n = "luci-fw"
+ entry({"admin", "network", "firewall", "zones"}, cbi("luci_fw/zones"), i18n("fw_zones"), 10)
+ entry({"admin", "network", "firewall", "redirect"}, arcombine(cbi("luci_fw/redirect"), cbi("luci_fw/rrule")), i18n("fw_redirect"), 30).leaf = true
+ entry({"admin", "network", "firewall", "rule"}, arcombine(cbi("luci_fw/traffic"), cbi("luci_fw/trule")), i18n("fw_traffic"), 20).leaf = true
- for i,n in ipairs(nodes) do
- n.i18n = "luci-fw"
- n.dependent = true
- end
+ entry({"mini", "network", "portfw"}, cbi("luci_fw/miniportfw", {autoapply=true}), i18n("fw_portfw", "Portweiterleitung"), 70).i18n = "luci-fw"
end \ No newline at end of file