]> git.openstreetmap.org Git - rails.git/blob - app/views/api/notes/show.rss.builder
Simplify partial rendering when the partial is named after the model
[rails.git] / app / views / api / notes / show.rss.builder
1 xml.instruct!
2
3 xml.rss("version" => "2.0",
4         "xmlns:geo" => "http://www.w3.org/2003/01/geo/wgs84_pos#",
5         "xmlns:georss" => "http://www.georss.org/georss") do
6   xml.channel do
7     xml.title t("api.notes.rss.title")
8     xml.description t("api.notes.rss.description_item", :id => @note.id)
9     xml.link url_for(:controller => "/site", :action => "index", :only_path => false)
10
11     xml << render(@note)
12   end
13 end