Author: randyk
Date: Sat Apr  2 14:40:15 2005
New Revision: 159838

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

Modified:
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/Brigade.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/Bucket.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/BucketAlloc.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/IpSubnet.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/OS.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/PerlIO.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/SockAddr.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/Socket.pod
    perl/modperl/docs/trunk/src/docs/2.0/api/APR/URI.pod

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/APR/Brigade.pod
URL: 
http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/APR/Brigade.pod?view=diff&r1=159837&r2=159838
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/APR/Brigade.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/APR/Brigade.pod Sat Apr  2 
14:40:15 2005
@@ -381,8 +381,8 @@
 
 Create a new bucket brigade, using the request object's pool:
 
-  use Apache::Connection ();
-  use Apache::RequestRec ();
+  use Apache2::Connection ();
+  use Apache2::RequestRec ();
   use APR::Brigade ();
   my $bb = APR::Brigade->new($r->pool, $r->connection->bucket_alloc);
 

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=159837&r2=159838
==============================================================================
--- 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 Sat Apr  2 14:40:15 
2005
@@ -185,7 +185,7 @@
 Example:
 
   use APR::Bucket ();
-  use Apache::Connection ();
+  use Apache2::Connection ();
   my $ba = $c->bucket_alloc;
   my $eos_b = APR::Bucket::eos_create($ba);
 

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/APR/BucketAlloc.pod
URL: 
http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/APR/BucketAlloc.pod?view=diff&r1=159837&r2=159838
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/APR/BucketAlloc.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/APR/BucketAlloc.pod Sat Apr  2 
14:40:15 2005
@@ -56,7 +56,7 @@
 You only need to use this method if you aren't running under httpd.
 If you are running under mod_perl, you already have a bucket
 allocation available via
-C<L<$c-E<gt>bucket_alloc|docs::2.0::api::Apache::Connection/C_bucket_alloc_>>
+C<L<$c-E<gt>bucket_alloc|docs::2.0::api::Apache2::Connection/C_bucket_alloc_>>
 and
 C<L<$bb-E<gt>bucket_alloc|docs::2.0::api::APR::Brigade/C_bucket_alloc_>>.
 

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=159837&r2=159838
==============================================================================
--- 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 Sat Apr  2 14:40:15 
2005
@@ -28,8 +28,8 @@
 
 This package contains constants specific to C<APR> features.
 
