1 comments.each do |comment|
 
   3     xml.title t(".comment", :author => comment.author.display_name, :changeset_id => comment.changeset.id.to_s)
 
   5     xml.link url_for(:controller => "browse", :action => "changeset", :id => comment.changeset.id, :anchor => "c#{comment.id}", :only_path => false)
 
   6     xml.guid url_for(:controller => "browse", :action => "changeset", :id => comment.changeset.id, :anchor => "c#{comment.id}", :only_path => false)
 
   9       xml.cdata! render(:partial => "comment", :object => comment, :formats => [:html])
 
  12     xml.dc :creator, comment.author.display_name if comment.author
 
  14     xml.pubDate comment.created_at.to_fs(:rfc822)