X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/51195c450d16e35a62bff2bbf6c9dd0923bd0db4..ce7b651eb25473b74765ccb349f37ebd4ea6edfe:/app/helpers/application_helper.rb diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 3d2c70a13..6e2ecd323 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -50,7 +50,7 @@ module ApplicationHelper css << ".show_if_user_#{@user.id} { display: inline }" if @user; css << ".hide_unless_administrator { display: none }" unless @user and @user.administrator?; - return content_tag(:style, css) + return content_tag(:style, css, :type => "text/css") end def if_logged_in(tag = :div, &block) @@ -85,8 +85,8 @@ module ApplicationHelper url = "http://nominatim.openstreetmap.org/reverse?lat=#{lat}&lon=#{lon}&zoom=#{zoom}&accept-language=#{language}" begin - Timeout::timeout(4) do - response = REXML::Document.new(Net::HTTP.get(URI.parse(url))) + response = Timeout::timeout(4) do + REXML::Document.new(Net::HTTP.get(URI.parse(url))) end rescue Exception response = nil @@ -119,6 +119,16 @@ module ApplicationHelper end end + def preferred_editor + if params[:editor] + params[:editor] + elsif @user and @user.preferred_editor + @user.preferred_editor + else + DEFAULT_EDITOR + end + end + private def javascript_strings_for_key(key)