]> git.openstreetmap.org Git - rails.git/blob - app/views/changeset/list.atom.builder
7c1cf8bda0ad9d9027a6fe2a2670e109f4a7ef79
[rails.git] / app / views / changeset / list.atom.builder
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|
5   feed.title @title
6
7   feed.subtitle :type => 'xhtml' do |xhtml|
8     xhtml.p @description
9   end
10
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"
14
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"
18     end
19   end
20
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"
29
30       entry.title t('browse.changeset.title') + " " + h(changeset.id)
31
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)
36         end
37       end
38
39       if changeset.tags['comment']
40         feed.content changeset.tags['comment']
41       end
42
43       unless changeset.min_lat.nil?
44         minlon = changeset.min_lon/GeoRecord::SCALE.to_f
45         minlat = changeset.min_lat/GeoRecord::SCALE.to_f
46         maxlon = changeset.max_lon/GeoRecord::SCALE.to_f
47         maxlat = changeset.max_lat/GeoRecord::SCALE.to_f
48
49         # See http://georss.org/Encodings#Geometry
50         lower_corner = "#{minlat} #{minlon}"
51         upper_corner = "#{maxlat} #{maxlon}"
52
53         feed.georss :box, lower_corner + " " + upper_corner
54       end
55     end
56   end
57 end