1 atom_feed(:language => I18n.locale, :schema_date => 2009,
2 :id => url_for(params.merge({ :only_path => false })),
3 :root_url => url_for(params.merge({ :only_path => false, :format => nil })),
4 "xmlns:georss" => "http://www.georss.org/georss") do |feed|
7 feed.subtitle :type => 'xhtml' do |xhtml|
11 feed.updated @edits.map {|e| [e.created_at, e.closed_at].max }.max
12 feed.icon "http://#{SERVER_URL}/favicon.ico"
13 feed.logo "http://#{SERVER_URL}/images/mag_map-rss2.0.png"
15 feed.rights :type => 'xhtml' do |xhtml|
16 xhtml.a :href => "http://creativecommons.org/licenses/by-sa/2.0/" do |a|
17 a.img :src => "http://#{SERVER_URL}/images/cc_button.png", :alt => "CC by-sa 2.0"
21 for changeset in @edits
22 feed.entry(changeset, :updated => changeset.closed_at, :id => changeset_url(changeset.id, :only_path => false)) do |entry|
23 entry.link :rel => "alternate",
24 :href => changeset_read_url(changeset, :only_path => false),
25 :type => "application/osm+xml"
26 entry.link :rel => "alternate",
27 :href => changeset_download_url(changeset, :only_path => false),
28 :type => "application/osmChange+xml"
30 entry.title t('browse.changeset.title') + " " + h(changeset.id)
32 if changeset.user.data_public?
33 entry.author do |author|
34 author.name changeset.user.display_name
35 author.uri url_for(:controller => 'user', :action => 'view', :display_name => changeset.user.display_name, :only_path => false)
39 feed.content :type => 'xhtml' do |xhtml|
40 xhtml.style "th { text-align: left } tr { vertical-align: top }"
41 xhtml.table do |table|
43 tr.th t("browse.changeset_details.created_at")
44 tr.td l(changeset.created_at)
47 tr.th t("browse.changeset_details.closed_at")
48 tr.td l(changeset.closed_at)
50 if changeset.user.data_public?
52 tr.th t("browse.changeset_details.belongs_to")
54 td.a h(changeset.user.display_name), :href => url_for(:controller => "user", :action => "view", :display_name => changeset.user.display_name, :only_path => false)
58 unless changeset.tags.empty?
60 tr.th t("browse.tag_details.tags")
62 td.table :cellpadding => "0" do |table|
63 changeset.tags.sort.each do |tag|
65 tr.td "#{h(tag[0])} = #{sanitize(auto_link(tag[1]))}"
75 unless changeset.min_lat.nil?
76 minlon = changeset.min_lon/GeoRecord::SCALE.to_f
77 minlat = changeset.min_lat/GeoRecord::SCALE.to_f
78 maxlon = changeset.max_lon/GeoRecord::SCALE.to_f
79 maxlat = changeset.max_lat/GeoRecord::SCALE.to_f
81 # See http://georss.org/Encodings#Geometry
82 lower_corner = "#{minlat} #{minlon}"
83 upper_corner = "#{maxlat} #{maxlon}"
85 feed.georss :box, lower_corner + " " + upper_corner