]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/notes/show.rss.builder
Move the notes api methods into a controller in the api namespace
[rails.git] / app / views / notes / show.rss.builder
diff --git a/app/views/notes/show.rss.builder b/app/views/notes/show.rss.builder
deleted file mode 100644 (file)
index f406479..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-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 t("notes.rss.title")
-    xml.description t("notes.rss.description_item", :id => @note.id)
-    xml.link url_for(:controller => "site", :action => "index", :only_path => false)
-
-    xml << render(:partial => "note", :object => @note)
-  end
-end