From: Jo-Philipp Wich Date: Tue, 7 Jul 2009 17:30:26 +0000 (+0000) Subject: modules/freifunk: fix some quirks in the map X-Git-Tag: 0.10.0~1408 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=b7b3515179c1c895457b1420d5ab64f5403301a9;ds=sidebyside modules/freifunk: fix some quirks in the map --- diff --git a/modules/freifunk/luasrc/view/freifunk-map/map.htm b/modules/freifunk/luasrc/view/freifunk-map/map.htm index 7ecf49521..f373a7a6b 100644 --- a/modules/freifunk/luasrc/view/freifunk-map/map.htm +++ b/modules/freifunk/luasrc/view/freifunk-map/map.htm @@ -65,6 +65,9 @@ function ffmapinit() { if(null!=window.map)map.Dispose(); + + var INFINITE = 99.99; + map = new VEMap('ffmap'); <% local fd @@ -77,12 +80,19 @@ end) if fd then - while true do - local ln = fd:read("*l") - if not ln then break end - write(ln) - end + local data = fd:read("*a") fd:close() + + if data then + local line + for line in data:gmatch("[^\n]+") do + if line:match(";$") then + write(line .. "\n") + else + break + end + end + end end %> }