themes/freifunk-generic: Add possibility to use custom logo/header
[project/luci.git] / themes / freifunk-generic / luasrc / view / themes / freifunk-generic / 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
13 <%
14 require("luci.sys")
15 local uci = require "luci.model.uci".cursor()
16 local fs = require "luci.fs"
17
18 local load1, load5, load15 = luci.sys.loadavg()
19 local request  = require("luci.dispatcher").context.path
20 local category = request[1]
21 local tree     = luci.dispatcher.node()
22 local cattree  = category and luci.dispatcher.node(category)
23 local node     = luci.dispatcher.context.dispatched
24 local hostname = luci.sys.hostname()
25 local ff = uci:get("freifunk", "community", "name") or ""
26 local co = "profile_" .. ff
27 local community = uci:get_first(co, "community", "name") or "Freifunk"
28 local hp = uci:get_first(co, "community", "homepage") or "http://www.freifunk.net"
29 local logo = "/luci-static/freifunk-generic/logo.jpg"
30 local banner = false
31 local show_comm = true
32
33 local lo = fs.glob("/www/luci-static/resources/custom_logo.*")
34 if lo[1] then
35         logo = string.gsub(lo[1], "/www", "")
36 end
37
38 local lon = fs.glob("/www/luci-static/resources/custom_logo_only.*")
39 if lon[1] then
40         logo = string.gsub(lon[1], "/www", "")
41         show_comm = false
42 end
43
44 local hea = fs.glob("/www/luci-static/resources/custom_header.*")
45 if hea[1] then
46         logo = string.gsub(hea[1], "/www", "")
47         show_comm = false
48         banner = true
49 end 
50
51 local c = tree
52 for i,r in ipairs(request) do
53         if c.nodes and c.nodes[r] then
54                 c = c.nodes[r]
55                 c._menu_selected = true
56         end
57 end
58
59 require("luci.i18n").loadc("default")
60 require("luci.http").prepare_content("application/xhtml+xml")
61
62 -%>
63
64 <?xml version="1.0" encoding="utf-8"?>
65 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
66 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%=luci.i18n.context.lang%>" lang="<%=luci.i18n.context.lang%>">
67 <head>
68 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
69 <meta http-equiv="Content-Script-Type" content="text/javascript" />
70 <link rel="stylesheet" type="text/css" media="screen" href="<%=media%>/cascade.css" />
71 <!--[if IE 7]><link rel="stylesheet" type="text/css" media="screen" href="<%=media%>/ie7.css" /><![endif]-->
72 <% if node and node.css then %><link rel="stylesheet" type="text/css" media="screen" href="<%=resource%>/<%=node.css%>" />
73 <% end -%>
74 <script type="text/javascript" src="<%=resource%>/xhr.js"></script>
75
76 <title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. node.title or '')) %> - LuCI</title>
77 </head>
78
79 <body class="lang_<%=luci.i18n.context.lang%>">
80
81 <div class="wrapper">
82
83 <!--[if lt IE 7]>
84 <div class="warning"><div style="background-color: #cccccc;padding: 2px 10px 2px 10px">
85 <%: 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.%>
86 </div></div>
87 <![endif]-->
88
89 <%- if luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") then -%>
90         <div class="warning">
91                 <strong><%:No password set!%></strong><br />
92                 <%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%>
93         </div>
94 <%- end -%>
95
96 <p class="skiplink">
97 <span id="skiplink1"><a href="#navigation"><%:skiplink1 Skip to navigation%></a></span>
98 <span id="skiplink2"><a href="#content"><%:skiplink2 Skip to content%></a></span>
99 </p>
100
101 <div id="header">
102         <%if banner then%>
103                 <div class="header_banner">
104                         <a href="<%=hp%>"><img src="<%=logo%>" alt="Header" /></a>
105                 </div>
106         <%else%>
107                 <div class="header_left">
108                         <a href="<%=hp%>"><img src="<%=logo%>" alt="Logo" /></a>
109                         <%if show_comm then%>
110                                 <a href="<%=hp%>"><%=community%></a>
111                                 <br/>
112                         <%end%>
113                 <div class = "spacer"></div>
114                 </div>
115                 <div class="header_right">
116                         <%=luci.version.distversion%><br />
117                         <%:Load%>: <%="%.2f" % load1%> <%="%.2f" % load5%> <%="%.2f" % load15%><br />
118                         <%:Hostname%>: <%=hostname%><br />
119                 </div>
120         <%end%>
121 </div>
122
123 <div id="menubar">
124 <h2 class="navigation"><a id="navigation" name="navigation"><%:navigation Navigation%></a></h2>
125 <ul id="mainmenu" class="dropdowns">
126 <%-
127 local function submenu(prefix, node)
128         if not node.nodes or node.hidden then
129                 return false
130         end
131         local index = {}
132         local count = 0
133         for k, n in pairs(node.nodes) do
134                 if n.title and n.target then
135                         table.insert(index, {name=k, order=n.order or 100})
136                         count = count + 1
137                 end
138         end
139
140         table.sort(index, function(a, b) return a.order < b.order end)
141
142         if count > 0 then
143 %>
144 <ul id="submenu_<%=string.gsub(string.gsub(prefix, "/", "_"), "^_(.-)_$", "%1")%>">
145 <%-
146                 for j, v in pairs(index) do
147                         if #v.name > 0 then
148                                 local nnode = node.nodes[v.name]
149                                 local href = controller .. prefix .. v.name .. "/"
150                                 href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href
151 %>
152 <li><a<% if nnode._menu_selected then %> class="active"<%end%> href="<%=luci.util.pcdata(href)%>"><%=nnode.title%></a><%-
153 submenu(prefix .. v.name .. "/", nnode)
154 %></li>
155 <%-
156                         end
157                 end
158 %>
159 </ul>
160 <%
161         end
162 end
163
164 if cattree and cattree.nodes then
165         local index = {}
166         for k, node in pairs(cattree.nodes) do
167                 table.insert(index, {name=k, order=node.order or 100})
168         end
169
170         table.sort(index, function(a, b) return a.order < b.order end)
171
172         for i, k in ipairs(index) do
173                 node = cattree.nodes[k.name]
174                 if node.title and node.target and not node.hidden then
175                         local href = controller.."/"..category.."/"..k.name.."/"
176                         href = (k.query) and href .. luci.http.build_querystring(k.query) or href
177 %>
178 <li><a<% if node._menu_selected then %> class="preactive"<%end%> href="<%=href%>"><%=node.title%></a><%
179 submenu("/" .. category .. "/" .. k.name .. "/", node)
180 %></li><% end
181         end
182 end
183 %>
184 </ul>
185
186 <ul id="modemenu"><%
187 for k,node in pairs(tree.nodes) do
188         if node.title and not node.hidden then %>
189 <li><a<% if request[1] == k then %> class="active"<%end%> href="<%=controller%>/<%=k%>/"><%=node.title%></a></li><%
190         end
191 end
192 %>
193 </ul>
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
207 <div id="savemenu">
208         <% if ucic > 0 then %>
209                 <a class="warning" href="<%=controller%>/<%=category%>/uci/changes/?redir=<%=luci.http.urlencode(tree.nodes[category].nodes["uci"].query)%>"><%:Unsaved Changes%>: <%=ucic%></a>
210         <% end -%>
211 </div><% 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><%:Java Script required!%></strong><br />
220                 <%:You must enable Java Script in your browser or LuCI will not work properly.%>
221         </div>
222 </noscript>
223 <% end %>