Report reopened notes properly in the RSS feed

This commit is contained in:
Tom Hughes 2013-07-03 17:42:04 +01:00
parent 22415a6e7c
commit d6d366ad2b
2 changed files with 4 additions and 11 deletions

View file

@ -13,15 +13,7 @@ xml.rss("version" => "2.0",
location = describe_location(comment.note.lat, comment.note.lon, 14, locale) location = describe_location(comment.note.lat, comment.note.lon, 14, locale)
xml.item do xml.item do
if comment.event == "closed" xml.title t("note.rss.#{comment.event}", :place => location)
xml.title t('note.rss.closed', :place => location)
elsif comment.event == "commented"
xml.title t('note.rss.comment', :place => location)
elsif comment.event == "opened"
xml.title t('note.rss.new', :place => location)
else
xml.title "unknown event"
end
xml.link url_for(:controller => "browse", :action => "note", :id => comment.note.id, :anchor => "c#{comment.id}", :only_path => false) xml.link url_for(:controller => "browse", :action => "note", :id => comment.note.id, :anchor => "c#{comment.id}", :only_path => false)
xml.guid url_for(:controller => "browse", :action => "note", :id => comment.note.id, :anchor => "c#{comment.id}", :only_path => false) xml.guid url_for(:controller => "browse", :action => "note", :id => comment.note.id, :anchor => "c#{comment.id}", :only_path => false)

View file

@ -2022,9 +2022,10 @@ en:
title: "OpenStreetMap Notes" title: "OpenStreetMap Notes"
description_area: "A list of notes, reported, commented on or closed in your area [(%{min_lat}|%{min_lon}) -- (%{max_lat}|%{max_lon})]" description_area: "A list of notes, reported, commented on or closed in your area [(%{min_lat}|%{min_lon}) -- (%{max_lat}|%{max_lon})]"
description_item: "An rss feed for note %{id}" description_item: "An rss feed for note %{id}"
opened: "new note (near %{place})"
commented: "new comment (near %{place})"
closed: "closed note (near %{place})" closed: "closed note (near %{place})"
new: "new note (near %{place})" reopened: "reactivated note (near %{place})"
comment: "new comment (near %{place})"
entry: entry:
comment: Comment comment: Comment
full: Full note full: Full note