* luci/themes: next round of css fixes for openwrt.org theme
[project/luci.git] / themes / openwrt.org / luasrc / view / themes / openwrt.org / header.htm
1 <%
2 require("luci.sys")
3 local load1, load5, load15 = luci.sys.loadavg()
4 local request = require("luci.dispatcher").context.path
5 local category = request[1]
6 local tree = luci.dispatcher.node()
7 local cattree = category and luci.dispatcher.node(category)
8 local node = luci.dispatcher.context.dispatched
9
10 local c = tree
11 for i,r in ipairs(request) do
12 if c.nodes and c.nodes[r] then
13 c = c.nodes[r]
14 c._menu_selected = true
15 end
16 end
17
18 require("luci.i18n").loadc("default")
19
20 require("luci.http").prepare_content("text/html")
21 %><?xml version="1.0" encoding="utf-8"?>
22 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
23 <html xmlns="http://www.w3.org/1999/xhtml">
24 <head>
25 <link rel="stylesheet" type="text/css" href="<%=media%>/cascade.css" />
26 <% if node and node.css then %><link rel="stylesheet" type="text/css" href="<%=resource%>/<%=node.css%>" /><% end %>
27 <meta http-equiv="content-type" content="text/xhtml+xml; charset=utf-8" />
28 <meta http-equiv="content-script-type" content="text/javascript" />
29 <title>LuCI - Lua Configuration Interface - <%=(node and node.title)%></title>
30 </head>
31 <body>
32 <div id="header">
33 <div class="info whitetext smalltext bold right">
34 <%=luci.config.brand.firmware%><br />
35 <%=luci.config.brand.distro%><br />
36 <%:load%>: <%=load1%> <%=load5%> <%=load15%><br />
37 <%:hostname%>: <%=luci.sys.hostname()%>
38 </div>
39 <div class="title">
40 <span class="headertitle"><%=luci.config.brand.title%></span><br />
41 <span class="whitetext bold"><%=luci.config.brand.subtitle%></span>
42 </div>
43 </div>
44
45 <div class="pathbar separator black whitetext bold">
46 <%:path%>: <%
47 local c = tree
48 local url = controller
49 for k,v in pairs(request) do
50 if c.nodes and c.nodes[v] then
51 c = c.nodes[v]
52 url = url .. "/" .. v
53 %><a href="<%=url%>"><%=c.title or v%></a> <% if k ~= #request then %>&#187; <% end
54 end
55 end
56 %>
57 </div>
58
59 <div class="menubar">
60 <div class="mainmenu">
61 <%
62 local function submenu(prefix, node)
63 if not node.nodes then
64 return false
65 end
66 local index = {}
67 for k, n in pairs(node.nodes) do
68 if n.title and n.target then
69 table.insert(index, {name=k, order=n.order or 100})
70 end
71 end
72
73 table.sort(index, function(a, b) return a.order < b.order end)
74 %>
75 <ul>
76 <% for j, v in pairs(index) do
77 local nnode = node.nodes[v.name]
78 local href = controller .. prefix .. v.name
79 href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href
80 %>
81 <li>
82 <span<% if nnode._menu_selected then %> class="active"<%end%>><a href="<%=href%>"><%=nnode.title%></a></span>
83 <% submenu(prefix .. v.name .. "/", nnode) %>
84 </li>
85 <% end %>
86 </ul>
87 <%
88 end
89
90 if cattree and cattree.nodes then
91 local index = {}
92 for k, node in pairs(cattree.nodes) do
93 table.insert(index, {name=k, order=node.order or 100})
94 end
95
96 table.sort(index, function(a, b) return a.order < b.order end)
97
98 for i, k in ipairs(index) do
99 node = cattree.nodes[k.name]
100 if node.title and node.target then
101 local href = controller.."/"..category.."/"..k.name
102 href = (k.query) and href .. luci.http.build_querystring(k.query) or href %>
103 <div<% if node._menu_selected then %> class="preactive"<%end%>><a href="<%=href%>"><%=node.title%></a>
104 <%submenu("/" .. category .. "/" .. k.name .. "/", node)%>
105 </div>
106 <% end
107 end
108 end
109 %>
110 </div>
111 <div class="modemenu">
112 <ul><%
113 for k,node in pairs(tree.nodes) do
114 if node.title then %>
115 <li<% if request[1] == k then %> class="active"<%end%>><a href="<%=controller%>/<%=k%>"><%=node.title%></a></li>
116 <% end
117 end%>
118 </ul>
119 </div>
120 <br class="clear" />
121 </div>
122 <div class="sidebar">
123 <%
124 if "admin" == request[1] then
125 local ucic = 0
126 for i, j in pairs(require("luci.model.uci").changes()) do
127 for k, l in pairs(j) do
128 for m, n in pairs(l) do
129 ucic = ucic + 1;
130 end
131 end
132 end
133 %>
134 <div>
135 <ul>
136 <% if ucic > 0 then %>
137 <li><a href="<%=controller%>/admin/uci/changes"><%:changes%>: <%=ucic%></a></li>
138 <li><a href="<%=controller%>/admin/uci/apply"><%:apply%></a></li>
139 <li><a href="<%=controller%>/admin/uci/revert"><%:revert%></a></li>
140 <% else %>
141 <li><%:changes%>: 0</li>
142 <% end %>
143 </ul>
144 </div>
145 <% end %>
146 </div>
147 <div id="content">