* libs/web: Added support for custom query strings
[project/luci.git] / themes / fledermaus / luasrc / view / themes / fledermaus / header.htm
1 <%
2 require("luci.sys")
3 local load1, load5, load15 = luci.sys.loadavg()
4 local request = require("luci.dispatcher").request
5 local category = request[1]
6 local tree = luci.dispatcher.node()
7 local cattree = category and luci.dispatcher.node(category)
8 local node = luci.dispatcher.dispatched
9
10 local c = tree
11 for i,r in ipairs(request) do
12 if c.nodes and c.nodes[r] then
13 c = c.nodes[r]
14 c._menu_selected = true
15 end
16 end
17
18 require("luci.i18n").loadc("default")
19
20 require("luci.http").prepare_content("text/html")
21 %><?xml version="1.0" encoding="utf-8"?>
22 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
23 <html xmlns="http://www.w3.org/1999/xhtml">
24 <head>
25 <link rel="stylesheet" type="text/css" href="<%=media%>/cascade.css" />
26 <% if node and node.css then %><link rel="stylesheet" type="text/css" href="<%=resource%>/<%=node.css%>" /><% end %>
27 <meta http-equiv="content-type" content="text/xhtml+xml; charset=utf-8" />
28 <meta http-equiv="content-script-type" content="text/javascript" />
29 <title>LuCI - Lua Configuration Interface - <%=node.title%></title>
30 </head>
31 <body>
32 <div id="header">
33 <div class="headerlogo left"><img src="<%=media%>/logo.png" alt="<%=luci.config.brand.title%>" /></div>
34 <div class="whitetext smalltext right">
35 <%=luci.config.brand.firmware%><br />
36 <%=luci.config.brand.distro%><br />
37 <%:load Last%>: <%=load1%> <%=load5%> <%=load15%><br />
38 <%:hostname Hostname%>: <%=luci.sys.hostname()%>
39 </div>
40 <div>
41 <span class="headertitle"><%=luci.config.brand.title%></span><br />
42 <span class="whitetext bold"><%=luci.config.brand.subtitle%></span>
43 </div>
44 </div>
45
46 <div class="separator yellow bold">
47 <%:path Pfad%>: <%
48 local c = tree
49 local url = controller
50 for k,v in pairs(request) do
51 if c.nodes and c.nodes[v] then
52 c = c.nodes[v]
53 url = url .. "/" .. v
54 %><a href="<%=url%>"><%=c.title or v%></a> <% if k ~= #request then %>&#187; <% end
55 end
56 end
57 %>
58 </div>
59
60 <div id="columns"><div id="columnswrapper">
61 <div class="sidebar left">
62 <%
63 local function submenu(prefix, node)
64 if not node._menu_selected or not node.nodes then
65 return false
66 end
67 local index = {}
68 for k, n in pairs(node.nodes) do
69 table.insert(index, {name=k, order=n.order or 100})
70 end
71
72 table.sort(index, function(a, b) return a.order < b.order end)
73 %>
74 <ul>
75 <% for j, v in pairs(index) do
76 local nnode = node.nodes[v.name]
77 local href = controller .. prefix .. v.name
78 href = (v.query) and href .. luci.http.build_querystring(v.query) or href
79 %>
80 <li>
81 <span<% if nnode._menu_selected then %> class="yellowtext"<%end%>><a href="<%=href%>"><%=nnode.title%></a></span>
82 <% submenu(prefix .. v.name .. "/", nnode) %>
83 </li>
84 <% end %>
85 </ul>
86 <%
87 end
88
89 if cattree and cattree.nodes then
90 local index = {}
91 for k, node in pairs(cattree.nodes) do
92 table.insert(index, {name=k, order=node.order or 100})
93 end
94
95 table.sort(index, function(a, b) return a.order < b.order end)
96
97 for i, k in ipairs(index) do
98 node = cattree.nodes[k.name]
99 if node.title then
100 local href = controller.."/"..category.."/"..k.name
101 href = (k.query) and href .. luci.http.build_querystring(k.query) or href %>
102 <div<% if node._menu_selected then %> class="yellowtext"<%end%>><a href="<%=controller%>/<%=category%>/<%=k.name%>"><%=node.title%></a>
103 <%submenu("/" .. category .. "/" .. k.name .. "/", node)%>
104 </div>
105 <% end
106 end
107 end
108 %>
109 </div>
110 <div class="sidebar right">
111 <div><%:webui Weboberfläche%>
112 <ul><%
113 for k,node in pairs(tree.nodes) do
114 if node.title then %>
115 <li<% if request[1] == k then %> class="yellowtext"<%end%>><a href="<%=controller%>/<%=k%>"><%=node.title%></a></li>
116 <% end
117 end%>
118 </ul>
119 </div>
120 <%
121 if "admin" == request[1] then
122 require("luci.model.uci")
123 local ucic = luci.model.uci.changes()
124 if ucic then
125 ucic = #luci.util.split(ucic)
126 end
127 %>
128 <div><%:config Konfiguration%>
129 <ul>
130 <% if ucic then %>
131 <li><a href="<%=controller%>/admin/uci/changes"><%:changes Änderungen%>: <%=ucic%></a></li>
132 <li><a href="<%=controller%>/admin/uci/apply"><%:apply Anwenden%></a></li>
133 <li><a href="<%=controller%>/admin/uci/revert"><%:revert Verwerfen%></a></li>
134 <% else %>
135 <li><%:changes Änderungen%>: 0</li>
136 <% end %>
137 </ul>
138 </div>
139 <% end %>
140 </div>
141 <div id="content">