Mailing List Archive

Cron <perlwww@minotaur> /home/perlwww/apache.org/modperl-docs/bin/site_build_index
Use of uninitialized value in sprintf at ./spider.pl line 26.
Use of uninitialized value in sprintf at ./spider.pl line 26.

Warning: Unknown header line: 'Segmentation fault (core dumped)' from program ./spider.pl
err: No unique words indexed!
.

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org
Cron <perlwww@minotaur> /home/perlwww/apache.org/modperl-docs/bin/site_build_index [ In reply to ]
Use of uninitialized value in sprintf at ./spider.pl line 26.
Use of uninitialized value in sprintf at ./spider.pl line 26.

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org
Re: Cron <perlwww@minotaur> /home/perlwww/apache.org/modperl-docs/bin/site_build_index [ In reply to ]
Cron Daemon wrote:
> Use of uninitialized value in sprintf at ./spider.pl line 26.
> Use of uninitialized value in sprintf at ./spider.pl line 26.

Bill, any idea where this one is coming from?

$VERSION = sprintf '%d.%02d', q$Revision: 1.5 $ =~ /: (\d+)\.(\d+)/;

seems to be a fine code.

--
__________________________________________________________________
Stas Bekman JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/ mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org
Re: Cron <perlwww@minotaur> /home/perlwww/apache.org/modperl-docs/bin/site_build_index [ In reply to ]
On Fri, Jul 08, 2005 at 11:07:37PM +0300, Stas Bekman wrote:
> Cron Daemon wrote:
> >Use of uninitialized value in sprintf at ./spider.pl line 26.
> >Use of uninitialized value in sprintf at ./spider.pl line 26.
>
> Bill, any idea where this one is coming from?
>
> $VERSION = sprintf '%d.%02d', q$Revision: 1.5 $ =~ /: (\d+)\.(\d+)/;

$VERSION = sprintf '%d.%02d', q$Revision: 66239 $ =~ /: (\d+)\.(\d+)/;

Kind of a big revision number. Is that under svn now?

--
Bill Moseley
moseley@hank.org


---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org
Cron <perlwww@minotaur> /home/perlwww/apache.org/modperl-docs/bin/site_build_index [ In reply to ]
Use of uninitialized value in sprintf at ./spider.pl line 26.
Use of uninitialized value in sprintf at ./spider.pl line 26.

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org
Re: Cron <perlwww@minotaur> /home/perlwww/apache.org/modperl-docs/bin/site_build_index [ In reply to ]
Bill Moseley wrote:
> On Fri, Jul 08, 2005 at 11:07:37PM +0300, Stas Bekman wrote:
>
>>Cron Daemon wrote:
>>
>>>Use of uninitialized value in sprintf at ./spider.pl line 26.
>>>Use of uninitialized value in sprintf at ./spider.pl line 26.
>>
>>Bill, any idea where this one is coming from?
>>
>> $VERSION = sprintf '%d.%02d', q$Revision: 1.5 $ =~ /: (\d+)\.(\d+)/;
>
>
> $VERSION = sprintf '%d.%02d', q$Revision: 66239 $ =~ /: (\d+)\.(\d+)/;
>
> Kind of a big revision number. Is that under svn now?

Yup. What file are you looking at? (the path), I guess we should nuke that
$Revision or adjust the pattern?

--
__________________________________________________________________
Stas Bekman JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/ mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org
Re: Cron <perlwww@minotaur> /home/perlwww/apache.org/modperl-docs/bin/site_build_index [ In reply to ]
On Sat, Jul 09, 2005 at 09:44:02AM +0300, Stas Bekman wrote:
> Bill Moseley wrote:
> >On Fri, Jul 08, 2005 at 11:07:37PM +0300, Stas Bekman wrote:
> >
> >>Cron Daemon wrote:
> >>
> >>>Use of uninitialized value in sprintf at ./spider.pl line 26.
> >>>Use of uninitialized value in sprintf at ./spider.pl line 26.
> >>
> >>Bill, any idea where this one is coming from?
> >>
> >> $VERSION = sprintf '%d.%02d', q$Revision: 1.5 $ =~ /: (\d+)\.(\d+)/;
> >
> >
> >$VERSION = sprintf '%d.%02d', q$Revision: 66239 $ =~ /: (\d+)\.(\d+)/;
> >
> >Kind of a big revision number. Is that under svn now?
>
> Yup. What file are you looking at? (the path), I guess we should nuke that
> $Revision or adjust the pattern?

/www/perl.apache.org/search/spider.pl, I think. Ya, just make up a
nice version for it and nuke the $Revision. Is 66239 right?? Is that
a result of svn conversion?

--
Bill Moseley
moseley@hank.org


---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org
Re: Cron <perlwww@minotaur> /home/perlwww/apache.org/modperl-docs/bin/site_build_index [ In reply to ]
Bill Moseley wrote:
> On Sat, Jul 09, 2005 at 09:44:02AM +0300, Stas Bekman wrote:
>
>>Bill Moseley wrote:
>>
>>>On Fri, Jul 08, 2005 at 11:07:37PM +0300, Stas Bekman wrote:
>>>
>>>
>>>>Cron Daemon wrote:
>>>>
>>>>
>>>>>Use of uninitialized value in sprintf at ./spider.pl line 26.
>>>>>Use of uninitialized value in sprintf at ./spider.pl line 26.
>>>>
>>>>Bill, any idea where this one is coming from?
>>>>
>>>>$VERSION = sprintf '%d.%02d', q$Revision: 1.5 $ =~ /: (\d+)\.(\d+)/;
>>>
>>>
>>>$VERSION = sprintf '%d.%02d', q$Revision: 66239 $ =~ /: (\d+)\.(\d+)/;
>>>
>>>Kind of a big revision number. Is that under svn now?
>>
>>Yup. What file are you looking at? (the path), I guess we should nuke that
>>$Revision or adjust the pattern?
>
>
> /www/perl.apache.org/search/spider.pl, I think. Ya, just make up a
> nice version for it and nuke the $Revision. Is 66239 right?? Is that
> a result of svn conversion?

I think so.

I've committed the change.

Thanks Bill!

--
__________________________________________________________________
Stas Bekman JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/ mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org
Cron <perlwww@minotaur> /home/perlwww/apache.org/modperl-docs/bin/site_build_index [ In reply to ]
err: No unique words indexed!
.

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org
Cron <perlwww@minotaur> /home/perlwww/apache.org/modperl-docs/bin/site_build_index [ In reply to ]
err: No unique words indexed!
.

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org
Cron <perlwww@minotaur> /home/perlwww/apache.org/modperl-docs/bin/site_build_index [ In reply to ]
err: No unique words indexed!
.

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org
Cron <perlwww@minotaur> /home/perlwww/apache.org/modperl-docs/bin/site_build_index [ In reply to ]
err: No unique words indexed!
.

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-dev-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-dev-help@perl.apache.org