Rss feed <index> item error

B

baur79

Hi everybody,
i'm new in ruby
here is i get an error.

source code

require 'rss/2.0'
require 'open-uri'
url = 'http://www.nationalbank.kz/rss/rates.xml'
feed = RSS::parser.parse(open(url).read, false)
puts "=== Channel: #{feed.channel.title} ==="
feed.items.each do |item|
puts item.title
puts " (#{item.pubDate})"
puts
puts item.description
puts item.index
end

partial rss feed (you can see all feed following the url = 'http://
www.nationalbank.kz/rss/rates.xml')

<item>
<title>EUR</title>
<pubDate>05.11.07</pubDate>
<description>175.11</description>
<index>DOWN</index>
<link/>
</item>

error message:
auto_rss.rb:12: undefined method `index' for #<RSS::Rss::Channel::Item:
0x2d3758c> (NoMethodError)
from auto_rss.rb:7:in `each'
from auto_rss.rb:7


the code goes good if i not out put "puts item.index",
but as you see i can't change the feed
and i need the value of <index> item.

is there any way to get the value of <index> item

please help me,
best regards from Kazakhstan / Shymkent city
 
K

kou

Hi,

In <[email protected]>
"Rss feed <index> item error" on Sat, 3 Nov 2007 18:30:17 +0900,
baur79 said:
but as you see i can't change the feed
and i need the value of <index> item.

What is said:
is there any way to get the value of <index> item

require 'rss'
require 'open-uri'

module RSS
class Rss::Channel::Item
install_have_child_element("index", "", "?")
end
BaseListener.install_get_text_element("", "index", "index")
end

url = 'http://www.nationalbank.kz/rss/rates.xml'
feed = RSS::parser.parse(open(url).read, false)
feed.items.each do |item|
puts item.index
end


Thanks,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,527
Members
44,998
Latest member
MarissaEub

Latest Threads

Top