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

2003-02-02 Thread stas
stas2003/02/02 17:18:15 Modified:lib/ModPerl Code.pm Log: fix the indentation for the autogenerated files Revision ChangesPath 1.90 +1 -1 modperl-2.0/lib/ModPerl/Code.pm Index: Code.pm

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

2002-06-29 Thread dougm
dougm 2002/06/29 12:43:51 Modified:lib/ModPerl Code.pm Log: provide mechanism to #ifdef constants add APLOG_TOCLIENT to the list of #ifdef constants Revision ChangesPath 1.84 +20 -2 modperl-2.0/lib/ModPerl/Code.pm Index: Code.pm

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

2002-06-15 Thread dougm
dougm 2002/06/15 18:09:46 Modified:lib/ModPerl Code.pm Log: integrate modperl_perl_pp module Revision ChangesPath 1.82 +1 -1 modperl-2.0/lib/ModPerl/Code.pm Index: Code.pm === RCS file:

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

2001-12-17 Thread dougm
dougm 01/12/17 21:58:54 Modified:lib/ModPerl Code.pm Log: generate a modperl_largefiles.h include file with the $Config{ccflags_uselargefiles} we have ripped out when compiling modperl. Revision ChangesPath 1.74 +16 -0 modperl-2.0/lib/ModPerl/Code.pm

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

2001-12-04 Thread stas
stas01/12/04 18:22:25 Modified:lib/Apache Build.pm lib/ModPerl Code.pm Log: remove the caching of the noedit preamble and generate a fresh noedit header + trace for each invocation. the caching was wrong, since it was using the same trace for more than one

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

2001-09-15 Thread dougm
dougm 01/09/15 15:25:55 Modified:lib/ModPerl Code.pm Log: integrate modperl_perl.[ch] Revision ChangesPath 1.66 +2 -1 modperl-2.0/lib/ModPerl/Code.pm Index: Code.pm === RCS file:

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

2001-04-29 Thread dougm
dougm 01/04/29 21:37:01 Modified:lib/ModPerl Code.pm Log: integrate modperl_global module Revision ChangesPath 1.60 +3 -2 modperl-2.0/lib/ModPerl/Code.pm Index: Code.pm === RCS file:

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

2001-04-17 Thread dougm
dougm 01/04/17 21:40:02 Modified:lib/ModPerl Code.pm Log: include modperl_bucket Revision ChangesPath 1.57 +1 -1 modperl-2.0/lib/ModPerl/Code.pm Index: Code.pm === RCS file:

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

2001-04-17 Thread dougm
dougm 01/04/17 22:25:01 Modified:lib/ModPerl Code.pm Log: strip APR_ and AP_ prefixes from constant names Revision ChangesPath 1.58 +3 -2 modperl-2.0/lib/ModPerl/Code.pm Index: Code.pm

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

2001-02-21 Thread dougm
dougm 01/02/21 19:49:22 Modified:lib/Apache Build.pm lib/ModPerl Code.pm Log: make noedit_warning routines more usable elsewhere Revision ChangesPath 1.31 +9 -2 modperl-2.0/lib/Apache/Build.pm Index: Build.pm

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

2000-04-27 Thread dougm
dougm 00/04/27 14:48:38 Modified:lib/ModPerl Code.pm Log: hookup PerlPostConfigHandler Revision ChangesPath 1.20 +1 -0 modperl-2.0/lib/ModPerl/Code.pm Index: Code.pm === RCS file:

Re: cvs commit: modperl-2.0/lib/ModPerl Code.pm

2000-04-15 Thread Stas Bekman
On Fri, 14 Apr 2000, Doug MacEachern wrote: Orwant and friends in "Algorithms with Perl" page 28 claims the first form is slower. faster to *parse*, not faster to *run*. stas, your benchmarks don't test parse time. The only question I still want to ask you is why do we care about the

Re: cvs commit: modperl-2.0/lib/ModPerl Code.pm

2000-04-15 Thread brian moseley
On Sat, 15 Apr 2000, Doug MacEachern wrote: that is sad. consider PerlFreshRestart and graceful restart. it doesn't take much effort to type '' instead of "". it might not make that much of a difference in parse time, but it doesn't hurt either. can we please drop this topic, there's

Re: cvs commit: modperl-2.0/lib/ModPerl Code.pm

2000-04-14 Thread Bill Moseley
At 11:56 AM 04/14/00 +0300, Stas Bekman wrote: sticking to the convention of single quoting constant strings Why? You lose the interpolation feature when you need it and you get to the awkward statement like this: -print $h_fh "\n#define ", +print $h_fh "\n", '#define

Re: cvs commit: modperl-2.0/lib/ModPerl Code.pm

2000-04-14 Thread Doug MacEachern
Orwant and friends in "Algorithms with Perl" page 28 claims the first form is slower. faster to *parse*, not faster to *run*. stas, your benchmarks don't test parse time. It seems that TIMTOWTDI is going to die soon as everybody tells me that I should code as shown in "OO Perl" and

Re: cvs commit: modperl-2.0/lib/ModPerl Code.pm

2000-04-14 Thread Stas Bekman
On Fri, 14 Apr 2000, Doug MacEachern wrote: Orwant and friends in "Algorithms with Perl" page 28 claims the first form is slower. faster to *parse*, not faster to *run*. stas, your benchmarks don't test parse time. It seems that TIMTOWTDI is going to die soon as everybody tells