Re: perl/spider/crawling question...

2004-05-27 Thread Martin Leese
"bruce" <[EMAIL PROTECTED]> wrote: hi... we're looking at creating a project/app to extract information from university websites. we know we can write a separate individual perl app/scipt for each school which would crawl/parse/extract the information we need. however, we'd rather not write a uniqu

Re: perl/spider/crawling question...

2004-05-27 Thread Mike Jackson
as for spidering trees, stacks are always great fun to set up :) consider: my @stack; # first we seed the stack (we only need one item to start!) while (<>) { chomp; push @stack, $_; } # now that our stack is seeded, do stuff with it! while (@stack) { my $item = pop @stack; $information_abo

Re: CGI Help for a Newbie...

2004-05-27 Thread Dennis G. Wicks
On Thu, 27 May 2004, Jared Squires wrote: > Date: Thu, 27 May 2004 08:46:07 -0700 (PDT) > From: Jared Squires <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Re: CGI Help for a Newbie... > > That's the thing... I don't want to have to deal with > the problems of maintaining a server. My >

RE: perl/spider/crawling question...

2004-05-27 Thread Peter Eisengrein
Title: RE: perl/spider/crawling question... if you can assume the info you want is somehow linked to their main page (either directly or by proxy) then you should be able to keep a file or database of each school's url. Then use on of the various modules (Win32::Internet, LWP, etc) to get the

Re: CGI Help for a Newbie...

2004-05-27 Thread Jared Squires
That's the thing... I don't want to have to deal with the problems of maintaining a server. My father-in-law is very twitchy when it comes to company information that even has a modem in it. What Im trying to learn I guess. Will "myform.html" with some kind of HTML like work on a client-ONLY co

perl/spider/crawling question...

2004-05-27 Thread bruce
hi... we're looking at creating a project/app to extract information from university websites. we know we can write a separate individual perl app/scipt for each school which would crawl/parse/extract the information we need. however, we'd rather not write a unique perl script for each school if t

Re: CGI Help for a Newbie...

2004-05-27 Thread Thomas R Wyant_III
[EMAIL PROTECTED] wrote: > To the Point (the question): If I install ActiveState > Perl onto a non-internet connected computer, can I > create an HTML file (client side) that has a form that > submits to a CGI file (client side - same computer) > and uses that data to create some MS word document

RE: Editor - finding lines

2004-05-27 Thread wardp
ConTEXT also does this and colours your text for a number of languages. Best of all its freeware! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Bremer (NISC) Sent: 27 May 2004 15:32 To: Perl-Win32-Users Subject: Re: Editor - finding lines Dirk B

Re: Editor - finding lines

2004-05-27 Thread Dirk Bremer \(NISC\)
Dirk Bremer - Systems Programmer II - ESS/AMS - NISC St. Peters USA Central Time Zone 636-922-9158 ext. 8652 fax 636-447-4471 [EMAIL PROTECTED] www.nisc.cc - Original Message - From: "Lee Goddard" <[EMAIL PROTECTED]> To: "Capacio, Paula J" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; "

CGI Help for a Newbie...

2004-05-27 Thread Jared Squires
In my defense I did my best to search the ActiveState CGI and Win32 archives to get an answer to my question, but with no definitive answer to my question. My experience: Been reading Learning Perl for Win32 users for a couple weeks. Lessons going well. Have a lot of HTML experience, some progr

Re: DESTROY Issue

2004-05-27 Thread Dirk Bremer \(NISC\)
> Some light from Camel book 3rd edition, > 12.6.1. Garbage Collection with DESTROY Methods: > "When an interpreter shuts down, all its objects are destroyed, > which is important for multithreaded or embedded Perl applications. > Objects are always destroyed in a separate pass before ordinary > re

Re: Editor - finding lines

2004-05-27 Thread Lee Goddard
Capacio, Paula J wrote: TextPad has a search across all open documents, or all files in a directory. The results are shown in a separate window and double clicking the result takes you to that section of code in that file. Again like UltraEdit it's not free, but in the same price range. It als

RE: Editor - finding lines

2004-05-27 Thread Dennis G. Wicks
On Thu, 27 May 2004, Beckett Richard-qswi266 wrote: > Date: Thu, 27 May 2004 09:36:52 +0100 > From: Beckett Richard-qswi266 <[EMAIL PROTECTED]> > To: Perl-Win32-Users <[EMAIL PROTECTED]> > Subject: RE: Editor - finding lines > > > I would think just a normal search feature would be good enough. >

RE: Editor - finding lines

2004-05-27 Thread Capacio, Paula J
Valerie Kramer wrote: > ..." used an editor that would search for a string >and return a display of all of the lines containing that string. >I could then edit the line(s) or go to one of them to perform edits >on that area. ..." TextPad has a search across all open documents, or all files in a

RE: Perl Tk

2004-05-27 Thread Eric Edwards
Jack D replied: > > I am studying Tk using "Mastering Perl TK". I found the below listed code > in the book and got it working, > > Added some stuff to it and it seems to be working OK. I wanted to add > "$textundo->Save(?pathname?) > > so that it saves the contents of the widget to a file.

RE: Perl Tk

2004-05-27 Thread Eric Edwards
Beckett Richard replied: It's not clear what you really want, but what about this...? sub print_rec() { open (SAVE, ">>c:/save/data.txt"); @key = keys %info; foreach $_ (@key) { print "$_:$info{$_}\n"; print SAVE "$_:$info{$_}\n"; } close SAVE; } R. Richar

Re: Editor - finding lines

2004-05-27 Thread Willem Hengeveld
On Thu, May 27, 2004 at 09:36:52AM +0100, Beckett Richard-qswi266 wrote: > > I would think just a normal search feature would be good enough. > > Find the first one and then hit next for the next one etc. > > That, IMO is the best feature of Crimson Editor... you can highlight > something with the

Re: Editor - finding lines

2004-05-27 Thread Dan Rawson
Ken Cornetet wrote: > Was the mainframe editor XEDIT? > > If so, check out "The Hessling Editor" > http://sourceforge.net/projects/hessling-editor/ > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Valerie Kramer > Sent: Wednesday, May 26, 2004 4:

RE: Perl Tk

2004-05-27 Thread Beckett Richard-qswi266
It's not clear what you really want, but what about this...? sub print_rec() { open (SAVE, ">>c:/save/data.txt"); @key = keys %info; foreach $_ (@key) { print "$_:$info{$_}\n"; print SAVE "$_:$info{$_}\n"; } close SAVE; } R. -Original Message- From

RE: Editor - finding lines

2004-05-27 Thread Beckett Richard-qswi266
> I would think just a normal search feature would be good enough. > Find the first one and then hit next for the next one etc. That, IMO is the best feature of Crimson Editor... you can highlight something with the mouse, hit F3 and it takes you to the next instance of it, hit F3 and it takes y