OXYGEN #1: Added index-marks
[project/luci.git] / modules / admin-full / luasrc / controller / admin / index.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5
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
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13 ]]--
14 module("luci.controller.admin.index", package.seeall)
15
16 function index()
17 luci.i18n.loadc("admin-core")
18 local i18n = luci.i18n.translate
19
20 local root = node()
21 if not root.target then
22 root.target = alias("admin")
23 root.index = true
24 end
25
26 entry({"about"}, template("about")).i18n = "admin-core"
27
28 local page = node("admin")
29 page.target = alias("admin", "index")
30 page.title = i18n("administration", "Administration")
31 page.order = 10
32 page.i18n = "admin-core"
33 page.sysauth = "root"
34 page.sysauth_authenticator = "htmlauth"
35 page.ucidata = true
36 page.index = true
37
38 local page = node("admin", "index")
39 page.target = template("admin_index/index")
40 page.title = i18n("overview", "Übersicht")
41 page.order = 10
42 page.index = true
43
44 local page = node("admin", "index", "luci")
45 page.target = cbi("admin_index/luci")
46 page.title = i18n("a_i_ui", "Oberfläche")
47
48 entry({"admin", "index", "logout"}, call("action_logout"), i18n("logout"))
49 end
50
51 function action_logout()
52 luci.http.header("Set-Cookie", "sysauth=; path=/")
53 luci.http.redirect(luci.dispatcher.build_url())
54 end