X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a56d1036d58d45777d6adeffd5a950519bc70318..50fafa14f86a9ff02458c1e055f24c199f14a8eb:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index eb8749f6f..1f33b067b 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -41,28 +41,31 @@ class SiteController < ApplicationController editor = preferred_editor if editor == "remote" + require_oauth render :action => :index return end - @extra_body_class = "site-edit-#{editor}" - if params[:node] bbox = Node.find(params[:node]).bbox.to_unscaled @lat = bbox.centre_lat @lon = bbox.centre_lon + @zoom = 18 elsif params[:way] bbox = Way.find(params[:way]).bbox.to_unscaled @lat = bbox.centre_lat @lon = bbox.centre_lon + @zoom = 17 elsif params[:note] note = Note.find(params[:note]) @lat = note.lat @lon = note.lon + @zoom = 17 elsif params[:gpx] trace = Trace.visible_to(@user).find(params[:gpx]) @lat = trace.latitude @lon = trace.longitude + @zoom = 16 end end @@ -98,6 +101,8 @@ class SiteController < ApplicationController redirect_to relation_path(params[:relation]) elsif params[:note] redirect_to browse_note_path(params[:note]) + elsif params[:query] + redirect_to search_path(:query => params[:query]) end end