
gozer at apache
Jan 17, 2006, 5:38 PM
Post #1 of 1
(998 views)
Permalink
|
|
svn commit: r370002 - /perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestUtil.pod
|
|
Author: gozer Date: Tue Jan 17 17:38:31 2006 New Revision: 370002 URL: http://svn.apache.org/viewcvs?rev=370002&view=rev Log: $r->add_config() can now take an optionnal 3rd argument that specifies what pseudo <Location $path> the configuration is evaluated into Submitted-By: Torsten Foertsch <torsten.foertsch [at] gmx> Modified: perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestUtil.pod Modified: perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestUtil.pod URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestUtil.pod?rev=370002&r1=370001&r2=370002&view=diff ============================================================================== --- perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestUtil.pod (original) +++ perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestUtil.pod Tue Jan 17 17:38:31 2006 @@ -108,6 +108,10 @@ $r->add_config($lines); $r->add_config($lines, $override); + $r->add_config($lines, $override, $path); + +Configuration directives are processed as if given in a C<E<lt>LocationE<gt>> +block. =over 4 @@ -126,6 +130,14 @@ Default value is: C<L<Apache2::Const::OR_AUTHCFG|docs::2.0::api::Apache2::Const/C_Apache2__Const__OR_AUTHCFG_>> + +=item opt arg3: C<$path> ( string ) + +Set the C<L<Apache2::CmdParms object|docs::2.0::api::Apache2::CmdParms>> C<path> component. +This is the path of the C<E<lt>LocationE<gt>> block. Some directives need this, +for example C<ProxyPassReverse>. + +Default value is: C</> =item ret: no return value --------------------------------------------------------------------- To unsubscribe, e-mail: docs-cvs-unsubscribe [at] perl For additional commands, e-mail: docs-cvs-help [at] perl
|