Examples of "unprotect" use

environments/ppa-mbqj77/deployments/1
Xavier Guimard 19 years ago
parent 4a7b3cda7e
commit fb722d197f
  1. 3
      modules/lemonldap-ng-handler/Changes
  2. 9
      modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm
  3. 3
      modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Simple.pm

@ -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

@ -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

@ -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>

Loading…
Cancel
Save