You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs-cvs@perl.apache.org by ge...@apache.org on 2005/04/05 02:49:19 UTC

svn commit: r160122 - in perl/modperl/docs/trunk/src/docs/2.0: api/APR/ api/Apache2/ user/handlers/

Author: geoff
Date: Mon Apr  4 17:49:16 2005
New Revision: 160122

URL: http://svn.apache.org/viewcvs?view=rev&rev=160122
Log:
APR:: constant to APR::Const shuffle

Modified:
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/Bucket.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/Const.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/Error.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/Finfo.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/Socket.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/Table.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/URI.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Filter.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Log.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestIO.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestRec.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestUtil.pod
    perl/modperl/docs/trunk/src/docs/2.0/user/handlers/filters.pod
    perl/modperl/docs/trunk/src/docs/2.0/user/handlers/http.pod
    perl/modperl/docs/trunk/src/docs/2.0/user/handlers/intro.pod
    perl/modperl/docs/trunk/src/docs/2.0/user/handlers/protocols.pod

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/APR/Bucket.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/APR/Bucket.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/APR/Bucket.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/APR/Bucket.pod Mon Apr  4 17:49:16 2005
@@ -469,7 +469,7 @@
 
 optional reading mode constant.
 
-By default the read is blocking, via C<L<APR::BLOCK_READ
+By default the read is blocking, via C<L<APR::Const::BLOCK_READ
 constant|docs::2.0::api::APR::Const/C_APR__BLOCK_READ_>>.
 
 =item ret: C<$len> ( number )
@@ -499,7 +499,7 @@
 Non-blocking read:
 
   use APR::Const -compile 'NONBLOCK_READ';
-  my $len = $b->read(my $buffer, APR::NONBLOCK_READ);
+  my $len = $b->read(my $buffer, APR::Const::NONBLOCK_READ);
 
 
 
@@ -571,7 +571,7 @@
 constant|docs::2.0::api::APR::Const>> )
 
 On success,
-C<L<APR::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>> is
+C<L<APR::Const::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>> is
 returned. Otherwise a failure code is returned.
 
 =item excpt: C<L<APR::Error|docs::2.0::api::APR::Error>>
@@ -584,13 +584,13 @@
 
 mod_perl will do the error checking on your behalf, and if the return
 code is not
-C<L<APR::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>>, an
+C<L<APR::Const::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>>, an
 C<L<APR::Error exception|docs::2.0::api::APR::Error>> will be thrown.
 
 However if your code doesn't know which bucket types it may need to
 setaside, you may want to check the return code and deal with any
 errors. For example one of the possible error codes is
-C<L<APR::ENOTIMPL|docs::2.0::api::APR::Const/C_APR__ENOTIMPL_>>. As of
+C<L<APR::Const::ENOTIMPL|docs::2.0::api::APR::Const/C_APR__ENOTIMPL_>>. As of
 this writing the pipe and socket buckets can't C<setaside()>, in which
 case you may want to look at the C<ap_save_brigade()> implementation.
 

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/APR/Const.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/APR/Const.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/APR/Const.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/APR/Const.pod Mon Apr  4 17:49:16 2005
@@ -51,7 +51,7 @@
 
 
 
-=head3 C<APR::SUCCESS>
+=head3 C<APR::Const::SUCCESS>
 
 =over
 
@@ -72,7 +72,7 @@
 
 
 
-=head3 C<APR::EABOVEROOT>
+=head3 C<APR::Const::EABOVEROOT>
 
 =over
 
@@ -84,7 +84,7 @@
 
 
 
-=head3 C<APR::EABSOLUTE>
+=head3 C<APR::Const::EABSOLUTE>
 
 =over
 
@@ -96,7 +96,7 @@
 
 
 
-=head3 C<APR::EACCES>
+=head3 C<APR::Const::EACCES>
 
 =over
 
@@ -108,7 +108,7 @@
 
 
 
-=head3 C<APR::EAGAIN>
+=head3 C<APR::Const::EAGAIN>
 
 =over
 
@@ -121,7 +121,7 @@
 
 
 
-=head3 C<APR::EBADDATE>
+=head3 C<APR::Const::EBADDATE>
 
 =over
 
@@ -133,7 +133,7 @@
 
 
 
-=head3 C<APR::EBADF>
+=head3 C<APR::Const::EBADF>
 
 =over
 
@@ -145,7 +145,7 @@
 
 
 
-=head3 C<APR::EBADIP>
+=head3 C<APR::Const::EBADIP>
 
 =over
 
@@ -157,7 +157,7 @@
 
 
 
-=head3 C<APR::EBADMASK>
+=head3 C<APR::Const::EBADMASK>
 
 =over
 
@@ -169,7 +169,7 @@
 
 
 
-=head3 C<APR::EBADPATH>
+=head3 C<APR::Const::EBADPATH>
 
 =over
 
@@ -181,7 +181,7 @@
 
 
 
-=head3 C<APR::EBUSY>
+=head3 C<APR::Const::EBUSY>
 
 =over
 
@@ -193,7 +193,7 @@
 
 
 
-=head3 C<APR::ECONNABORTED>
+=head3 C<APR::Const::ECONNABORTED>
 
 =over
 
@@ -205,7 +205,7 @@
 
 
 
-=head3 C<APR::ECONNREFUSED>
+=head3 C<APR::Const::ECONNREFUSED>
 
 =over
 
@@ -217,7 +217,7 @@
 
 
 
-=head3 C<APR::ECONNRESET>
+=head3 C<APR::Const::ECONNRESET>
 
 =over
 
@@ -229,7 +229,7 @@
 
 
 
-=head3 C<APR::EDSOOPEN>
+=head3 C<APR::Const::EDSOOPEN>
 
 =over
 
@@ -241,7 +241,7 @@
 
 
 
-=head3 C<APR::EEXIST>
+=head3 C<APR::Const::EEXIST>
 
 =over
 
@@ -253,7 +253,7 @@
 
 
 
-=head3 C<APR::EFTYPE>
+=head3 C<APR::Const::EFTYPE>
 
 =over
 
@@ -265,7 +265,7 @@
 
 
 
-=head3 C<APR::EGENERAL>
+=head3 C<APR::Const::EGENERAL>
 
 =over
 
@@ -277,7 +277,7 @@
 
 
 
-=head3 C<APR::EHOSTUNREACH>
+=head3 C<APR::Const::EHOSTUNREACH>
 
 =over
 
@@ -289,7 +289,7 @@
 
 
 
-=head3 C<APR::EINCOMPLETE>
+=head3 C<APR::Const::EINCOMPLETE>
 
 =over
 
@@ -301,7 +301,7 @@
 
 
 
-=head3 C<APR::EINIT>
+=head3 C<APR::Const::EINIT>
 
 =over
 
@@ -313,7 +313,7 @@
 
 
 
-=head3 C<APR::EINPROGRESS>
+=head3 C<APR::Const::EINPROGRESS>
 
 =over
 
@@ -325,7 +325,7 @@
 
 
 
-=head3 C<APR::EINTR>
+=head3 C<APR::Const::EINTR>
 
 =over
 
@@ -337,7 +337,7 @@
 
 
 
-=head3 C<APR::EINVAL>
+=head3 C<APR::Const::EINVAL>
 
 =over
 
@@ -349,7 +349,7 @@
 
 
 
-=head3 C<APR::EINVALSOCK>
+=head3 C<APR::Const::EINVALSOCK>
 
 =over
 
@@ -361,7 +361,7 @@
 
 
 
-=head3 C<APR::EMFILE>
+=head3 C<APR::Const::EMFILE>
 
 =over
 
@@ -373,7 +373,7 @@
 
 
 
-=head3 C<APR::EMISMATCH>
+=head3 C<APR::Const::EMISMATCH>
 
 =over
 
@@ -385,7 +385,7 @@
 
 
 
-=head3 C<APR::ENAMETOOLONG>
+=head3 C<APR::Const::ENAMETOOLONG>
 
 =over
 
@@ -397,7 +397,7 @@
 
 
 
-=head3 C<APR::END>
+=head3 C<APR::Const::END>
 
 =over
 
@@ -409,7 +409,7 @@
 
 
 
-=head3 C<APR::ENETUNREACH>
+=head3 C<APR::Const::ENETUNREACH>
 
 =over
 
@@ -421,7 +421,7 @@
 
 
 
-=head3 C<APR::ENFILE>
+=head3 C<APR::Const::ENFILE>
 
 =over
 
@@ -433,7 +433,7 @@
 
 
 
-=head3 C<APR::ENODIR>
+=head3 C<APR::Const::ENODIR>
 
 =over
 
@@ -445,7 +445,7 @@
 
 
 
-=head3 C<APR::ENOENT>
+=head3 C<APR::Const::ENOENT>
 
 =over
 
@@ -457,7 +457,7 @@
 
 
 
-=head3 C<APR::ENOLOCK>
+=head3 C<APR::Const::ENOLOCK>
 
 =over
 
@@ -469,7 +469,7 @@
 
 
 
-=head3 C<APR::ENOMEM>
+=head3 C<APR::Const::ENOMEM>
 
 =over
 
@@ -481,7 +481,7 @@
 
 
 
-=head3 C<APR::ENOPOLL>
+=head3 C<APR::Const::ENOPOLL>
 
 =over
 
@@ -493,7 +493,7 @@
 
 
 
-=head3 C<APR::ENOPOOL>
+=head3 C<APR::Const::ENOPOOL>
 
 =over
 
@@ -505,7 +505,7 @@
 
 
 
-=head3 C<APR::ENOPROC>
+=head3 C<APR::Const::ENOPROC>
 
 =over
 
@@ -517,7 +517,7 @@
 
 
 
-=head3 C<APR::ENOSHMAVAIL>
+=head3 C<APR::Const::ENOSHMAVAIL>
 
 =over
 
@@ -529,7 +529,7 @@
 
 
 
-=head3 C<APR::ENOSOCKET>
+=head3 C<APR::Const::ENOSOCKET>
 
 =over
 
@@ -541,7 +541,7 @@
 
 
 
-=head3 C<APR::ENOSPC>
+=head3 C<APR::Const::ENOSPC>
 
 =over
 
@@ -553,7 +553,7 @@
 
 
 
-=head3 C<APR::ENOSTAT>
+=head3 C<APR::Const::ENOSTAT>
 
 =over
 
@@ -565,7 +565,7 @@
 
 
 
-=head3 C<APR::ENOTDIR>
+=head3 C<APR::Const::ENOTDIR>
 
 =over
 
@@ -577,7 +577,7 @@
 
 
 
-=head3 C<APR::ENOTEMPTY>
+=head3 C<APR::Const::ENOTEMPTY>
 
 =over
 
@@ -589,7 +589,7 @@
 
 
 
