X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/096459404c8c9713485cce2fc77faef3be8870e5..48929e8781f9c136a142400a7a2ef1cf994f74fd:/app/views/changeset/_changeset.html.erb diff --git a/app/views/changeset/_changeset.html.erb b/app/views/changeset/_changeset.html.erb index d76e97326..2ba88b756 100644 --- a/app/views/changeset/_changeset.html.erb +++ b/app/views/changeset/_changeset.html.erb @@ -1,7 +1,7 @@ - - <% cl = cycle('table0', 'table1') %> +<% cl = cycle('table0', 'table1') %> + - + <%= id_link = link_to(changeset.id, {:controller => 'browse', :action => 'changeset', :id => changeset.id}, @@ -10,14 +10,14 @@ %> - + <% if changeset.closed_at > DateTime.now %> <%= t'changeset.changeset.still_editing' %> <% else %><%= l changeset.closed_at, :format => :long %><% end %> <%if showusername %> - + <% if changeset.user.data_public? %> <%= link_to h(changeset.user.display_name), :controller => "changeset", :action => "list", :display_name => changeset.user.display_name %> <% else %> @@ -26,31 +26,29 @@ <% end %> - - <% if changeset.tags['comment'] %> - <%= h(changeset.tags['comment']) %> + + <% if changeset.tags['comment'].to_s != '' %> + <%= linkify(h(changeset.tags['comment'])) %> <% else %> <%= t'changeset.changeset.no_comment' %> <% end %> - + <% if changeset.min_lat.nil? %> <%= t'changeset.changeset.no_edits' %> - <% else - minlon = changeset.min_lon/GeoRecord::SCALE.to_f - minlat = changeset.min_lat/GeoRecord::SCALE.to_f - maxlon = changeset.max_lon/GeoRecord::SCALE.to_f - maxlat = changeset.max_lat/GeoRecord::SCALE.to_f - %> + <% else %> + <% + minlon = changeset.min_lon/GeoRecord::SCALE.to_f + minlat = changeset.min_lat/GeoRecord::SCALE.to_f + maxlon = changeset.max_lon/GeoRecord::SCALE.to_f + maxlat = changeset.max_lat/GeoRecord::SCALE.to_f + %> '><%= format("%0.3f",minlon) -%>,<%= format("%0.3f",minlat) -%>,<%= format("%0.3f",maxlon) -%>,<%= format("%0.3f",maxlat) -%> - <% if changeset.area > 1500000000000 %> - <%= t'changeset.changeset.big_area' %> - <% - end - end - %> + <% if changeset.area > 1500000000000 %> + <%= t'changeset.changeset.big_area' %> + <% end %> + <% end %> -