Attempt #3
authorSteven Barth <steven@midlink.org>
Sun, 17 Aug 2008 20:54:26 +0000 (20:54 +0000)
committerSteven Barth <steven@midlink.org>
Sun, 17 Aug 2008 20:54:26 +0000 (20:54 +0000)
applications/luci-olsr/luasrc/controller/olsr.lua
applications/luci-olsr/luasrc/view/status-olsr/index.htm
applications/luci-olsr/luasrc/view/status-olsr/topology.htm

index 577f596..96226d8 100644 (file)
@@ -156,11 +156,11 @@ function fetch_txtinfo(otable)
        
        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
@@ -178,7 +178,7 @@ function fetch_txtinfo(otable)
                                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
index 7d85e93..035d6dd 100644 (file)
@@ -25,9 +25,6 @@ $Id$
 <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
index 3b705f0..c7bd935 100644 (file)
@@ -24,9 +24,6 @@ $Id$
 <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>