treewide: always include cbi.js
[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 if level == 3 then
91 write('<div id="tabmenu">')
92 end
93 write('<ul class="cbi-tabmenu">')
94 end
95
96 local selected_node
97 local selected_name
98 local i, v
99
100 for i, v in ipairs(childs) do
101 local nnode = node.nodes[v]
102 if nnode._menu_selected then
103 selected_node = nnode
104 selected_name = v
105 end
106
107 if level > 2 then
108 write('<li class="tabmenu-item-%s %s"><a href="%s">%s</a></li>' %{
109 v, (nnode._menu_selected or (node.leaf and v == leaf)) and 'cbi-tab' or '',
110 nodeurl(prefix, v, nnode.query),
111 striptags(translate(nnode.title))
112 })
113 end
114 end
115
116 if level > 2 then
117 write('</ul>')
118 if level == 3 then
119 write('</div>')
120 end
121 end
122
123 if selected_node then
124 render_tabmenu(prefix .. "/" .. selected_name, selected_node, level + 1)
125 end
126 end
127 end
128
129 local function render_changes()
130 if tree.nodes[category] and tree.nodes[category].ucidata then
131 local ucic = 0
132 for i, j in pairs(require("luci.model.uci").cursor():changes()) do
133 for k, l in pairs(j) do
134 for m, n in pairs(l) do
135 ucic = ucic + 1;
136 end
137 end
138 end
139
140 if ucic > 0 then
141 write('<div id="savemenu" class="uci_change_indicator"><a class="warning" href="%s?redir=%s">%s: %d</a></div>' %{
142 url(category, 'uci/changes'),
143 http.urlencode(http.formvalue('redir') or table.concat(disp.context.request, "/")),
144 translate('Unsaved Changes'),
145 ucic
146 })
147 end
148 end
149 end
150 -%>
151
152 <?xml version="1.0" encoding="utf-8"?>
153 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
154 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%=luci.i18n.context.lang%>" lang="<%=luci.i18n.context.lang%>">
155 <head>
156 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
157 <meta name="viewport" content="width=device-width, initial-scale=1" />
158 <meta http-equiv="Content-Script-Type" content="text/javascript" />
159 <link rel="stylesheet" type="text/css" media="screen" href="<%=media%>/cascade.css" />
160 <% if node and node.css then %><link rel="stylesheet" type="text/css" media="screen" href="<%=resource%>/<%=node.css%>" />
161 <% end -%>
162 <% if css then %><style title="text/css">
163 <%= css %>
164 </style>
165 <% end -%>
166 <script type="text/javascript" src="<%=resource%>/cbi.js"></script>
167 <script type="text/javascript" src="<%=resource%>/xhr.js"></script>
168 <script type="text/javascript">//<![CDATA[
169 document.addEventListener('DOMContentLoaded', function() {
170 var event = ('ontouchstart' in window) ? 'touchstart' : 'click';
171
172 document.querySelectorAll('ul.mainmenu.l1 > li > a').forEach(function(a) {
173 a.addEventListener(event, function(ev) {
174 var a = ev.target, ul1 = a.parentNode.parentNode, ul2 = a.nextElementSibling;
175
176 document.querySelectorAll('ul.mainmenu.l1 > li.active').forEach(function(li) {
177 if (li !== a.parentNode)
178 li.classList.remove('active');
179 });
180
181 if (!ul2)
182 return;
183
184 if (ul2.parentNode.offsetLeft + ul2.offsetWidth <= ul1.offsetLeft + ul1.offsetWidth)
185 ul2.classList.add('align-left');
186
187 ul1.classList.add('active');
188 a.parentNode.classList.add('active');
189 a.blur();
190
191 ev.preventDefault();
192 ev.stopPropagation();
193 });
194 });
195
196 document.addEventListener(event, function(ev) {
197 var t = ev.target;
198
199 while (t && t.id != 'mainmenu')
200 t = t.parentNode;
201
202 if (!t)
203 document.querySelectorAll('ul.mainmenu > li.active').forEach(function(li) {
204 li.classList.remove('active');
205 });
206 });
207 });
208 //]]></script>
209 <title><%=striptags( (boardinfo.hostname or "?") .. ( (node and node.title) and ' - ' .. translate(node.title) or '')) %> - LuCI</title>
210 </head>
211 <body class="lang_<%=luci.i18n.context.lang%>">
212
213 <p class="skiplink">
214 <span id="skiplink1"><a href="#navigation"><%:Skip to navigation%></a></span>
215 <span id="skiplink2"><a href="#content"><%:Skip to content%></a></span>
216 </p>
217
218 <div id="menubar">
219 <h2 class="navigation"><a id="navigation" name="navigation"><%:Navigation%></a></h2>
220
221 <div class="hostinfo">
222 <%=(boardinfo.hostname or "?")%> | <%=ver.distversion%> |
223 <%:Load%>: <%="%.2f" % (loadinfo[1] / 65535.0)%> <%="%.2f" % (loadinfo[2] / 65535.0)%> <%="%.2f" % (loadinfo[3] / 65535.0)%>
224 <span id="xhr_poll_status" style="display:none" onclick="XHR.running() ? XHR.halt() : XHR.run()">
225 | <%:Auto Refresh%>:
226 <span id="xhr_poll_status_on"><%:on%></span>
227 <span id="xhr_poll_status_off" style="display:none"><%:off%></span>
228 </span>
229 </div>
230
231 <% if #categories > 1 then %>
232 <ul id="modemenu">
233 <% for i, r in ipairs(categories) do %>
234 <li><a<% if request[1] == r then %> class="active"<%end%> href="<%=controller%>/<%=r%>/"><%=striptags(translate(tree.nodes[r].title))%></a></li>
235 <% end %>
236 </ul>
237 <% end %>
238
239 <% render_changes() %>
240
241 <div class="clear"></div>
242 </div>
243
244 <div id="maincontainer">
245 <div id="mainmenu">
246 <% if category then render_menu(category, cattree) end %>
247 </div>
248
249 <div id="maincontent">
250 <% if category then render_tabmenu(category, cattree) end %>
251
252 <noscript>
253 <div class="alert-message warning">
254 <h4><%:JavaScript required!%></h4>
255 <p><%:You must enable JavaScript in your browser or LuCI will not work properly.%></p>
256 </div>
257 </noscript>
258
259 <%- if luci.sys.process.info("uid") == 0 and luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") and category ~= "failsafe" then -%>
260 <div class="alert-message warning">
261 <h4><%:No password set!%></h4>
262 <p><%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%></p>
263 <div class="right"><a class="btn" href="<%=url("admin/system/admin")%>"><%:Go to password configuration...%></a></div>
264 </div>
265 <%- end -%>