Re: A::T blib vs lib

2003-10-21 Thread Boris Zentner
Hi, A test against my project show's no real difference at all. I applied the patch against Apache-Test-1.04 and I verified that my t/conf/modperl_inc.pl contain the desired lines. use lib '/tmp/ap_ex/blib/arch'; use lib '/tmp/ap_ex/blib/lib'; 1; my error message is the following: ...

Re: A::T blib vs lib

2003-10-21 Thread Boris Zentner
Hi, Am Dienstag, 21. Oktober 2003 09:00 schrieb Stas Bekman: Boris Zentner wrote: Hi, A test against my project show's no real difference at all. I applied the patch against Apache-Test-1.04 and I verified that my t/conf/modperl_inc.pl contain the desired lines. use lib

Re: A::T blib vs lib

2003-10-21 Thread Geoffrey Young
That was a very good hint. It allows me to keep the perl part into the apache directives as desired. But my @INC path is still wrong. hmm. ok, how about you show us a few things, like all of modperl_inc.pl, then what directories you would like included that are missing. and also show us your

RELEASE document

2003-10-21 Thread Geoffrey Young
hi all in preparation for the upcoming 1.05 release, I'm going to create a RELEASE document in the Apache-Test directory. I've attached a preliminary version here, which is essentially copied from the one for mod_perl (with a few adjustments). if I'm missing anything or something isn't right,

Re: A::T blib vs lib

2003-10-21 Thread Geoffrey Young
That leads to different version of Apache:PageKit in the lib and blib/lib directories. With the current version of Apache::Test the version in lib is tested. But 'make install' installs the version from blib/lib. And depending from your perl they are different. so you want Apache-Test to test

Re: A::T blib vs lib

2003-10-21 Thread Stas Bekman
Geoffrey Young wrote: That leads to different version of Apache:PageKit in the lib and blib/lib directories. With the current version of Apache::Test the version in lib is tested. But 'make install' installs the version from blib/lib. And depending from your perl they are different. so you

Re: A::T blib vs lib

2003-10-21 Thread Stas Bekman
Geoffrey Young wrote: Stas Bekman wrote: Boris Zentner wrote: Hi, A test against my project show's no real difference at all. I applied the patch against Apache-Test-1.04 and I verified that my t/conf/modperl_inc.pl contain the desired lines. use lib '/tmp/ap_ex/blib/arch'; use lib

Re: RELEASE document

2003-10-21 Thread Stas Bekman
Geoffrey Young wrote: hi all in preparation for the upcoming 1.05 release, I'm going to create a RELEASE document in the Apache-Test directory. I've attached a preliminary version here, which is essentially copied from the one for mod_perl (with a few adjustments). if I'm missing anything or

Re: RELEASE document

2003-10-21 Thread Geoffrey Young
4. Release the package and update links (e.g. mod_perl-1.99_11.tar.gz) a. upload to www.apache.org:/www/perl.apache.org/dist/ b. remove releases older by 2 subversions (keep the last one) we don't release Apache-Test on apache.org, but only CPAN. So you can drop 4.

Re: RELEASE document

2003-10-21 Thread Stas Bekman
Geoffrey Young wrote: 4. Release the package and update links (e.g. mod_perl-1.99_11.tar.gz) a. upload to www.apache.org:/www/perl.apache.org/dist/ b. remove releases older by 2 subversions (keep the last one) we don't release Apache-Test on apache.org, but only CPAN. So you can drop 4.

Re: A::T blib vs lib

2003-10-21 Thread Boris Zentner
Hi, Am Dienstag, 21. Oktober 2003 14:19 schrieb Geoffrey Young: Stas Bekman wrote: Boris Zentner wrote: Hi, A test against my project show's no real difference at all. I applied the patch against Apache-Test-1.04 and I verified that my t/conf/modperl_inc.pl contain the desired lines.

Re: A::T blib vs lib

2003-10-21 Thread Boris Zentner
Hi Geoffrey, Am Dienstag, 21. Oktober 2003 15:09 schrieb Geoffrey Young: That was a very good hint. It allows me to keep the perl part into the apache directives as desired. But my @INC path is still wrong. hmm. ok, how about you show us a few things, like all of modperl_inc.pl, then

Re: A::T blib vs lib

2003-10-21 Thread Stas Bekman
Boris Zentner wrote: [Finally the kind moderator let your messages through ;) Thank you!] In short lib is searched before blib/lib. I had a workaround that overwrites some routines in Apache::Test but it is really uggly and may not work taht long. Im happy that Stas is now looking into the

Re: A::T blib vs lib

2003-10-21 Thread Boris Zentner
Hi, im subscribed! All your hints and tips bring me a step forward, but I stuck on the @INC again. Even with the patch. The only thing that pass my brief tests is to change the order of the included path inside TestConfig.pm --- TestConfig.pm.orig 2003-10-21 20:49:53.0 +0200 +++

New Flood diff to handle 100 continue when in first chunk, and next packet available [Ref A5]

2003-10-21 Thread Norman Tuttle
The new patch is the first step towards Flood handling 100 continue responses. If such response is found in the first chunk read, and the next response is also available there already, then we read past the 100 message and read in the next message's headers and body if available. Please

Re: A::T blib vs lib

2003-10-21 Thread Stas Bekman
Boris Zentner wrote: Hi, im subscribed! And someone has let your previous posts through ;) All your hints and tips bring me a step forward, but I stuck on the @INC again. Even with the patch. The only thing that pass my brief tests is to change the order of the included path inside

Re: A::T blib vs lib

2003-10-21 Thread Boris Zentner
Hi Stas, It works fine. Thanks. There were two more places where lib was unconditionally pushed. And removing lib, affected mod_perl 2, so I had to fix that as well. I haven't thoroughly tested this change yet, but please try this patch: [...]

Re: A::T blib vs lib

2003-10-21 Thread Geoffrey Young
Stas Bekman wrote: I haven't thoroughly tested this change yet, but please try this patch: tests fine for me on mp2 and my 3rd party apps. nice work. --Geoff

Re: A::T blib vs lib

2003-10-21 Thread Stas Bekman
Geoffrey Young wrote: Stas Bekman wrote: I haven't thoroughly tested this change yet, but please try this patch: tests fine for me on mp2 and my 3rd party apps. nice work. There are problems if you remove previously installed modperl. I'm looking at it.

Re: A::T blib vs lib

2003-10-21 Thread Stas Bekman
Stas Bekman wrote: Geoffrey Young wrote: tests fine for me on mp2 and my 3rd party apps. Thanks Geoff. There are problems if you remove previously installed modperl. I'm looking at it. Apparently mod_perl 2.0's distro must have 'lib' pushed onto @INC from t/TEST. That was the problem. Now