-=head3 C<APR::ENOTHDKEY>
+=head3 C<APR::Const::ENOTHDKEY>
 
 =over
 
@@ -601,7 +601,7 @@
 
 
 
-=head3 C<APR::ENOTHREAD>
+=head3 C<APR::Const::ENOTHREAD>
 
 =over
 
@@ -613,7 +613,7 @@
 
 
 
-=head3 C<APR::ENOTIME>
+=head3 C<APR::Const::ENOTIME>
 
 =over
 
@@ -625,7 +625,7 @@
 
 
 
-=head3 C<APR::ENOTIMPL>
+=head3 C<APR::Const::ENOTIMPL>
 
 Something is not implemented
 
@@ -639,7 +639,7 @@
 
 
 
-=head3 C<APR::ENOTSOCK>
+=head3 C<APR::Const::ENOTSOCK>
 
 =over
 
@@ -651,7 +651,7 @@
 
 
 
-=head3 C<APR::EOF>
+=head3 C<APR::Const::EOF>
 
 =over
 
@@ -663,7 +663,7 @@
 
 
 
-=head3 C<APR::EPATHWILD>
+=head3 C<APR::Const::EPATHWILD>
 
 =over
 
@@ -675,7 +675,7 @@
 
 
 
-=head3 C<APR::EPIPE>
+=head3 C<APR::Const::EPIPE>
 
 =over
 
@@ -687,7 +687,7 @@
 
 
 
-=head3 C<APR::EPROC_UNKNOWN>
+=head3 C<APR::Const::EPROC_UNKNOWN>
 
 =over
 
@@ -699,7 +699,7 @@
 
 
 
-=head3 C<APR::ERELATIVE>
+=head3 C<APR::Const::ERELATIVE>
 
 =over
 
@@ -711,7 +711,7 @@
 
 
 
-=head3 C<APR::ESPIPE>
+=head3 C<APR::Const::ESPIPE>
 
 =over
 
@@ -723,7 +723,7 @@
 
 
 
-=head3 C<APR::ESYMNOTFOUND>
+=head3 C<APR::Const::ESYMNOTFOUND>
 
 =over
 
@@ -735,7 +735,7 @@
 
 
 
-=head3 C<APR::ETIMEDOUT>
+=head3 C<APR::Const::ETIMEDOUT>
 
 =over
 
@@ -747,7 +747,7 @@
 
 
 
-=head3 C<APR::EXDEV>
+=head3 C<APR::Const::EXDEV>
 
 =over
 
@@ -768,7 +768,7 @@
 
 
 
-=head3 C<APR::FOPEN_BINARY>
+=head3 C<APR::Const::FOPEN_BINARY>
 
 =over
 
@@ -780,7 +780,7 @@
 
 
 
-=head3 C<APR::FOPEN_BUFFERED>
+=head3 C<APR::Const::FOPEN_BUFFERED>
 
 =over
 
@@ -792,7 +792,7 @@
 
 
 
-=head3 C<APR::FOPEN_CREATE>
+=head3 C<APR::Const::FOPEN_CREATE>
 
 =over
 
@@ -804,7 +804,7 @@
 
 
 
-=head3 C<APR::FOPEN_DELONCLOSE>
+=head3 C<APR::Const::FOPEN_DELONCLOSE>
 
 =over
 
@@ -816,7 +816,7 @@
 
 
 
-=head3 C<APR::FOPEN_EXCL>
+=head3 C<APR::Const::FOPEN_EXCL>
 
 =over
 
@@ -828,7 +828,7 @@
 
 
 
-=head3 C<APR::FOPEN_PEND>
+=head3 C<APR::Const::FOPEN_PEND>
 
 =over
 
@@ -840,7 +840,7 @@
 
 
 
-=head3 C<APR::FOPEN_READ>
+=head3 C<APR::Const::FOPEN_READ>
 
 =over
 
@@ -852,7 +852,7 @@
 
 
 
-=head3 C<APR::FOPEN_TRUNCATE>
+=head3 C<APR::Const::FOPEN_TRUNCATE>
 
 =over
 
@@ -864,7 +864,7 @@
 
 
 
-=head3 C<APR::FOPEN_WRITE>
+=head3 C<APR::Const::FOPEN_WRITE>
 
 =over
 
@@ -886,7 +886,7 @@
 
 
 
-=head3 C<APR::FILEPATH_ENCODING_LOCALE>
+=head3 C<APR::Const::FILEPATH_ENCODING_LOCALE>
 
 =over
 
@@ -898,7 +898,7 @@
 
 
 
-=head3 C<APR::FILEPATH_ENCODING_UNKNOWN>
+=head3 C<APR::Const::FILEPATH_ENCODING_UNKNOWN>
 
 =over
 
@@ -910,7 +910,7 @@
 
 
 
-=head3 C<APR::FILEPATH_ENCODING_UTF8>
+=head3 C<APR::Const::FILEPATH_ENCODING_UTF8>
 
 =over
 
@@ -922,7 +922,7 @@
 
 
 
-=head3 C<APR::FILEPATH_NATIVE>
+=head3 C<APR::Const::FILEPATH_NATIVE>
 
 =over
 
@@ -934,7 +934,7 @@
 
 
 
-=head3 C<APR::FILEPATH_NOTABOVEROOT>
+=head3 C<APR::Const::FILEPATH_NOTABOVEROOT>
 
 =over
 
@@ -946,7 +946,7 @@
 
 
 
-=head3 C<APR::FILEPATH_NOTABSOLUTE>
+=head3 C<APR::Const::FILEPATH_NOTABSOLUTE>
 
 =over
 
@@ -958,7 +958,7 @@
 
 
 
-=head3 C<APR::FILEPATH_NOTRELATIVE>
+=head3 C<APR::Const::FILEPATH_NOTRELATIVE>
 
 =over
 
@@ -970,7 +970,7 @@
 
 
 
-=head3 C<APR::FILEPATH_SECUREROOT>
+=head3 C<APR::Const::FILEPATH_SECUREROOT>
 
 =over
 
@@ -982,7 +982,7 @@
 
 
 
-=head3 C<APR::FILEPATH_SECUREROOTTEST>
+=head3 C<APR::Const::FILEPATH_SECUREROOTTEST>
 
 =over
 
@@ -994,7 +994,7 @@
 
 
 
-=head3 C<APR::FILEPATH_TRUENAME>
+=head3 C<APR::Const::FILEPATH_TRUENAME>
 
 =over
 
@@ -1016,7 +1016,7 @@
 
 
 
-=head3 C<APR::FPROT_GEXECUTE>
+=head3 C<APR::Const::FPROT_GEXECUTE>
 
 Execute by group
 
@@ -1031,7 +1031,7 @@
 
 
 
-=head3 C<APR::FPROT_GREAD>
+=head3 C<APR::Const::FPROT_GREAD>
 
 Read by group
 
@@ -1044,7 +1044,7 @@
 
 
 
-=head3 C<APR::FPROT_GSETID>
+=head3 C<APR::Const::FPROT_GSETID>
 
 Set group id
 
@@ -1057,7 +1057,7 @@
 
 
 
-=head3 C<APR::FPROT_GWRITE>
+=head3 C<APR::Const::FPROT_GWRITE>
 
 Write by group
 
@@ -1070,7 +1070,7 @@
 
 
 
-=head3 C<APR::FPROT_OS_DEFAULT>
+=head3 C<APR::Const::FPROT_OS_DEFAULT>
 
 use OS's default permissions
 
@@ -1083,7 +1083,7 @@
 
 
 
-=head3 C<APR::FPROT_UEXECUTE>
+=head3 C<APR::Const::FPROT_UEXECUTE>
 
 Execute by user
 
@@ -1096,7 +1096,7 @@
 
 
 
-=head3 C<APR::FPROT_UREAD>
+=head3 C<APR::Const::FPROT_UREAD>
 
 Read by user
 
@@ -1109,7 +1109,7 @@
 
 
 
-=head3 C<APR::FPROT_USETID>
+=head3 C<APR::Const::FPROT_USETID>
 
 Set user id
 
@@ -1122,7 +1122,7 @@
 
 
 
-=head3 C<APR::FPROT_UWRITE>
+=head3 C<APR::Const::FPROT_UWRITE>
 
 Write by user
 
@@ -1135,7 +1135,7 @@
 
 
 
-=head3 C<APR::FPROT_WEXECUTE>
+=head3 C<APR::Const::FPROT_WEXECUTE>
 
 Execute by others
 
@@ -1148,7 +1148,7 @@
 
 
 
-=head3 C<APR::FPROT_WREAD>
+=head3 C<APR::Const::FPROT_WREAD>
 
 Read by others
 
@@ -1161,7 +1161,7 @@
 
 
 
-=head3 C<APR::FPROT_WSTICKY>
+=head3 C<APR::Const::FPROT_WSTICKY>
 
 Sticky bit
 
@@ -1174,7 +1174,7 @@
 
 
 
-=head3 C<APR::FPROT_WWRITE>
+=head3 C<APR::Const::FPROT_WWRITE>
 
 Write by others
 
@@ -1203,7 +1203,7 @@
 
 
 
-=head3 C<APR::FILETYPE_BLK>
+=head3 C<APR::Const::FILETYPE_BLK>
 
 a file is a block device
 
@@ -1218,7 +1218,7 @@
 
 
 
-=head3 C<APR::FILETYPE_CHR>
+=head3 C<APR::Const::FILETYPE_CHR>
 
 a file is a character device
 
@@ -1232,7 +1232,7 @@
 
 
 
-=head3 C<APR::FILETYPE_DIR>
+=head3 C<APR::Const::FILETYPE_DIR>
 
 a file is a directory
 
@@ -1246,7 +1246,7 @@
 
 
 
-=head3 C<APR::FILETYPE_LNK>
+=head3 C<APR::Const::FILETYPE_LNK>
 
 a file is a symbolic link
 
@@ -1260,7 +1260,7 @@
 
 
 
-=head3 C<APR::FILETYPE_NOFILE>
+=head3 C<APR::Const::FILETYPE_NOFILE>
 
 the file type is undedetermined.
 
@@ -1274,7 +1274,7 @@
 
 
 
-=head3 C<APR::FILETYPE_PIPE>
+=head3 C<APR::Const::FILETYPE_PIPE>
 
 a file is a FIFO or a pipe.
 
@@ -1288,7 +1288,7 @@
 
 
 
-=head3 C<APR::FILETYPE_REG>
+=head3 C<APR::Const::FILETYPE_REG>
 
 a file is a regular file.
 
@@ -1302,7 +1302,7 @@
 
 
 
-=head3 C<APR::FILETYPE_SOCK>
+=head3 C<APR::Const::FILETYPE_SOCK>
 
 a file is a [unix domain] socket.
 
@@ -1316,7 +1316,7 @@
 
 
 
