gozer 2004/08/18 11:06:15
Modified: src/docs/2.0/api/Apache Module.pod
Log:
Geoff pointed out that there was at least one documented use of
$module->remove, so Apache::Module->remove_loaded_module should
not have been removed. Re-adding it with documentation.
Revision Changes Path
1.11 +24 -0 modperl-docs/src/docs/2.0/api/Apache/Module.pod
Index: Module.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/Apache/Module.pod,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- Module.pod 18 Aug 2004 01:26:45 -0000 1.10
+++ Module.pod 18 Aug 2004 18:06:14 -0000 1.11
@@ -21,6 +21,9 @@
# find a specific module
my $module = Apache::Module::find_linked_module('mod_ssl.c');
+ # remove a specific module
+ $module->remove_loaded_module();
+
# access module configuration from a directive
sub MyDirective {
my ($self, $parms, $args) = @_;
@@ -290,6 +293,27 @@
=item since: 1.99_12
=back
+
+
+
+
+
+
+=head2 C<remove_loaded_module>
+
+Remove a module from the list of loaded modules permanently.
+
+ $module->remove_loaded_module();
+
+=over 4
+
+=item obj: C<$module>
+( C<L<Apache::Module object|docs::2.0::api::Apache::Module>> )
+
+=item since: 1.99_12
+
+=back
+
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]