Greg, X::F::RSS::Item class does not have _w3cdtf function. However, The X::F::RSS::Item class inherits X::F::Item class which has _w3cdtf function. In this...
I'm not calling _w3cdtf from my code, here's an example of where it fails: use XML::FeedPP; my $source = 'http://rss.theweathernetwork.com/weather/caon0696'; ...
I see. The feed has pubDate elements like: <pubDate>Sun, 02 March 2008 12:00:00 EST</pubDate> XML::FeedPP modules expects: <pubDate>Sun, 02 Mar 2008 12:00:00...
It returns a date now, but it's not exactly what I was expecting ... Is there a way to specify which date format is returned? I was expecting the native RSS...
Ok, I've worked out the date issue, now I have another one :) http://www.stargateworlds.com/rss/ Doens't have and XML tag around the feed, so of course it...
Hi Yusuke, I'm trying to build a feed aggregator and I've found your XML::FeedPP. It seems to be exactly what I need for my purposes: simple and powerful. But...
In the help there are "METHODS FOR FEED" and "METHODS FOR CHANNEL". What is the difference of feed and channel? I have been thinking that there is one-to-one...
I'm trying to use the following feed with FeedPP: http://thesteampunkhome.blogspot.com/feeds/posts/default Which is an Atom feed. It seems to parse correctly,...
XML::FeedPP::RSS::Item supports ->image() method which works counter-standard (<image> tag is not supported inside items in RSS 2.0). While this is OK to parse...
Hi all I've just released version 0.38 to fix the problem bertl's reported: http://rt.cpan.org/Public/Bug/Display.html?id=36270 And now I added Victor as a...
Currently ->category() returns either the category name or an array of category names. (Am I right?) The @domain attribute is lost. Personally I now don't need...
The XML::FeedPP::RSS::Item->image() method (about which I've complained that this is counter-standard in a previous post in this group) is only a getter (not a...
get_set_array() called with last undef element does not reset the array to become zero-element, but just returns the value of the array. What if I would want...
When I run "make test" all tests fail with the messages like: Can't locate object method "new" via package "XML::FeedPP" (perhaps you forgot to load...
I just finished the development of ->enclosure() method for items. Lastly I wrote tests (which discovered some bugs which I fixed). The yet planned thing is to...
/svn/trunk \-/svn/branches/enclosures \-/svn/branches/images Trunk is the trunk. "enclosures" is finished but maybe not enough tested support for item...
Why "sub image" in XML::FeedPP uses <link rel="icon">? This contradicts to Atom 0.3 specification and is not defined in Atom 1.0 specification. Atom 0.3...