root/luci/branches/luci-0.10/themes/freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm @ 7231

Revision 7231, 7.0 KB (checked in by jow, 23 months ago)

luci-0.10: merge r7229 and r7230

Line 
1<%#
2LuCI - Lua Configuration Interface
3Copyright 2008 Steven Barth <steven@midlink.org>
4Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
5
6Licensed under the Apache License, Version 2.0 (the "License");
7you may not use this file except in compliance with the License.
8You may obtain a copy of the License at
9
10    http://www.apache.org/licenses/LICENSE-2.0
11-%>
12
13<%
14require("luci.sys")
15local uci = require "luci.model.uci".cursor()
16local fs = require "luci.fs"
17
18local load1, load5, load15 = luci.sys.loadavg()
19local request  = require("luci.dispatcher").context.path
20local category = request[1]
21local tree     = luci.dispatcher.node()
22local cattree  = category and luci.dispatcher.node(category)
23local node     = luci.dispatcher.context.dispatched
24local hostname = luci.sys.hostname()
25local ff = uci:get("freifunk", "community", "name") or ""
26local co = "profile_" .. ff
27local community = uci:get_first(co, "community", "name") or "Freifunk"
28local hp = uci:get_first(co, "community", "homepage") or "http://www.freifunk.net"
29local logo = "/luci-static/freifunk-generic/logo.jpg"
30local banner = false
31local show_comm = true
32
33local lo = fs.glob("/www/luci-static/resources/custom_logo.*")
34if lo[1] then
35    logo = string.gsub(lo[1], "/www", "")
36end
37
38local lon = fs.glob("/www/luci-static/resources/custom_logo_only.*")
39if lon[1] then
40    logo = string.gsub(lon[1], "/www", "")
41    show_comm = false
42end
43
44local hea = fs.glob("/www/luci-static/resources/custom_header.*")
45if hea[1] then
46    logo = string.gsub(hea[1], "/www", "")
47    show_comm = false
48    banner = true
49end
50
51local c = tree
52for 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
57end
58
59require("luci.i18n").loadc("default")
60require("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<link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="<%=media%>/mobile.css" type="text/css" />
72<link rel="stylesheet" media="handheld" href="<%=media%>/mobile.css" type="text/css" /> 
73<!--[if IE 7]><link rel="stylesheet" type="text/css" media="screen" href="<%=media%>/ie7.css" /><![endif]-->
74<% if node and node.css then %><link rel="stylesheet" type="text/css" media="screen" href="<%=resource%>/<%=node.css%>" />
75<% end -%>
76<script type="text/javascript" src="<%=resource%>/xhr.js"></script>
77
78<title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. node.title or '')) %> - LuCI</title>
79</head>
80
81<body class="lang_<%=luci.i18n.context.lang%>">
82
83<div class="wrapper">
84
85<!--[if lt IE 7]>
86<div class="warning"><div style="background-color: #cccccc;padding: 2px 10px 2px 10px">
87<%: 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.%>
88</div></div>
89<![endif]-->
90
91<%- if luci.sys.user.getuser("root") and not luci.sys.user.getpasswd("root") then -%>
92    <div class="warning">
93        <strong><%:No password set!%></strong><br />
94        <%:There is no password set on this router. Please configure a root password to protect the web interface and enable SSH.%>
95    </div>
96<%- end -%>
97
98<p class="skiplink">
99<span id="skiplink1"><a href="#navigation"><%:skiplink1 Skip to navigation%></a></span>
100<span id="skiplink2"><a href="#content"><%:skiplink2 Skip to content%></a></span>
101</p>
102
103<div id="header">
104    <%if banner then%>
105        <div class="header_banner">
106            <a href="<%=hp%>"><img src="<%=logo%>" alt="Header" /></a>
107        </div>
108    <%else%>
109        <div class="header_left">
110            <a href="<%=hp%>"><img src="<%=logo%>" alt="Logo" /></a>
111            <%if show_comm then%>
112                <a href="<%=hp%>"><%=community%></a>
113                <br/>
114            <%end%>
115        <div class = "spacer"></div>
116        </div>
117        <div class="header_right">
118            <%=luci.version.distversion%><br />
119            <%:Load%>: <%="%.2f" % load1%> <%="%.2f" % load5%> <%="%.2f" % load15%><br />
120            <%:Hostname%>: <%=hostname%><br />
121        </div>
122    <%end%>
123</div>
124
125<div id="menubar">
126<h2 class="navigation"><a id="navigation" name="navigation"><%:navigation Navigation%></a></h2>
127<ul id="mainmenu" class="dropdowns">
128<%-
129local function submenu(prefix, node)
130    if not node.nodes or node.hidden then
131        return false
132    end
133    local index = {}
134    local count = 0
135    for k, n in pairs(node.nodes) do
136        if n.title and n.target then
137            table.insert(index, {name=k, order=n.order or 100})
138            count = count + 1
139        end
140    end
141
142    table.sort(index, function(a, b) return a.order < b.order end)
143
144    if count > 0 then
145%>
146<ul id="submenu_<%=string.gsub(string.gsub(prefix, "/", "_"), "^_(.-)_$", "%1")%>">
147<%-
148        for j, v in pairs(index) do
149            if #v.name > 0 then
150                local nnode = node.nodes[v.name]
151                local href = controller .. prefix .. v.name .. "/"
152                href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href
153%>
154<li><a<% if nnode._menu_selected then %> class="active"<%end%> href="<%=luci.util.pcdata(href)%>"><%=nnode.title%></a><%-
155submenu(prefix .. v.name .. "/", nnode)
156%></li>
157<%-
158            end
159        end
160%>
161</ul>
162<%
163    end
164end
165
166if cattree and cattree.nodes then
167    local index = {}
168    for k, node in pairs(cattree.nodes) do
169        table.insert(index, {name=k, order=node.order or 100})
170    end
171
172    table.sort(index, function(a, b) return a.order < b.order end)
173
174    for i, k in ipairs(index) do
175        node = cattree.nodes[k.name]
176        if node.title and node.target and not node.hidden then
177            local href = controller.."/"..category.."/"..k.name.."/"
178            href = (k.query) and href .. luci.http.build_querystring(k.query) or href
179%>
180<li><a<% if node._menu_selected then %> class="preactive"<%end%> href="<%=href%>"><%=node.title%></a><%
181submenu("/" .. category .. "/" .. k.name .. "/", node)
182%></li><% end
183    end
184end
185%>
186<li></li></ul>
187
188<ul id="modemenu"><%
189for k,node in pairs(tree.nodes) do
190    if node.title and not node.hidden then %>
191<li><a<% if request[1] == k then %> class="active"<%end%> href="<%=controller%>/<%=k%>/"><%=node.title%></a></li><%
192    end
193end
194%>
195</ul>
196
197<%
198if tree.nodes[category] and tree.nodes[category].ucidata then
199    local ucic = 0
200    for i, j in pairs(require("luci.model.uci").cursor():changes()) do
201        for k, l in pairs(j) do
202            for m, n in pairs(l) do
203                ucic = ucic + 1;
204            end
205        end
206    end
207-%>
208
209<div id="savemenu">
210    <% if ucic > 0 then %>
211        <a class="warning" href="<%=controller%>/<%=category%>/uci/changes/?redir=<%=luci.http.urlencode(luci.http.formvalue("redir") or REQUEST_URI)%>"><%:Unsaved Changes%>: <%=ucic%></a>
212    <% end -%>
213</div><% end %>
214
215<div class="clear"></div>
216</div>
217<div id="maincontent">
218<% if category ~= "freifunk" and category ~= "splash" then %>
219<noscript>
220    <div class="errorbox">
221        <strong><%:Java Script required!%></strong><br />
222        <%:You must enable Java Script in your browser or LuCI will not work properly.%>
223    </div>
224</noscript>
225<% end %>
Note: See TracBrowser for help on using the browser.