summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-firewall/luasrc/controller/luci_fw
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-10-16 15:24:07 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-10-16 15:24:07 +0000
commit4ad99af940a90592b51729aa44a155f8053fd85b (patch)
treea7831d514ce075b023b454ffc89f8dd2b2f293dc /applications/luci-firewall/luasrc/controller/luci_fw
parentdd2abf2ea44b02bff72812de593a9e3976fe7f15 (diff)
applications: rename luci-fw to luci-firewall
Diffstat (limited to 'applications/luci-firewall/luasrc/controller/luci_fw')
-rw-r--r--applications/luci-firewall/luasrc/controller/luci_fw/luci_fw.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/applications/luci-firewall/luasrc/controller/luci_fw/luci_fw.lua b/applications/luci-firewall/luasrc/controller/luci_fw/luci_fw.lua
new file mode 100644
index 0000000000..766821af0d
--- /dev/null
+++ b/applications/luci-firewall/luasrc/controller/luci_fw/luci_fw.lua
@@ -0,0 +1,13 @@
+module("luci.controller.luci_fw.luci_fw", package.seeall)
+
+function index()
+ require("luci.i18n").loadc("luci-fw")
+ local i18n = luci.i18n.translate
+
+ entry({"admin", "network", "firewall"}, alias("admin", "network", "firewall", "zones"), i18n("Firewall"), 60).i18n = "luci-fw"
+ entry({"admin", "network", "firewall", "zones"}, cbi("luci_fw/zones"), i18n("Zones"), 10)
+ entry({"admin", "network", "firewall", "redirect"}, arcombine(cbi("luci_fw/redirect"), cbi("luci_fw/rrule")), i18n("Traffic Redirection"), 30).leaf = true
+ entry({"admin", "network", "firewall", "rule"}, arcombine(cbi("luci_fw/traffic"), cbi("luci_fw/trule")), i18n("Traffic Control"), 20).leaf = true
+
+ entry({"mini", "network", "portfw"}, cbi("luci_fw/miniportfw", {autoapply=true}), i18n("Port forwarding"), 70).i18n = "luci-fw"
+end \ No newline at end of file