Skip Menu |

This queue is for tickets about the XML-FeedPP CPAN distribution.

Report information
The Basics
Id: 34107
Status: resolved
Priority: 0/
Queue: XML-FeedPP

People
Owner: Nobody in particular
Requestors: MARKSTOS [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.34
Fixed in: (no value)



Subject: Atom and RSS feeds fail to merge
I like this module and really appreciate that it has so few requirements. However, I found it doesn't correctly merge these two feeds. It doesn't matter which order the merge happens in: http://use.perl.org/~markjugg/journal/rss http://feeds.delicious.com/rss/markjugg Only the ones from "del.icio.us" show up. Mark
It seems that it works now. ---------------------------------------- $ perl -MXML::FeedPP -e 'print scalar XML::FeedPP->new("http://feeds.delicious.com/rss/markjugg")->get_item(), "\n"' 15 $ perl -MXML::FeedPP -e 'print scalar XML::FeedPP->new("http://use.perl.org/~markjugg/journal/rss")->get_item(), "\n"' 30 $ perl -MXML::FeedPP -e 'print scalar XML::FeedPP->new("http://use.perl.org/~markjugg/journal/rss")->merge("http://feeds.delicious.com/rss/markjugg")->get_item(), "\n"' 45 $ perl -MXML::FeedPP -e 'print scalar XML::FeedPP->new("http://feeds.delicious.com/rss/markjugg")->merge("http://use.perl.org/~markjugg/journal/rss")->get_item(), "\n"' 45 ---------------------------------------- Thanks. On 金曜日 3月 14 22:34:52 2008, MARKSTOS wrote: Show quoted text
> I like this module and really appreciate that it has so few requirements. > > However, I found it doesn't correctly merge these two feeds. It doesn't > matter which order the merge happens in: > > http://use.perl.org/~markjugg/journal/rss > http://feeds.delicious.com/rss/markjugg > > Only the ones from "del.icio.us" show up. > > Mark