local data = {}
- local tables = luci.util.split(luci.util.trim(rawdata), "\n\n")
+ local tables = luci.util.split(luci.util.trim(rawdata), "\r?\n\r?\n", nil, true)
for i, tbl in ipairs(tables) do
- local lines = luci.util.split(tbl, "\n")
+ local lines = luci.util.split(tbl, "\r?\n", nil, true)
local name = table.remove(lines, 1):sub(8)
local keys = luci.util.split(table.remove(lines, 1), "\t")
local split = #keys - 1
data[name][j].LinkQuality,
data[name][j].NLQ,
data[name][j].ETX =
- data[name][j].Linkcost:match("(.*)/(.*)\t(.*)")
+ data[name][j].Linkcost:match("([%w.]+)/([%w.]+)[%s]+([%w.]+)")
end
end
end
<th>ETX</th>
</tr>
<% for k, link in ipairs(links) do
- if link.Linkcost then
- link.LinkQuality, link.NLQ, link.ETX = link.Linkcost:match("(.*)/(.*)\t(.*)")
- end
local color = "#bb3333"
link.ETX = tonumber(link.ETX) or 0
<th>ETX</th>
</tr>
<% for k, route in ipairs(routes) do
- if route.Linkcost then
- route.LQ, route.ILQ, route.ETX = route.Linkcost:match("(.*)/(.*)\t(.*)")
- end
%>
<tr>
<td><a href="http://<%=route["Destination IP"]%>"><%=route["Destination IP"]%></a></td>