X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e7cd90f4b4d431b32a92ca68c3df817e8e765d09..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 a594506cd..16be0598b 100644 --- a/app/views/map_bugs/get_bugs.xml.builder +++ b/app/views/map_bugs/get_bugs.xml.builder @@ -1,29 +1,3 @@ xml.instruct! -xml.bugs do - for bug in @bugs - xml.bug("lon" => bug.lon, "lat" => bug.lat) do - xml.id bug.id - xml.date_created bug.date_created - xml.nearby bug.nearby_place - xml.status bug.status - if bug.status == "closed" - xml.date_closed bug.date_closed - end - xml.comments do - for comment in bug.map_bug_comment - xml.comment do - xml.date comment.date_created - if !comment.commenter_id.nil? - xml.uid comment.commenter_id - xml.user comment.user.display_name - else - xml.user comment.commenter_name - end - xml.text comment.comment - end - end - end - end - end -end +xml << render(:partial => "bug", :collection => @bugs)