summaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-05-29 19:39:08 +0000
committerSteven Barth <steven@midlink.org>2008-05-29 19:39:08 +0000
commitd5c47776a5477bb9eaa9cd2585b3d27d10565807 (patch)
tree0c295fc55f30d18f72c088dfd19975552f2687fd /modules
parent3f5f89451e912039d70eeed9ed3373c72ab1e3f9 (diff)
* Temporarily disabled fastindex-support due to a bug where controllers containing "require"-calls are not indexed correctly
Diffstat (limited to 'modules')
-rw-r--r--modules/admin-core/luasrc/controller/admin/system.lua52
1 files changed, 9 insertions, 43 deletions
diff --git a/modules/admin-core/luasrc/controller/admin/system.lua b/modules/admin-core/luasrc/controller/admin/system.lua
index 304f1eee8..a7c65872a 100644
--- a/modules/admin-core/luasrc/controller/admin/system.lua
+++ b/modules/admin-core/luasrc/controller/admin/system.lua
@@ -8,49 +8,15 @@ require("luci.model.ipkg")
require("luci.model.uci")
function index()
- local page = node("admin", "system")
- page.target = template("admin_system/index")
- page.title = "System"
- page.order = 30
-
- local page = node("admin", "system", "packages")
- page.target = call("action_packages")
- page.title = "Paketverwaltung"
- page.order = 10
-
- local page = node("admin", "system", "packages", "ipkg")
- page.target = call("action_ipkg")
- page.title = "IPKG-Konfiguration"
-
- local page = node("admin", "system", "passwd")
- page.target = call("action_passwd")
- page.title = "Passwort ändern"
- page.order = 20
-
- local page = node("admin", "system", "sshkeys")
- page.target = call("action_sshkeys")
- page.title = "SSH-Schlüssel"
- page.order = 30
-
- local page = node("admin", "system", "hostname")
- page.target = cbi("admin_system/hostname")
- page.title = "Hostname"
- page.order = 40
-
- local page = node("admin", "system", "fstab")
- page.target = cbi("admin_system/fstab")
- page.title = "Einhängepunkte"
- page.order = 50
-
- local page = node("admin", "system", "upgrade")
- page.target = call("action_upgrade")
- page.title = "Firmwareupgrade"
- page.order = 60
-
- local page = node("admin", "system", "reboot")
- page.target = call("action_reboot")
- page.title = "Neu starten"
- page.order = 70
+ entry({"admin", "system"}, template("admin_system/index"), "System", 30)
+ entry({"admin", "system", "packages"}, call("action_packages"), "Paketverwaltung", 10)
+ entry({"admin", "system", "packages", "ipkg"}, call("action_ipkg"), "IPKG-Konfiguration")
+ entry({"admin", "system", "passwd"}, call("action_passwd"), "Passwort ändern", 20)
+ entry({"admin", "system", "sshkeys"}, call("action_sshkeys"), "SSH-Schlüssel", 30)
+ entry({"admin", "system", "hostname"}, cbi("admin_system/hostname"), "Hostname", 40)
+ entry({"admin", "system", "fstab"}, cbi("admin_system/fstab"), "Einhängepunkte", 50)
+ entry({"admin", "system", "upgrade"}, call("action_upgrade"), "Firmwareupgrade", 60)
+ entry({"admin", "system", "reboot"}, call("action_reboot"), "Neu starten", 70)
end
function action_editor()