Merge pull request #1031 from feckert/add_dhcp_to_system_ucitrack
[project/luci.git] / themes / luci-theme-freifunk-generic / luasrc / view / themes / freifunk-generic / header.htm
1 <%#
2  Copyright 2008 Steven Barth <steven@midlink.org>
3  Copyright 2008-2011 Jo-Philipp Wich <jow@openwrt.org>
4  Licensed to the public under the Apache License 2.0.
5 -%>
6
7 <%
8         local fs   = require "nixio.fs"
9         local sys  = require "luci.sys"
10         local util = require "luci.util"
11         local http = require "luci.http"
12         local disp = require "luci.dispatcher"
13         local version = require "luci.version"
14
15         local sysinfo = util.ubus("system", "info") or { }
16         local loadinfo = sysinfo.load or { 0, 0, 0 }
17         local boardinfo = util.ubus("system", "board") or { }
18
19         local request  = disp.context.path
20         local category = request[1]
21         local cattree  = category and disp.node(category)
22
23         local tree = disp.node()
24         local node = disp.context.dispatched
25
26         local categories = disp.node_childs(tree)
27
28         local c = tree
29         local i, r
30
31         -- tag all nodes leading to this page
32         for i, r in ipairs(request) do
33                 if c.nodes and c.nodes[r] then
34                         c = c.nodes[r]
35                         c._menu_selected = true
36                 end
37         end
38
39         local uci  = require "luci.model.uci".cursor()
40         local ff = uci:get("freifunk", "community", "name") or ""
41         local co = "profile_" .. ff
42         local community = uci:get_first(co, "community", "name") or "Freifunk"
43         local hp = uci:get_first(co, "community", "homepage") or "http://www.freifunk.net"
44         local logo = "/luci-static/freifunk-generic/logo.jpg"
45         local banner = false
46         local show_comm = true
47
48         local file
49         for file in fs.glob("/www/luci-static/resources/custom_logo.*") do
50                 logo = string.gsub(file, "/www", "")
51                 break
52         end
53
54         for file in fs.glob("/www/luci-static/resources/custom_logo_only.*") do
55                 logo = string.gsub(file, "/www", "")
56                 show_comm = false
57                 break
58         end
59
60         for file in fs.glob("/www/luci-static/resources/custom_header.*") do
61                 logo = string.gsub(file, "/www", "")
62                 show_comm = false
63                 banner = true
64         end
65 -%>
66
67 <?xml version="1.0" encoding="utf-8"?>
68 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
69 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%=luci.i18n.context.lang%>" lang="<%=luci.i18n.context.lang%>">
70 <head>
71 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72 <meta http-equiv="Content-Script-Type" content="text/javascript" />
73 <link rel="stylesheet" type="text/css" media="screen" href="<%=media%>/cascade.css" />
74 <link rel="stylesheet" media="only screen and (max-device-width: 854px)" href="<%=media%>/mobile.css" type="text/css" />
75 <link rel="stylesheet" media="only screen and (max-width: 854px)" href="<%=media%>/smallscreen.css" type="text/css" />
76 <link rel="stylesheet" media="handheld" href="<%=media%>/mobile.css" type="text/css" />
77 <!--[if IE 7]><link rel="stylesheet" type="text/css" media="screen" href="<%=media%>/ie7.css" /><![endif]-->
78 <% if node and node.css then %><link rel="stylesheet" type="text/css" media="screen" href="<%=resource%>/<%=node.css%>" />
79 <% end -%>
80 <% if css then %><style title="text/css">
81 <%= css %>
82 </style>
83 <% end -%>
84 <meta name="viewport" content="initial-scale=1.0" />
85 <script type="text/javascript" src="<%=resource%>/xhr.js"></script>
86
87 <title><%=striptags( (boardinfo.hostname or "?") .. ( (node and node.title) and ' - ' .. translate(tostring(node.title)) or '')) %> - LuCI</title>
88 </head>
89
90 <body class="lang_<%=luci.i18n.context.lang%>">
91
92 <div class="wrapper">
93
94 <!--[if lt IE 7]>
95 <div class="warning"><div style="background-color: #cccccc;padding: 2px 10px 2px 10px">
96 <%: Your Internet Explorer is too old to display this page correctly. Please upgrade it to at least version 7 or use another browser like Firefox, Opera or Safari.%>
97 </div></div>
98 <![endif]-->
99
100 <%- if luci.sys.process.info("uid") == 0 and luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") then -%>
101         <div class="warning">
102                 <strong><%:No password set!%></strong><br />
103                 <%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%>
104         </div>
105 <%- end -%>
106
107 <p class="skiplink">
108 <span id="skiplink1"><a href="#navigation"><%:skiplink1 Skip to navigation%></a></span>
109 <span id="skiplink2"><a href="#content"><%:skiplink2 Skip to content%></a></span>
110 </p>
111
112 <div id="header">
113         <%if banner then%>
114                 <div class="header_banner">
115                         <a href="<%=hp%>"><img src="<%=logo%>" alt="Header" /></a>
116                 </div>
117         <%else%>
118                 <div class="header_left">
119                         <a href="<%=hp%>"><img src="<%=logo%>" id="mainlogo" alt="Logo" /></a>
120                         <%if show_comm then%>
121                                 <a href="<%=hp%>"><%=community%></a>
122                                 <br/>
123                         <%end%>
124                 </div>
125                 <div class="header_right">
126                         <%=version.distversion%><br />
127                         <%:Load%>: <%="%.2f" % (loadinfo[1] / 65535.0)%> <%="%.2f" % (loadinfo[2] / 65535.0)%> <%="%.2f" % (loadinfo[3] / 65535.0)%><br />
128                         <%:Hostname%>: <%=boardinfo.hostname or "?"%><br />
129                         <span id="xhr_poll_status" style="display:none" onclick="XHR.running() ? XHR.halt() : XHR.run()">
130                                 <%:Auto Refresh%>:
131                                 <span id="xhr_poll_status_on"><%:on%></span>
132                                 <span id="xhr_poll_status_off" style="display:none"><%:off%></span>
133                         </span>
134                 </div>
135                 <div class="clear"></div>
136
137         <%end%>
138 </div>
139
140 <%-
141         local function submenu(prefix, node)
142                 local childs = disp.node_childs(node)
143                 if #childs > 0 then
144 %>
145         <ul id="submenu_<%=string.gsub(string.gsub(prefix, "/", "_"), "^_(.-)_$", "%1")%>">
146                 <%-
147                         for i, r in ipairs(childs) do
148                                 local nnode = node.nodes[r]
149                                 local href  = controller .. prefix .. r .. "/" ..
150                                         (nnode.query and http.build_querystring(nnode.query) or "")
151                 %>
152                         <li>
153                                 <a<%=ifattr(nnode._menu_selected, "class", "active")%> href="<%=luci.util.pcdata(href)%>"><%=translate(nnode.title)%></a>
154                                 <%- submenu(prefix .. r .. "/", nnode) %>
155                         </li>
156                 <%-
157                         end
158                 %>
159         </ul>
160 <%
161                 end
162         end
163 %>
164
165 <div id="menubar">
166 <h2 class="navigation"><a id="navigation" name="navigation"><%:navigation Navigation%></a></h2>
167 <ul id="mainmenu" class="dropdowns">
168         <%
169                 local childs = disp.node_childs(cattree)
170                 if #childs > 0 then
171                         for i, r in ipairs(childs) do
172                                 local nnode = cattree.nodes[r]
173                                 local href  = controller .. "/" .. category .. "/" .. r ..
174                                         (nnode.query and http.build_querystring(k.query) or "")
175         %>
176                 <li>
177                         <a<%=ifattr(nnode._menu_selected, "class", "preactive")%> href="<%=href%>"><%=translate(nnode.title)%></a>
178                         <%- submenu("/" .. category .. "/" .. r .. "/", nnode) %>
179                 </li>
180         <%
181                         end
182                 end
183         %>
184         <li></li>
185 </ul>
186
187 <% if #categories > 1 then %>
188         <ul id="modemenu">
189         <% for i, r in ipairs(categories) do %>
190                 <li><a<%=ifattr(request[1] == r, "class", "active")%> href="<%=controller%>/<%=r%>/"><%=striptags(translate(tree.nodes[r].title))%></a></li>
191         <% end %>
192         </ul>
193 <% end %>
194
195 <%
196 if tree.nodes[category] and tree.nodes[category].ucidata then
197         local ucic = 0
198         for i, j in pairs(require("luci.model.uci").cursor():changes()) do
199                 for k, l in pairs(j) do
200                         for m, n in pairs(l) do
201                                 ucic = ucic + 1;
202                         end
203                 end
204         end
205 -%>
206         <div id="savemenu">
207                 <% if ucic > 0 then %>
208                         <a class="warning" href="<%=controller%>/<%=category%>/uci/changes/?redir=<%=http.urlencode(http.formvalue("redir") or REQUEST_URI)%>"><%:Unsaved Changes%>: <%=ucic%></a>
209                 <% end -%>
210         </div>
211 <% end %>
212
213 <div class="clear"></div>
214 </div>
215 <div id="maincontent">
216 <% if category ~= "freifunk" and category ~= "splash" then %>
217 <noscript>
218         <div class="errorbox">
219                 <strong><%:JavaScript required!%></strong><br />
220                 <%:You must enable JavaScript in your browser or LuCI will not work properly.%>
221         </div>
222 </noscript>
223 <% end %>