1 xml.note("lon" => note.lon, "lat" => note.lat) do
 
   3   xml.url note_url(note, :format => params[:format])
 
   4   xml.comment_url comment_note_url(note, :format => params[:format])
 
   5   xml.close_url close_note_url(note, :format => params[:format])
 
   6   xml.date_created note.created_at
 
   9   if note.status == "closed"
 
  10     xml.date_closed note.closed_at
 
  14     note.comments.each do |comment|
 
  16         xml.date comment.created_at
 
  19           xml.uid comment.author.id
 
  20           xml.user comment.author.display_name
 
  21           xml.user_url user_url(:display_name => comment.author.display_name)
 
  25           xml.text comment.body.to_text
 
  26           xml.html comment.body.to_html