Updated README.rdoc again
[feedcatcher.git] / app / views / feed / show.rss.builder
1 # show.rss.builder
2 xml.instruct! :xml, :version => "1.0"
3 xml.rss :version => "2.0" do
4 xml.channel do
5 xml.title @feed_name
6 xml.link feed_url(@feed_name, :rss)
7 xml.description "The #{h @feed_name} feed"
8
9 for item in @feed_items
10 xml.item do
11 xml.title item.title
12 xml.description item.description
13 xml.guid item.id, :isPermaLink => 'false'
14 xml.pubDate(item.updated_at.to_s(:rfc822))
15 end
16 end
17 end
18 end