UCI API changes
[project/luci.git] / applications / luci-fw / luasrc / model / cbi / luci_fw / routing.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13 ]]--
14 m = Map("firewall", translate("fw_forwarding"), translate("fw_forwarding1"))
15
16 s = m:section(TypedSection, "forwarding", "")
17 s.template  = "cbi/tblsection"
18 s.addremove = true
19 s.anonymous = true
20
21 iface = s:option(ListValue, "src")
22 oface = s:option(ListValue, "dest")
23
24 luci.model.uci.cursor():foreach("firewall", "zone",
25         function (section)
26                         iface:value(section.name)
27                         oface:value(section.name)
28         end)
29
30 return m