X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/8edf08405db64afcd1207a9f1d33039ea1e23cfb..b4791598eab87d948ec0a92d170b09fe50aa55ea:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index 3c7d3ff82..4b22e46fd 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -2,20 +2,7 @@ class SiteController < ApplicationController before_filter :authorize_web before_filter :require_user, :only => [:edit] - - def search - @tags = WayTag.find(:all, :limit => 11, :conditions => ["match(v) against (?)", params[:query][:query].to_s] ) + def export + render :action => 'index' end - - def goto_way - way = Way.find(params[:id]) - - begin - node = way.way_segments.first.segment.from_node - redirect_to :controller => 'site', :action => 'index', :lat => node.latitude, :lon => node.longitude, :zoom => 6 - rescue - redirect_to :back - end - end - end