nop has asked for the wisdom of the Perl Monks concerning the following question:
package MyUA; use base qw(LWP::UserAgent); use strict; use CGI qw/:standard/; sub redirect_ok {1}; sub new { my $class = shift; my $self = new LWP::UserAgent; bless($self, $class); return $self; } sub validURL { my ($self, $url) = @_; my $req = new HTTP::Request POST => $url; my $res = $self->request($req); my $content = $res->content; return 0 unless $res->is_success; return 0 if $content =~ /the page you have requested cannot be fou +nd/i; return 1; } 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Checking "incomplete" URLs
by rob_au (Abbot) on Feb 18, 2002 at 23:54 UTC | |
|
Re: Checking "incomplete" URLs
by BlueLines (Hermit) on Feb 19, 2002 at 02:53 UTC | |
by chipmunk (Parson) on Feb 19, 2002 at 04:29 UTC | |
by IlyaM (Parson) on Feb 19, 2002 at 11:16 UTC | |
by nop (Hermit) on Feb 19, 2002 at 03:08 UTC | |
|
Re: Checking "incomplete" URLs
by Anonymous Monk on Feb 19, 2002 at 04:30 UTC | |
|
Re: Checking "incomplete" URLs
by erikharrison (Deacon) on Feb 20, 2002 at 05:03 UTC |