Completely rewrote WiFi configuration pages, to synchronise with upstream featureset...
[project/luci.git] / modules / admin-full / luasrc / controller / admin / network.lua
index a4b070c..5062399 100644 (file)
@@ -15,11 +15,11 @@ module("luci.controller.admin.network", package.seeall)
 
 function index()
        require("luci.i18n")
-       require("luci.model.uci")
+       local uci = require("luci.model.uci").cursor()
        local i18n = luci.i18n.translate
 
        local page  = node("admin", "network")
-       page.target = template("admin_network/index")
+       page.target = alias("admin", "network", "network")
        page.title  = i18n("network")  
        page.order  = 50
        
@@ -28,11 +28,30 @@ function index()
        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.i18n   = "wifi"
+       page.order  = 15
+       uci:foreach("wireless", "wifi-device",
+               function (section)
+                       local ifc = section[".name"]
+                               entry({"admin", "network", "wireless", ifc},
+                                alias("admin", "network", "wifi", ifc),
+                                ifc:upper()).i18n = "wifi"
+               end
+       )
+       
+       local page  = node("admin", "network", "wifi")
+       page.target = cbi("admin_network/wifi")
+       page.leaf   = true
+       page.i18n = "wifi"
+       
        local page  = node("admin", "network", "network")
        page.target = cbi("admin_network/network")
        page.title  = i18n("interfaces", "Schnittstellen")
        page.order  = 10
-       luci.model.uci.foreach("network", "interface",
+       uci:foreach("network", "interface",
                function (section)
                        local ifc = section[".name"]
                        if ifc ~= "loopback" then