-=head3 C<APR::FILETYPE_UNKFILE>
+=head3 C<APR::Const::FILETYPE_UNKFILE>
 
 a file is of some other unknown type or the type cannot be determined.
 
@@ -1346,7 +1346,7 @@
 
 
 
-=head3 C<APR::FINFO_ATIME>
+=head3 C<APR::Const::FINFO_ATIME>
 
 Access Time
 
@@ -1360,7 +1360,7 @@
 
 
 
-=head3 C<APR::FINFO_CSIZE>
+=head3 C<APR::Const::FINFO_CSIZE>
 
 Storage size consumed by the file
 
@@ -1374,7 +1374,7 @@
 
 
 
-=head3 C<APR::FINFO_CTIME>
+=head3 C<APR::Const::FINFO_CTIME>
 
 Creation Time
 
@@ -1388,7 +1388,7 @@
 
 
 
-=head3 C<APR::FINFO_DEV>
+=head3 C<APR::Const::FINFO_DEV>
 
 Device
 
@@ -1402,7 +1402,7 @@
 
 
 
-=head3 C<APR::FINFO_DIRENT>
+=head3 C<APR::Const::FINFO_DIRENT>
 
 an atomic unix apr_dir_read()
 
@@ -1416,7 +1416,7 @@
 
 
 
-=head3 C<APR::FINFO_GPROT>
+=head3 C<APR::Const::FINFO_GPROT>
 
 Group protection bits
 
@@ -1430,7 +1430,7 @@
 
 
 
-=head3 C<APR::FINFO_GROUP>
+=head3 C<APR::Const::FINFO_GROUP>
 
 Group id
 
@@ -1444,7 +1444,7 @@
 
 
 
-=head3 C<APR::FINFO_ICASE>
+=head3 C<APR::Const::FINFO_ICASE>
 
 whether device is case insensitive
 
@@ -1458,7 +1458,7 @@
 
 
 
-=head3 C<APR::FINFO_IDENT>
+=head3 C<APR::Const::FINFO_IDENT>
 
 device and inode
 
@@ -1472,7 +1472,7 @@
 
 
 
-=head3 C<APR::FINFO_INODE>
+=head3 C<APR::Const::FINFO_INODE>
 
 Inode
 
@@ -1486,7 +1486,7 @@
 
 
 
-=head3 C<APR::FINFO_LINK>
+=head3 C<APR::Const::FINFO_LINK>
 
 Stat the link not the file itself if it is a link
 
@@ -1500,7 +1500,7 @@
 
 
 
-=head3 C<APR::FINFO_MIN>
+=head3 C<APR::Const::FINFO_MIN>
 
 type, mtime, ctime, atime, size
 
@@ -1514,7 +1514,7 @@
 
 
 
-=head3 C<APR::FINFO_MTIME>
+=head3 C<APR::Const::FINFO_MTIME>
 
 Modification Time
 
@@ -1528,7 +1528,7 @@
 
 
 
-=head3 C<APR::FINFO_NAME>
+=head3 C<APR::Const::FINFO_NAME>
 
 name in proper case
 
@@ -1542,7 +1542,7 @@
 
 
 
-=head3 C<APR::FINFO_NLINK>
+=head3 C<APR::Const::FINFO_NLINK>
 
 Number of links
 
@@ -1556,7 +1556,7 @@
 
 
 
-=head3 C<APR::FINFO_NORM>
+=head3 C<APR::Const::FINFO_NORM>
 
 All fields provided by an atomic unix apr_stat()
 
@@ -1570,7 +1570,7 @@
 
 
 
-=head3 C<APR::FINFO_OWNER>
+=head3 C<APR::Const::FINFO_OWNER>
 
 user and group
 
@@ -1584,7 +1584,7 @@
 
 
 
-=head3 C<APR::FINFO_PROT>
+=head3 C<APR::Const::FINFO_PROT>
 
 all protections
 
@@ -1598,7 +1598,7 @@
 
 
 
-=head3 C<APR::FINFO_SIZE>
+=head3 C<APR::Const::FINFO_SIZE>
 
 Size of the file
 
@@ -1612,7 +1612,7 @@
 
 
 
-=head3 C<APR::FINFO_TYPE>
+=head3 C<APR::Const::FINFO_TYPE>
 
 Type
 
@@ -1626,7 +1626,7 @@
 
 
 
-=head3 C<APR::FINFO_UPROT>
+=head3 C<APR::Const::FINFO_UPROT>
 
 User protection bits
 
@@ -1640,7 +1640,7 @@
 
 
 
-=head3 C<APR::FINFO_USER>
+=head3 C<APR::Const::FINFO_USER>
 
 User id
 
@@ -1654,7 +1654,7 @@
 
 
 
-=head3 C<APR::FINFO_WPROT>
+=head3 C<APR::Const::FINFO_WPROT>
 
 World protection bits
 
@@ -1681,7 +1681,7 @@
 
 
 
-=head3 C<APR::FLOCK_EXCLUSIVE>
+=head3 C<APR::Const::FLOCK_EXCLUSIVE>
 
 =over
 
@@ -1693,7 +1693,7 @@
 
 
 
-=head3 C<APR::FLOCK_NONBLOCK>
+=head3 C<APR::Const::FLOCK_NONBLOCK>
 
 =over
 
@@ -1705,7 +1705,7 @@
 
 
 
-=head3 C<APR::FLOCK_SHARED>
+=head3 C<APR::Const::FLOCK_SHARED>
 
 =over
 
@@ -1717,7 +1717,7 @@
 
 
 
-=head3 C<APR::FLOCK_TYPEMASK>
+=head3 C<APR::Const::FLOCK_TYPEMASK>
 
 =over
 
@@ -1738,7 +1738,7 @@
 
 
 
-=head3 C<APR::HOOK_FIRST>
+=head3 C<APR::Const::HOOK_FIRST>
 
 =over
 
@@ -1750,7 +1750,7 @@
 
 
 
-=head3 C<APR::HOOK_LAST>
+=head3 C<APR::Const::HOOK_LAST>
 
 =over
 
@@ -1762,7 +1762,7 @@
 
 
 
-=head3 C<APR::HOOK_MIDDLE>
+=head3 C<APR::Const::HOOK_MIDDLE>
 
 =over
 
@@ -1774,7 +1774,7 @@
 
 
 
-=head3 C<APR::HOOK_REALLY_FIRST>
+=head3 C<APR::Const::HOOK_REALLY_FIRST>
 
 =over
 
@@ -1786,7 +1786,7 @@
 
 
 
-=head3 C<APR::HOOK_REALLY_LAST>
+=head3 C<APR::Const::HOOK_REALLY_LAST>
 
 =over
 
@@ -1807,7 +1807,7 @@
 
 
 
-=head3 C<APR::LIMIT_CPU>
+=head3 C<APR::Const::LIMIT_CPU>
 
 =over
 
@@ -1819,7 +1819,7 @@
 
 
 
-=head3 C<APR::LIMIT_MEM>
+=head3 C<APR::Const::LIMIT_MEM>
 
 =over
 
@@ -1831,7 +1831,7 @@
 
 
 
-=head3 C<APR::LIMIT_NOFILE>
+=head3 C<APR::Const::LIMIT_NOFILE>
 
 =over
 
@@ -1843,7 +1843,7 @@
 
 
 
-=head3 C<APR::LIMIT_NPROC>
+=head3 C<APR::Const::LIMIT_NPROC>
 
 =over
 
@@ -1864,7 +1864,7 @@
 
 
 
-=head3 C<APR::LOCK_DEFAULT>
+=head3 C<APR::Const::LOCK_DEFAULT>
 
 =over
 
@@ -1876,7 +1876,7 @@
 
 
 
-=head3 C<APR::LOCK_FCNTL>
+=head3 C<APR::Const::LOCK_FCNTL>
 
 =over
 
@@ -1888,7 +1888,7 @@
 
 
 
-=head3 C<APR::LOCK_FLOCK>
+=head3 C<APR::Const::LOCK_FLOCK>
 
 =over
 
@@ -1900,7 +1900,7 @@
 
 
 
-=head3 C<APR::LOCK_POSIXSEM>
+=head3 C<APR::Const::LOCK_POSIXSEM>
 
 =over
 
@@ -1912,7 +1912,7 @@
 
 
 
-=head3 C<APR::LOCK_PROC_PTHREAD>
+=head3 C<APR::Const::LOCK_PROC_PTHREAD>
 
 =over
 
@@ -1924,7 +1924,7 @@
 
 
 
-=head3 C<APR::LOCK_SYSVSEM>
+=head3 C<APR::Const::LOCK_SYSVSEM>
 
 =over
 
@@ -1946,7 +1946,7 @@
 
 
 
-=head3 C<APR::POLLERR>
+=head3 C<APR::Const::POLLERR>
 
 =over
 
@@ -1959,7 +1959,7 @@
 
 
 
-=head3 C<APR::POLLHUP>
+=head3 C<APR::Const::POLLHUP>
 
 =over
 
@@ -1972,7 +1972,7 @@
 
 
 
-=head3 C<APR::POLLIN>
+=head3 C<APR::Const::POLLIN>
 
 =over
 
@@ -1985,7 +1985,7 @@
 
 
 
-=head3 C<APR::POLLNVAL>
+=head3 C<APR::Const::POLLNVAL>
 
 =over
 
@@ -1998,7 +1998,7 @@
 
 
 
-=head3 C<APR::POLLOUT>
+=head3 C<APR::Const::POLLOUT>
 
 =over
 
@@ -2012,7 +2012,7 @@
 
 
 
-=head3 C<APR::POLLPRI>
+=head3 C<APR::Const::POLLPRI>
 
 =over
 
@@ -2043,7 +2043,7 @@
 
 
 
-=head3 C<APR::BLOCK_READ>
+=head3 C<APR::Const::BLOCK_READ>
 
 =over
 
@@ -2057,7 +2057,7 @@
 
 
 
-=head3 C<APR::NONBLOCK_READ>
+=head3 C<APR::Const::NONBLOCK_READ>
 
 =over
 
@@ -2086,7 +2086,7 @@
 
 
 
-=head3 C<APR::SHUTDOWN_READ>
+=head3 C<APR::Const::SHUTDOWN_READ>
 
 =over
 
@@ -2098,7 +2098,7 @@
 
 
 
-=head3 C<APR::SHUTDOWN_READWRITE>
+=head3 C<APR::Const::SHUTDOWN_READWRITE>
 
 =over
 
@@ -2110,7 +2110,7 @@
 
 
 
-=head3 C<APR::SHUTDOWN_WRITE>
+=head3 C<APR::Const::SHUTDOWN_WRITE>
 
 =over
 
@@ -2137,7 +2137,7 @@
 
 
 
-=head3 C<APR::SO_DEBUG>
+=head3 C<APR::Const::SO_DEBUG>
 
 Possible values:
 
