rfeedreader 0.9.16 → 0.9.17

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.
@@ -1,3 +1,7 @@
1
+ == 0.9.17 2007-10-12
2
+
3
+ * Correct codification problem
4
+
1
5
  == 0.9.16 2007-10-11
2
6
 
3
7
  * Correct pre-encoded html
@@ -220,7 +220,10 @@ module Rfeedreader
220
220
  @description = ""
221
221
  @description = (@hpricot_item/"content").text
222
222
  @description = (@hpricot_item/"content\:encoded").text if @description.empty?
223
- @description = (@hpricot_item/"description|summary|[@type='text']").inner_html if @description.empty?
223
+ if @description.empty?
224
+ @description = (@hpricot_item/"description|summary|[@type='text']").inner_html
225
+ @description = HTMLEntities.decode_entities(@description)
226
+ end
224
227
 
225
228
  unless @description.empty?
226
229
  @description = TextyHelper.clean(@description, 200)
@@ -2,7 +2,7 @@ module Rfeedreader #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 9
5
- TINY = 16
5
+ TINY = 17
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -169,4 +169,8 @@ class TestRfeedreader < Test::Unit::TestCase
169
169
  puts feed
170
170
  feed.display_entries
171
171
  end
172
+
173
+ def test_read_codification
174
+ read_first "http://feeds.feedburner.com/bluebbva"
175
+ end
172
176
  end
@@ -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.16</a>
36
+ <a href="http://rubyforge.org/projects/rfeedreader" class="numbers">0.9.17</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.16
7
- date: 2007-10-11 00:00:00 +02:00
6
+ version: 0.9.17
7
+ date: 2007-10-12 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