X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/eb0f9ff63d5ad5d91ea941420e094dd2980df094..c9ea3df043f321ab6ef3ab2e7f987fc115b9be8a:/app/helpers/application_helper.rb diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index bee4f9ce2..d805e27ad 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -1,6 +1,18 @@ module ApplicationHelper def htmlize(text) - return sanitize(auto_link(simple_format(text), :urls)) + return linkify(sanitize(simple_format(text))) + end + + def linkify(text) + return auto_link(text, :link => :urls, :html => { :rel => "nofollow" }) + end + + def html_escape_unicode(text) + chars = ActiveSupport::Multibyte::Chars.u_unpack(text).map do |c| + c < 127 ? c.chr : "&##{c.to_s};" + end + + return chars.join("") end def rss_link_to(*args)