Revision: 4547
Updated Code
at January 31, 2008 21:17 by vanne
Updated Code
# re-encode html escaped entities when reading atom feeds def rss_html_parse(content) content.gsub!("<","<") content.gsub!(">",">") content.gsub!("\\","") content end
Revision: 4546
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at January 4, 2008 13:30 by vanne
Initial Code
# re-encode html escaped entities when reading atom feeds def rss_html_parse(content) content.gsub!("<","<") content.gsub!(">",">") content.gsub!("\\","") content end
Initial URL
Initial Description
Initial Title
Parse HTML when reading atom feeds
Initial Tags
ruby
Initial Language
Ruby