cvs commit: modperl-2.0/xs/Apache/Log Apache__Log.h

2001-05-03 Thread dougm
dougm 01/05/03 23:31:38 Modified:t/conf modperl_extra.pl xs/Apache/Log Apache__Log.h Log: Apache::Log methods default to global server object if needed Revision ChangesPath 1.7 +7 -0 modperl-2.0/t/conf/modperl_extra.pl Index: modperl_ex

cvs commit: modperl-2.0/xs/Apache/Log Apache__Log.h

2001-05-03 Thread dougm
dougm 01/05/03 22:53:49 Modified:xs/Apache/Log Apache__Log.h Log: cleanup a bit and support Apache::Server->log_error Revision ChangesPath 1.7 +27 -21modperl-2.0/xs/Apache/Log/Apache__Log.h Index: Apache__Log.h =

cvs commit: modperl-2.0/src/modules/perl mod_perl.c modperl_global.c modperl_global.h modperl_util.c

2001-05-03 Thread dougm
dougm 01/05/03 22:49:20 Modified:src/modules/perl mod_perl.c modperl_global.c modperl_global.h modperl_util.c Log: add globals for server_rec and threaded_mpm Revision ChangesPath 1.52 +9 -3 modperl-2.0/src/modules/perl/mod_perl.c

cvs commit: modperl-2.0/lib/Apache compat.pm

2001-05-03 Thread dougm
dougm 01/05/03 22:46:22 Modified:lib/Apache compat.pm Log: remove log_error Revision ChangesPath 1.5 +0 -5 modperl-2.0/lib/Apache/compat.pm Index: compat.pm === RCS file: /home/cvs/modp

cvs commit: modperl-2.0/src/modules/perl modperl_util.c

2001-05-03 Thread dougm
dougm 01/05/03 21:11:33 Modified:src/modules/perl modperl_util.c Log: modperl_sv2request_rec needs to check sv_derived_from() if given classname Revision ChangesPath 1.12 +4 -1 modperl-2.0/src/modules/perl/modperl_util.c Index: modperl_util.c =

cvs commit: modperl-2.0/lib/ModPerl WrapXS.pm

2001-05-03 Thread dougm
dougm 01/05/03 20:39:24 Modified:lib/ModPerl WrapXS.pm Log: make handcrafted xsubs GvSHARED Revision ChangesPath 1.16 +4 -2 modperl-2.0/lib/ModPerl/WrapXS.pm Index: WrapXS.pm === RCS fil

cvs commit: modperl-2.0/xs/maps modperl_functions.map

2001-05-03 Thread dougm
dougm 01/05/03 16:46:08 Modified:t/response/TestAPI aplog.pm xs/Apache/Log Apache__Log.h xs/maps modperl_functions.map Log: add Apache::Server->log_serror and Apache::RequestRec->log_rerror methods Revision ChangesPath 1.4 +10 -0

cvs commit: modperl-2.0/xs/maps modperl_functions.map

2001-05-03 Thread dougm
dougm 01/05/03 15:42:35 Modified:t/response/TestAPI aplog.pm xs/Apache/Log Apache__Log.h xs/maps modperl_functions.map Log: add Apache::LOG_MARK function Revision ChangesPath 1.3 +5 -1 modperl-2.0/t/response/TestAPI/aplog.pm

cvs commit: modperl-2.0/xs/tables/current/Apache ConstantsTable.pm

2001-05-03 Thread dougm
dougm 01/05/03 15:24:06 Modified:lib/Apache ParseSource.pm lib/ModPerl Code.pm t/response/TestAPI aplog.pm xs/tables/current/Apache ConstantsTable.pm Log: add APLOG_* constants and tests Revision ChangesPath 1.17 +2 -1

Re: Testing Perl code before / at httpd boot?

2001-05-03 Thread Doug MacEachern
On Thu, 3 May 2001, barries wrote: > > it will be made to work the same as 1.xx, only bootstrapping the .so > > when inside httpd. > > s/inside/outside/? no. the current .so's contain references to symbols that only exist inside httpd. if they are loaded outside of httpd, Perl croaks. the 1.x

Re: Testing Perl code before / at httpd boot?

2001-05-03 Thread barries
On Thu, May 03, 2001 at 02:44:50PM -0700, Doug MacEachern wrote: > On Thu, 3 May 2001, barries wrote: > > > I'm looking for cheap and easy ways to test Perl code without > > killing/launching a server. > > you're talking 2.0, right? Yup. > it will be made to work the same as 1.xx, only bootst

Re: Testing Perl code before / at httpd boot?

2001-05-03 Thread Doug MacEachern
On Thu, 3 May 2001, barries wrote: > Are there any plans to fire up a perl interpreter at httpd -t time, > perhaps with an implied addition of -c to PerlSwitches? in 2.0 'httpd -t' will not run any Perl code. it might when sections are implemented, in which case would should be able to set PL_

Re: Apache::Test modperl_extra.pl

2001-05-03 Thread Doug MacEachern
On Thu, 3 May 2001, Geoffrey Young wrote: > Hi Doug... > > I was wondering about these from the Apache::Test README: > > if the file t/conf/extra.conf exists, it will be included by > httpd.conf > > if the file t/conf/modperl_extra.pl exists, it will be included by > httpd.conf as a mo

cvs commit: modperl-2.0/xs/Apache/Log Apache__Log.h

2001-05-03 Thread dougm
dougm 01/05/03 13:20:03 Modified:xs/Apache/Log Apache__Log.h Log: get the right filename:line number of the caller Revision ChangesPath 1.3 +1 -1 modperl-2.0/xs/Apache/Log/Apache__Log.h Index: Apache__Log.h

Testing Perl code before / at httpd boot?

2001-05-03 Thread barries
Are there any plans to fire up a perl interpreter at httpd -t time, perhaps with an implied addition of -c to PerlSwitches? I'm looking for cheap and easy ways to test Perl code without killing/launching a server. FWIW, I started down this trail because I have a button mapped to "perl -cw %" in

Apache::Test modperl_extra.pl

2001-05-03 Thread Geoffrey Young
Hi Doug... I was wondering about these from the Apache::Test README: if the file t/conf/extra.conf exists, it will be included by httpd.conf if the file t/conf/modperl_extra.pl exists, it will be included by httpd.conf as a mod_perl file (PerlRequire) I've been playing around with Apac

cvs commit: modperl-2.0/lib/ModPerl WrapXS.pm

2001-05-03 Thread dougm
dougm 01/05/03 09:28:49 Modified:lib/ModPerl WrapXS.pm Log: make xsubs shared if Perl > 5.7.0 Revision ChangesPath 1.15 +16 -0 modperl-2.0/lib/ModPerl/WrapXS.pm Index: WrapXS.pm === RCS f