atom_feed(:language => I18n.locale, :schema_date => 2009,
:id => url_for(@params.merge(:only_path => false)),
:root_url => url_for(@params.merge(:action => :index, :format => nil, :only_path => false)),
+ "xmlns:xhtml" => "http://www.w3.org/1999/xhtml",
"xmlns:georss" => "http://www.georss.org/georss") do |feed|
feed.title changeset_index_title(params, current_user)
:type => "application/osmChange+xml"
if !changeset.tags.empty? && changeset.tags.key?("comment")
- entry.title t("browse.changeset.feed.title_comment", :id => changeset.id, :comment => changeset.tags["comment"]), :type => "html"
+ entry.title t(".feed.title_comment", :id => changeset.id, :comment => changeset.tags["comment"])
else
- entry.title t("browse.changeset.feed.title", :id => changeset.id)
+ entry.title t(".feed.title", :id => changeset.id)
end
if changeset.user.data_public?
td.table :cellpadding => "0" do |tag_table|
changeset.tags.sort.each do |tag|
tag_table.tr do |tag_tr|
- tag_tr.td << "#{tag[0]} = #{linkify(tag[1])}"
+ tag_tr.td "#{tag[0]} = #{linkify(tag[1])}"
end
end
end
end
end
- if changeset.has_valid_bbox?
+ if changeset.bbox_valid?
bbox = changeset.bbox.to_unscaled
# See http://georss.org/Encodings#Geometry