@@ -2154,7 +2154,7 @@
 
 
 
-=head3 C<APR::SO_DISCONNECTED>
+=head3 C<APR::Const::SO_DISCONNECTED>
 
 Queries the disconnected state of the socket.  (Currently only used on
 Windows)
@@ -2174,7 +2174,7 @@
 
 
 
-=head3 C<APR::SO_KEEPALIVE>
+=head3 C<APR::Const::SO_KEEPALIVE>
 
 Keeps connections active
 
@@ -2195,7 +2195,7 @@
 
 
 
-=head3 C<APR::SO_LINGER>
+=head3 C<APR::Const::SO_LINGER>
 
 Lingers on close if data is present
 
@@ -2211,7 +2211,7 @@
 
 
 
-=head3 C<APR::SO_NONBLOCK>
+=head3 C<APR::Const::SO_NONBLOCK>
 
 Turns blocking IO mode on/off for socket.
 
@@ -2225,8 +2225,8 @@
   use APR::Socket ();
   use APR::Const    -compile => qw(SO_NONBLOCK);
   ...
-  if ($socket->opt_get(APR::SO_NONBLOCK)) {
-      $socket->opt_set(APR::SO_NONBLOCK => 0);
+  if ($socket->opt_get(APR::Const::SO_NONBLOCK)) {
+      $socket->opt_set(APR::Const::SO_NONBLOCK => 0);
   }
 
 You don't have to query for this option, before setting it. It was
@@ -2246,7 +2246,7 @@
 
 
 
-=head3 C<APR::SO_RCVBUF>
+=head3 C<APR::Const::SO_RCVBUF>
 
 Controls the C<ReceiveBufferSize> setting
 
@@ -2267,7 +2267,7 @@
 
 
 
-=head3 C<APR::SO_REUSEADDR>
+=head3 C<APR::Const::SO_REUSEADDR>
 
 The rules used in validating addresses supplied to bind should allow
 reuse of local addresses.
@@ -2289,7 +2289,7 @@
 
 
 
-=head3 C<APR::SO_SNDBUF>
+=head3 C<APR::Const::SO_SNDBUF>
 
 Controls the C<SendBufferSize> setting
 
@@ -2320,7 +2320,7 @@
 
 
 
-=head3 C<APR::TIMEUP>
+=head3 C<APR::Const::TIMEUP>
 
 The operation did not finish before the timeout.
 
@@ -2353,7 +2353,7 @@
 
 
 
-=head3 C<APR::OVERLAP_TABLES_MERGE>
+=head3 C<APR::Const::OVERLAP_TABLES_MERGE>
 
 =over
 
@@ -2368,7 +2368,7 @@
 
 
 
-=head3 C<APR::OVERLAP_TABLES_SET>
+=head3 C<APR::Const::OVERLAP_TABLES_SET>
 
 =over
 
@@ -2392,7 +2392,7 @@
 
 
 
-=head3 C<APR::URI_ACAP_DEFAULT_PORT>
+=head3 C<APR::Const::URI_ACAP_DEFAULT_PORT>
 
 =over
 
@@ -2404,7 +2404,7 @@
 
 
 
-=head3 C<APR::URI_FTP_DEFAULT_PORT>
+=head3 C<APR::Const::URI_FTP_DEFAULT_PORT>
 
 =over
 
@@ -2416,7 +2416,7 @@
 
 
 
-=head3 C<APR::URI_GOPHER_DEFAULT_PORT>
+=head3 C<APR::Const::URI_GOPHER_DEFAULT_PORT>
 
 =over
 
@@ -2428,7 +2428,7 @@
 
 
 
-=head3 C<APR::URI_HTTPS_DEFAULT_PORT>
+=head3 C<APR::Const::URI_HTTPS_DEFAULT_PORT>
 
 =over
 
@@ -2441,7 +2441,7 @@
 
 
 
-=head3 C<APR::URI_HTTP_DEFAULT_PORT>
+=head3 C<APR::Const::URI_HTTP_DEFAULT_PORT>
 
 =over
 
@@ -2454,7 +2454,7 @@
 
 
 
-=head3 C<APR::URI_IMAP_DEFAULT_PORT>
+=head3 C<APR::Const::URI_IMAP_DEFAULT_PORT>
 
 =over
 
@@ -2466,7 +2466,7 @@
 
 
 
-=head3 C<APR::URI_LDAP_DEFAULT_PORT>
+=head3 C<APR::Const::URI_LDAP_DEFAULT_PORT>
 
 =over
 
@@ -2479,7 +2479,7 @@
 
 
 
-=head3 C<APR::URI_NFS_DEFAULT_PORT>
+=head3 C<APR::Const::URI_NFS_DEFAULT_PORT>
 
 =over
 
@@ -2492,7 +2492,7 @@
 
 
 
-=head3 C<APR::URI_NNTP_DEFAULT_PORT>
+=head3 C<APR::Const::URI_NNTP_DEFAULT_PORT>
 
 =over
 
@@ -2505,7 +2505,7 @@
 
 
 
-=head3 C<APR::URI_POP_DEFAULT_PORT>
+=head3 C<APR::Const::URI_POP_DEFAULT_PORT>
 
 =over
 
@@ -2518,7 +2518,7 @@
 
 
 
-=head3 C<APR::URI_PROSPERO_DEFAULT_PORT>
+=head3 C<APR::Const::URI_PROSPERO_DEFAULT_PORT>
 
 =over
 
@@ -2531,7 +2531,7 @@
 
 
 
-=head3 C<APR::URI_RTSP_DEFAULT_PORT>
+=head3 C<APR::Const::URI_RTSP_DEFAULT_PORT>
 
 =over
 
@@ -2545,7 +2545,7 @@
 
 
 
-=head3 C<APR::URI_SIP_DEFAULT_PORT>
+=head3 C<APR::Const::URI_SIP_DEFAULT_PORT>
 
 =over
 
@@ -2561,7 +2561,7 @@
 
 
 
-=head3 C<APR::URI_SNEWS_DEFAULT_PORT>
+=head3 C<APR::Const::URI_SNEWS_DEFAULT_PORT>
 
 =over
 
@@ -2573,7 +2573,7 @@
 
 
 
-=head3 C<APR::URI_SSH_DEFAULT_PORT>
+=head3 C<APR::Const::URI_SSH_DEFAULT_PORT>
 
 =over
 
@@ -2585,7 +2585,7 @@
 
 
 
-=head3 C<APR::URI_TELNET_DEFAULT_PORT>
+=head3 C<APR::Const::URI_TELNET_DEFAULT_PORT>
 
 =over
 
@@ -2599,7 +2599,7 @@
 
 
 
-=head3 C<APR::URI_TIP_DEFAULT_PORT>
+=head3 C<APR::Const::URI_TIP_DEFAULT_PORT>
 
 =over
 
@@ -2614,7 +2614,7 @@
 
 
 
-=head3 C<APR::URI_UNP_OMITPASSWORD>
+=head3 C<APR::Const::URI_UNP_OMITPASSWORD>
 
 =over
 
@@ -2631,7 +2631,7 @@
 
 
 
-=head3 C<APR::URI_UNP_OMITPATHINFO>
+=head3 C<APR::Const::URI_UNP_OMITPATHINFO>
 
 =over
 
@@ -2648,7 +2648,7 @@
 
 
 
-=head3 C<APR::URI_UNP_OMITQUERY>
+=head3 C<APR::Const::URI_UNP_OMITQUERY>
 
 =over
 
@@ -2665,7 +2665,7 @@
 
 
 
-=head3 C<APR::URI_UNP_OMITSITEPART>
+=head3 C<APR::Const::URI_UNP_OMITSITEPART>
 
 =over
 
@@ -2681,7 +2681,7 @@
 
 
 
-=head3 C<APR::URI_UNP_OMITUSER>
+=head3 C<APR::Const::URI_UNP_OMITUSER>
 
 =over
 
@@ -2695,7 +2695,7 @@
 
 
 
-=head3 C<APR::URI_UNP_OMITUSERINFO>
+=head3 C<APR::Const::URI_UNP_OMITUSERINFO>
 
 =over
 
@@ -2710,7 +2710,7 @@
 
 
 
-=head3 C<APR::URI_UNP_REVEALPASSWORD>
+=head3 C<APR::Const::URI_UNP_REVEALPASSWORD>
 
 =over
 
@@ -2726,7 +2726,7 @@
 
 
 
-=head3 C<APR::URI_WAIS_DEFAULT_PORT>
+=head3 C<APR::Const::URI_WAIS_DEFAULT_PORT>
 
 =over
 

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/APR/Error.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/APR/Error.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/APR/Error.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/APR/Error.pod Mon Apr  4 17:49:16 2005
@@ -102,7 +102,7 @@
   my $tries = 0;
   RETRY: my $rlen = eval { $sock->recv($buff, 1024) };
   if ($@) {
-      die $@ unless ref $@ && $@ == APR::TIMEUP;
+      die $@ unless ref $@ && $@ == APR::Const::TIMEUP;
       goto RETRY if $tries++ < 3;
   }
   warn "read $rlen bytes\n";
@@ -119,7 +119,7 @@
   my $tries = 0;
   RETRY: my $rlen = eval { $sock->recv($buff, 1024) };
   if ($@) {
-      die $@ unless ref $@ && $@ == APR::TIMEUP;
+      die $@ unless ref $@ && $@ == APR::Const::TIMEUP;
       if ($tries++ < 3) {
           # sleep 250msec
           select undef, undef, undef, 0.25;
@@ -177,7 +177,7 @@
 
   my $rc = $c->input_filters->get_brigade($bb_in,
                                           Apache2::Const::MODE_GETLINE);
-  if ($rc != APR::SUCCESS && $rc != APR::EOF) {
+  if ($rc != APR::Const::SUCCESS && $rc != APR::Const::EOF) {
       my $error = APR::Error::strerror($rc);
       die "get_brigade error: $rc: $error\n";
   }

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/APR/Finfo.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/APR/Finfo.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/APR/Finfo.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/APR/Finfo.pod Mon Apr  4 17:49:16 2005
@@ -7,7 +7,7 @@
 
   use APR::Finfo ();
   use APR::Const -compile => qw(FINFO_NORM);
-  my $finfo = APR::Finfo::stat("/tmp/test", APR::FINFO_NORM, $pool);
+  my $finfo = APR::Finfo::stat("/tmp/test", APR::Const::FINFO_NORM, $pool);
   
   $device = $finfo->device;     # (stat $file)[0]
   $inode  = $finfo->inode;      # (stat $file)[1]
@@ -204,12 +204,12 @@
   use APR::Finfo;
   use APR::Const -compile => qw(FILETYPE_DIR FILETYPE_REG FINFO_NORM);
   my $pool  = APR::Pool->new();
-  my $finfo = APR::Finfo::stat("/tmp", APR::FINFO_NORM, $pool);
+  my $finfo = APR::Finfo::stat("/tmp", APR::Const::FINFO_NORM, $pool);
   my $finfo = $finfo->filetype;
-  if ($finfo == APR::FILETYPE_REG) {
+  if ($finfo == APR::Const::FILETYPE_REG) {
       print "regular file";
   }
-  elsif ($finfo == APR::FILETYPE_REG) {
+  elsif ($finfo == APR::Const::FILETYPE_REG) {
       print "directory";
   }
   else {
@@ -467,11 +467,11 @@
 
 Notice that you can also use the constants that already combine
 several elements in one. For example
-C<L<APR::FINFO_PROT|docs::2.0::api::APR::Const/C_APR__FINFO_PROT_>>
+C<L<APR::Const::FINFO_PROT|docs::2.0::api::APR::Const/C_APR__FINFO_PROT_>>
 asks for all protection bits,
-C<L<APR::FINFO_MIN|docs::2.0::api::APR::Const/C_APR__FINFO_MIN_>> asks
+C<L<APR::Const::FINFO_MIN|docs::2.0::api::APR::Const/C_APR__FINFO_MIN_>> asks
 for the following fields: type, mtime, ctime, atime, size and
-C<L<APR::FINFO_NORM|docs::2.0::api::APR::Const/C_APR__FINFO_NORM_>>
+C<L<APR::Const::FINFO_NORM|docs::2.0::api::APR::Const/C_APR__FINFO_NORM_>>
 asks for all atomic unix C<apr_stat()> fields (similar to perl's
 C<stat()>).
 
@@ -492,7 +492,7 @@
   use APR::Finfo ();
   use APR::Const -compile => qw(FINFO_NORM);
   my $pool = APR::Pool->new();
-  my $finfo = APR::Finfo::stat("/tmp/test", APR::FINFO_NORM, $pool);
+  my $finfo = APR::Finfo::stat("/tmp/test", APR::Const::FINFO_NORM, $pool);
 
 
 

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/APR/Socket.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/APR/Socket.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/APR/Socket.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/APR/Socket.pod Mon Apr  4 17:49:16 2005
@@ -12,8 +12,8 @@
   ### set the socket to the blocking mode if it isn't already
   ### and read in the loop and echo it back
   use APR::Const -compile => qw(SO_NONBLOCK);
-  if ($sock->opt_get(APR::SO_NONBLOCK)) {
-      $sock->opt_set(APR::SO_NONBLOCK => 0);
+  if ($sock->opt_get(APR::Const::SO_NONBLOCK)) {
+      $sock->opt_set(APR::Const::SO_NONBLOCK => 0);
   }
   # read from/write to the socket (w/o handling possible failures)
   my $wanted = 1024;
@@ -32,7 +32,7 @@
   my $wanted = 1024;
   my $buff;
   my $rlen = eval { $sock->recv($buff, $wanted) };
-  if ($@ && ref $@ && $@ == APR::TIMEUP) {
+  if ($@ && ref $@ && $@ == APR::Const::TIMEUP) {
       # timeout, do something, e.g.
       warn "timed out, will try again later";
   }
@@ -42,9 +42,9 @@
   }
 
   # non-blocking io poll
-  $sock->opt_set(APR::SO_NONBLOCK => 1);
-  my $rc = $sock->poll($c->pool, 1_000_000, APR::POLLIN);
-  if ($rc == APR::SUCCESS) {
+  $sock->opt_set(APR::Const::SO_NONBLOCK => 1);
+  my $rc = $sock->poll($c->pool, 1_000_000, APR::Const::POLLIN);
+  if ($rc == APR::Const::SUCCESS) {
       # read the data
   }
   else {
@@ -180,17 +180,17 @@
 The events for which to wait.
 
 For example use
-C<L<APR::POLLIN|docs::2.0::api::APR::Const/C_APR__POLLIN_>> to wait
+C<L<APR::Const::POLLIN|docs::2.0::api::APR::Const/C_APR__POLLIN_>> to wait
 for incoming data to be available,
-C<L<APR::POLLOUT|docs::2.0::api::APR::Const/C_APR__POLLOUT_>> to wait
+C<L<APR::Const::POLLOUT|docs::2.0::api::APR::Const/C_APR__POLLOUT_>> to wait
 until it's possible to write data to the socket and
-C<L<APR::POLLPRI|docs::2.0::api::APR::Const/C_APR__POLLPRI_>> to wait
+C<L<APR::Const::POLLPRI|docs::2.0::api::APR::Const/C_APR__POLLPRI_>> to wait
 for priority data to become available.
 
 =item ret: C<$rc>
 ( C<L<APR::Const constant|docs::2.0::api::APR::Const>> )
 
-If C<APR::SUCCESS> is received than the polling was successful. If not
+If C<APR::Const::SUCCESS> is received than the polling was successful. If not
 -- the error code is returned, which can be converted to the error
 string with help of
 C<L<APR::Error::strerror|docs::2.0::api::APR::Error/C_strerror_>>.
@@ -208,14 +208,14 @@
   
   use APR::Const -compile => qw(SO_NONBLOCK POLLIN SUCCESS TIMEUP);
   
-  $sock->opt_set(APR::SO_NONBLOCK => 1);
+  $sock->opt_set(APR::Const::SO_NONBLOCK => 1);
   
-  my $rc = $sock->poll($c->pool, 1_000_000, APR::POLLIN);
-  if ($rc == APR::SUCCESS) {
+  my $rc = $sock->poll($c->pool, 1_000_000, APR::Const::POLLIN);
+  if ($rc == APR::Const::SUCCESS) {
       # Data is waiting on the socket to be read.
       # $sock->recv(my $buf, BUFF_LEN)
   }
-  elsif ($rc == APR::TIMEUP) {
+  elsif ($rc == APR::Const::TIMEUP) {
       # One second elapsed and still there is no data waiting to be
       # read. for example could try again.
   }
@@ -263,18 +263,18 @@
 
 If you get the C<'(11) Resource temporarily unavailable'> error
 (exception
-C<L<APR::EAGAIN|docs::2.0::api::APR::Const/C_APR__EAGAIN_>>), then you
+C<L<APR::Const::EAGAIN|docs::2.0::api::APR::Const/C_APR__EAGAIN_>>), then you
 didn't ensure that the socket is in L<a blocking IO mode|/C_opt_set_>
 before using it.
 
 If timeout was set via C<timeout_set|/C_timeout_set_>, you may need to
-catch the C<L<APR::TIMEUP|docs::2.0::api::APR::Const/C_APR__TIMEUP_>>
+catch the C<L<APR::Const::TIMEUP|docs::2.0::api::APR::Const/C_APR__TIMEUP_>>
 exception. For example:
 
   use APR::Const -compile => qw(TIMEUP);
   my $buffer;
   eval { $sock->recv($buffer, $wanted) };
-  if ($@ && $@ == APR::TIMEUP) {
+  if ($@ && $@ == APR::Const::TIMEUP) {
       # timeout, do something, e.g.
   }
 
@@ -289,7 +289,7 @@
   use APR::Const -compile => qw(ECONNABORTED);
   my $buffer;
   eval { $sock->recv($buffer, $wanted) };
-  if ($@ == APR::ECONNABORTED) {
+  if ($@ == APR::Const::ECONNABORTED) {
       # ignore it or deal with it
   }
 
@@ -304,8 +304,8 @@
   
   # set the socket to the blocking mode if it isn't already
   use APR::Const -compile => qw(SO_NONBLOCK);
-  if ($sock->opt_get(APR::SO_NONBLOCK)) {
-      $sock->opt_set(APR::SO_NONBLOCK => 0);
+  if ($sock->opt_get(APR::Const::SO_NONBLOCK)) {
+      $sock->opt_set(APR::Const::SO_NONBLOCK => 0);
   }
   # read from/write to the socket (w/o handling possible failures)
   my $wanted = 1024;
@@ -323,7 +323,7 @@
       if ($@) {
           # handle the error, e.g. to ignore aborted connections but
           # rethrow any other errors:
-          if ($@ == APR::ECONNABORTED) {
+          if ($@ == APR::Const::ECONNABORTED) {
               # ignore
               last;
           }
@@ -456,7 +456,7 @@
 =item t E<gt> 0
 
 C<L<send()|/C__send_>> and C<L<recv()|/C__recv_)>> throw
-(C<L<APR::TIMEUP|docs::2.0::api::APR::Const/C__APR__TIMEUP_>>
+(C<L<APR::Const::TIMEUP|docs::2.0::api::APR::Const/C__APR__TIMEUP_>>
 exception) if specified time elapses with no data sent or received.
 
 Notice that the positive value is in micro seconds. So if you want to

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/APR/Table.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/APR/Table.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/APR/Table.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/APR/Table.pod Mon Apr  4 17:49:16 2005
@@ -24,9 +24,9 @@
   
   use APR::Const -compile qw(:table);
   $table_overlay = $table_base->overlay($table_overlay, $pool);
-  $table_overlay->compress(APR::OVERLAP_TABLES_MERGE);
+  $table_overlay->compress(APR::Const::OVERLAP_TABLES_MERGE);
   
-  $table_a->overlap($table_b, APR::OVERLAP_TABLES_SET);
+  $table_a->overlap($table_b, APR::Const::OVERLAP_TABLES_SET);
   
   $table->do(sub {print "key $_[0], value $_[1]\n"}, @valid_keys);
   
@@ -160,8 +160,8 @@
 =item arg1: C<$flags>
 (C<L<APR::Const constant|docs::2.0::api::APR::Const>>)
 
-  APR::OVERLAP_TABLES_MERGE -- to merge
-  APR::OVERLAP_TABLES_SET   -- to overwrite
+  APR::Const::OVERLAP_TABLES_MERGE -- to merge
+  APR::Const::OVERLAP_TABLES_SET   -- to overwrite
 
 =item ret: no return value
 
@@ -174,12 +174,12 @@
 entry.  The flattening behavior is controlled by the (mandatory)
 C<$flags> argument.
 
-When C<$flags> == C<APR::OVERLAP_TABLES_SET>, each key will be set to
+When C<$flags> == C<APR::Const::OVERLAP_TABLES_SET>, each key will be set to
 the last value seen for that key.  For example, given key/value pairs
 'foo =E<gt> bar' and 'foo =E<gt> baz', 'foo' would have a final value
 of 'baz' after compression -- the 'bar' value would be lost.
 
-When C<$flags> == C<APR::OVERLAP_TABLES_MERGE>, multiple values for
+When C<$flags> == C<APR::Const::OVERLAP_TABLES_MERGE>, multiple values for
 the same key are flattened into a comma-separated list.  Given
 key/value pairs 'foo =E<gt> bar' and 'foo =E<gt> baz', 'foo' would
 have a final value of 'bar, baz' after compression.
@@ -199,7 +199,7 @@
 
 =over
 
-=item * C<APR::OVERLAP_TABLES_SET>
+=item * C<APR::Const::OVERLAP_TABLES_SET>
 
 Start with table C<$table>:
 
@@ -218,9 +218,9 @@
   $table->add(foo => 'two');
   $table->add(foo => 'three');
 
-Now compress it using C<APR::OVERLAP_TABLES_SET>:
+Now compress it using C<APR::Const::OVERLAP_TABLES_SET>:
 
-  $table->compress(APR::OVERLAP_TABLES_SET);
+  $table->compress(APR::Const::OVERLAP_TABLES_SET);
 
 Now table C<$table> contains:
 
@@ -233,7 +233,7 @@
 
 
 
-=item * C<APR::OVERLAP_TABLES_MERGE>
+=item * C<APR::Const::OVERLAP_TABLES_MERGE>
 
 Start with table C<$table>:
 
@@ -243,9 +243,9 @@
   bar => "beer"
 
 as in the previous example, now compress it using
-C<APR::OVERLAP_TABLES_MERGE>:
+C<APR::Const::OVERLAP_TABLES_MERGE>:
 
-  $table->compress(APR::OVERLAP_TABLES_MERGE);
+  $table->compress(APR::Const::OVERLAP_TABLES_MERGE);
 
 Now table C<$table> contains:
 
@@ -571,10 +571,10 @@
 
 How to add the table to table C<$table_a>.
 
-When C<$flags> == C<APR::OVERLAP_TABLES_SET>, if another element
+When C<$flags> == C<APR::Const::OVERLAP_TABLES_SET>, if another element
 already exists with the same key, this will over-write the old data.
 
-When C<$flags> == C<APR::OVERLAP_TABLES_MERGE>, the key/value pair
+When C<$flags> == C<APR::Const::OVERLAP_TABLES_MERGE>, the key/value pair
 from C<$table_b> is added, regardless of whether there is another
 element with the same key in C<$table_a>.
 
@@ -622,7 +622,7 @@
 
 =over
 
-=item * C<APR::OVERLAP_TABLES_SET>
+=item * C<APR::Const::OVERLAP_TABLES_SET>
 
 Start with table C<$base>:
 
@@ -646,9 +646,9 @@
   
   $add->set(foo => 'three');
 
-Now overlap using C<APR::OVERLAP_TABLES_SET>:
+Now overlap using C<APR::Const::OVERLAP_TABLES_SET>:
 
-  $base->overlap($add, APR::OVERLAP_TABLES_SET);
+  $base->overlap($add, APR::Const::OVERLAP_TABLES_SET);
 
 Now table C<$add> is unmodified and table C<$base> contains:
 
@@ -658,10 +658,10 @@
 The value from table C<add> has overwritten all previous values for
 the same key both had (I<foo>).  This is the same as doing
 C<L<overlay()|/C_overlay_>> followed by C<L<compress()|/C_compress_>>
-with C<APR::OVERLAP_TABLES_SET>.
+with C<APR::Const::OVERLAP_TABLES_SET>.
 
 
-=item * C<APR::OVERLAP_TABLES_MERGE>
+=item * C<APR::Const::OVERLAP_TABLES_MERGE>
 
 Start with table C<$base>:
 
@@ -685,9 +685,9 @@
   $add->set(foo => 'three');
   $add->set(bar => 'beer');
 
-Now overlap using C<APR::OVERLAP_TABLES_MERGE>:
+Now overlap using C<APR::Const::OVERLAP_TABLES_MERGE>:
 
-  $base->overlap($add, APR::OVERLAP_TABLES_MERGE);
+  $base->overlap($add, APR::Const::OVERLAP_TABLES_MERGE);
 
 Now table C<$add> is unmodified and table C<$base> contains:
 
@@ -696,7 +696,7 @@
 
 Values from both tables for the same key were merged into one
 value. This is the same as doing C<L<overlay()|/C_overlay_>> followed
-by C<L<compress()|/C_compress_>> with C<APR::OVERLAP_TABLES_MERGE>.
+by C<L<compress()|/C_compress_>> with C<APR::Const::OVERLAP_TABLES_MERGE>.
 
 =back
 
@@ -766,9 +766,9 @@
   
   $add->set(foo => 'three');
 
-Now overlay using C<APR::OVERLAP_TABLES_SET>:
+Now overlay using C<APR::Const::OVERLAP_TABLES_SET>:
 
-  my $overlay = $base->overlay($add, APR::OVERLAP_TABLES_SET);
+  my $overlay = $base->overlay($add, APR::Const::OVERLAP_TABLES_SET);
 
 That resulted in a new table C<$overlay> (tables C<add> and C<$base>
 are unmodified) which contains:

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/APR/URI.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/APR/URI.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/APR/URI.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/APR/URI.pod Mon Apr  4 17:49:16 2005
@@ -37,7 +37,7 @@
   
   # get the password field too (by default it's not revealed)
   use APR::Const -compile => qw(URI_UNP_REVEALPASSWORD);
-  print $parsed->unparse(APR::URI_UNP_REVEALPASSWORD);
+  print $parsed->unparse(APR::Const::URI_UNP_REVEALPASSWORD);
   
   # what the default port for the ftp protocol?
   my $ftp_port = APR::URI::port_of_scheme("ftp");
@@ -447,11 +447,11 @@
 =item opt arg1: C<$flags> ( L<the APR::Const :uri
 constants|docs::2.0::api::APR::Const/C__uri_> )
 
-By default the constant C<APR::URI_UNP_OMITPASSWORD> is passed.
+By default the constant C<APR::Const::URI_UNP_OMITPASSWORD> is passed.
 
 If you need to pass more than one flag use unary C<|>, e.g.:
 
-  $flags = APR::URI_UNP_OMITUSER|APR::URI_UNP_OMITPASSWORD;
+  $flags = APR::Const::URI_UNP_OMITUSER|APR::Const::URI_UNP_OMITPASSWORD;
 
 The valid C<flags> constants are listed next
 
@@ -476,31 +476,31 @@
 
 =over 4
 
-=item C<APR::URI_UNP_OMITSITEPART>
+=item C<APR::Const::URI_UNP_OMITSITEPART>
 
 Don't show C<L<scheme|/C_scheme_>>, C<L<user|/C_user_>>,
 C<L<password|/C_password_>>, C<L<hostname|/C_hostname_>> and
 C<L<port|/C_port_>> components (i.e. if you want only the relative
 URI)
 
-=item C<APR::URI_UNP_OMITUSER>
+=item C<APR::Const::URI_UNP_OMITUSER>
 
 Hide the C<L<user|/C_user_>> component
 
-=item C<APR::URI_UNP_OMITPASSWORD>
+=item C<APR::Const::URI_UNP_OMITPASSWORD>
 
 Hide the C<L<password|/C_password_>> component (the default)
 
-=item C<APR::URI_UNP_REVEALPASSWORD>
+=item C<APR::Const::URI_UNP_REVEALPASSWORD>
 
 Reveal the C<L<password|/C_password_>> component
 
-=item C<APR::URI_UNP_OMITPATHINFO>
+=item C<APR::Const::URI_UNP_OMITPATHINFO>
 
 Don't show C<L<path|/C_path_>>, C<L<query|/C_query_>> and
 C<L<fragment|/C_fragment_>> components
 
-=item C<APR::URI_UNP_OMITQUERY>
+=item C<APR::Const::URI_UNP_OMITQUERY>
 
 Don't show C<L<query|/C_query_>> and C<L<fragment|/C_fragment_>>
 components
@@ -510,7 +510,7 @@
 Notice that some flags overlap.
 
 If the optional C<$flags> argument is passed and contains no
-C<APR::URI_UNP_OMITPASSWORD> and no C<APR::URI_UNP_REVEALPASSWORD> --
+C<APR::Const::URI_UNP_OMITPASSWORD> and no C<APR::Const::URI_UNP_REVEALPASSWORD> --
 the C<L<password|/C_password_>> part will be rendered as a literal
 C<"XXXXXXXX"> string.
 
@@ -552,7 +552,7 @@
 Include the C<L<password|/C_password_>> field (by default it's not revealed)
 
   use APR::Const -compile => qw(URI_UNP_REVEALPASSWORD);
-  print $parsed->unparse(APR::URI_UNP_REVEALPASSWORD);
+  print $parsed->unparse(APR::Const::URI_UNP_REVEALPASSWORD);
 
 Prints:
 
@@ -564,9 +564,9 @@
 C<L<query|/C_query_>> and C<L<fragment|/C_fragment_>>:
 
   use APR::Const -compile => qw(URI_UNP_REVEALPASSWORD
-                                APR::URI_UNP_OMITPATHINFO);
+                                APR::Const::URI_UNP_OMITPATHINFO);
   print $parsed->unparse(
-      APR::URI_UNP_REVEALPASSWORD|URI_UNP_OMITPATHINFO);
+      APR::Const::URI_UNP_REVEALPASSWORD|URI_UNP_OMITPATHINFO);
 
 Prints:
 

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Filter.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Filter.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Filter.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Filter.pod Mon Apr  4 17:49:16 2005
@@ -433,16 +433,16 @@
 constant|docs::2.0::api::APR::Const/C__input_mode_>> )
 
 You may ask the reading operation to be blocking:
-C<L<APR::BLOCK_READ|docs::2.0::api::APR::Const/C_APR__BLOCK_READ_>>,
+C<L<APR::Const::BLOCK_READ|docs::2.0::api::APR::Const/C_APR__BLOCK_READ_>>,
 or nonblocking:
-C<L<APR::NONBLOCK_READ|docs::2.0::api::APR::Const/C_APR__NONBLOCK_READ_>>.
+C<L<APR::Const::NONBLOCK_READ|docs::2.0::api::APR::Const/C_APR__NONBLOCK_READ_>>.
 
 If inside the filter handler, you should normally pass the same
 blocking mode argument that was passed to the filter handler (the
 forth argument).
 
 If the argument C<$block> is not passed,
-C<L<APR::BLOCK_READ|docs::2.0::api::APR::Const/C_APR__BLOCK_READ_>> is
+C<L<APR::Const::BLOCK_READ|docs::2.0::api::APR::Const/C_APR__BLOCK_READ_>> is
 used as a default value.
 
 
@@ -462,7 +462,7 @@
 constant|docs::2.0::api::APR::Const>> )
 
 On success,
-C<L<APR::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>> is
+C<L<APR::Const::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>> is
 returned and C<$bb> is populated (see the C<$bb> entry).
 
 In case of a failure -- a failure code is returned, in which case
@@ -472,7 +472,7 @@
 C<Apache2::NOBODY_READ> is returned (META: need to add this constant).
 
 Inside L<protocol handlers|docs::2.0::user::handlers::protocols> the
-return code can also be C<APR::EOF>, which is success as well.
+return code can also be C<APR::Const::EOF>, which is success as well.
 
 
 =item excpt: C<L<APR::Error|docs::2.0::api::APR::Error>>
@@ -484,11 +484,11 @@
 
 mod_perl will do the error checking on your behalf, and if the return
 code is not
-C<L<APR::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>>, an
+C<L<APR::Const::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>>, an
 C<L<APR::Error exception|docs::2.0::api::APR::Error>> will be thrown.
 The only time you want to do the error checking yourself, is when
 return codes besides
-C<L<APR::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>> are
+C<L<APR::Const::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>> are
 considered as successful and you want to manage them by yourself.
 
 =item since: 1.99_15
@@ -551,7 +551,7 @@
       my($f, $bb, $mode, $block, $readbytes) = @_;
       
       my $rc = $f->next->get_brigade($bb, $mode, $block, $readbytes);
-      return $rc unless $rc == APR::SUCCESS;
+      return $rc unless $rc == APR::Const::SUCCESS;
       
       # ... process $bb
       
@@ -621,7 +621,7 @@
 constant|docs::2.0::api::APR::Const>> )
 
 On success,
-C<L<APR::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>> is
+C<L<APR::Const::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>> is
 returned.
 
 In case of a failure -- a failure code is returned, in which case
@@ -661,7 +661,7 @@
       # ... process $bb
   
       my $rc = $f->next->pass_brigade($bb);
-      return $rc unless $rc == APR::SUCCESS;
+      return $rc unless $rc == APR::Const::SUCCESS;
   
       return Apache2::Const::OK;
   }

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Log.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Log.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Log.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Log.pod Mon Apr  4 17:49:16 2005
@@ -18,9 +18,9 @@
   
   $s->log_error("server: log_error");
   $s->log_serror(__FILE__, __LINE__, Apache2::Const::LOG_ERR,
-                 APR::SUCCESS, "log_serror logging at err level");
+                 APR::Const::SUCCESS, "log_serror logging at err level");
   $s->log_serror(Apache2::Log::LOG_MARK, Apache2::Const::LOG_DEBUG,
-                 APR::ENOTIME, "debug print");
+                 APR::Const::ENOTIME, "debug print");
   Apache2::ServerRec->log_error("routine warning");
   
   Apache2::ServerRec::warn("routine warning");
@@ -52,13 +52,13 @@
       $s->log_error("server: log_error");
   
       $r->log_rerror(Apache2::Log::LOG_MARK, Apache2::Const::LOG_DEBUG,
-                     APR::ENOTIME, "in debug");
+                     APR::Const::ENOTIME, "in debug");
   
       $s->log_serror(Apache2::Log::LOG_MARK, Apache2::Const::LOG_INFO,
-                     APR::SUCCESS, "server info");
+                     APR::Const::SUCCESS, "server info");
   
       $s->log_serror(Apache2::Log::LOG_MARK, Apache2::Const::LOG_ERR,
-                     APR::ENOTIME, "fatal error");
+                     APR::Const::ENOTIME, "fatal error");
   
       $r->log_reason("fatal error");
       $r->warn('routine request warning');
@@ -86,12 +86,12 @@
 I<emerg>) will be logged. Therefore this:
 
   $r->log_rerror(Apache2::Log::LOG_MARK, Apache2::Const::LOG_WARNING,
-                 APR::ENOTIME, "warning!");
+                 APR::Const::ENOTIME, "warning!");
 
 will log the message, but this one won't:
 
   $r->log_rerror(Apache2::Log::LOG_MARK, Apache2::Const::LOG_INFO,
-                 APR::ENOTIME, "just an info");
+                 APR::Const::ENOTIME, "just an info");
 
 It will be logged only if the server log level is set to I<info> or
 I<debug>. C<LogLevel> is set in the configuration file, but can be
@@ -153,7 +153,7 @@
 
 
 Make sure to compile the APR status constants before using them. For
-example to compile C<APR::SUCCESS> and all the APR error status
+example to compile C<APR::Const::SUCCESS> and all the APR error status
 constants do:
 
   use APR::Const    -compile => qw(:error SUCCESS);
@@ -189,7 +189,7 @@
   use APR::Const    -compile => qw(ENOTIME);
   $r->log_rerror(Apache2::Log::LOG_MARK,
                  Apache2::Const::LOG_ERR|Apache2::Const::LOG_TOCLIENT,
-                 APR::ENOTIME,
+                 APR::Const::ENOTIME,
                  "request log_rerror");
 
 now the log message can be retrieved via:
@@ -212,7 +212,7 @@
   use APR::Const    -compile => qw(SUCCESS);
   $s->log_serror(Apache2::Log::LOG_MARK,
                  Apache2::Const::LOG_INFO,
-                 APR::SUCCESS,
+                 APR::Const::SUCCESS,
                  "This log message comes with a header");
 
 will print:
@@ -225,7 +225,7 @@
   use APR::Const    -compile => qw(SUCCESS);
   $s->log_serror(Apache2::Log::LOG_MARK,
                  Apache2::Const::LOG_INFO|Apache2::Const::LOG_STARTUP,
-                 APR::SUCCESS,
+                 APR::Const::SUCCESS,
                  "This log message comes with no header");
 
 then the logging will be:
@@ -340,10 +340,10 @@
   use Apache2::Const -compile => qw(:log);
   use APR::Const    -compile => qw(ENOTIME SUCCESS);
   $s->log_serror(Apache2::Log::LOG_MARK, Apache2::Const::LOG_ERR,
-                 APR::SUCCESS, "log_serror logging at err level");
+                 APR::Const::SUCCESS, "log_serror logging at err level");
   
   $s->log_serror(Apache2::Log::LOG_MARK, Apache2::Const::LOG_DEBUG,
-                 APR::ENOTIME, "debug print");
+                 APR::Const::ENOTIME, "debug print");
 
 
 
@@ -358,7 +358,7 @@
 is the same as:
 
   $s->log_error(Apache2::Log::LOG_MARK, Apache2::Const::LOG_WARNING,
-                APR::SUCCESS, @warnings)
+                APR::Const::SUCCESS, @warnings)
 
 =over 4
 
