- 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.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
+