there's a changeset comment.
I'm not doing any snipping of the comment so they could run to 255
characters (the max size in the database), but from testing a few feed
clients it looks like they do this pretty well at the client side.
:href => changeset_download_url(changeset, :only_path => false),
:type => "application/osmChange+xml"
- entry.title t('browse.changeset.title') + " " + h(changeset.id)
+ if !changeset.tags.empty? and changeset.tags.has_key? "comment"
+ entry.title t('browse.changeset.feed.title_comment', :id => h(changeset.id), :comment => h(changeset.tags['comment']))
+ else
+ entry.title t('browse.changeset.feed.title', :id => h(changeset.id))
+ end
if changeset.user.data_public?
entry.author do |author|
download: "Download {{changeset_xml_link}} or {{osmchange_xml_link}}"
changesetxml: "Changeset XML"
osmchangexml: "osmChange XML"
+ feed:
+ title: "Changeset {{id}}"
+ title_comment: "Changeset {{id}} - {{comment}}"
changeset_navigation:
user:
name_tooltip: "View edits by {{user}}"
download: "Niðurhala breytingunni á {{changeset_xml_link}} eða á {{osmchange_xml_link}}"
changesetxml: "Breytingarsetts XML sniði"
osmchangexml: "osmChange XML sniði"
+ feed:
+ title: "Breytingarsett {{id}}"
+ title_comment: "Breytingarsett {{id}} - {{comment}}"
changeset_navigation:
user:
name_tooltip: "Skoða breytingarsett eftir {{user}}"