Re: How to download WebPage source??

2002-11-02 Thread montana
Does LWP come with perl or do I have to install this module? Thanks. SA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

How to download WebPage source??

2002-11-02 Thread montana
I know this is simple and I'm probably overlooking something in the tutorial. How do I get perl to download the source code of a webpage so that I can do some parsing and other things to the text? Thanks. SA -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P

Re: Newbie Question

2002-10-16 Thread montana
So looking at the following package: { package Horse; @ISA = qw(Animal); sub sound { "neigh" } sub name { my $self = shift; $$self; } sub named { my $class = shift; my $name = shift;

More Newbie OOP Questions ...

2002-10-16 Thread montana
Take the following example from the perlboot manual: { package Horse; @ISA = qw(Animal); sub sound { "neigh" } sub name { my $self = shift; $$self; } sub named { my $class = shift; my $name =

Newbie Question.

2002-10-16 Thread montana
I've been looking through the manual perlboot. This is a beginners tutorial on Perl OOP. One of the practice programs in this manual had the following line: my $class = shift; This was located in the subroutine: sub Sheep::s

Newbie Question.

2002-10-07 Thread montana
I am trying to combine the powers of applescript and perl to better search data on some flat files. Because I'm using a Mac, I do not believe there is GUI toolkit for Perl and OSX "Aqua", so I'm using the GUI tools associated with AppleScript to gather the data from the user. Applescript will t