Re: flood docs -- take 2

2003-06-30 Thread Aaron Bannert
On Sunday, June 29, 2003, at 06:18 PM, Jacek Prucia wrote: Please have another look at: http://cvs.apache.org/~jacekp/manual/ This is actually what I'm going to commit tommorow. It has bugs, empty places, but at least mentions every element/attribute available (at least I hope so). Looks like

Re: [patch] have_apache_mpm()

2003-06-30 Thread Geoffrey Young
looks good, but what happens when 1.3 is used? Shouldn't it always return preforked? doh! here's a better patch. --Geoff Index: Test.pm === RCS file: /home/cvspublic/httpd-test/perl-framework/Apache-Test/lib/Apache/Test.pm,v

Makefile.PL Questions

2003-06-30 Thread David Wheeler
Hi All, I got a bug report for the latest release of MasonX::ApacheHandler::WithCallbacks, which uses Apache::Test for its testing. My question is this: I use Apache::TestMM and Apache::TestRunPerl in my Makefile.PL to set up the test suite. However, many users may not have Apache::Test

Re: Makefile.PL Questions

2003-06-30 Thread Geoffrey Young
I can avoid this by checking to see if Apache::Test loads and only using it if it does. But then, how would I set up the tests to run after CPAN.pm has installed Apache::Test? Does it run Makefile.PL again? I don't ever use CPAN.pm, so I don't know if the way I have been going about it

Re: Makefile.PL Questions

2003-06-30 Thread David Wheeler
On Monday, June 30, 2003, at 11:26 AM, Geoffrey Young wrote: I don't ever use CPAN.pm, so I don't know if the way I have been going about it actually works or not, but my standard 1.0 Makefile.PL (which was linked to in the perl.com article) looks something like sub MY::test { eval {

Re: Makefile.PL Questions

2003-06-30 Thread David Wheeler
On Monday, June 30, 2003, at 11:26 AM, Geoffrey Young wrote: this makes 'make test' echo the error string or run the tests, depending on whether A::T is installed. in either case, 'make test' is successful (I hope :) Looks like it would be. I decided to use a different approach. Since some of

Re: Makefile.PL Questions

2003-06-30 Thread David Wheeler
On Monday, June 30, 2003, at 12:11 PM, David Wheeler wrote: BEGIN{ if (eval {require Apache::Test}) { Apache::Test-import(qw(have_lwp plan)); require Apache::TestRequest; Apache::TestRequest-import(qw(GET POST)); plan tests = 43, have_lwp; } else {