Author: randyk
Date: Sat Apr  2 11:27:41 2005
New Revision: 159799

URL: http://svn.apache.org/viewcvs?view=rev&rev=159799
Log:
s/Apache/Apache2/

Added:
    perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/
      - copied from r159778, perl/modperl/docs/trunk/src/docs/2.0/api/Apache/
Modified:
    perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Access.pod

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Access.pod
URL: 
http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Access.pod?view=diff&r1=159778&r2=159799
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Access.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/Access.pod Sat Apr  2 
11:27:41 2005
@@ -1,6 +1,6 @@
 =head1 NAME
 
-Apache::Access - A Perl API for Apache request object: Access,
+Apache2::Access - A Perl API for Apache request object: Access,
 Authentication and Authorization.
 
 
@@ -9,7 +9,7 @@
 
 =head1 Synopsis
 
-  use Apache::Access ();
+  use Apache2::Access ();
   
   # allow only GET method
   $r->allow_methods(1, qw(GET));
@@ -62,8 +62,8 @@
 The API provided by this module deals with access, authentication and
 authorization phases.
 
-C<Apache::Access> extends
-C<L<Apache::RequestRec|docs::2.0::api::Apache::RequestRec|/Description>>.
+C<Apache2::Access> extends
+C<L<Apache2::RequestRec|docs::2.0::api::Apache2::RequestRec|/Description>>.
 
 
 
@@ -74,7 +74,7 @@
 
 =head1 API
 
-C<Apache::Access> provides the following functions and/or methods:
+C<Apache2::Access> provides the following functions and/or methods:
 
 
 
@@ -90,7 +90,7 @@
 =over 4
 
 =item obj: C<$r>
-( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> )
+( C<L<Apache2::RequestRec object|docs::2.0::api::Apache2::RequestRec>> )
 
 The current request
 
@@ -128,15 +128,15 @@
 =over 4
 
 =item obj: C<$r>
-( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> )
+( C<L<Apache2::RequestRec object|docs::2.0::api::Apache2::RequestRec>> )
 
 The current request
 
 =item ret: C<$options> ( integer )
 
 the C<Options> bitmask. Normally used with bitlogic operators against
-C<L<Apache::Const :options
-constants|docs::2.0::api::Apache::Const/C__options_>>.
+C<L<Apache2::Const :options
+constants|docs::2.0::api::Apache2::Const/C__options_>>.
 
 =item since: 1.99_12
 
@@ -149,10 +149,10 @@
 
 The following applies:
 
-  use Apache::Const -compile => qw(:options);
-  $r->allow_options & Apache::OPT_INDEXES;   # TRUE
-  $r->allow_options & Apache::OPT_SYM_LINKS; # TRUE
-  $r->allow_options & Apache::OPT_EXECCGI;   # FALSE
+  use Apache2::Const -compile => qw(:options);
+  $r->allow_options & Apache2::OPT_INDEXES;   # TRUE
+  $r->allow_options & Apache2::OPT_SYM_LINKS; # TRUE
+  $r->allow_options & Apache2::OPT_EXECCGI;   # FALSE
 
 
 
@@ -170,15 +170,15 @@
 =over 4
 
 =item obj: C<$r>
-( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> )
+( C<L<Apache2::RequestRec object|docs::2.0::api::Apache2::RequestRec>> )
 
 The current request
 
 =item ret: C<$allow_override> ( integer )
 
 the C<AllowOverride> bitmask. Normally used with bitlogic operators
-against C<L<Apache::Const :override
-constants|docs::2.0::api::Apache::Const/C__override_>>.
+against C<L<Apache2::Const :override
+constants|docs::2.0::api::Apache2::Const/C__override_>>.
 
 =item since: 1.99_12
 
@@ -190,9 +190,9 @@
 
 The following applies:
 
-  use Apache::Const -compile => qw(:override);
-  $r->allow_overrides & Apache::OR_AUTHCFG; # TRUE
-  $r->allow_overrides & Apache::OR_LIMIT; # FALSE
+  use Apache2::Const -compile => qw(:override);
+  $r->allow_overrides & Apache2::OR_AUTHCFG; # TRUE
+  $r->allow_overrides & Apache2::OR_LIMIT; # FALSE
 
 
 
@@ -210,7 +210,7 @@
 =over 4
 
 =item obj: C<$r>
-( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> )
+( C<L<Apache2::RequestRec object|docs::2.0::api::Apache2::RequestRec>> )
 
 The current request
 
@@ -255,7 +255,7 @@
 =over 4
 
 =item obj: C<$r>
-( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> )
+( C<L<Apache2::RequestRec object|docs::2.0::api::Apache2::RequestRec>> )
 
 The current request
 
@@ -293,20 +293,20 @@
 =over 4
 
 =item obj: C<$r>
-( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> )
+( C<L<Apache2::RequestRec object|docs::2.0::api::Apache2::RequestRec>> )
 
 The current request
 
 =item ret1: C<$rc>
-( C<L<Apache::Const constant|docs::2.0::api::Apache::Const>> )
+( C<L<Apache2::Const constant|docs::2.0::api::Apache2::Const>> )
 
-C<Apache::OK> if the C<$passwd> value is set (and assured a correct
+C<Apache2::OK> if the C<$passwd> value is set (and assured a correct
 value in
-C<L<$r-E<gt>user|docs::2.0::api::Apache::RequestRec/C_user_>>);
+C<L<$r-E<gt>user|docs::2.0::api::Apache2::RequestRec/C_user_>>);
 otherwise it returns an error code, either
-C<Apache::HTTP_INTERNAL_SERVER_ERROR> if things are really confused,
-C<Apache::HTTP_UNAUTHORIZED> if no authentication at all seemed to be
-in use, or C<Apache::DECLINED> if there was authentication, but it
+C<Apache2::HTTP_INTERNAL_SERVER_ERROR> if things are really confused,
+C<Apache2::HTTP_UNAUTHORIZED> if no authentication at all seemed to be
+in use, or C<Apache2::DECLINED> if there was authentication, but it
 wasn't C<Basic> (in which case, the caller should presumably decline
 as well).
 
@@ -337,7 +337,7 @@
 =over 4
 
 =item obj: C<$r>
-( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> )
+( C<L<Apache2::RequestRec object|docs::2.0::api::Apache2::RequestRec>> )
 
 The current request
 
@@ -352,7 +352,7 @@
 =back
 
 Do not confuse this method with
-C<L<$r-E<gt>user|docs::2.0::api::Apache::RequestRec/C_user_>>, which
+C<L<$r-E<gt>user|docs::2.0::api::Apache2::RequestRec/C_user_>>, which
 provides the username provided by the user during the server
 authentication.
 
@@ -374,7 +374,7 @@
 =over 4
 
 =item obj: C<$r>
-( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> )
+( C<L<Apache2::RequestRec object|docs::2.0::api::Apache2::RequestRec>> )
 
 The current request
 
@@ -408,7 +408,7 @@
 =over 4
 
 =item obj: C<$r>
-( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> )
+( C<L<Apache2::RequestRec object|docs::2.0::api::Apache2::RequestRec>> )
 
 The current request
 
@@ -437,7 +437,7 @@
 =over 4
 
 =item obj: C<$r>
-( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> )
+( C<L<Apache2::RequestRec object|docs::2.0::api::Apache2::RequestRec>> )
 
 The current request
 
@@ -462,7 +462,7 @@
 =over 4
 
 =item obj: C<$r>
-( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> )
+( C<L<Apache2::RequestRec object|docs::2.0::api::Apache2::RequestRec>> )
 
 The current request
 
@@ -575,19 +575,19 @@
 =over 4
 
 =item obj: C<$r>
-( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> )
+( C<L<Apache2::RequestRec object|docs::2.0::api::Apache2::RequestRec>> )
 
 The current request
 
 =item ret: C<$satisfy> ( integer )
 
-How the requirements must be met.  One of the C<L<Apache::Const
-:satisfy constants|docs::2.0::api::Apache::Const/C__satisfy_>>:
+How the requirements must be met.  One of the C<L<Apache2::Const
+:satisfy constants|docs::2.0::api::Apache2::Const/C__satisfy_>>:
 
-C<L<Apache::SATISFY_ANY|docs::2.0::api::Apache::Const/C_Apache::SATISFY_ANY_>>,
-C<L<Apache::SATISFY_ALL|docs::2.0::api::Apache::Const/C_Apache::SATISFY_ALL_>>
+C<L<Apache2::SATISFY_ANY|docs::2.0::api::Apache2::Const/C_Apache2::SATISFY_ANY_>>,
+C<L<Apache2::SATISFY_ALL|docs::2.0::api::Apache2::Const/C_Apache2::SATISFY_ALL_>>
 and
-C<L<Apache::SATISFY_NOSPEC|docs::2.0::api::Apache::Const/C_Apache::SATISFY_NOSPEC_>>.
+C<L<Apache2::SATISFY_NOSPEC|docs::2.0::api::Apache2::Const/C_Apache2::SATISFY_NOSPEC_>>.
 
 =item since: 1.99_12
 
@@ -610,7 +610,7 @@
 =over 4
 
 =item obj: C<$r>
-( C<L<Apache::RequestRec object|docs::2.0::api::Apache::RequestRec>> )
+( C<L<Apache2::RequestRec object|docs::2.0::api::Apache2::RequestRec>> )
 
 The current request
 



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to