This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
2008-02-03 04:27:09 -05:00
|
|
|
xml.instruct! :xml, :version=>"1.0"
|
|
|
|
xml.rss(:version=>"2.0"){
|
|
|
|
xml.channel{
|
|
|
|
xml.title("BarleySodas Recently Updated Pages")
|
|
|
|
xml.link(pages_url)
|
|
|
|
xml.description("The most recently updated pages in BarleySodas.")
|
|
|
|
xml.lastBuildDate((@pages.first.created_at.strftime("%a, %d %b %Y %H:%M:%S %z") rescue nil))
|
|
|
|
xml.language('en-us')
|
|
|
|
for page in @pages
|
|
|
|
xml.item do
|
|
|
|
xml.title(page.title)
|
|
|
|
xml.description(page.title)
|
|
|
|
xml.author(page.created_by.title)
|
|
|
|
xml.pubDate(page.created_at.strftime("%a, %d %b %Y %H:%M:%S %z"))
|
2008-04-13 04:16:26 -04:00
|
|
|
xml.link(page_url(page))
|
|
|
|
xml.guid(page_url(page))
|
2008-02-03 04:27:09 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
}
|