stas 2003/02/19 18:50:02
Modified: src/docs/2.0/user/coding coding.pod
src/docs/2.0/user/config custom.pod
Log:
don't use NONFATAL in examples, as it works only with 5.8
Revision Changes Path
1.17 +3 -0 modperl-docs/src/docs/2.0/user/coding/coding.pod
Index: coding.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/coding/coding.pod,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- coding.pod 15 Dec 2002 17:32:04 -0000 1.16
+++ coding.pod 20 Feb 2003 02:50:02 -0000 1.17
@@ -109,6 +109,9 @@
use warnings FATAL => 'all', NONFATAL => 'redefine';
+but if your code may be used with older perl versions, you probably
+don't want to use this new functionality.
+
Refer to the I<perllexwarn> manpage for more information.
=head1 Perl Specifics in mod_perl Environment
1.5 +2 -2 modperl-docs/src/docs/2.0/user/config/custom.pod
Index: custom.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/config/custom.pod,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- custom.pod 27 Jan 2003 04:05:13 -0000 1.4
+++ custom.pod 20 Feb 2003 02:50:02 -0000 1.5
@@ -815,7 +815,7 @@
package MyApache::CustomDirectives;
use strict;
- use warnings FATAL => 'all', NONFATAL => 'redefine';
+ use warnings FATAL => 'all';
use Apache::CmdParms ();
use Apache::Module ();
@@ -1005,7 +1005,7 @@
package MyApache::CustomDirectivesTest;
use strict;
- use warnings FATAL => 'all', NONFATAL => 'redefine';
+ use warnings FATAL => 'all';
use Apache::RequestRec ();
use Apache::RequestIO ();
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]