Re: What phase am I in?

2001-12-28 Thread Eric Cholet
--On jeudi 20 décembre 2001 16:10 -0600 Dave Rolsky [EMAIL PROTECTED] wrote: On Thu, 20 Dec 2001, Perrin Harkins wrote: I've looked through the mod_perl docs and guide and am unable to find something that I can use in a handler to figure out what the current phase is. This seems like

Re: What phase am I in?

2001-12-22 Thread Stas Bekman
Dave Rolsky wrote: On 21 Dec 2001, Vivek Khera wrote: DR == Dave Rolsky [EMAIL PROTECTED] writes: It's called current_callback(). DR Grr, its not documented when I do 'perldoc Apache'. There's a lot of stuff not so documented. The mod_perl book has much more complete docs. Which is

Re: What phase am I in?

2001-12-21 Thread Vivek Khera
DR == Dave Rolsky [EMAIL PROTECTED] writes: It's called current_callback(). DR Grr, its not documented when I do 'perldoc Apache'. There's a lot of stuff not so documented. The mod_perl book has much more complete docs. --

Re: What phase am I in?

2001-12-21 Thread Dave Rolsky
On 21 Dec 2001, Vivek Khera wrote: DR == Dave Rolsky [EMAIL PROTECTED] writes: It's called current_callback(). DR Grr, its not documented when I do 'perldoc Apache'. There's a lot of stuff not so documented. The mod_perl book has much more complete docs. Which is nice for ORA and the

Re: What phase am I in?

2001-12-21 Thread Perrin Harkins
I have the book but I don't always have it with me. That chapter is actually available for free on-line at http://www.modperl.com/. - Perrin

Re: What phase am I in?

2001-12-20 Thread Perrin Harkins
I've looked through the mod_perl docs and guide and am unable to find something that I can use in a handler to figure out what the current phase is. This seems like such an obvious thing that I can't believe it doesn't exist. Therefore I will conclude that I'm completely blind. Anyone care

Re: What phase am I in?

2001-12-20 Thread Dave Rolsky
On Thu, 20 Dec 2001, Perrin Harkins wrote: I've looked through the mod_perl docs and guide and am unable to find something that I can use in a handler to figure out what the current phase is. This seems like such an obvious thing that I can't believe it doesn't exist. Therefore I will

RE: What phase am I in

2000-04-11 Thread Doug MacEachern
On Fri, 7 Apr 2000, Geoffrey Young wrote: of note, 1.21_01 introduced $r-notes('PERL_CUR_HOOK'), but why that was introduced when there is current_callback() I don't know (it's not in Changes as far as I can see) that's related to this Change: $r-current_callback now works properly when

Re: What phase am I in

2000-04-07 Thread Simon Rosenthal
At 12:51 PM 4/7/00 -0400, Paul G. Weiss wrote: Is there any way to determine from the Apache::Request object what phase of handling we'er in? I have some code that is used during more than one phase and I'd like it to behave differently for each phase. the current_callback() method (Eagle

RE: What phase am I in

2000-04-07 Thread Geoffrey Young
To: Paul G. Weiss; '[EMAIL PROTECTED]' Subject: Re: What phase am I in At 12:51 PM 4/7/00 -0400, Paul G. Weiss wrote: Is there any way to determine from the Apache::Request object what phase of handling we'er in? I have some code that is used during more than one phase and I'd like