X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/ac48c6a16f97ae20c0bbf33eb05d0c76efeff9b2..fa2e6320a7bec8c5f99e1e4d70f88ff9de969da7:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index cf4465b9c..356af9879 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -6,10 +6,6 @@ class SiteController < ApplicationController before_filter :set_locale before_filter :require_user, :only => [:edit] - def export - render :action => 'index' - end - def permalink lon, lat, zoom = ShortLink::decode(params[:code]) new_params = params.clone @@ -85,4 +81,8 @@ class SiteController < ApplicationController def copyright @locale = params[:copyright_locale] || I18n.locale end + + def preview + render :text => RichText.new(params[:format], params[:text]).to_html + end end