@@ -512,10 +512,10 @@
   use Apache2::Const -compile => qw(:log);
   use APR::Const    -compile => qw(ENOTIME SUCCESS);
   $r->log_rerror(Apache2::Log::LOG_MARK, Apache2::Const::LOG_ERR,
-                 APR::SUCCESS, "log_rerror logging at err level");
+                 APR::Const::SUCCESS, "log_rerror logging at err level");
   
   $r->log_rerror(Apache2::Log::LOG_MARK, Apache2::Const::LOG_DEBUG,
-                 APR::ENOTIME, "debug print");
+                 APR::Const::ENOTIME, "debug print");
 
 
 
@@ -528,7 +528,7 @@
 is the same as:
 
   $r->log_error(Apache2::Log::LOG_MARK, Apache2::Const::LOG_WARNING,
-                APR::SUCCESS, @warnings)
+                APR::Const::SUCCESS, @warnings)
 
 =over 4
 

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestIO.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestIO.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestIO.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestIO.pod Mon Apr  4 17:49:16 2005
@@ -287,7 +287,7 @@
 constant|docs::2.0::api::APR::Const>> )
 
 On success,
-C<L<APR::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>> is
+C<L<APR::Const::SUCCESS|docs::2.0::api::APR::Const/C_APR__SUCCESS_>> is
 returned.
 
 In case of a failure -- a failure code is returned, in which case

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestRec.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestRec.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestRec.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestRec.pod Mon Apr  4 17:49:16 2005
@@ -614,7 +614,7 @@
   use APR::Finfo ();
   use APR::Const -compile => qw(FINFO_NORM);
   $r->filename($newfile);
