<%
local olsrtools = require "luci.tools.olsr"
+local i = 1
if luci.http.formvalue("status") == "1" then
local rv = {}
- local i = 1
-
for k, link in ipairs(links) do
link.Cost = tonumber(link.Cost) or 0
local color = olsrtools.etx_color(link.Cost)
nlq = link.NLQ,
cost = string.format("%.3f", link.Cost),
color = color,
- rs = i,
dfgcolor = defaultgw_color
}
- if i == 1 then i = 0 elseif i == 0 then i = 1 end
end
luci.http.prepare_content("application/json")
luci.http.write_json(rv)
var neigh = info[idx];
s += String.format(
- '<tr class="cbi-section-table-row cbi-rowstyle-%s">' +
+ '<tr class="cbi-section-table-row cbi-rowstyle-'+(1 + (idx % 2))+'">' +
'<td class="cbi-section-table-cell" style="background-color:%s"><a href="http://%s/cgi-bin-status.html">%s</a></td>',
- neigh.rs, neigh.dfgcolor, neigh.rip, neigh.rip
+ neigh.dfgcolor, neigh.rip, neigh.rip
);
if (neigh.hn) {
s += String.format(
<legend><%:Overview of currently established OLSR connections%></legend>
<table class="cbi-section-table">
- <tr class="cbi-section-table-titles">
- <th class="cbi-section-table-cell"><%:Neighbour IP%></th>
- <th class="cbi-section-table-cell"><%:Hostname%></th>
- <th class="cbi-section-table-cell"><%:Local interface IP%></th>
- <th class="cbi-section-table-cell"><%:Device%></th>
- <th class="cbi-section-table-cell">LQ</th>
- <th class="cbi-section-table-cell">NLQ</th>
- <th class="cbi-section-table-cell">ETX</th>
- </tr>
-
+ <thead>
+ <tr class="cbi-section-table-titles">
+ <th class="cbi-section-table-cell"><%:Neighbour IP%></th>
+ <th class="cbi-section-table-cell"><%:Hostname%></th>
+ <th class="cbi-section-table-cell"><%:Local interface IP%></th>
+ <th class="cbi-section-table-cell"><%:Device%></th>
+ <th class="cbi-section-table-cell">LQ</th>
+ <th class="cbi-section-table-cell">NLQ</th>
+ <th class="cbi-section-table-cell">ETX</th>
+ </tr>
+ </thead>
<tbody id="olsr_neigh_table">
<% local i = 1
<td class="cbi-section-table-cell" style="background-color:<%=color%>"><%=string.format("%.3f", link.Cost)%></td>
</tr>
<%
- if i == 1 then i = 0 elseif i == 0 then i = 1 end
+ i = ((i % 2) + 1)
end %>
</tbody>
</table>
metric = route.Metric,
etx = tonumber(route.ETX),
color = olsrtools.etx_color(tonumber(route.ETX)),
- rs = i
}
- if i == 1 then i = 0 elseif i == 0 then i = 1 end
end
luci.http.prepare_content("application/json")
luci.http.write_json(rv)
var route = info[idx];
s += String.format(
- '<tr class="cbi-section-table-row cbi-rowstyle-%s">' +
+ '<tr class="cbi-section-table-row cbi-rowstyle-'+(1 + (idx % 2))+'">' +
'<td class="cbi-section-table-cell">%s</td>' +
'<td class="cbi-section-table-cell">' +
'<a href="http://%s/cgi-bin-status.html">%s</a>',
- route.rs, route.dest, route.gw, route.gw
+ route.dest, route.gw, route.gw
)
if (route.hostname)
<legend><%:Overview of currently known routes to other OLSR nodes%></legend>
<table class="cbi-section-table">
- <tr class="cbi-section-table-titles">
- <th class="cbi-section-table-cell"><%:Announced network%></th>
- <th class="cbi-section-table-cell"><%:OLSR gateway%></th>
- <th class="cbi-section-table-cell"><%:Interface%></th>
- <th class="cbi-section-table-cell"><%:Metric%></th>
- <th class="cbi-section-table-cell">ETX</th>
- </tr>
+ <thead>
+ <tr class="cbi-section-table-titles">
+ <th class="cbi-section-table-cell"><%:Announced network%></th>
+ <th class="cbi-section-table-cell"><%:OLSR gateway%></th>
+ <th class="cbi-section-table-cell"><%:Interface%></th>
+ <th class="cbi-section-table-cell"><%:Metric%></th>
+ <th class="cbi-section-table-cell">ETX</th>
+ </tr>
+ </thead>
<tbody id="olsrd_routes">
<td class="cbi-section-table-cell" style="background-color:<%=color%>"><%=string.format("%.3f", tonumber(route.ETX) or 0)%></td>
</tr>
<%
- if i == 1 then i = 0 elseif i == 0 then i = 1 end
+ i = ((i % 2) + 1)
end %>
</tbody>
</table>