]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/notes/feed.rss.builder
Use CDATA for note descriptions in the RSS feed
[rails.git] / app / views / notes / feed.rss.builder
index 4733c1bad77864377814f32139676c1ab27175e9..df35b70d3bd4fb158a98033e0d40d670272e4fe3 100644 (file)
@@ -25,19 +25,10 @@ xml.rss("version" => "2.0",
         xml.link url_for(:controller => "browse", :action => "note", :id => comment.note.id, :only_path => false)
         xml.guid url_for(:controller => "browse", :action => "note", :id => comment.note.id, :only_path => false)
 
-        description_text = ""
-
-        if comment.event == "commented" and not comment.nil?
-          description_text += "<b>Comment:</b><br>"
-          description_text += comment.body.to_html
-          description_text += "<br>"
+        xml.description do
+          xml.cdata! render(:partial => "entry", :object => comment, :formats => [ :html ])
         end
 
-        description_text += "<b>Full note:</b><br>"
-        description_text += comment.note.flatten_comment("<br>", comment.created_at)
-
-        xml.description description_text 
-
         if comment.author
           xml.author comment.author.display_name
         end