RE: atom syndication

2005-01-20 Thread Charles K. Clarkson
Harsh Busa <[EMAIL PROTECTED]> wrote: : thanks for all the replies but for some reason it doesnt seem : to help me ... This seems to be correct behavior. You probably need to contact the module author <[EMAIL PROTECTED]> to see if this is a known bug. HTH, Charles K. Clarkson -- Mobile Ho

RE: atom syndication

2005-01-16 Thread Charles K. Clarkson
e parse methods, returns the root XML::Atom::Syndication::Element object for the feed. HTH, Charles K. Clarkson -- Mobile Homes Specialist 254 968-8328 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: atom syndication

2005-01-16 Thread Ing. Branislav Gerzo
Jenda Krynicky [JK], on Sunday, January 16, 2005 at 23:56 (+0100) contributed this to our collective wisdom: >> in this line you have error, you have to write: >> my ($doc) = >> $atomic->get('http://www.timaoutloud.org/xml/atom.xml'); JK> Don't think so. This may make a difference, but I don't th

Re: atom syndication

2005-01-16 Thread Jenda Krynicky
, you have to write: > my ($doc) = $atomic->get('http://www.timaoutloud.org/xml/atom.xml'); Don't think so. This may make a difference, but I don't think it would in this case. I tried Harhs's code with a recently installed XML::Atom::Syndication 0.08 and it se

Re: atom syndication

2005-01-16 Thread Ing. Branislav Gerzo
Harsh Busa [HB], on Sunday, January 16, 2005 at 01:42 (+0530) thinks about: HB> my $doc = $atomic->get('http://www.timaoutloud.org/xml/atom.xml'); in this line you have error, you have to write: my ($doc) = $atomic->get('http://www.timaoutloud.org/xml/atom.xml'); -- ...m8s, cu l8r, Brano. [

atom syndication

2005-01-15 Thread Harsh Busa
hello i m trying to parse an atom feed using XML::Atom::Syndication module from CPAN . the only parameter i get when i execute the sample code #!/usr/bin/perl -w use XML::Atom::Syndication; use Data::Dumper; my $atomic = XML::Atom::Syndication->instance; my $doc = $atomic->get