]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/site_controller.rb
Sort out storage and use of user preferred languages.
[rails.git] / app / controllers / site_controller.rb
index 3c7d3ff82a4c97d1283bf5ed353618eaf5424c8a..daf8fead74ae0a62c4a1207848566938b2576211 100644 (file)
@@ -1,21 +1,9 @@
 class SiteController < ApplicationController
   before_filter :authorize_web
+  before_filter :set_locale
   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