X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d0e291552e5da004f1582d7ce577b8ccf7f546df..560e41ebf990e8d46d3b3df97b52d5e74083668c:/app/views/map_bugs/get_bugs.xml.builder diff --git a/app/views/map_bugs/get_bugs.xml.builder b/app/views/map_bugs/get_bugs.xml.builder index be7e9cf7a..16be0598b 100644 --- a/app/views/map_bugs/get_bugs.xml.builder +++ b/app/views/map_bugs/get_bugs.xml.builder @@ -1,23 +1,3 @@ xml.instruct! - -xml.gpx("version" => "1.1", - "xmlns:xsi" => "http://www.w3.org/2001/XMLSchema-instance", - "xsi:schemaLocation" => "http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd") do - - for bug in @bugs - xml.wpt("lon" => bug.lon, "lat" => bug.lat) do - xml.desc do - xml.cdata! bug.flatten_comment("
") - end - xml.extension do - if bug.status = "open" - xml.closed "0" - else - xml.closed "1" - end - xml.id bug.id - end - end - end -end +xml << render(:partial => "bug", :collection => @bugs)