The better way to update/write new CPAN Apache modules

2005-05-12 Thread Enrico Sorcinelli
Hi all, I am using mod_perl2 from almost 2 years but there are a lot of users that still use mod_perl 1 and/or mod_perl 2 prior to RC5, so for my Apache CPAN modules I would like to continue to support all versions with the minimum effort (of course :-)) by avoiding duplications of docs, code and

Re: The better way to update/write new CPAN Apache modules

2005-05-12 Thread Philip M. Gollucci
Enrico Sorcinelli wrote: 2. Two modules (single CPAN distribution, Apache::* _or_ Apache2::* ?): - one for mp1 + mp2 < RC5 into Apache::* namespace; (with inline API run-time tests) - one for mp2 >= RC5 only into Apache2::* namespace (with no tests) Our general practice is that you should _NOT_

Re: The better way to update/write new CPAN Apache modules

2005-05-12 Thread J Matisse Enzer
On May 12, 2005, at 7:22 AM, Enrico Sorcinelli wrote: I am using mod_perl2 from almost 2 years but there are a lot of users that still use mod_perl 1 and/or mod_perl 2 prior to RC5, so for my Apache CPAN modules I would like to continue to support all versions with the minimum effort (of course