RE: $r->get_handlers bug/oversight?

2000-08-30 Thread Doug MacEachern
i committed 2 small bits of the last patch, adding PerlCleanupHandler to the {get,set}_handlers table and the $r->get_handler refcnt fix. i put a new version of the patch against cvs here: http://perl.apache.org/~dougm/set_handlers.pat similar to the last, but also deals with $r->set_handlers(P

RE: $r->get_handlers bug/oversight?

2000-08-22 Thread Geoffrey Young
> -Original Message- > From: Doug MacEachern [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 21, 2000 6:41 PM > To: Geoffrey Young > Cc: '[EMAIL PROTECTED]' > Subject: RE: $r->get_handlers bug/oversight? > > > On Wed, 16 Aug 2000, Geoffrey Y

RE: $r->get_handlers bug/oversight?

2000-08-21 Thread Doug MacEachern
On Wed, 16 Aug 2000, Geoffrey Young wrote: > ack... so the alias only goes one way? I guess it makes sense that we > can't know at run time what the Init handler stands for, but how come > get_handlers('PerlInitHandler') comes up blank? Isn't it just a table > entry? it's not in the get/set

RE: $r->get_handlers bug/oversight?

2000-08-16 Thread Geoffrey Young
> -Original Message- > From: Doug MacEachern [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 15, 2000 11:22 PM > To: Geoffrey Young > Cc: '[EMAIL PROTECTED]' > Subject: Re: $r->get_handlers bug/oversight? > > > On Tue, 25 Apr 2

Re: $r->get_handlers bug/oversight?

2000-08-15 Thread Doug MacEachern
On Tue, 25 Apr 2000, Geoffrey Young wrote: > Hi all... > > I've noticed that get_handlers() will return the enabled handlers > for a PerlPostReadRequestHandler, but not when it is specified as a > PerlInitHandler (either by calling > $r->get_handlers('PerlPostReadRequestHandler') or

RE: $r->get_handlers bug/oversight? (possible fix)

2000-05-03 Thread Doug MacEachern
On Tue, 2 May 2000, Geoffrey Young wrote: > ok, for anyone who is interested, I seem to have fixed the problem > (maybe)... > > here's a patch for Apache.xs from yesterday's cvs (and I didn't see any > commits since then...) > > --- Apache.xs.old Tue May 2 14:25:09 2000 > +++ Apache.xs

RE: $r->get_handlers bug/oversight? (possible fix)

2000-05-02 Thread Geoffrey Young
e problem). anyway... HTH --Geoff > -Original Message- > From: Geoffrey Young [mailto:[EMAIL PROTECTED]] > Sent: Monday, May 01, 2000 4:32 PM > To: '[EMAIL PROTECTED]' > Cc: '[EMAIL PROTECTED]' > Subject: RE: $r->get_handlers bug/oversight? >

RE: $r->get_handlers bug/oversight?

2000-05-01 Thread Geoffrey Young
hi again... I'm having lots of problems with the get_handlers method... the following is reproducible for me under 1.22, 1.23 and the latest cvs using 1.3.12... --- #!/usr/bin/perl my $r = shift; my $list; my @array = qw('test' 'array'); $r->pnotes(TEST => \@array); $r->push

Re: $r->get_handlers bug/oversight?

2000-04-25 Thread Doug MacEachern
On Tue, 25 Apr 2000, Geoffrey Young wrote: > Hi all... > > I've noticed that get_handlers() will return the enabled handlers > for a PerlPostReadRequestHandler, but not when it is specified as a > PerlInitHandler (either by calling > $r->get_handlers('PerlPostReadRequestHandler') or