Ambiguous use of text => resolved to "text"

2000-12-14 Thread Jose Quesada
Hi, I'm playing around with Parse::HTML, and using one of the examples, I get the next error: Ambiguous use of text => resolved to "text" at line 26 Here is the code, line 26 is marked with ### !/usr/bin/perl -w # Extract all plain text from an HTML file use strict; use HTML::Parser 3.

Re: www.msn.com.sg

2000-12-14 Thread Justin
Anyone have any good ideas about watching the request flow when everything is https:// ? I started looking for some kind of http to https proxy but gave up.. thanks -Justin On Thu, Dec 14, 2000 at 10:27:29AM -0800, Jeremy Elson wrote: > > You can use 'tcpflow' for this pretty easily > (http://w

Re: off topic referers

2000-12-14 Thread Sean M. Burke
At 01:10 AM 2000-12-14 -0800, [EMAIL PROTECTED] wrote: >[...] Hence I was forced into doing something like this; > >sub lockout >{ >if ($ENV{'HTTP_REFERER'}!="") # null referer, let the routine go I hope it was something only /like/ that, since the above code wouldn't work as you expect. Note th

Re: Perl and proxy

2000-12-14 Thread Michael A. Chase
Set environment variable HTTP_PROXY to the proxy URI. For example: REM Under MSDOS/WinXX set http_proxy=http://proxy.domain.com:port/ set ftp_proxy=http://proxy.domain.com:port/ # Korn Shell export http_proxy=http://proxy.domain.com:port/ export ftp_proxy=http://proxy.domain.com:port/ Then, in

Perl and proxy

2000-12-14 Thread Ivan C Myrvold
I want to fetch a web page with Perl, but I am behind a proxy. How can I do it? Ivan

Re: www.msn.com.sg

2000-12-14 Thread Jeremy Elson
You can use 'tcpflow' for this pretty easily (http://www.circlemud.org/~jelson/software/tcpflow) - just type "tcpflow -v port 80" and go to a web page, and you'll see the entire transaction written to a file. -J =?iso-8859-1?q?Abdelhaq?= writes: >hi all, >Tim cuold you be nice an telling mee

Re: www.msn.com.sg

2000-12-14 Thread Tim Allwine
Abdelhaq wrote: > > hi all, > Tim cuold you be nice an telling mee (and others) > how you make it possible for monitoring the browser's > header when it makes it's request. > > Thanx ... > Abdelhaq Write a little perl program like this: #!/usr/bin/perl open(STDIN,"/usr/sbin/tcpdump -lnx -s 10

Re: off topic referers

2000-12-14 Thread Randal L. Schwartz
> "bobmin" == bobmin <[EMAIL PROTECTED]> writes: bobmin> Now I'm faced with an issue of an outright copyright bobmin> violation where someone has basically copied all 500+ pages of bobmin> our site. Unfortunately the odds of being able to prosecute bobmin> the violators are slim as the cou

off topic referers

2000-12-14 Thread bobmin
Greetings; I know this is probably off topic, but I am wondering how others might have approached this problem. I have a script which I want to be executed only from within a single domain. I put in a simple routine that prevented the script from operating based on the referer value. Unfortu