]> git.openstreetmap.org Git - rails.git/commitdiff
Railsify the box link on the browse changeset page
authorShaun McDonald <shaun@shaunmcdonald.me.uk>
Sun, 15 Jan 2012 00:59:26 +0000 (00:59 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 16 Jan 2012 17:51:25 +0000 (17:51 +0000)
This removes the whitespace in the url, and makes the root path a
named route so that it can be nicely referenced.

app/views/browse/_changeset_details.html.erb
config/routes.rb

index 2d7808137bd8de0102c227d84981e2633e16f5f5..eb90fad1044665cd877c0c417aba7d782a419e88 100644 (file)
@@ -33,8 +33,7 @@
           </tr>
           <tr>
             <td><%=bbox.min_lon -%></td>
-            <td>(<a href='/?minlon=<%= bbox.min_lon %>&minlat=<%= bbox.min_lat %>&maxlon=<%= bbox.max_lon %>&maxlat=<%= bbox.max_lat %>
-                  &box=yes' title='<%= t 'browse.changeset_details.show_area_box' %>'><%= t 'browse.changeset_details.box' %></a>)</td>
+            <td>(<%= link_to t('browse.changeset_details.box'), root_path(:minlon => bbox.min_lon, :minlat => bbox.min_lat, :maxlon => bbox.max_lon, :maxlat => bbox.max_lat, :box => 'yes'), :title => t('browse.changeset_details.show_area_box') %>)</td>
             <td><%=bbox.max_lon -%></td>
           </tr>
           <tr>
index fa7dd5ba04faca6ec0406a0c1fb6c04d5945c7bc..267de7956add038ad4b1d88e105f229626de0200 100644 (file)
@@ -93,7 +93,7 @@ OpenStreetMap::Application.routes.draw do
   match '/browse' => 'changeset#list'
 
   # web site
-  match '/' => 'site#index'
+  root :to => 'site#index'
   match '/edit' => 'site#edit'
   match '/copyright' => 'site#copyright'
   match '/copyright/:copyright_locale' => 'site#copyright'