Re: mod_perl 2.0 custom directive clarification

2006-02-21 Thread Geoffrey Young
Dag-Erling Smørgrav wrote: > Frank Wiles <[EMAIL PROTECTED]> writes: > >>[EMAIL PROTECTED] (Dag-Erling Smørgrav) wrote: >> >>>To quote a slightly longer excerpt: >>> >>>| This object can be later retrieved at request time via: >>>| >>>| my $dir_cfg = $self->get_config($s, $r->per_dir_config); >

Re: mod_perl 2.0 custom directive clarification

2006-02-21 Thread Dag-Erling Smørgrav
Frank Wiles <[EMAIL PROTECTED]> writes: > [EMAIL PROTECTED] (Dag-Erling Smørgrav) wrote: > > To quote a slightly longer excerpt: > > > > | This object can be later retrieved at request time via: > > | > > | my $dir_cfg = $self->get_config($s, $r->per_dir_config); > > > > which is clearly incorrect

Re: mod_perl 2.0 custom directive clarification

2006-02-20 Thread Frank Wiles
On Mon, 20 Feb 2006 21:32:02 +0100 [EMAIL PROTECTED] (Dag-Erling Smørgrav) wrote: > To quote a slightly longer excerpt: > > | This object can be later retrieved at request time via: > | > | my $dir_cfg = $self->get_config($s, $r->per_dir_config); > > which is clearly incorrect, unless "at reque

Re: mod_perl 2.0 custom directive clarification

2006-02-20 Thread Dag-Erling Smørgrav
Frank Wiles <[EMAIL PROTECTED]> writes: > [EMAIL PROTECTED] (Dag-Erling Smørgrav) wrote: > > The "Apache Server Configuration Customization in Perl" page claims > > that the following code can be used in the request handler to retrieve > > configuration values: > > > > my $dir_cfg = $self->get_co

Re: mod_perl 2.0 custom directive clarification

2006-02-20 Thread Frank Wiles
On Mon, 20 Feb 2006 21:09:44 +0100 [EMAIL PROTECTED] (Dag-Erling Smørgrav) wrote: > The "Apache Server Configuration Customization in Perl" page claims > that the following code can be used in the request handler to retrieve > configuration values: > > my $dir_cfg = $self->get_config($s, $r->pe

mod_perl 2.0 custom directive clarification

2006-02-20 Thread Dag-Erling Smørgrav
The "Apache Server Configuration Customization in Perl" page claims that the following code can be used in the request handler to retrieve configuration values: my $dir_cfg = $self->get_config($s, $r->per_dir_config); however, it isn't quite clear what $self refers to in the request handler. A