Examples of "unprotect" use

This commit is contained in:
Xavier Guimard 2007-02-04 14:34:41 +00:00
parent 4a7b3cda7e
commit fb722d197f
3 changed files with 12 additions and 3 deletions

View File

@ -1,7 +1,8 @@
Revision history for Perl extension Lemonldap::NG::Handler.
0.74
- unprotect system
- unprotect system: the unprotect sub can be used to avoid Lemonldap::NG
control.
0.73 Thu Jan 4 15:34:22 2007
- In VirtualHost context, PerlInitHandler is an alias for

View File

@ -2,7 +2,7 @@ package Lemonldap::NG::Handler;
print STDERR
"See Lemonldap::NG::Handler(3) to know which Lemonldap::NG::Handler::* module to use.";
our $VERSION = "0.73";
our $VERSION = "0.74";
1;
@ -61,6 +61,13 @@ configuration reload, so you don't need to restart Apache at each change:
Allow from my.manager.com
PerlHeaderParserHandler My::Package->refresh
</Location>
You can also unprotect an URI
<Files "*.gif">
PerlHeaderParserHandler My::Package->unprotect
</Files>
=head1 DESCRIPTION

View File

@ -601,7 +601,8 @@ Call your package in <apache-directory>/conf/httpd.conf
PerlHeaderParserHandler My::Package
</Location>
# You can also unprotect an URI
You can also unprotect an URI
<Files "*.gif">
PerlHeaderParserHandler My::Package->unprotect
</Files>