stadtratmonitor/app/views/search/index.rss.builder

40 lines
1 KiB
Text
Raw Normal View History

require 'date'
2016-02-24 20:30:14 +01:00
xml.instruct! :xml, :version => "1.0"
xml.rss :version => "2.0", "xmlns:dc" => "http://purl.org/dc/elements/1.1/" do
2016-02-24 20:30:14 +01:00
xml.channel do
xml.title "Search results"
xml.description "Papers matching search criteria"
@papers.each do |doc|
xml.item do
xml.title doc.name
if !doc.content.blank?
xml.description do
xml.cdata! truncate(doc.content, length: 768)
end
end
if !doc.published_at.blank?
xml.pubDate DateTime.parse(doc.published_at).utc.strftime("%a, %d %b %Y %H:%M:%S %z")
end
doc.originator.each do |originator|
xml.dc :creator do
xml.cdata! originator
end
end
if !doc.paper_type.blank?
xml.category do
xml.cdata! doc.paper_type
end
end
if !doc.resolution.blank?
xml.category do
xml.cdata! doc.resolution
end
end
2016-02-24 20:30:14 +01:00
xml.link doc.url
xml.guid doc.url
end
end
end
end