luci-app-uhttpd: i18n: add en po
[project/luci.git] / themes / luci-theme-rosy / luasrc / view / themes / rosy / header.htm
1 <%#
2 Rosy is a theme for LuCI. It is based on luci-theme-bootstrap
3 luci-theme-rosy
4 Copyright 2018 Rosy Song <rosysong@rosinson.com>
5 Copyright 2018 Yan Lan Shen <yanlan.shen@rosinson.com>
6
7 Have a bug? Please create an issue here on GitHub!
8 https://github.com/rosywrt/luci-theme-rosy/issues
9
10 luci-theme-bootstrap:
11 Copyright 2008 Steven Barth <steven@midlink.org>
12 Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
13 Copyright 2012 David Menting <david@nut-bolt.nl>
14
15 Licensed to the public under the Apache License 2.0
16
17 -%>
18
19 <%
20 local sys = require "luci.sys"
21 local util = require "luci.util"
22 local http = require "luci.http"
23 local disp = require "luci.dispatcher"
24
25 local boardinfo = util.ubus("system", "board")
26
27 local request = disp.context.path
28 local request2 = disp.context.request
29
30 local category = request[1]
31 local cattree = category and disp.node(category)
32
33 local leaf = request2[#request2]
34
35 local tree = disp.node()
36 local node = disp.context.dispatched
37
38 local categories = disp.node_childs(tree)
39
40 local c = tree
41 local i, r
42
43 -- tag all nodes leading to this page
44 for i, r in ipairs(request) do
45 if c.nodes and c.nodes[r] then
46 c = c.nodes[r]
47 c._menu_selected = true
48 end
49 end
50
51 -- send as HTML5
52 http.prepare_content("text/html")
53
54 local function nodeurl(prefix, name, query)
55 local u = url(prefix, name)
56 if query then
57 u = u .. http.build_querystring(query)
58 end
59 return pcdata(u)
60 end
61
62 local function render_tabmenu(prefix, node, level)
63 if not level then
64 level = 1
65 end
66
67 local childs = disp.node_childs(node)
68 if #childs > 0 then
69 if level > 2 then
70 write('<ul class="tabs">')
71 end
72
73 local selected_node
74 local selected_name
75 local i, v
76
77 for i, v in ipairs(childs) do
78 local nnode = node.nodes[v]
79 if nnode._menu_selected then
80 selected_node = nnode
81 selected_name = v
82 end
83
84 if level > 2 then
85 write('<li class="tabmenu-item-%s %s"><a href="%s">%s</a></li>' %{
86 v, (nnode._menu_selected or (node.leaf and v == leaf)) and 'active' or '',
87 nodeurl(prefix, v, nnode.query),
88 striptags(translate(nnode.title))
89 })
90 end
91 end
92
93 if level > 2 then
94 write('</ul>')
95 end
96
97 if selected_node then
98 render_tabmenu(prefix .. "/" .. selected_name, selected_node, level + 1)
99 end
100 end
101 end
102
103 local function render_submenu(prefix, node)
104 local childs = disp.node_childs(node)
105 if #childs > 0 then
106 write('<ul class="slide-menu">')
107
108 for i, r in ipairs(childs) do
109 local nnode = node.nodes[r]
110 local title = pcdata(striptags(translate(nnode.title)))
111
112 write('<li><a data-title="%s" href="%s">%s</a></li>' %{
113 title,
114 nodeurl(prefix, r, nnode.query),
115 title
116 })
117 end
118
119 write('</ul>')
120 end
121 end
122
123 local function render_topmenu()
124 local childs = disp.node_childs(cattree)
125 if #childs > 0 then
126 write('<ul class="nav">')
127
128 for i, r in ipairs(childs) do
129 local nnode = cattree.nodes[r]
130 local grandchildren = disp.node_childs(nnode)
131
132 if #grandchildren > 0 then
133 local title = pcdata(striptags(translate(nnode.title)))
134
135 write('<li class="slide"><a class="menu" data-title="%s" href="#">%s</a>' %{
136 title,
137 title
138 })
139
140 render_submenu(category .. "/" .. r, nnode)
141 write('</li>')
142 end
143 end
144
145 write('</ul>')
146 end
147 end
148
149 local function render_logout()
150 local childs = disp.node_childs(cattree)
151 if #childs > 0 then
152
153 for i, r in ipairs(childs) do
154 local nnode = cattree.nodes[r]
155 local grandchildren = disp.node_childs(nnode)
156
157 if #grandchildren <= 0 then
158 local title = pcdata(striptags(translate(nnode.title)))
159
160 write('<span class="label logout"><a data-title="%s" href="%s">%s</a></span>' %{
161 title,
162 nodeurl(category, r, nnode.query),
163 title
164 })
165 end
166 end
167
168 end
169 end
170
171
172 local function render_changes()
173 -- calculate the number of unsaved changes
174 if tree.nodes[category] and tree.nodes[category].ucidata then
175 local ucichanges = 0
176
177 for i, j in pairs(require("luci.model.uci").cursor():changes()) do
178 for k, l in pairs(j) do
179 for m, n in pairs(l) do
180 ucichanges = ucichanges + 1;
181 end
182 end
183 end
184
185 if ucichanges > 0 then
186 write('<a class="uci_change_indicator label notice" href="%s?redir=%s"><span class="mobile-hide">%s:</span> %d</a>' %{
187 url(category, 'uci/changes'),
188 http.urlencode(http.formvalue('redir') or table.concat(disp.context.request, "/")),
189 translate('Unsaved Changes'),
190 ucichanges
191 })
192 end
193 end
194 end
195 -%>
196 <!DOCTYPE html>
197 <html lang="<%=luci.i18n.context.lang%>">
198
199 <head>
200 <meta charset="utf-8">
201 <title>
202 <%=striptags( (boardinfo.hostname or "?") .. ( (node and node.title) and ' - ' .. translate(node.title) or '')) %> -
203 LuCI</title>
204 <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
205 <meta name="format-detection" content="telephone=no, email=no" />
206 <meta name="apple-mobile-web-app-capable" content="yes">
207 <meta name="mobile-web-app-capable" content="yes">
208 <meta name="x5-fullscreen" content="true">
209 <meta name="full-screen" content="yes">
210 <meta name="x5-page-mode" content="app">
211 <meta name="browsermode" content="application">
212 <meta name="theme-color" content="#0099CC">
213 <meta name="msapplication-tap-highlight" content="no">
214 <meta name="msapplication-TileColor" content="#0099CC">
215
216 <meta name="application-name" content="<%=striptags( (boardinfo.hostname or " ?") ) %> - LuCI">
217 <meta name="apple-mobile-web-app-title" content="<%=striptags( (boardinfo.hostname or " ?") ) %> - LuCI">
218 <meta name="msapplication-TileImage" content="<%=media%>/logo.png" />
219 <link rel="icon" href="<%=media%>/logo.png" sizes="144x144">
220 <link rel="apple-touch-icon-precomposed" href="<%=media%>/logo.png" sizes="144x144">
221
222 <link rel="stylesheet" href="<%=media%>/cascade.css">
223 <link rel="shortcut icon" href="<%=media%>/favicon.ico">
224 <% if node and node.css then %>
225 <link rel="stylesheet" href="<%=resource%>/<%=node.css%>">
226 <% end -%>
227 <% if css then %>
228 <style title="text/css">
229 <%=css %>
230 </style>
231 <% end -%>
232 <script src="<%=resource%>/cbi.js"></script>
233 <script src="<%=resource%>/xhr.js"></script>
234 </head>
235
236 <body class="lang_<%=luci.i18n.context.lang%> <%- if node then %><%= striptags( node.title ) %><%- end %> <% if luci.dispatcher.context.authsession then %>logged-in<% end %>">
237 <header>
238 <div class="fill">
239 <div class="container">
240 <span class="showSide"></span>
241 <a class="brand" href="#"><%=boardinfo.hostname or "?"%></a>
242 <div class="btn-con pull-right">
243 <% render_changes() %>
244 <span id="xhr_poll_status" style="display:none" onclick="XHR.running() ? XHR.halt() : XHR.run()">
245 <span class="label success" id="xhr_poll_status_on"><span class="mobile-hide">
246 <%:Auto Refresh%></span>
247 <%:on%></span>
248 <span class="label" id="xhr_poll_status_off" style="display:none"><span class="mobile-hide">
249 <%:Auto Refresh%></span>
250 <%:off%></span>
251 </span>
252 <% render_logout() %>
253 </div>
254 </div>
255 </div>
256 </header>
257 <div class="main">
258 <div style="" class="loading"><span>
259 <div class="loading-img">
260 <img src="<%=media%>/loading.svg">
261 </div>Loading...
262 </span></div>
263 <div class="main-left">
264 <div class="nav-container">
265 <a class="brand" href="#">
266 <%=boardinfo.hostname or "?"%></a>
267 <div class="navbar-container">
268 <% render_topmenu() %>
269 </div>
270 </div>
271 </div>
272 <div class="main-right">
273 <div id="maincontent">
274 <div class="logoImg">
275 <img class="mobile-hide" src="<%=media%>/logo.png" alt="Rosy">
276 <img src="<%=media%>/mobile-loginBG.png" class="PC-hide">
277 <a class="brand" href="#"><%=boardinfo.hostname or "?"%></a>
278 </div>
279 <div class="container">
280 <%- if luci.sys.process.info("uid") == 0 and luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") then -%>
281 <div class="alert-message warning">
282 <h4>
283 <%:No password set!%>
284 </h4>
285 <p>
286 <%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%>
287 </p>
288 <div><a class="btn" href="<%=url("admin/system/admin")%>"> <%:Go to password configuration...%></a></div>
289 </div>
290 <%- end -%>
291
292 <noscript>
293 <div class="alert-message warning">
294 <h4>
295 <%:JavaScript required!%>
296 </h4>
297 <p>
298 <%:You must enable JavaScript in your browser or LuCI will not work properly.%>
299 </p>
300 </div>
301 </noscript>
302
303 <% if category then render_tabmenu(category, cattree) end %>