]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/diary_entry/rss.rss.builder
Use only_path instead of setting an explicit host
[rails.git] / app / views / diary_entry / rss.rss.builder
index 4c9670a6d5f118230a536fe24961723cf769fb88..6ff2ed9f363b1305440851bc3cc61ed45d696c06 100644 (file)
@@ -1,6 +1,7 @@
 xml.instruct!
 
 xml.instruct!
 
-xml.rss("version" => "2.0", 
+xml.rss("version" => "2.0",
+        "xmlns:dc" => "http://purl.org/dc/elements/1.1/",
         "xmlns:geo" => "http://www.w3.org/2003/01/geo/wgs84_pos#",
         "xmlns:georss" => "http://www.georss.org/georss") do
   xml.channel do
         "xmlns:geo" => "http://www.w3.org/2003/01/geo/wgs84_pos#",
         "xmlns:georss" => "http://www.georss.org/georss") do
   xml.channel do
@@ -8,27 +9,27 @@ xml.rss("version" => "2.0",
     xml.description @description
     xml.link url_for(:action => "list", :only_path => false)
     xml.image do
     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.url image_url("mag_map-rss2.0.png")
+      xml.title @title
       xml.width "100"
       xml.height "100"
       xml.link url_for(:action => "list", :only_path => false)
     end
 
       xml.width "100"
       xml.height "100"
       xml.link url_for(:action => "list", :only_path => false)
     end
 
-    for entry in @entries
+    @entries.each do |entry|
       xml.item do
       xml.item do
-        xml.title h(entry.title)
+        xml.title 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.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.description entry.body.to_html
+        xml.dc :creator, 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)
         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
+
+        if entry.latitude && entry.longitude
           xml.geo :lat, entry.latitude.to_s
           xml.geo :long, entry.longitude.to_s
           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}"
+          xml.georss :point, "#{entry.latitude} #{entry.longitude}"
         end
       end
     end
         end
       end
     end