mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-23 16:13:14 +01:00
18 lines
No EOL
458 B
Ruby
18 lines
No EOL
458 B
Ruby
xml.instruct! :xml, :version => "1.0"
|
|
xml.rss :version => "2.0" do
|
|
xml.channel do
|
|
xml.title "Search results"
|
|
xml.description "Papers matching search criteria"
|
|
xml.link root_url
|
|
|
|
@papers.each do |doc|
|
|
xml.item do
|
|
xml.title doc.name
|
|
xml.description truncate(doc.content, length: 768)
|
|
xml.pubDate doc.published_at.to_date.to_s(:rfc822)
|
|
xml.link doc.url
|
|
xml.guid doc.url
|
|
end
|
|
end
|
|
end
|
|
end |