DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
RSS Feed In .rxml Template
xml.rss('version' => '2.0') do
xml.channel do
xml.title(page_title)
xml.link(@request.protocol + @request.host_with_port + url_for(:rss => nil))
xml.description(page_title)
@posts.each { |p|
xml.item do
xml.title(p.title)
xml.link(@request.protocol + @request.host_with_port + url_for(:controller => "posts", :action => "show", :id => p.id))
xml.description(niceify_html_for_rss(p.content))
xml.pubDate(p.updated_at)
end
}
end
end





Comments
Philipp M replied on Tue, 2007/01/23 - 1:47am
xml.pubDate(p.updated_at)usexml.pubDate(p.updated.at.rfc822)Snippets Manager replied on Mon, 2012/05/07 - 2:12pm
Snippets Manager replied on Mon, 2006/04/17 - 6:24am
Snippets Manager replied on Mon, 2012/05/07 - 2:12pm
xml.pubDate(p.updated_at)this would be better:xml.pubDate(CGI.rfc1123_date p.updated_at)Snippets Manager replied on Mon, 2012/05/07 - 2:12pm