[#3113] Problem in RSS library, or problem in my blog :) — Dave Thomas <dave@...>
I've been trying to use the new RSS library to parse a number of
7 messages
2004/07/01
[#3136] Wrong rdoc formatting in {array,pack}.c — Johan Holmberg <holmberg@...>
7 messages
2004/07/05
[#3162] Re: [doc-patch] Wrong rdoc formatting in {array,pack}.c
— "H.Yamamoto" <ocean@...2.ccsnet.ne.jp>
2004/07/09
Hello.
[#3170] Another rdoc formatting error in array.c
— Johan Holmberg <holmberg@...>
2004/07/10
[#3172] Re: [doc-patch] Another rdoc formatting error in array.c
— "H.Yamamoto" <ocean@...2.ccsnet.ne.jp>
2004/07/12
Hello.
[#3141] rexml/validation/validationexception is missing. — nobu.nokada@...
Hi,
5 messages
2004/07/06
[#3154] Nonblocking socket connect - Win32 - 181 — "Jean-Francois Nadeau" <jean-francois.nadeau@...>
Hi,
4 messages
2004/07/08
[#3167] Inconsistent "call-seq" usage etc. — Johan Holmberg <holmberg@...>
7 messages
2004/07/09
[#3168] Re: [doc] Inconsistent "call-seq" usage etc.
— Dave Thomas <dave@...>
2004/07/09
[#3171] binding a URL to a label in RDoc — Ian Macdonald <ian@...>
Hello,
6 messages
2004/07/12
[#3199] Trying to understand \G — Dave Thomas <dave@...>
I'm being silly again, but I can't get \G to work with String.index. If
12 messages
2004/07/16
[#3213] Typo and grammar/style fixes for ext/win32ole/win32ole.c — Jos Backus <jos@...>
The attached patch attempts to create a more consistent style for error
4 messages
2004/07/19
[#3216] Re: Incident Analysis of the intrusion on helium.ruby-lang.org May 2004 — "Sean E. Russell" <ser@...>
Hi,
6 messages
2004/07/21
[#3228] Core support for Gems, and namespace — "Luke A. Kanies" <luke@...>
Hi all,
21 messages
2004/07/27
[#3229] Re: Core support for Gems, and namespace
— Dave Thomas <dave@...>
2004/07/27
[#3232] Re: Core support for Gems, and namespace
— "Luke A. Kanies" <luke@...>
2004/07/27
On Tue, 27 Jul 2004, Dave Thomas wrote:
[#3233] Re: Core support for Gems, and namespace
— Gavin Sinclair <gsinclair@...>
2004/07/27
On Wednesday, July 28, 2004, 12:48:07 AM, Luke wrote:
[#3235] Re: Core support for Gems, and namespace
— "Luke A. Kanies" <luke@...>
2004/07/27
On Wed, 28 Jul 2004, Gavin Sinclair wrote:
[#3230] Re: Core support for Gems, and namespace
— Austin Ziegler <halostatue@...>
2004/07/27
On Tue, 27 Jul 2004 11:39:08 +0900, Luke A. Kanies <luke@madstop.com> wrote:
[#3234] Re: Core support for Gems, and namespace
— "Luke A. Kanies" <luke@...>
2004/07/27
On Tue, 27 Jul 2004, Austin Ziegler wrote:
[#3238] Re: Core support for Gems, and namespace
— Austin Ziegler <halostatue@...>
2004/07/27
On Wed, 28 Jul 2004 00:14:29 +0900, Luke A. Kanies <luke@madstop.com> wrote:
[#3243] Re: Core support for Gems, and namespace
— Gavin Sinclair <gsinclair@...>
2004/07/28
On Wednesday, July 28, 2004, 3:23:46 AM, Austin wrote:
[#3248] Re: Core support for Gems, and namespace
— Austin Ziegler <halostatue@...>
2004/07/28
On Wed, 28 Jul 2004 11:29:53 +0900, Gavin Sinclair
[#3249] Re: Core support for Gems, and namespace
— Mauricio Fern疣dez <batsman.geo@...>
2004/07/28
On Wed, Jul 28, 2004 at 11:29:53AM +0900, Gavin Sinclair wrote:
Re: Problem in RSS library, or problem in my blog :)
From:
Dave Thomas <dave@...>
Date:
2004-07-04 03:58:24 UTC
List:
ruby-core #3123
On Jul 3, 2004, at 22:10, Kouhei Sutou wrote:
> RSS Parser only supports validation for RSS 1.0. Other
> versions of RSS aren't supported because of RSS Parser's
> validator can't handle interleave pattern (and I don't like
> them.) So validation for RSS 1.0 only supports standard
> order RSS. (But RSS 1.0 specification says element order is
> not important.)
But my blog is 0.9, and the RSS library still can't read it. If I
understand your message, the library shouldn't be doing validation, but
it seems that it is. Am I calling it incorrectly?
dave[code/rss 22:56:28] cat pp.rb
require 'rss/0.9'
require 'net/http'
Net::HTTP.start('pragprog.com') do |http|
response = http.get('/pragdave/index.rss')
fail response.code unless response.code == "200"
rss = RSS::Parser.new(response.body)
result = rss.parse
puts "Channel: " + result.channel.title
result.items.each_with_index do |item, i|
puts "#{i+1}. #{item.title}"
end
end
dave[code/rss 22:56:33] ruby pp.rb
/usr/lib/ruby/1.9/rss/rss.rb:556:in `_validate': tag <title> is missing
in tag <channel> (RSS::MissingTagError)
from /usr/lib/ruby/1.9/rss/rss.rb:503:in `each_with_index'
from /usr/lib/ruby/1.9/rss/rss.rb:503:in `each'
from /usr/lib/ruby/1.9/rss/rss.rb:503:in `each_with_index'
from /usr/lib/ruby/1.9/rss/rss.rb:503:in `_validate'
from /usr/lib/ruby/1.9/rss/rss.rb:473:in `send'
from /usr/lib/ruby/1.9/rss/rss.rb:473:in `__validate'
from /usr/lib/ruby/1.9/rss/rss.rb:472:in `each'
from /usr/lib/ruby/1.9/rss/rss.rb:472:in `__validate'
... 8 levels...
from pp.rb:10
from pp.rb:4:in `start'
from /usr/lib/ruby/1.9/net/http.rb:328:in `start'
from pp.rb:4
dave[code/rss 22:56:46]
Cheers
Dave