Re: Finance::Bank::Wachovia Message

2005-05-13 Thread Clint Harshaw
ins! That got me to thinking of things to try, so I commented line 274 in the WWW.pm script: # $mech->form_name( 'authForm' ); And it's working fine without any messages. Thanks again for the help! Clint -- Clint Harshaw, PhD EMail: [EMAIL PROTECTED]

Finance::Bank::Wachovia Message

2005-05-13 Thread Clint Harshaw
#x27;t totally breaking the script. All the figures from Wachovia are coming through just fine. But I want to fix the problem causing the message, and I'm just too new to Perl to know what to do. I could sure use some help here. Thanks, Clint My script is below: #!/usr/bin/perl -w

Re: Fedora and Findmodules Script

2003-11-20 Thread Clint
on of Perl? Which document do I need to be looking into for answers? Thanks! Clint #!/usr/bin/perl -w # This program will tell me what modules I have installed on my machine. use ExtUtils::Installed; my $instmod = ExtUtils::Installed->new(); foreach my $module ($instmod->modules()) { my $ve

Re: Fedora and Findmodules Script

2003-11-19 Thread Clint
ng might be better described as an annoyance, rather than a makes-me-mad kind of situation. But I sure would like to learn why it doesn't perform as expected. Clint Kevin Old wrote: On Tue, 2003-11-18 at 21:55, Clint wrote: I upgraded a RH9 machine to Fedora, and now the script I used to us

Fedora and Findmodules Script

2003-11-18 Thread Clint
- $version\n"; } Here is the relevant output: [EMAIL PROTECTED] perlstuff]$ ./findmodules Perl -- 5.8.1 However I have many up to date modules installed. I searched Redhat's Bugzilla for "fedora perl modules" but didn't turn up anything there. Any advice would be appre

fedora and findmodules script

2003-11-18 Thread Clint
fedora perl modules" but didn't turn up anything there. Any advice would be appreciated! Thanks, Clint -- Clint <[EMAIL PROTECTED]> -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Matching Over Linefeed and Space

2003-11-02 Thread Clint
That fixed it! Thank you very much! Clint Wiggins d'Anconia wrote: Clint wrote: I'm trying to scrape a section of html and don't see why my regexp stopped working this week. The relevant two-line sample section from http://www.srh.noaa.gov/data/forecasts/SCZ020.php is: Ba

Matching Over Linefeed and Space

2003-11-02 Thread Clint
allow the search over a linefeed and one single space character -- and I can't see that the structure has changed any to break the search pattern. Is there something obvious in the html structure that I've missed here? I appreciate any advice you might have. Thank you, Clint -- Clint <

Re: Learning Graphics - Problem with Hello World Example / Fixed it!

2003-06-04 Thread Clint
age->new(401,201); Clint On Wednesday June 4 2003 10:51 pm, Clint wrote: > I am new to Perl and trying to learn graphics by the examples given in > Shaun Wallace's Perl Graphics Programming. I'm using Perl 5.8 and have > installed GD and GD::Graph using CPAN. I've c

Learning Graphics - Problem with Hello World Example

2003-06-04 Thread Clint
x27;m getting: $ ./example2-1 Can't locate object method "trueColor" via package "GD::Image" at ./example2-1 line 8. I haven't found any related information elsewhere about what this particular error is telling me. I get the same response when I try to pip