Huuuuuuuuuuuge rewrite of the Wireless Configuration
[project/luci.git] / modules / admin-full / luasrc / controller / admin / network.lua
index 7614529..23a5758 100644 (file)
@@ -19,15 +19,32 @@ function index()
        local i18n = luci.i18n.translate
 
        local page  = node("admin", "network")
-       page.target = template("admin_network/index")
-       page.title  = i18n("network", "Netzwerk")  
+       page.target = alias("admin", "network", "network")
+       page.title  = i18n("network")  
        page.order  = 50
        
        local page  = node("admin", "network", "vlan")
        page.target = cbi("admin_network/vlan")
-       page.title  = i18n("a_n_switch", "Switch")
+       page.title  = i18n("a_n_switch")
        page.order  = 20
        
+       local page  = node("admin", "network", "wireless")
+       page.target = form("admin_network/wireless")
+       page.title  = i18n("wifi")
+       page.order  = 15
+       luci.model.uci.foreach("wireless", "wifi-device",
+               function (section)
+                       local ifc = section[".name"]
+                               entry({"admin", "network", "wireless", ifc},
+                                alias("admin", "network", "wifi", ifc),
+                                ifc:upper())
+               end
+       )
+       
+       local page  = node("admin", "network", "wifi")
+       page.target = cbi("admin_network/wifi")
+       page.leaf   = true
+       
        local page  = node("admin", "network", "network")
        page.target = cbi("admin_network/network")
        page.title  = i18n("interfaces", "Schnittstellen")
@@ -52,6 +69,12 @@ function index()
        page.title  = "DHCP"
        page.order  = 30
        
+       entry(
+        {"admin", "network", "dhcp", "leases"},
+        cbi("admin_network/dhcpleases"),
+        i18n("dhcp_leases")
+       ) 
+       
        local page  = node("admin", "network", "routes")
        page.target = cbi("admin_network/routes")
        page.title  = i18n("a_n_routes")