Changeset 7017
- Timestamp:
- 05/04/11 00:06:29 (2 years ago)
- Location:
- luci/trunk/modules/admin-full/luasrc
- Files:
-
- 1 added
- 2 removed
- 2 modified
-
controller/admin/network.lua (modified) (1 diff)
-
controller/admin/services.lua (modified) (1 diff)
-
model/cbi/admin_network/dhcp.lua (added)
-
model/cbi/admin_network/dhcpleases.lua (deleted)
-
model/cbi/admin_services/dnsmasq.lua (deleted)
Legend:
- Unmodified
- Added
- Removed
-
luci/trunk/modules/admin-full/luasrc/controller/admin/network.lua
r6975 r7017 107 107 108 108 if nixio.fs.access("/etc/config/dhcp") then 109 page = node("admin", "network", "dhcp leases")110 page.target = cbi("admin_network/dhcp leases")111 page.title = i18n("DHCP Leases")109 page = node("admin", "network", "dhcp") 110 page.target = cbi("admin_network/dhcp") 111 page.title = i18n("DHCP and DNS") 112 112 page.order = 30 113 113 -
luci/trunk/modules/admin-full/luasrc/controller/admin/services.lua
r7015 r7017 28 28 page.order = 40 29 29 page.index = true 30 31 if nixio.fs.access("/etc/config/dhcp") then32 local page = node("admin", "services", "dnsmasq")33 page.target = cbi("admin_services/dnsmasq")34 page.title = "Dnsmasq"35 page.order = 3036 end37 30 end
