Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

xml-feedpp · XML::FeedPP Group

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 16
  • Category: Open Source
  • Founded: Aug 17, 2006
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 27 - 56 of 80   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
27 Victor Porton
victorporton Send Email
Apr 1, 2008
11:49 am
I need to install XML::FeedPP to a Web server, to which I don't have shell access, only FTP. How?...
28 Victor Porton
victorporton Send Email
Apr 1, 2008
12:09 pm
Currently FeedPP API allows only to set "isPermaLink&quot;. Should be also getter of this parameter (I think, it is forgotten)....
29 Victor Porton
victorporton Send Email
Apr 1, 2008
12:29 pm
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...
30 Kawasaki Yusuke
kawa.kawa Send Email
Oct 26, 2008
6:50 am
Note that XML::FeedPP version 0.36 was released. ======== 2008/10/26 (0.36) * RFC1123 and RSS spec allow two-digit date format ...
31 Kawasaki Yusuke
kawa.kawa Send Email
Jan 17, 2009
5:12 pm
XML::FeedPP version 0.37 was shipped. http://search.cpan.org/dist/XML-FeedPP/ http://www.kawa.net/works/perl/feedpp/dist/XML-FeedPP-0.37.tar.gz ...
32 whitbygreg Send Email Mar 6, 2009
7:21 pm
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,...
33 Victor Porton
victorporton Send Email
Mar 11, 2009
3:07 pm
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...
34 Victor Porton
victorporton Send Email
Mar 11, 2009
3:44 pm
... It is not an Atom feed. It is an RSS 2.0 feed with (strangely) included Atom tags. ... I confirm the bug and will work on the patch....
35 Kawasaki Yusuke
kawa.kawa Send Email
Mar 11, 2009
3:50 pm
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...
36 Victor Porton
victorporton Send Email
Mar 11, 2009
4:03 pm
It seems that this bug disappeared with 0.38 release....
37 Victor Porton
victorporton Send Email
Mar 11, 2009
4:09 pm
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...
38 Kawasaki Yusuke
kawa.kawa Send Email
Mar 12, 2009
6:51 am
... Right. It returns either the category name or an array reference of category names. See 34_category_type.t: <item> ...
39 Victor Porton
victorporton Send Email
Mar 13, 2009
12:58 am
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...
40 Victor Porton
victorporton Send Email
Mar 13, 2009
1:30 pm
Oh, sorry for a stupid thing, now I noticed that XML::FeedPP::RSS::Item->image() method indeed is a setter. I was uncareful....
41 Victor Porton
victorporton Send Email
Mar 13, 2009
3:43 pm
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...
42 Victor Porton
victorporton Send Email
Mar 13, 2009
6:56 pm
When I run "make test" all tests fail with the messages like: Can't locate object method "new" via package "XML::FeedPP&quot; (perhaps you forgot to load...
43 Victor Porton
victorporton Send Email
Mar 13, 2009
8:24 pm
This was a bug in ExtUtils::MakeMaker. It wrongly handles directories with colons (':')....
44 whitbygreg Send Email Mar 14, 2009
1:41 am
I can confirm that 0.38 fixes the issue, the README file indicates the fix was included. Thanks for looking at it. Greg...
45 Victor Porton
victorporton Send Email
Mar 15, 2009
3:29 pm
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...
46 Victor Porton
victorporton Send Email
Mar 15, 2009
4:15 pm
/svn/trunk \-/svn/branches/enclosures \-/svn/branches/images Trunk is the trunk. "enclosures&quot; is finished but maybe not enough tested support for item...
47 Victor Porton
victorporton Send Email
Mar 15, 2009
7:05 pm
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...
48 Victor Porton
victorporton Send Email
Mar 20, 2009
5:50 pm
I reintegrated support of item enclosures and item images into svn/trunk. Enjoy. Test. When we will make the next official release?...
49 Kawasaki Yusuke
kawa.kawa Send Email
Mar 21, 2009
1:11 pm
Victor, Thanks for your nice work. I don't think XML::FeedPP&#39;s multimedia support is best at this time, so it could be help many users. I was away last week to...
50 Victor Porton
victorporton Send Email
Mar 21, 2009
1:40 pm
... You know better. I just noticed that there was "dc" namespace prefix and added "enc" and "image" nearby (blindly acting by analogy). If you think these...
51 Kawasaki Yusuke
kawa.kawa Send Email
Mar 21, 2009
2:22 pm
Hey Vicror, I mean we need care more for users. I would not like to change the default behavior in the minor updates. You must know that many users are already...
52 Victor Porton
victorporton Send Email
Mar 21, 2009
3:37 pm
Hello Kawasaki, I don't know how namespaces work in XML::TreePP. Could you explain?...
53 Kawasaki Yusuke
kawa.kawa Send Email
Mar 23, 2009
12:27 pm
Hi Victor, XML::TreePP module does nothing about namespaces actually. xmlns:rdf="" is treated just an attribute in root element. The module never validate...
54 Kawasaki Yusuke
kawa.kawa Send Email
Apr 6, 2009
9:37 pm
XML::FeedPP version 0.40 was released. http://www.kawa.net/works/perl/feedpp/feedpp-e.html http://search.cpan.org/dist/XML-FeedPP/ ...
55 Kawasaki Yusuke
kawa.kawa Send Email
Apr 8, 2009
5:45 am
Hi Haidut, I got another error "Loading failed" with XML::FeedPP v0.40. In the case, it seems that it need more time to be connected. Try with timeout option...
56 myablfreinds Send Email Apr 20, 2009
12:02 pm
You are invited to join my social network, check my friends list here: http://stobosky.zoomshare.com/files/myphoto.htm...
Messages 27 - 56 of 80   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help