mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-01-01 01:16:26 +00:00
added back html_email obfusticator
This commit is contained in:
@ -113,6 +113,15 @@ module Helpers
|
||||
|
||||
# My added helpers
|
||||
|
||||
def to_html_email(address)
|
||||
email = string_to_html(address)
|
||||
"<a href=\"#{string_to_html('mailto:')}#{email}\">#{email}</a>"
|
||||
end
|
||||
|
||||
def string_to_html(s)
|
||||
s.strip.unpack("C*").map{|ch| "&#" + ch.to_s + ";" }.to_s
|
||||
end
|
||||
|
||||
def show_part (file)
|
||||
data = ''
|
||||
f = File.open(Dir.pwd+"/source/"+file)
|
||||
|
||||
Reference in New Issue
Block a user