- xml.link url_for(:controller => "browse", :action => "note", :id => note.id, :only_path => false)
- xml.guid url_for(:controller => "note", :action => "read", :id => note.id, :only_path => false)
- xml.description render(:partial => "description", :object => note, :formats => [ :html ])
- xml.author note.author_name
- xml.pubDate note.updated_at.to_s(:rfc822)
+ xml.link browse_note_url(note)
+ xml.guid note_url(note)
+ xml.description render(:partial => "description", :object => note, :formats => [:html])
+
+ xml.dc :creator, note.author.display_name if note.author
+
+ xml.pubDate note.created_at.to_s(:rfc822)