return sanitize(auto_link(simple_format(text), :urls))
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)
return link_to(image_tag("RSS.gif", :size => "16x16", :border => 0), Hash[*args], { :class => "rsssmall" });
end
var layers = getMapLayers();
- html += '<br /><small><a href="http://#{SERVER_URL}/?lat='+center.lat+'&lon='+center.lon+'&zoom='+zoom+'&layers='+layers+markerUrl+'">'+"#{I18n.t('export.start_rjs.view_larger_map')}"+'</a></small>';
+ html += '<br /><small><a href="http://#{SERVER_URL}/?lat='+center.lat+'&lon='+center.lon+'&zoom='+zoom+'&layers='+layers+markerUrl+'">'+"#{html_escape_unicode(I18n.t('export.start_rjs.view_larger_map'))}"+'</a></small>';
$("export_html_text").value = html;