Re: newbie help for podcast script [with attach]

2005-07-30 Thread alexeijh
On Fri, 2005-07-29 at 19:03 -0700, John W. Krahn wrote: > You are trying to call the get() method on the $feed object. Read the > documentation for the correct syntax for XML::Simple::XMLin(). > > perldoc XML::Simple > > > As to the warning message: > > perldoc perldiag > [snip] >Odd

RE: Read a single line in a file.

2005-07-30 Thread Jim
> Original Message- > From: Umesh T G [mailto:[EMAIL PROTECTED] > > Sent: Friday, July 29, 2005 3:47 PM > To: beginners@perl.org > Subject: Read a single line in a file. > > > Hello List, > > I have a file with multiple lines. I want to read only the first line. > > and a particular

Re: Read a single line in a file.

2005-07-30 Thread Octavian Rasnita
From: "Jim" <[EMAIL PROTECTED]> > > > Original Message- > > From: Umesh T G [mailto:[EMAIL PROTECTED] > > > > Sent: Friday, July 29, 2005 3:47 PM > > To: beginners@perl.org > > Subject: Read a single line in a file. > > > > > > Hello List, > > > > I have a file with multiple lines. I

Re: 'Use Lib' problem...

2005-07-30 Thread Tony Frasketi
Hello Tom I've been successful in getting my use lib statment to work by inserting the following statments in my .bash_profile file as follows CGIDIR=$HOME/cgi-bin PMDIR=$CGIDIR/pm export CGIDIR PMDIR Then in my CGI script I have... -

cross-eyed object problem

2005-07-30 Thread Tom Allison
I'm stuck I need an extra pair of eyes. I have an object that uses MIME::Parser to create a MIME::Entity from a message string. I have a test script that loads the message string and passes it to the object to parse. It dies on one of 10 messages. Yet, if I pull the parser code out of

Re: cross-eyed object problem

2005-07-30 Thread Tom Allison
Tom Allison wrote: I'm stuck I need an extra pair of eyes. Here is my object script: sub new { my %args = ( output_dir => '/tmp', tmp_recycling=> 1, extract_uuencode => 1, ignore_errors=> 1 );

Re: cross-eyed object problem

2005-07-30 Thread Tom Allison
Tom Allison wrote: I'm stuck I need an extra pair of eyes. It helps to walk away for a while Here is my object script: sub new { my %args = ( output_dir => '/tmp', tmp_recycling=> 1, extract_uuencode => 1,