Skip Menu |

This queue is for tickets about the WWW-CheckSite CPAN distribution.

Report information
The Basics
Id: 19146
Status: resolved
Priority: 0/
Queue: WWW-CheckSite

People
Owner: abeltje [...] cpan.org
Requestors: zburke [...] thei3p.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: WWW/CheckSite/Validator.pm
Date: Mon, 08 May 2006 08:20:05 -0400
To: bug-www-checksite [...] rt.cpan.org
From: Zak Burke <zburke [...] thei3p.org>
Dear Abe Timmerman, rt.cpan.org is down so I'm sending this bug note via email instead. With "use strict;", I get the following errors from the sub WWW::CheckSite::Validator::set_action: Use of uninitialized value in bitwise and (&) at /Library/Perl/5.8.1/WWW/CheckSite/Validator.pm line 552. Use of uninitialized value in bitwise and (&) at /Library/Perl/5.8.1/WWW/CheckSite/Validator.pm line 554. Use of uninitialized value in bitwise and (&) at /Library/Perl/5.8.1/WWW/CheckSite/Validator.pm line 555. The following line fixes 'em: $in_cache->[0] || return "[c] Spider: $check"; Best, zak.
On Mon May 08 08:27:28 2006, zburke@thei3p.org wrote: Show quoted text
> Dear Abe Timmerman, > > rt.cpan.org is down so I'm sending this bug note via email instead. > > With "use strict;", I get the following errors from the sub > WWW::CheckSite::Validator::set_action: > > Use of uninitialized value in bitwise and (&) at > /Library/Perl/5.8.1/WWW/CheckSite/Validator.pm line 552. > Use of uninitialized value in bitwise and (&) at > /Library/Perl/5.8.1/WWW/CheckSite/Validator.pm line 554. > Use of uninitialized value in bitwise and (&) at > /Library/Perl/5.8.1/WWW/CheckSite/Validator.pm line 555. > > The following line fixes 'em: > > $in_cache->[0] || return "[c] Spider: $check";
I cannot seem to find to which version this applies. Could you recheck as soon as 0.018 is out? TIA, -- Abe.
Subject: Re: [rt.cpan.org #19146] WWW/CheckSite/Validator.pm
Date: Mon, 14 May 2007 11:50:04 -0400
To: bug-WWW-CheckSite [...] rt.cpan.org
From: Zak Burke <zburke [...] thei3p.org>
via RT wrote on 5/13/07 8:56 AM: Show quoted text
> <URL: http://rt.cpan.org/Ticket/Display.html?id=19146 > > > On Mon May 08 08:27:28 2006, zburke@thei3p.org wrote:
>> Dear Abe Timmerman, >> >> rt.cpan.org is down so I'm sending this bug note via email instead. >> >> With "use strict;", I get the following errors from the sub >> WWW::CheckSite::Validator::set_action: >> >> Use of uninitialized value in bitwise and (&) at >> /Library/Perl/5.8.1/WWW/CheckSite/Validator.pm line 552. >> Use of uninitialized value in bitwise and (&) at >> /Library/Perl/5.8.1/WWW/CheckSite/Validator.pm line 554. >> Use of uninitialized value in bitwise and (&) at >> /Library/Perl/5.8.1/WWW/CheckSite/Validator.pm line 555. >> >> The following line fixes 'em: >> >> $in_cache->[0] || return "[c] Spider: $check";
> > I cannot seem to find to which version this applies. Could you recheck > as soon as 0.018 is out?
In WWW::CheckSite::Validator, the version is 0.012. The corresponding version in WWW::CheckSite is 0.016. I added the following at line 552: # 2006-05-05, zburke@thei3p.org # bug fix: don't fail when $in_cache->[0] is undefined $in_cache->[0] || return "[c] Spider: $check"; Would it be possible to add a version numbers to the POD? I had to go find the source to get the version. zak.
On Mon May 14 11:51:27 2007, zburke@thei3p.org wrote: Show quoted text
> via RT wrote on 5/13/07 8:56 AM:
Hi Zak, Thank you for your quick reply! [snip] Show quoted text
> > I cannot seem to find to which version this applies. Could you
recheck Show quoted text
> > as soon as 0.018 is out?
> > In WWW::CheckSite::Validator, the version is 0.012. The > corresponding version in WWW::CheckSite is 0.016.
Okay, I checked my sources and found I fixed the underlying problem in change 472 (right after 0.016). So the following should not not be needed anymore as of 0.017. Show quoted text
> I added the following at line 552: > > # 2006-05-05, zburke@thei3p.org > # bug fix: don't fail when $in_cache->[0] is undefined > $in_cache->[0] || return "[c] Spider: $check"; > > Would it be possible to add a version numbers to the POD? I had to > go find the source to get the version.
to view sources: $ perldoc -m WWW::CheckSite::Validator to find the location of the sources: $ perldoc -l WWW::CheckSite::Validator one way to find the version is: $ perl -MWWW::CheckSite::Validator\ 100 -e0 Thank you again for your interrest, -- Abe.