-  $r->finfo(APR::Finfo::stat($newfile, APR::FINFO_NORM, $r->pool));
+  $r->finfo(APR::Finfo::stat($newfile, APR::Const::FINFO_NORM, $r->pool));
 
 if you don't, Apache will still try to use the previously cached
 information about the previously set value of the filename.
@@ -681,7 +681,7 @@
   use APR::Finfo ();
   use APR::Const -compile => qw(FINFO_NORM);
   
-  my $finfo = APR::Finfo::stat(__FILE__, APR::FINFO_NORM, $r->pool);
+  my $finfo = APR::Finfo::stat(__FILE__, APR::Const::FINFO_NORM, $r->pool);
   $r->finfo($finfo);
 
 =back
@@ -898,7 +898,7 @@
       my $seen_eos = 0;
       do {
           $r->input_filters->get_brigade($bb, Apache2::Const::MODE_READBYTES,
-                                         APR::BLOCK_READ, IOBUFSIZE);
+                                         APR::Const::BLOCK_READ, IOBUFSIZE);
   
           for (my $b = $bb->first; $b; $b = $bb->next($b)) {
               if ($b->is_eos) {

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?view=diff&r1=160121&r2=160122
==============================================================================
--- 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 Mon Apr  4 17:49:16 2005
@@ -1079,9 +1079,9 @@
 =item excpt: C<L<APR::Error|docs::2.0::api::APR::Error>>
 
 Possible error codes could be:
-C<L<APR::EACCES|docs::2.0::api::APR::Const/C_APR__EACCES_>>
+C<L<APR::Const::EACCES|docs::2.0::api::APR::Const/C_APR__EACCES_>>
 (permission problems),
-C<L<APR::ENOENT|docs::2.0::api::APR::Const/C_APR__ENOENT_>> (file not
+C<L<APR::Const::ENOENT|docs::2.0::api::APR::Const/C_APR__ENOENT_>> (file not
 found) and others.
 
 =item since: 1.99_22

Modified: perl/modperl/docs/trunk/src/docs/2.0/user/handlers/filters.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/user/handlers/filters.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/user/handlers/filters.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/user/handlers/filters.pod Mon Apr  4 17:49:16 2005
@@ -537,7 +537,7 @@
       my ($f, $bb, $mode, $block, $readbytes) = @_;
   
       my $rv = $f->next->get_brigade($bb, $mode, $block, $readbytes);
-      return $rv unless $rv == APR::SUCCESS;
+      return $rv unless $rv == APR::Const::SUCCESS;
   
       return Apache2::Const::OK;
   }
@@ -604,7 +604,7 @@
       my ($f, $bb) = @_;
   
       my $rv = $f->next->pass_brigade($bb);
-      return $rv unless $rv == APR::SUCCESS;
+      return $rv unless $rv == APR::Const::SUCCESS;
   
       return Apache2::Const::OK;
   }
@@ -1192,7 +1192,7 @@
       my $seen_eos = 0;
       do {
           $r->input_filters->get_brigade($bb, Apache2::Const::MODE_READBYTES,
-                                         APR::BLOCK_READ, IOBUFSIZE);
+                                         APR::Const::BLOCK_READ, IOBUFSIZE);
   
           for (my $b = $bb->first; $b; $b = $bb->next($b)) {
               if ($b->is_eos) {
@@ -1268,14 +1268,14 @@
       if (defined $mode) {
           # input filter
           my $rv = $f->next->get_brigade($bb, $mode, $block, $readbytes);
-          return $rv unless $rv == APR::SUCCESS;
+          return $rv unless $rv == APR::Const::SUCCESS;
           bb_dump($type, $stream, $bb);
       }
       else {
           # output filter
           bb_dump($type, $stream, $bb);
           my $rv = $f->next->pass_brigade($bb);
-          return $rv unless $rv == APR::SUCCESS;
+          return $rv unless $rv == APR::Const::SUCCESS;
       }
   
       return Apache2::Const::OK;
@@ -1570,7 +1570,7 @@
       return Apache2::Const::DECLINED if $f->ctx;
   
       my $rv = $f->next->get_brigade($bb, $mode, $block, $readbytes);
-      return $rv unless $rv == APR::SUCCESS;
+      return $rv unless $rv == APR::Const::SUCCESS;
   
       for (my $b = $bb->first; $b; $b = $bb->next($b)) {
           $b->read(my $data);
@@ -1644,7 +1644,7 @@
 filter could do:
 
     my $rv = $f->next->get_brigade($bb, $mode, $block, $readbytes);
-    return $rv unless $rv == APR::SUCCESS;
+    return $rv unless $rv == APR::Const::SUCCESS;
     return Apache2::Const::OK if $f->ctx;
 
 but this is a bit less efficient.
@@ -1800,7 +1800,7 @@
       my $c = $f->c;
       my $bb_ctx = APR::Brigade->new($c->pool, $c->bucket_alloc);
       my $rv = $f->next->get_brigade($bb_ctx, $mode, $block, $readbytes);
-      return $rv unless $rv == APR::SUCCESS;
+      return $rv unless $rv == APR::Const::SUCCESS;
   
       while (!$bb_ctx->is_empty) {
           my $b = $bb_ctx->first;
@@ -2170,7 +2170,7 @@
       }
   
       my $rv = $f->next->pass_brigade($bb_ctx);
-      return $rv unless $rv == APR::SUCCESS;
+      return $rv unless $rv == APR::Const::SUCCESS;
   
       Apache2::Const::OK;
   }
@@ -2337,7 +2337,7 @@
       my $seen_eos = 0;
       do {
           $r->input_filters->get_brigade($bb, Apache2::Const::MODE_READBYTES,
-                                         APR::BLOCK_READ, IOBUFSIZE);
+                                         APR::Const::BLOCK_READ, IOBUFSIZE);
   
           for (my $b = $bb->first; $b; $b = $bb->next($b)) {
               if ($b->is_eos) {

Modified: perl/modperl/docs/trunk/src/docs/2.0/user/handlers/http.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/user/handlers/http.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/user/handlers/http.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/user/handlers/http.pod Mon Apr  4 17:49:16 2005
@@ -496,7 +496,7 @@
       my $seen_eos = 0;
       do {
           $r->input_filters->get_brigade($bb, Apache2::Const::MODE_READBYTES,
-                                         APR::BLOCK_READ, IOBUFSIZE);
+                                         APR::Const::BLOCK_READ, IOBUFSIZE);
   
           for (my $b = $bb->first; $b; $b = $bb->next($b)) {
               if ($b->is_eos) {
@@ -1453,7 +1453,7 @@
       qx(/bin/ls -l > $file);
   
       my $status = $r->sendfile($file);
-      die "sendfile has failed" unless $status == APR::SUCCESS;
+      die "sendfile has failed" unless $status == APR::Const::SUCCESS;
   
       $r->push_handlers(PerlCleanupHandler => \&cleanup);
   
@@ -1551,7 +1551,7 @@
       qx(/bin/ls -l > $file);
   
       my $status = $r->sendfile($file);
-      die "sendfile has failed" unless $status == APR::SUCCESS;
+      die "sendfile has failed" unless $status == APR::Const::SUCCESS;
   
       $r->pool->cleanup_register(\&cleanup, $file);
   

Modified: perl/modperl/docs/trunk/src/docs/2.0/user/handlers/intro.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/user/handlers/intro.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/user/handlers/intro.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/user/handlers/intro.pod Mon Apr  4 17:49:16 2005
@@ -316,23 +316,23 @@
 
 =over
 
-=item *  C<APR::HOOK_REALLY_FIRST>
+=item *  C<APR::Const::HOOK_REALLY_FIRST>
 
 run this hook first, before ANYTHING.
 
-=item *  C<APR::HOOK_FIRST>
+=item *  C<APR::Const::HOOK_FIRST>
 
 run this hook first.
 
-=item *  C<APR::HOOK_MIDDLE>
+=item *  C<APR::Const::HOOK_MIDDLE>
 
 run this hook somewhere.
 
-=item *  C<APR::HOOK_LAST>
+=item *  C<APR::Const::HOOK_LAST>
 
 run this hook after every other hook which is defined.
 
-=item *  C<APR::HOOK_REALLY_LAST>
+=item *  C<APR::Const::HOOK_REALLY_LAST>
 
 run this hook last, after EVERYTHING.
 

Modified: perl/modperl/docs/trunk/src/docs/2.0/user/handlers/protocols.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/user/handlers/protocols.pod?view=diff&r1=160121&r2=160122
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/user/handlers/protocols.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/user/handlers/protocols.pod Mon Apr  4 17:49:16 2005
@@ -166,7 +166,7 @@
   sub handler {
       my ($c) = @_;
       my $sock = $c->client_socket;
-      $sock->opt_set(APR::SO_NONBLOCK, 0);
+      $sock->opt_set(APR::Const::SO_NONBLOCK, 0);
       # ...
       return Apache2::Const::OK;
   }
@@ -245,7 +245,7 @@
       my $sock = $c->client_socket;
   
       # set the socket to the blocking mode
-      $sock->opt_set(APR::SO_NONBLOCK => 0);
+      $sock->opt_set(APR::Const::SO_NONBLOCK => 0);
   
       while ($sock->recv(my $buff, BUFF_LEN)) {
           last if $buff =~ /^[\r\n]+$/;
@@ -264,7 +264,7 @@
 direct access to the client socket via C<Apache2::Connection>'s
 I<client_socket> method.  This returns an object, blessed into the
 C<APR::Socket> class. Before using the socket, we make sure that it's
-set to perform blocking IO, by using the C<APR::SO_NONBLOCK> constant,
+set to perform blocking IO, by using the C<APR::Const::SO_NONBLOCK> constant,
 compiled earlier.
 
 Inside the recv/send loop, the handler attempts to read C<BUFF_LEN>
@@ -343,7 +343,7 @@
   sub handler {
       my $c = shift;
   
-      $c->client_socket->opt_set(APR::SO_NONBLOCK => 0);
+      $c->client_socket->opt_set(APR::Const::SO_NONBLOCK => 0);
   
       my $bb_in  = APR::Brigade->new($c->pool, $c->bucket_alloc);
       my $bb_out = APR::Brigade->new($c->pool, $c->bucket_alloc);
@@ -352,8 +352,8 @@
       while (1) {
           my $rc = $c->input_filters->get_brigade($bb_in,
                                                   Apache2::Const::MODE_GETLINE);
-          last if $rc == APR::EOF;
-          die APR::Error::strerror($rc) unless $rc == APR::SUCCESS;
+          last if $rc == APR::Const::EOF;
+          die APR::Error::strerror($rc) unless $rc == APR::Const::SUCCESS;
   
           while (!$bb_in->is_empty) {
               my $b = $bb_in->first;
@@ -441,7 +441,7 @@
 
 If you look at the complete handler, the loop is terminated when one
 of the following conditions occurs: an error happens, the end of
-stream status code (C<APR::EOF>) has been received (no more input at
+stream status code (C<APR::Const::EOF>) has been received (no more input at
 the connection) or when the received data contains nothing but new
 line characters which we used to to tell the server to terminate the
 connection.
@@ -453,15 +453,15 @@
   sub handler {
       my $c = shift;
   
-      $c->client_socket->opt_set(APR::SO_NONBLOCK, 0);
+      $c->client_socket->opt_set(APR::Const::SO_NONBLOCK, 0);
   
       my $bb = APR::Brigade->new($c->pool, $c->bucket_alloc);
   
       while (1) {
           my $rc = $c->input_filters->get_brigade($bb,
                                                   Apache2::Const::MODE_GETLINE);
-          last if $rc == APR::EOF;
-          die APR::Error::strerror($rc) unless $rc == APR::SUCCESS;
+          last if $rc == APR::Const::EOF;
+          die APR::Error::strerror($rc) unless $rc == APR::Const::SUCCESS;
   
           for (my $b = $bb->first; $b; $b = $bb->next($b)) {
   
@@ -517,15 +517,15 @@
   sub handler {
       my $c = shift;
   
-      $c->client_socket->opt_set(APR::SO_NONBLOCK => 0);
+      $c->client_socket->opt_set(APR::Const::SO_NONBLOCK => 0);
   
       my $bb = APR::Brigade->new($c->pool, $c->bucket_alloc);
   
       while (1) {
           my $rc = $c->input_filters->get_brigade($bb,
                                                   Apache2::Const::MODE_GETLINE);
-          last if $rc == APR::EOF;
-          die APR::Error::strerror($rc) unless $rc == APR::SUCCESS;
+          last if $rc == APR::Const::EOF;
+          die APR::Error::strerror($rc) unless $rc == APR::Const::SUCCESS;
   
           $c->output_filters->fflush($bb);
       }
@@ -560,15 +560,15 @@
   sub handler {
       my $c = shift;
   
-      $c->client_socket->opt_set(APR::SO_NONBLOCK => 0);
+      $c->client_socket->opt_set(APR::Const::SO_NONBLOCK => 0);
   
       my $bb = APR::Brigade->new($c->pool, $c->bucket_alloc);
   
       while (1) {
           my $rc = $c->input_filters->get_brigade($bb,
                                                   Apache2::Const::MODE_GETLINE);
-          last if $rc == APR::EOF;
-          die APR::Error::strerror($rc) unless $rc == APR::SUCCESS;
+          last if $rc == APR::Const::EOF;
+          die APR::Error::strerror($rc) unless $rc == APR::Const::SUCCESS;
   
           next unless $bb->flatten(my $data);
           $bb->cleanup;



---------------------------------------------------------------------
To unsubscribe, e-mail: docs-cvs-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-cvs-help@perl.apache.org