Created
June 10, 2013 08:23
-
-
Save triskweline/5747262 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xml.instruct! | |
xml.rss :version => '2.0', 'xmlns:atom' => 'http://www.w3.org/2005/Atom' do | |
xml.channel do | |
xml.title "makandra cards for #{@user.public_name}" | |
xml.link sites_url | |
xml.language 'en' | |
xml.tag! 'atom:link', :rel => 'self', :type => 'application/rss+xml', :href => sites_url | |
for note in @notes | |
xml.item(¬e_rss_itemizer(note)) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment