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 st...@apache.org on 2004/12/10 21:06:08 UTC

svn commit: r111543 - /perl/modperl/docs/trunk/src/docs/2.0/api/APR/Const.pod /perl/modperl/docs/trunk/src/docs/2.0/api/APR/Finfo.pod

Author: stas
Date: Fri Dec 10 12:06:04 2004
New Revision: 111543

URL: http://svn.apache.org/viewcvs?view=rev&rev=111543
Log:
- the constants
  APR::(READ|WRITE|CREATE|APPEND|TRUNCATE|BINARY|EXCL|BUFFERED|DELONCLOSE)
  now have a prefix APR::FOPEN_ and moved group s/filemode/fopen/
- constants from the fileprot group moved to the fprot group and the
  prefix has changed: from APR::FILEPROT_ to APR::FPROT_

Modified:
   perl/modperl/docs/trunk/src/docs/2.0/api/APR/Const.pod
   perl/modperl/docs/trunk/src/docs/2.0/api/APR/Finfo.pod

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&rev=111543&p1=perl/modperl/docs/trunk/src/docs/2.0/api/APR/Const.pod&r1=111542&p2=perl/modperl/docs/trunk/src/docs/2.0/api/APR/Const.pod&r2=111543
==============================================================================
--- 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	Fri Dec 10 12:06:04 2004
@@ -759,16 +759,16 @@
 
 
 
-=head2 C<:filemode>
+=head2 C<:fopen>
 
-  use APR::Const -compile => qw(:filemode);
+  use APR::Const -compile => qw(:fopen);
 
-The C<:filemode> group is for XXX constants.
+The C<:fopen> group is for XXX constants.
 
 
 
 
-=head3 C<APR::BINARY>
+=head3 C<APR::FOPEN_BINARY>
 
 =over
 
@@ -780,7 +780,7 @@
 
 
 
-=head3 C<APR::BUFFERED>
+=head3 C<APR::FOPEN_BUFFERED>
 
 =over
 
@@ -792,7 +792,7 @@
 
 
 
-=head3 C<APR::CREATE>
+=head3 C<APR::FOPEN_CREATE>
 
 =over
 
@@ -804,7 +804,7 @@
 
 
 
-=head3 C<APR::DELONCLOSE>
+=head3 C<APR::FOPEN_DELONCLOSE>
 
 =over
 
@@ -816,7 +816,7 @@
 
 
 
-=head3 C<APR::EXCL>
+=head3 C<APR::FOPEN_EXCL>
 
 =over
 
@@ -828,7 +828,7 @@
 
 
 
-=head3 C<APR::PEND>
+=head3 C<APR::FOPEN_PEND>
 
 =over
 
@@ -840,7 +840,7 @@
 
 
 
-=head3 C<APR::READ>
+=head3 C<APR::FOPEN_READ>
 
 =over
 
@@ -852,7 +852,7 @@
 
 
 
-=head3 C<APR::TRUNCATE>
+=head3 C<APR::FOPEN_TRUNCATE>
 
 =over
 
@@ -864,7 +864,7 @@
 
 
 
-=head3 C<APR::WRITE>
+=head3 C<APR::FOPEN_WRITE>
 
 =over
 
@@ -1006,17 +1006,17 @@
 
 
 
-=head2 C<:fileprot>
+=head2 C<:fprot>
 
-  use APR::Const -compile => qw(:fileprot);
+  use APR::Const -compile => qw(:fprot);
 
-The C<:fileprot> group is used by
+The C<:fprot> group is used by
 C<L<$finfo-E<gt>protection|docs::2.0::api::APR::Finfo/C_protection_>>.
 
 
 
 
-=head3 C<APR::FILEPROT_GEXECUTE>
+=head3 C<APR::FPROT_GEXECUTE>
 
 Execute by group
 
@@ -1031,7 +1031,7 @@
 
 
 
-=head3 C<APR::FILEPROT_GREAD>
+=head3 C<APR::FPROT_GREAD>
 
 Read by group
 
@@ -1044,7 +1044,7 @@
 
 
 
-=head3 C<APR::FILEPROT_GSETID>
+=head3 C<APR::FPROT_GSETID>
 
 Set group id
 
@@ -1057,7 +1057,7 @@
 
 
 
-=head3 C<APR::FILEPROT_GWRITE>
+=head3 C<APR::FPROT_GWRITE>
 
 Write by group
 
@@ -1070,7 +1070,7 @@
 
 
 
-=head3 C<APR::FILEPROT_OS_DEFAULT>
+=head3 C<APR::FPROT_OS_DEFAULT>
 
 use OS's default permissions
 
@@ -1083,7 +1083,7 @@
 
 
 
-=head3 C<APR::FILEPROT_UEXECUTE>
+=head3 C<APR::FPROT_UEXECUTE>
 
 Execute by user
 
@@ -1096,7 +1096,7 @@
 
 
 
-=head3 C<APR::FILEPROT_UREAD>
+=head3 C<APR::FPROT_UREAD>
 
 Read by user
 
@@ -1109,7 +1109,7 @@
 
 
 
-=head3 C<APR::FILEPROT_USETID>
+=head3 C<APR::FPROT_USETID>
 
 Set user id
 
@@ -1122,7 +1122,7 @@
 
 
 
-=head3 C<APR::FILEPROT_UWRITE>
+=head3 C<APR::FPROT_UWRITE>
 
 Write by user
 
@@ -1135,7 +1135,7 @@
 
 
 
-=head3 C<APR::FILEPROT_WEXECUTE>
+=head3 C<APR::FPROT_WEXECUTE>
 
 Execute by others
 
@@ -1148,7 +1148,7 @@
 
 
 
-=head3 C<APR::FILEPROT_WREAD>
+=head3 C<APR::FPROT_WREAD>
 
 Read by others
 
@@ -1161,7 +1161,7 @@
 
 
 
-=head3 C<APR::FILEPROT_WSTICKY>
+=head3 C<APR::FPROT_WSTICKY>
 
 Sticky bit
 
@@ -1174,7 +1174,7 @@
 
 
 
-=head3 C<APR::FILEPROT_WWRITE>
+=head3 C<APR::FPROT_WWRITE>
 
 Write by others
 

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&rev=111543&p1=perl/modperl/docs/trunk/src/docs/2.0/api/APR/Finfo.pod&r1=111542&p2=perl/modperl/docs/trunk/src/docs/2.0/api/APR/Finfo.pod&r2=111543
==============================================================================
--- 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	Fri Dec 10 12:06:04 2004
@@ -400,8 +400,8 @@
 =item obj: C<$finfo>
 ( C<L<APR::Finfo object|docs::2.0::api::APR::Finfo>> )
 
-=item return: C<$prot> ( C<L<:fileprot
-constant|docs::2.0::api::APR::Const/C__fileprot_>> )
+=item return: C<$prot> ( C<L<:fprot
+constant|docs::2.0::api::APR::Const/C__fprot_>> )
 
 =item since: 1.99_17
 

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