openstreetmap-website/app/views/changeset_comments/feeds/timeout.rss.builder
2024-09-09 19:14:51 +03:00

12 lines
385 B
Ruby

xml.rss("version" => "2.0",
"xmlns:dc" => "http://purl.org/dc/elements/1.1/") do
xml.channel do
if params[:changeset_id]
xml.title t("changeset_comments.feeds.show.title_particular", :changeset_id => params[:changeset_id])
else
xml.title t("changeset_comments.feeds.show.title_all")
end
xml.link root_url
xml.description t(".sorry")
end
end