X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e838dddf12eab85e43683cb07f1f0c4619d7a47e..641ce5b640cfc74ca6c427fae49a39c08fa641ac:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index 32a0f8cb5..997973922 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -1,9 +1,10 @@ class SiteController < ApplicationController - layout 'site', :except => [:key, :permalink] - layout false, :only => [:key, :permalink] + layout 'site' + layout :map_layout, :only => [:index, :export] before_filter :authorize_web before_filter :set_locale + before_filter :redirect_browse_params, :only => :index before_filter :redirect_map_params, :only => [:index, :edit, :export] before_filter :require_user, :only => [:edit, :welcome] before_filter :require_oauth, :only => [:index] @@ -33,6 +34,7 @@ class SiteController < ApplicationController def key expires_in 7.days, :public => true + render :layout => false end def edit @@ -43,8 +45,6 @@ class SiteController < ApplicationController return end - @extra_body_class = "site-edit-#{editor}" - if params[:node] bbox = Node.find(params[:node]).bbox.to_unscaled @lat = bbox.centre_lat @@ -74,6 +74,9 @@ class SiteController < ApplicationController def help end + def about + end + def preview render :text => RichText.new(params[:format], params[:text]).to_html end @@ -84,6 +87,18 @@ class SiteController < ApplicationController private + def redirect_browse_params + if params[:node] + redirect_to node_path(params[:node]) + elsif params[:way] + redirect_to way_path(params[:way]) + elsif params[:relation] + redirect_to relation_path(params[:relation]) + elsif params[:note] + redirect_to browse_note_path(params[:note]) + end + end + def redirect_map_params anchor = [] @@ -97,15 +112,7 @@ class SiteController < ApplicationController anchor << "layers=N" end - if params[:node] - redirect_to node_path(params[:node]) - elsif params[:way] - redirect_to way_path(params[:way]) - elsif params[:relation] - redirect_to relation_path(params[:relation]) - elsif params[:note] - redirect_to browse_note_path(params[:note]) - elsif anchor.present? + if anchor.present? redirect_to params.merge(:anchor => anchor.join('&')) end end