1 xml.note("lon" => note.lon, "lat" => note.lat) do
 
   3   xml.date_created note.created_at
 
   4   xml.nearby note.nearby_place
 
   7   if note.status == "closed"
 
   8     xml.date_closed note.closed_at
 
  12     note.comments.each do |comment|
 
  14         xml.date comment.created_at
 
  15         xml.uid comment.author_id unless comment.author_id.nil?
 
  16         xml.user comment.author_name