X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a8c7d1c4ce7b0b11eda847947a50dadcbee75cae..2e2f2124728ca755b2db8f83f022eaea24b647f0:/app/views/diary_entry/rss.rss.builder diff --git a/app/views/diary_entry/rss.rss.builder b/app/views/diary_entry/rss.rss.builder new file mode 100644 index 000000000..4c9670a6d --- /dev/null +++ b/app/views/diary_entry/rss.rss.builder @@ -0,0 +1,36 @@ +xml.instruct! + +xml.rss("version" => "2.0", + "xmlns:geo" => "http://www.w3.org/2003/01/geo/wgs84_pos#", + "xmlns:georss" => "http://www.georss.org/georss") do + xml.channel do + xml.title @title + xml.description @description + xml.link url_for(:action => "list", :only_path => false) + xml.image do + xml.url "http://www.openstreetmap.org/images/mag_map-rss2.0.png" + xml.title "OpenStreetMap" + xml.width "100" + xml.height "100" + xml.link url_for(:action => "list", :only_path => false) + end + + for entry in @entries + xml.item do + xml.title h(entry.title) + xml.link url_for(:action => "view", :id => entry.id, :display_name => entry.user.display_name, :only_path => false) + xml.guid url_for(:action => "view", :id => entry.id, :display_name => entry.user.display_name, :only_path => false) + xml.description htmlize(entry.body) + xml.author entry.user.display_name + xml.pubDate entry.created_at.to_s(:rfc822) + xml.comments url_for(:action => "view", :id => entry.id, :display_name => entry.user.display_name, :anchor => "comments", :only_path => false) + + if entry.latitude and entry.longitude + xml.geo :lat, entry.latitude.to_s + xml.geo :long, entry.longitude.to_s + xml.georss :point, "#{entry.latitude.to_s} #{entry.longitude.to_s}" + end + end + end + end +end