43abeedf7988ebae92f21c2b4b2b22b2afb21181
[project/luci.git] / themes / openwrt-light / luasrc / view / themes / openwrt-light / header.htm
1 <%#
2 LuCI - Lua Configuration Interface
3 Copyright 2008 Steven Barth <steven@midlink.org>
4 Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
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 -%>
15 <%
16 require("luci.sys")
17 local load1, load5, load15 = luci.sys.loadavg()
18 local request = require("luci.dispatcher").context.path
19 local category = request[1]
20 local tree = luci.dispatcher.node()
21 local cattree = category and luci.dispatcher.node(category)
22 local node = luci.dispatcher.context.dispatched
23 local hostname = luci.sys.hostname()
24
25 local c = tree
26 for i,r in ipairs(request) do
27 if c.nodes and c.nodes[r] then
28 c = c.nodes[r]
29 c._menu_selected = true
30 end
31 end
32
33 require("luci.i18n").loadc("default")
34 require("luci.http").prepare_content("text/html")
35
36 -%>
37
38 <?xml version="1.0" encoding="utf-8"?>
39 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
40 <html xmlns="http://www.w3.org/1999/xhtml">
41 <head>
42 <link rel="stylesheet" type="text/css" href="<%=media%>/cascade.css" />
43 <% if node and node.css then %><link rel="stylesheet" type="text/css" href="<%=resource%>/<%=node.css%>" /><% end %>
44 <meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
45 <meta http-equiv="content-script-type" content="text/javascript" />
46 <title><%= hostname .. ( (node and node.title) and ' - ' .. node.title or '') %> - LuCI</title>
47
48 <!--[if lt IE 7]>
49 <script type="text/javascript">
50 function setup_hover() {
51 function ie_hover(e) {
52 e.onmouseover = function() { this.className = "hover" }
53 e.onmouseout = function() { this.className = null }
54 }
55
56 var lis = document.getElementById("mainmenu").getElementsByTagName("LI");
57 var divs = document.getElementById("mainmenu").getElementsByTagName("DIV");
58
59 for( var i = 0; i < lis.length; i++ ) ie_hover( lis[i] );
60 for( var i = 0; i < divs.length; i++ ) ie_hover( divs[i] );
61 }
62 </script>
63 <![endif]-->
64 </head>
65 <body onload="window.setup_hover && setup_hover()">
66 <div id="header">
67 <div class="info whitetext smalltext bold right">
68 <%=luci.config.brand.firmware%> (<%=luci.config.brand.distro%>) |
69 <%:load%>: <%=load1%> <%=load5%> <%=load15%> |
70 <%:hostname%>: <%=hostname%>
71 </div>
72 <div class="title">
73 <span class="headertitle"><%=luci.config.brand.title%></span><br />
74 <span class="whitetext bold"><%=luci.config.brand.subtitle%></span>
75 </div>
76 </div>
77
78 <div class="pathbar separator black whitetext bold">
79 <%:path%>: <%
80 local c = tree
81 local url = controller
82 for k,v in pairs(request) do
83 if c.nodes and c.nodes[v] then
84 c = c.nodes[v]
85 url = url .. "/" .. v
86 %><a href="<%=url%>"><%=c.title or v%></a> <% if k ~= #request then %>&#187; <% end
87 end
88 end
89 %>
90 </div>
91
92 <div class="menubar">
93 <div id="mainmenu" class="mainmenu">
94 <%-
95 local function submenu(prefix, node)
96 if not node.nodes then
97 return false
98 end
99 local index = {}
100 local count = 0
101 for k, n in pairs(node.nodes) do
102 if n.title and n.target then
103 table.insert(index, {name=k, order=n.order or 100})
104 count = count + 1
105 end
106 end
107
108 table.sort(index, function(a, b) return a.order < b.order end)
109
110 if count > 0 then
111 %>
112 <ul>
113 <%- for j, v in pairs(index) do
114 if #v.name > 0 then
115 local nnode = node.nodes[v.name]
116 local href = controller .. prefix .. v.name
117 href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href
118 %>
119 <li>
120 <span<% if nnode._menu_selected then %> class="active"<%end%>><a href="<%=href%>"><%=nnode.title%></a></span>
121 <%- submenu(prefix .. v.name .. "/", nnode) %>
122 </li>
123 <%- end %>
124 <%- end %>
125 </ul>
126 <%-
127 end
128 end
129
130 if cattree and cattree.nodes then
131 local index = {}
132 for k, node in pairs(cattree.nodes) do
133 table.insert(index, {name=k, order=node.order or 100})
134 end
135
136 table.sort(index, function(a, b) return a.order < b.order end)
137
138 for i, k in ipairs(index) do
139 node = cattree.nodes[k.name]
140 if node.title and node.target then
141 local href = controller.."/"..category.."/"..k.name
142 href = (k.query) and href .. luci.http.build_querystring(k.query) or href %>
143 <div<% if node._menu_selected then %> class="preactive"<%end%>><a href="<%=href%>"><%=node.title%></a>
144 <%submenu("/" .. category .. "/" .. k.name .. "/", node)%>
145 </div>
146 <% end
147 end
148 end
149 %>
150 </div>
151 <div class="modemenu">
152 <ul><%
153 for k,node in pairs(tree.nodes) do
154 if node.title then %>
155 <li<% if request[1] == k then %> class="active"<%end%>><a href="<%=controller%>/<%=k%>"><%=node.title%></a></li>
156 <% end
157 end%>
158 </ul>
159 </div>
160
161 <%
162 if tree.nodes[category] and tree.nodes[category].ucidata then
163 local ucic = 0
164 for i, j in pairs(require("luci.model.uci").changes()) do
165 for k, l in pairs(j) do
166 for m, n in pairs(l) do
167 ucic = ucic + 1;
168 end
169 end
170 end
171 %>
172 <div class="mainmenu" style="float:right; margin-right:2em">
173 <div>
174 <% if ucic > 0 then %>
175 <a class="warning" href="<%=controller%>/<%=category%>/uci/changes"><%:unsavedchanges%>: <%=ucic%></a>
176 <% submenu("/" .. category .. "/uci/", tree.nodes[category].nodes["uci"]) -%>
177 <% else %>
178 <a href="#"><%:changes%>: 0</a>
179 <% end %>
180 </div>
181 </div>
182 <% end %>
183
184 <br class="clear" />
185 </div>
186 <div id="content">