2 LuCI - Lua Configuration Interface
4 Copyright 2008 Steven Barth <steven@midlink.org>
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
10 http://www.apache.org/licenses/LICENSE-2.0
14 module("luci.controller.admin.index", package.seeall)
17 luci.i18n.loadc("admin-core")
18 local i18n = luci.i18n.translate
21 if not root.target then
22 root.target = alias("admin")
25 entry({"about"}, template("about")).i18n = "admin-core"
27 local page = node("admin")
28 page.target = alias("admin", "index")
29 page.title = i18n("administration", "Administration")
31 page.i18n = "admin-core"
34 local page = node("admin", "index")
35 page.target = template("admin_index/index")
36 page.title = i18n("overview", "Übersicht")
39 local page = node("admin", "index", "luci")
40 page.target = cbi("admin_index/luci")
41 page.title = i18n("a_i_ui", "Oberfläche")
43 entry({"admin", "logout"}, call("action_logout"), i18n("logout"))
46 function action_logout()
47 luci.http.header("Set-Cookie", "sysauth=; path=/")
48 luci.http.redirect(luci.dispatcher.build_url())