A few smaller usability improvements

This commit is contained in:
Steven Barth
2008-07-18 08:24:42 +00:00
parent 5c419acf92
commit b0f7ffe237
4 changed files with 44 additions and 13 deletions

View File

@@ -50,19 +50,26 @@ else
end
mode = s:option(ListValue, "mode", translate("mode"))
mode:value("ap", "Access Point")
mode:value("adhoc", "Ad-Hoc")
mode:value("sta", "Client")
mode:value("ap", translate("m_w_ap"))
mode:value("adhoc", translate("m_w_adhoc"))
mode:value("sta", translate("m_w_client"))
function mode.write(self, section, value)
if value == "sta" then
-- ToDo: Move this away
if not luci.model.uci.get("network", "wan") then
luci.model.uci.set("network", "wan", "interface")
luci.model.uci.set("network", "wan", "proto", "none")
end
luci.model.uci.set("network", "wan", "type", "bridge")
luci.model.uci.set("wireless", section, "network", "wan")
luci.model.uci.save("network")
self.map:set(section, "network", "wan")
else
luci.model.uci.delete("network", "wan", "type")
luci.model.uci.set("wireless", section, "network", "lan")
self.map:set(section, "network", "lan")
end
luci.model.uci.save("network")
return ListValue.write(self, section, value)
end