Merge pull request #1915 from Ansuel/upgrade
[project/luci.git] / themes / luci-theme-openwrt / luasrc / view / themes / openwrt.org / header.htm
1 <%#
2 Copyright 2008 Steven Barth <steven@midlink.org>
3 Copyright 2008-2010 Jo-Philipp Wich <jow@openwrt.org>
4 Licensed to the public under the Apache License 2.0.
5 -%>
6
7 <%
8 local sys = require "luci.sys"
9 local util = require "luci.util"
10 local http = require "luci.http"
11 local disp = require "luci.dispatcher"
12 local ver = require "luci.version"
13
14 local sysinfo = util.ubus("system", "info") or { }
15 local loadinfo = sysinfo.load or { 0, 0, 0 }
16 local boardinfo = util.ubus("system", "board") or { }
17
18 local request = disp.context.path
19 local request2 = disp.context.request
20
21 local category = request[1]
22 local cattree = category and disp.node(category)
23
24 local leaf = request2[#request2]
25
26 local tree = disp.node()
27 local node = disp.context.dispatched
28
29 local categories = disp.node_childs(tree)
30
31 local c = tree
32 local i, r
33
34 -- tag all nodes leading to this page
35 for i, r in ipairs(request) do
36 if c.nodes and c.nodes[r] then
37 c = c.nodes[r]
38 c._menu_selected = true
39 end
40 end
41
42 http.prepare_content("application/xhtml+xml")
43
44 local function nodeurl(prefix, name, query)
45 local u = url(prefix, name)
46 if query then
47 u = u .. http.build_querystring(query)
48 end
49 return pcdata(u)
50 end
51
52 local function render_menu(prefix, node, level)
53 if not level then
54 level = 1
55 end
56
57 local childs = disp.node_childs(node)
58 if #childs > 0 then
59 write('<ul class="mainmenu l%d">' % level)
60
61 local i, v
62 for i, v in ipairs(childs) do
63 local nnode = node.nodes[v]
64
65 write('<li class="mainmenu-item-%s %s"><a href="%s">%s</a>' %{
66 v, (nnode._menu_selected or (node.leaf and v == leaf)) and 'selected' or '',
67 nodeurl(prefix, v, nnode.query),
68 striptags(translate(nnode.title))
69 })
70
71 if level < 2 then
72 render_menu(prefix .. "/" .. v, nnode, level + 1)
73 end
74
75 write('</li>')
76 end
77
78 write('</ul>')
79 end
80 end
81
82 local function render_tabmenu(prefix, node, level)
83 if not level then
84 level = 1
85 end
86
87 local childs = disp.node_childs(node)
88 if #childs > 0 then
89 if level > 2 then
90 write('<ul class="cbi-tabmenu">')
91 end
92
93 local selected_node
94 local selected_name
95 local i, v
96
97 for i, v in ipairs(childs) do
98 local nnode = node.nodes[v]
99 if nnode._menu_selected then
100 selected_node = nnode
101 selected_name = v
102 end
103
104 if level > 2 then
105 write('<li class="tabmenu-item-%s %s"><a href="%s">%s</a></li>' %{
106 v, (nnode._menu_selected or (node.leaf and v == leaf)) and 'cbi-tab' or '',
107 nodeurl(prefix, v, nnode.query),
108 striptags(translate(nnode.title))
109 })
110 end
111 end
112
113 if level > 2 then
114 write('</ul>')
115 end
116
117 if selected_node then
118 render_tabmenu(prefix .. "/" .. selected_name, selected_node, level + 1)
119 end
120 end
121 end
122
123 local function render_changes()
124 if tree.nodes[category] and tree.nodes[category].ucidata then
125 local ucic = 0
126 for i, j in pairs(require("luci.model.uci").cursor():changes()) do
127 for k, l in pairs(j) do
128 for m, n in pairs(l) do
129 ucic = ucic + 1;
130 end
131 end
132 end
133
134 if ucic > 0 then
135 write('<div id="savemenu" class="uci_change_indicator"><a class="warning" href="%s?redir=%s">%s: %d</a></div>' %{
136 url(category, 'uci/changes'),
137 http.urlencode(http.formvalue('redir') or table.concat(disp.context.request, "/")),
138 translate('Unsaved Changes'),
139 ucic
140 })
141 end
142 end
143 end
144 -%>
145
146 <?xml version="1.0" encoding="utf-8"?>
147 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
148 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%=luci.i18n.context.lang%>" lang="<%=luci.i18n.context.lang%>">
149 <head>
150 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
151 <meta name="viewport" content="width=device-width, initial-scale=1" />
152 <meta http-equiv="Content-Script-Type" content="text/javascript" />
153 <link rel="stylesheet" type="text/css" media="screen" href="<%=media%>/cascade.css" />
154 <% if node and node.css then %><link rel="stylesheet" type="text/css" media="screen" href="<%=resource%>/<%=node.css%>" />
155 <% end -%>
156 <% if css then %><style title="text/css">
157 <%= css %>
158 </style>
159 <% end -%>
160 <script type="text/javascript" src="<%=resource%>/xhr.js"></script>
161 <script type="text/javascript">//<![CDATA[
162 document.addEventListener('DOMContentLoaded', function() {
163 var event = ('ontouchstart' in window) ? 'touchstart' : 'click';
164
165 document.querySelectorAll('ul.mainmenu.l1 > li > a').forEach(function(a) {
166 a.addEventListener(event, function(ev) {
167 var a = ev.target, ul1 = a.parentNode.parentNode, ul2 = a.nextElementSibling;
168
169 document.querySelectorAll('ul.mainmenu.l1 > li.active').forEach(function(li) {
170 if (li !== a.parentNode)
171 li.classList.remove('active');
172 });
173
174 if (!ul2)
175 return;
176
177 if (ul2.parentNode.offsetLeft + ul2.offsetWidth <= ul1.offsetLeft + ul1.offsetWidth)
178 ul2.classList.add('align-left');
179
180 ul1.classList.add('active');
181 a.parentNode.classList.add('active');
182 a.blur();
183
184 ev.preventDefault();
185 ev.stopPropagation();
186 });
187 });
188
189 document.addEventListener(event, function(ev) {
190 var t = ev.target;
191
192 while (t && t.id != 'mainmenu')
193 t = t.parentNode;
194
195 if (!t)
196 document.querySelectorAll('ul.mainmenu > li.active').forEach(function(li) {
197 li.classList.remove('active');
198 });
199 });
200 });
201 //]]></script>
202 <title><%=striptags( (boardinfo.hostname or "?") .. ( (node and node.title) and ' - ' .. translate(node.title) or '')) %> - LuCI</title>
203 </head>
204 <body class="lang_<%=luci.i18n.context.lang%>">
205
206 <p class="skiplink">
207 <span id="skiplink1"><a href="#navigation"><%:Skip to navigation%></a></span>
208 <span id="skiplink2"><a href="#content"><%:Skip to content%></a></span>
209 </p>
210
211 <div id="menubar">
212 <h2 class="navigation"><a id="navigation" name="navigation"><%:Navigation%></a></h2>
213
214 <div class="hostinfo">
215 <%=(boardinfo.hostname or "?")%> | <%=ver.distversion%> |
216 <%:Load%>: <%="%.2f" % (loadinfo[1] / 65535.0)%> <%="%.2f" % (loadinfo[2] / 65535.0)%> <%="%.2f" % (loadinfo[3] / 65535.0)%>
217 <span id="xhr_poll_status" style="display:none" onclick="XHR.running() ? XHR.halt() : XHR.run()">
218 | <%:Auto Refresh%>:
219 <span id="xhr_poll_status_on"><%:on%></span>
220 <span id="xhr_poll_status_off" style="display:none"><%:off%></span>
221 </span>
222 </div>
223
224 <% if #categories > 1 then %>
225 <ul id="modemenu">
226 <% for i, r in ipairs(categories) do %>
227 <li><a<% if request[1] == r then %> class="active"<%end%> href="<%=controller%>/<%=r%>/"><%=striptags(translate(tree.nodes[r].title))%></a></li>
228 <% end %>
229 </ul>
230 <% end %>
231
232 <% render_changes() %>
233
234 <div class="clear"></div>
235 </div>
236
237 <div id="maincontainer">
238 <div id="mainmenu">
239 <% if category then render_menu(category, cattree) end %>
240 </div>
241
242 <div id="maincontent">
243 <div id="tabmenu">
244 <% if category then render_tabmenu(category, cattree) end %>
245 </div>
246
247 <noscript>
248 <div class="alert-message warning">
249 <h4><%:JavaScript required!%></h4>
250 <p><%:You must enable JavaScript in your browser or LuCI will not work properly.%></p>
251 </div>
252 </noscript>
253
254 <%- if luci.sys.process.info("uid") == 0 and luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") and category ~= "failsafe" then -%>
255 <div class="alert-message warning">
256 <h4><%:No password set!%></h4>
257 <p><%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%></p>
258 <div class="right"><a class="btn" href="<%=url("admin/system/admin")%>"><%:Go to password configuration...%></a></div>
259 </div>
260 <%- end -%>