Report reopened notes properly in the RSS feed
This commit is contained in:
parent
22415a6e7c
commit
d6d366ad2b
2 changed files with 4 additions and 11 deletions
|
@ -13,15 +13,7 @@ xml.rss("version" => "2.0",
|
|||
location = describe_location(comment.note.lat, comment.note.lon, 14, locale)
|
||||
|
||||
xml.item do
|
||||
if comment.event == "closed"
|
||||
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.title t("note.rss.#{comment.event}", :place => location)
|
||||
|
||||
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)
|
||||
|
|
|
@ -2022,9 +2022,10 @@ en:
|
|||
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_item: "An rss feed for note %{id}"
|
||||
opened: "new note (near %{place})"
|
||||
commented: "new comment (near %{place})"
|
||||
closed: "closed note (near %{place})"
|
||||
new: "new note (near %{place})"
|
||||
comment: "new comment (near %{place})"
|
||||
reopened: "reactivated note (near %{place})"
|
||||
entry:
|
||||
comment: Comment
|
||||
full: Full note
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue