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);
>
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
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
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
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
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