libs/web: fix error in wep key validation
[project/luci.git] / applications / luci-olsr / luasrc / view / status-olsr / index.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 $Id$
13
14 -%>
15 <%+header%>
16 <h2><a id="content" name="content"><%:OLSR connections%></a></h2>
17 <p><%:Overview of currently established OLSR connections%></p>
18 <br />
19 <table class="smalltext" cellspacing="0" cellpadding="6">
20 <tr>
21 <th><%:Neighbour IP%></th>
22 <th><%:Hostname%></th>
23 <th><%:Local interface IP%></th>
24 <th><%:Device%></th>
25 <th>LQ</th>
26 <th>NLQ</th>
27 <th>ETX</th>
28 </tr>
29 <% for k, link in ipairs(links) do
30 local color = "#bb3333"
31
32 link.Cost = tonumber(link.Cost) or 0
33 if link.Cost == 0 then
34 color = "#bb3333"
35 elseif link.Cost < 4 then
36 color = "#00cc00"
37 elseif link.Cost < 10 then
38 color = "#ffcb05"
39 elseif link.Cost < 100 then
40 color = "#ff6600"
41 end
42 %>
43 <tr>
44 <td><a href="http://<%=link["Remote IP"]%>/cgi-bin-status.html"><%=link["Remote IP"]%></a></td>
45 <td><a href="http://<%=link["Hostname"]%>/cgi-bin-status.html"><%=link["Hostname"]%></a></td>
46 <td><%=link["Local IP"]%></td>
47 <td><%=link["Local Device"]%></td>
48 <td><%=link.LQ%></td>
49 <td><%=link.NLQ%></td>
50 <td style="background-color:<%=color%>"><%=string.format("%.3f", link.Cost)%></td>
51 </tr>
52 <% end %>
53 </table>
54 <br />
55 <h3><%:Legend%>:</h3>
56 <ul>
57 <li><strong>LQ: </strong><%:Success rate of packages received from the neighbour%></li>
58 <li><strong>NLQ: </strong><%:Success rate of packages sent to the neighbour%></li>
59 <li><strong>ETX: </strong><%:Expected retransmission count%></li>
60 </ul>
61 <%+footer%>