-Refer to C<L<the Apache::Const description
-section|docs::2.0::api::Apache::Const/Description>> for more
+Refer to C<L<the Apache2::Const description
+section|docs::2.0::api::Apache2::Const/Description>> for more
 information.
 
 

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=159837&r2=159838
==============================================================================
--- 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 Sat Apr  2 14:40:15 
2005
@@ -176,7 +176,7 @@
 the code.
 
   my $rc = $c->input_filters->get_brigade($bb_in,
-                                          Apache::MODE_GETLINE);
+                                          Apache2::MODE_GETLINE);
   if ($rc != APR::SUCCESS && $rc != APR::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=159837&r2=159838
==============================================================================
--- 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 Sat Apr  2 14:40:15 
2005
@@ -44,7 +44,7 @@
 
 During the HTTP request handlers coming after
 
C<L<PerlMapToStorageHandler|docs::2.0::user::handlers::http/PerlMapToStorageHandler>>,
-C<L<$r-E<gt>finfo|docs::2.0::api::Apache::RequestRec/C_finfo_>>
+C<L<$r-E<gt>finfo|docs::2.0::api::Apache2::RequestRec/C_finfo_>>
 already contains the cached values from the apr's C<stat()> call. So
 you don't want to perform it again, but instead get the C<ARP::Finfo>
 object via:

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/APR/IpSubnet.pod
URL: 
http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/APR/IpSubnet.pod?view=diff&r1=159837&r2=159838
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/APR/IpSubnet.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/APR/IpSubnet.pod Sat Apr  2 
14:40:15 2005
@@ -107,8 +107,8 @@
 Allow accesses only from the localhost (IPv4):
 
   use APR::IpSubnet ();
-  use Apache::Connection ();
-  use Apache::RequestRec ();
+  use Apache2::Connection ();
+  use Apache2::RequestRec ();
   my $ipsub = APR::IpSubnet->new($r->pool, "127.0.0.1");
   ok $ipsub->test($r->connection->remote_addr);
 

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/APR/OS.pod
URL: 
http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/APR/OS.pod?view=diff&r1=159837&r2=159838
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/APR/OS.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/APR/OS.pod Sat Apr  2 14:40:15 2005
@@ -58,9 +58,9 @@
 
 Example:
 
-    use Apache::MPM ();
+    use Apache2::MPM ();
     use APR::OS ();
-    if (Apache::MPM->is_threaded) {
+    if (Apache2::MPM->is_threaded) {
         my $tid_obj = APR::OS::current_thread_id();
         print "TID: $tid";
     }

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/APR/PerlIO.pod
URL: 
http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/APR/PerlIO.pod?view=diff&r1=159837&r2=159838
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/APR/PerlIO.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/APR/PerlIO.pod Sat Apr  2 14:40:15 
2005
@@ -17,11 +17,11 @@
       # work with $fh as normal $fh
       close $fh;
   
-      return Apache::OK;
+      return Apache2::OK;
   }
 
   # outside mod_perl
-  % perl -MApache2 -MAPR -MAPR::PerlIO -MAPR::Pool -le \
+  % perl -MAPR -MAPR::PerlIO -MAPR::Pool -le \
   'open my $fh, ">:APR", "/tmp/apr", APR::Pool->new or die "$!"; \
    print $fh "whoah!"; \
    close $fh;'

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/APR/SockAddr.pod
URL: 
http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/APR/SockAddr.pod?view=diff&r1=159837&r2=159838
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/APR/SockAddr.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/APR/SockAddr.pod Sat Apr  2 
14:40:15 2005
@@ -23,7 +23,7 @@
 
 Normally you'd get a socket address object, by calling:
 
-  use Apache::Connection ();
+  use Apache2::Connection ();
   my $remote_sock_addr = $c->remote_addr;
   my $local_sock_addr  = $c->remote_local;
 
@@ -64,7 +64,7 @@
 in apr-speak that'd be written as:
 
   use APR::SockAddr ();
-  use Apache::Connection ();
+  use Apache2::Connection ();
   my $serverport = $c->local_addr->port;
   my $serverip   = $c->local_addr->ip_get;
   my $remoteport = $c->remote_addr->port;

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=159837&r2=159838
==============================================================================
--- 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 Sat Apr  2 14:40:15 
2005
@@ -167,7 +167,7 @@
 =item arg1: C<$pool>
 ( C<L<APR::Pool object|docs::2.0::api::APR::Pool>> )
 
-usually C<L<$c-E<gt>pool|docs::2.0::api::Apache::Connection/C_pool_>>.
+usually C<L<$c-E<gt>pool|docs::2.0::api::Apache2::Connection/C_pool_>>.
 
 =item arg2: C<$timeout> ( integer )
 

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=159837&r2=159838
==============================================================================
--- 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 Sat Apr  2 14:40:15 
2005
@@ -285,7 +285,7 @@
 =head2 C<rpath>
 
 Gets the C<L<path>> minus the 
-C<L<path_info|docs::2.0::api::Apache::RequestRec/C_path_info_>>
+C<L<path_info|docs::2.0::api::Apache2::RequestRec/C_path_info_>>
 
   $rpath =  $parsed->rpath();
 
@@ -582,7 +582,7 @@
 
 =head1 See Also
 
-C<L<Apache::URI|docs::2.0::api::Apache::URI>>, L<mod_perl 2.0
+C<L<Apache2::URI|docs::2.0::api::Apache2::URI>>, L<mod_perl 2.0
 documentation|docs::2.0::index>.
 
 



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

Reply via email to