Re: capture and save a web page - 4

2001-04-04 Thread Keith Calvert Ivey
Jim Doyle <[EMAIL PROTECTED]> wrote: > B my $city = $Response->Form( 'city' )->{Item} ; > $Response->Write(< City:$city > EOT >does produce a here document > > CBut I am not able to capture it for reuse, at least not with > $Msg = $Response->Write(<

Re: capture and save a web page - 3

2001-04-04 Thread Keith Calvert Ivey
Ron Grabowski <[EMAIL PROTECTED]> wrote: > Yep. My understanding was that the OP wanted something like > this: > > $Response->Write(< > honest-to-goodness heredoc > $Request->Form('city')->{Item} > > EOT > > Which is not possible. True, but it's also not possible with qq(). That is, this d

Re: Internet Explorer v. Netscape

2001-04-04 Thread Tim Hammerquist
[EMAIL PROTECTED] wrote: > Why don't you just BITE ME you arrogant #@!-HOLE. I thought this list was to get >information from people who are willing share it. If you don't want to share it, >stay out. I guess we're all not as smart as you think you are. What was Al Pacino's line from Scarfac

capture and save a web page - 4

2001-04-04 Thread Jim Doyle
A It has been my goal to use a here document so that I need have only one set of code to accomplish three tasks: 1 acknowledge receipt of a customer's order 2 archive a copy 3 e-mail a copy to the order fillers B my $city = $Response->Form( 'city' )->{Item} ; $Resp

Re: capture and save a web page - 3

2001-04-04 Thread Ron Grabowski
> $Response->Write(< > honest-to-goodness heredoc > $city > > EOT Yep. My understanding was that the OP wanted something like this: $Response->Write({Item} EOT Which is not possible. ___ Perl-Win32-Web mailing list [

RE: Internet Explorer v. Netscape

2001-04-04 Thread stanley . g . martin
Why don't you just BITE ME you arrogant #@!-HOLE. I thought this list was to get information from people who are willing share it. If you don't want to share it, stay out. I guess we're all not as smart as you think you are. Stanley G. Martin Midwest Consulting Group Sprint Platform & Strate

RE: monitoring files

2001-04-04 Thread John Cesta - Lists
You could use a program called bxcopy. It monitors the whole server or a directory for changes in files etc. it's at: mensk.com John Cesta ColdFusion ASP ActiveState PERL Hosting Includes 10 Domains - 100% Browser Based Administration http://www.cybersmarts.net LogFileManager - IIS LogFile M

Re: Internet Explorer v. Netscape

2001-04-04 Thread Philip Newton
[EMAIL PROTECTED] wrote: > That fixed it, but it brings up the question WHY??? This > worked in IE just fine without the tags. Are the tags really > a requirement and IE just ignores it? Two answers to this: 1) Yes. 2) What does the standard say? IMO, people who code HTML for a living should

monitoring files

2001-04-04 Thread Gonzalo Q.
Hello, I have a lovely problem.. I have to monitor a set of files that live in a directory. I'd like to get notified if one of those files gets deleted or disappears. My system is a WinNt running perl 5.6 with the Win32::ChangeNotify. What was cooked up is a simple routine that would check f

Re: How to make upload script with Perl

2001-04-04 Thread Walter Torres
I agree, don't do it that way. Go get this script. It works on NT, Linux, Solarius... ww.torres.ws/perl Walter - Original Message - From: "James Coyle" <[EMAIL PROTECTED]> To: "Widio" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, April 04, 2001 10:02 AM Subject: RE: Ho

Looking for code to mirror a site

2001-04-04 Thread Vince Wilding
First off, apologies for the x-posting, but I'm not sure which list I saw this in. I searched the archive at activestate to no avail. Recently, someone posted code to mirror a given site. If they could re-post or send it to me privately, I'd appreciate it. I have to go thru a site and build a

Re: How to make upload script with Perl

2001-04-04 Thread Cameron Dorey
Widio wrote: > > I wanna to make a website with upload facility. I have tried with some script > > that I got from cgi-resources.com. But why it still can't work (under Windows > > NT)... Can you tell me how to make it and how it's work ? 1. Build your own using CGI.pm and the examples include

RE: How to make upload script with Perl

2001-04-04 Thread James Coyle
>I wanna to make a website with upload facility. I have tried with >some script >that I got from cgi-resources.com. But why it still can't work >(under Windows >NT)... Can you tell me how to make it and how it's work ? >Thanks before your doing it wrong. don't do it that way. hope that helps.

How to make upload script with Perl

2001-04-04 Thread Widio
I wanna to make a website with upload facility. I have tried with some script that I got from cgi-resources.com. But why it still can't work (under Windows NT)... Can you tell me how to make it and how it's work ? Thanks before Regards, - widio - ___

Re: capture and save a web page - 3

2001-04-04 Thread Keith Calvert Ivey
Ron Grabowski <[EMAIL PROTECTED]> wrote: > Like I said in my first email, heredocs cannot interpolate > methods,subroutines, or functions. The Write() method of the > $Response object will not be handeling as expected in a > heredoc. I usually do this: > > my $city = $Request->Form('city')->{Ite