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 Newest People")
|
|
|
|
xml.link(peoples_url)
|
|
|
|
xml.description("The newest people added into BarleySodas.")
|
|
|
|
xml.lastBuildDate((@peoples.first.created_at.strftime("%a, %d %b %Y %H:%M:%S %z") rescue nil))
|
|
|
|
xml.language('en-us')
|
|
|
|
for people in @peoples
|
|
|
|
xml.item do
|
|
|
|
xml.title(people.title)
|
|
|
|
xml.description(people.title)
|
|
|
|
xml.pubDate(people.created_at.strftime("%a, %d %b %Y %H:%M:%S %z"))
|
2008-04-13 04:16:26 -04:00
|
|
|
xml.link(people_url(people))
|
|
|
|
xml.guid(people_url(people))
|
2008-02-03 04:27:09 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
}
|