=begin
Feed2Imap - RSS/Atom Aggregator uploading to an IMAP Server
Copyright (c) 2005 Lucas Nussbaum /) || (self =~ / \1
/) || (self =~ /
/)
end
# returns true if the text contains escaped HTML (with HTML entities)
def escaped_html?
return (self =~ /<img src=/) || (self =~ /<a href=/) || (self =~ /<br(\/| \/|)>/)
end
# un-escape HTML in the text
def unescape_html
{
'<' => '<',
'>' => '>',
"'" => ''',
'"' => '"',
'&' => '&',
"\047" => '''
}.each do |k, v|
gsub!(v, k)
end
self
end
# convert text to HTML
def text2html
text = self.clone
return text if text.html?
if text.escaped_html?
return text.unescape_html
end
# paragraphs
text.gsub!(/\A\s*(.*)\Z/m, '
") # uris text.gsub!(/(#{URI::regexp(['http','ftp','https'])})/, '\1') text end # Convert an HTML text to plain text def html2text if false text = self.clone # let's remove all CR text.gsub!(/\n/, '') # convert
and
text.gsub!(/\s*<\/p>\s*/, '')
text.gsub!(/\s*
]*)?>\s*/, "\n\n")
text.gsub!(/\s*
\s*/, "\n")
# remove other tags
text.gsub!(/<[^>]*>/, '')
# remove leading and trailing whilespace
text.gsub!(/\A\s*/m, '')
text.gsub!(/\s*\Z/m, '')
text
else
text = self.clone
# parse HTML
p = HTML2TextParser::new(true)
p.feed(text)
p.close
text = p.savedata
# remove leading and trailing whilespace
text.gsub!(/\A\s*/m, '')
text.gsub!(/\s*\Z/m, '')
# remove whitespace around \n
text.gsub!(/ *\n/m, "\n")
text.gsub!(/\n */m, "\n")
# and duplicates \n
text.gsub!(/\n\n+/m, "\n\n")
text
end
end
# Remove white space around the text
def rmWhiteSpace!
return self.gsub!(/\A\s*/m, '').gsub!(/\s*\Z/m,'')
end
# Convert a text in inputenc to a text in ISO-8859-1
def toISO_8859_1(inputenc)
if inputenc.downcase == 'utf-8'
begin
return self.unpack('U*').pack('C*')
rescue
return self
end
else
return self
end
end
# Convert a text in inputenc to a text in UTF8
# must take care of wrong input locales
def toUTF8(inputenc)
if inputenc.downcase != 'utf-8'
# it is said it is not UTF-8. Ensure it is REALLY not UTF-8
begin
if self.unpack('U*').pack('U*') == self
return self
end
rescue
# do nothing
end
begin
return self.unpack('C*').pack('U*')
rescue
return self #failsafe solution. but a dirty one :-)
end
else
return self
end
end
def needMIME
utf8 = false
self.unpack('U*').each do |c|
if c > 127
utf8 = true
break
end
end
utf8
end
end