rfeedreader 0.9.14 → 0.9.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.9.15 2007-10-04
2
+
3
+ * Correct pre-encoded html
4
+
1
5
  == 0.9.13 2007-09-14
2
6
 
3
7
  * Correct some converting issues on post titles
data/lib/rfeedreader.rb CHANGED
@@ -99,6 +99,9 @@ module Rfeedreader
99
99
  puts "Error while encoding: #{err} #{err.class}"
100
100
  end
101
101
 
102
+ # replace pre-encoded html
103
+ text.gsub!(/&#(\d+);/, '&#\1;')
104
+
102
105
  return text
103
106
  end
104
107
  end
@@ -2,7 +2,7 @@ module Rfeedreader #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 9
5
- TINY = 14
5
+ TINY = 15
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -156,4 +156,11 @@ class TestRfeedreader < Test::Unit::TestCase
156
156
  feed.display_entries
157
157
  end
158
158
 
159
+ def test_title_html
160
+ feed_url = "http://cgonzalez.info/?rss=1"
161
+ feed = read_feed(feed_url)
162
+ puts feed
163
+ feed.display_entries
164
+ end
165
+
159
166
  end
data/website/index.html CHANGED
@@ -33,7 +33,7 @@
33
33
  <h1>rfeedreader</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/rfeedreader"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/rfeedreader" class="numbers">0.9.14</a>
36
+ <a href="http://rubyforge.org/projects/rfeedreader" class="numbers">0.9.15</a>
37
37
  </div>
38
38
  <h2>What</h2>
39
39
 
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: rfeedreader
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.9.14
7
- date: 2007-09-18 00:00:00 +02:00
6
+ version: 0.9.15
7
+ date: 2007-10-04 00:00:00 +02:00
8
8
  summary: Feed parser to read feed and return first posts of this feed. Special parsing from sources like Flickr, Jumcut, Google video, ...
9
9
  require_paths:
10
10
  - lib