* Added DHCP page
authorSteven Barth <steven@midlink.org>
Thu, 10 Apr 2008 18:36:34 +0000 (18:36 +0000)
committerSteven Barth <steven@midlink.org>
Thu, 10 Apr 2008 18:36:34 +0000 (18:36 +0000)
* Prepared Status section
* Minor changes

contrib/index.cgi
src/ffluci/controller/admin/status.lua [new file with mode: 0644]
src/ffluci/model/cbi/admin_network/dhcp.lua [new file with mode: 0644]
src/ffluci/model/cbi/admin_network/firewall.lua
src/ffluci/model/cbi/admin_wifi/networks.lua
src/ffluci/model/menu/00main.lua
src/ffluci/view/admin_status/index.htm [new file with mode: 0644]
src/ffluci/view/admin_status/system.htm [new file with mode: 0644]

index 31705ccf27e663ea6b1df641f8062510374a10e6..c9c98b0b29f84839805811b4bd184620c568b12c 100755 (executable)
@@ -1,3 +1,3 @@
 #!/usr/bin/haserl --shell=luac
 print("Status: 302 Found")
-print("Location: ffluci\n")
+print("Location: ffluci/admin\n")
diff --git a/src/ffluci/controller/admin/status.lua b/src/ffluci/controller/admin/status.lua
new file mode 100644 (file)
index 0000000..bdd51d4
--- /dev/null
@@ -0,0 +1 @@
+module("ffluci.controller.admin.status", package.seeall)
\ No newline at end of file
diff --git a/src/ffluci/model/cbi/admin_network/dhcp.lua b/src/ffluci/model/cbi/admin_network/dhcp.lua
new file mode 100644 (file)
index 0000000..83ba196
--- /dev/null
@@ -0,0 +1,37 @@
+-- ToDo: Translate, Add descriptions and help texts
+require("ffluci.model.uci")
+require("ffluci.sys")
+
+m = Map("dhcp", "DHCP")
+
+s = m:section(TypedSection, "dhcp")
+s.addremove = true
+s.anonymous = true
+
+iface = s:option(ListValue, "interface", "Schnittstelle")
+for k, v in pairs(ffluci.model.uci.show("network").network) do
+       if v[".type"] == "interface" and k ~= "loopback" then
+               iface:value(k)
+       end
+end
+
+s:option(Value, "start", "Start").rmempty = true
+
+s:option(Value, "limit", "Limit").rmempty = true
+
+s:option(Flag, "dynamicdhcp", "Dynamisches DHCP").rmempty = true
+
+s:option(Value, "name", "Name").optional = true
+
+s:option(Flag, "ignore", "Schnittstelle ignorieren").optional = true
+
+s:option(Value, "netmask", "Netzmaske").optional = true
+
+s:option(Flag, "force", "Start erzwingen").optional = true
+
+for i, line in pairs(ffluci.sys.execl("dnsmasq --help dhcp")) do
+       k, v = line:match("([^ ]+) +([^ ]+)")
+       s:option(Value, "dhcp"..k, v).optional = true
+end
+       
+return m
\ No newline at end of file
index aa56328a0b203d47a7a4f4c5fbbeea5f2e688139..cf7018e996115d80735ff191fff3821dc9af755e 100644 (file)
@@ -3,6 +3,7 @@ m = Map("luci_fw", "Firewall")
 
 s = m:section(TypedSection, "rule")
 s.addremove = true
+s.anonymous = true
 
 chain = s:option(ListValue, "chain", "Kette")
 chain:value("forward", "Forward")
index c7a1b407d49e01796de8537337dd1754e7bd82e0..20342ffb037b129dbf8f408bc4cacd8f755ac24b 100644 (file)
@@ -20,7 +20,7 @@ end
 network = s:option(ListValue, "network", "Netzwerk")
 network:value("")
 for k, v in pairs(ffluci.model.uci.show("network").network) do
-       if v[".type"] == "interface" then
+       if v[".type"] == "interface" and k ~= "loopback" then
                network:value(k)
        end
 end
index 0877b8fe6d1326af336f35978b5342d5ec6fa697..09c5dbf0def5a3c1ebb2b0d58c0b75a24590acb2 100644 (file)
@@ -7,7 +7,10 @@ add("admin", "index", "Übersicht", 10)
 act("contact", "Kontakt")
 act("luci", "FFLuCI")
 
-add("admin", "system", "System", 20)
+add("admin", "status", "Status", 20)
+act("system", "System")
+
+add("admin", "system", "System", 30)
 act("packages", "Paketverwaltung")
 act("passwd", "Passwort ändern")
 act("sshkeys", "SSH-Schlüssel")
@@ -15,20 +18,21 @@ act("fstab", "Einhängepunkte")
 act("upgrade", "Firmwareupgrade")
 act("reboot", "Neu starten")
 
-add("admin", "services", "Dienste", 30)
+add("admin", "services", "Dienste", 40)
 act("olsrd", "OLSR")
 act("httpd", "HTTP-Server")
 act("dropbear", "SSH-Server")
 act("dnsmasq", "Dnsmasq")
 
-add("admin", "network", "Netzwerk", 40)
+add("admin", "network", "Netzwerk", 50)
 act("vlan", "Switch")
 act("ifaces", "Schnittstellen")
+act("dhcp", "DHCP-Server")
 act("ptp", "PPPoE / PPTP")
 act("routes", "Statische Routen")
 act("portfw", "Portweiterleitung")
 act("firewall", "Firewall")
 
-add("admin", "wifi", "Drahtlos", 50)
+add("admin", "wifi", "Drahtlos", 60)
 act("devices", "Geräte")
 act("networks", "Netze")
\ No newline at end of file
diff --git a/src/ffluci/view/admin_status/index.htm b/src/ffluci/view/admin_status/index.htm
new file mode 100644 (file)
index 0000000..75aa026
--- /dev/null
@@ -0,0 +1,2 @@
+<%+header%>
+<%+footer%>
\ No newline at end of file
diff --git a/src/ffluci/view/admin_status/system.htm b/src/ffluci/view/admin_status/system.htm
new file mode 100644 (file)
index 0000000..75aa026
--- /dev/null
@@ -0,0 +1,2 @@
+<%+header%>
+<%+footer%>
\ No newline at end of file