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 ra...@apache.org on 2005/04/02 23:31:24 UTC

svn commit: r159816 - perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/FilterRec.pod

Author: randyk
Date: Sat Apr  2 13:31:24 2005
New Revision: 159816

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

Modified:
    perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/FilterRec.pod

Modified: perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/FilterRec.pod
URL: http://svn.apache.org/viewcvs/perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/FilterRec.pod?view=diff&r1=159815&r2=159816
==============================================================================
--- perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/FilterRec.pod (original)
+++ perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/FilterRec.pod Sat Apr  2 13:31:24 2005
@@ -1,14 +1,14 @@
 =head1 NAME
 
-Apache::FilterRec - Perl API for manipulating the Apache filter record
+Apache2::FilterRec - Perl API for manipulating the Apache filter record
 
 
 
 
 =head1 Synopsis
 
-  use Apache::Filter ();
-  use Apache::FilterRec ();
+  use Apache2::Filter ();
+  use Apache2::FilterRec ();
   
   my $frec = $filter->frec;
   print "filter name is:", $frec->name;
@@ -18,11 +18,11 @@
 
 =head1 Description
 
-C<Apache::FilterRec> provides an access to the filter record
+C<Apache2::FilterRec> provides an access to the filter record
 structure.
 
-The C<Apache::FilterRec> object is retrieved by calling
-C<L<frec()|docs::2.0::api::Apache::Filter/C_frec_>>:
+The C<Apache2::FilterRec> object is retrieved by calling
+C<L<frec()|docs::2.0::api::Apache2::Filter/C_frec_>>:
 
   $frec = $filter->frec;
 
@@ -33,7 +33,7 @@
 
 =head1 API
 
-C<Apache::FilterRec> provides the following functions and/or methods:
+C<Apache2::FilterRec> provides the following functions and/or methods:
 
 
 
@@ -47,7 +47,7 @@
 =over 4
 
 =item obj: C<$frec>
-( C<L<Apache::FilterRec object|docs::2.0::api::Apache::FilterRec>> )
+( C<L<Apache2::FilterRec object|docs::2.0::api::Apache2::FilterRec>> )
 
 =item ret: C<$name> (string)
 
@@ -63,15 +63,15 @@
   modperl_connection_input
 
 You can see the names of the non-mod_perl filters as well. By calling
-C<L<$filter-E<gt>next-E<gt>frec-E<gt>name|docs::2.0::api::Apache::Filter/C_next_>>
+C<L<$filter-E<gt>next-E<gt>frec-E<gt>name|docs::2.0::api::Apache2::Filter/C_next_>>
 you can get the name of the next filter in the chain.
 
 Example:
 
 Let's print the name of the current and the filter that follows it:
 
-  use Apache::Filter ();
-  use Apache::FilterRec ();
+  use Apache2::Filter ();
+  use Apache2::FilterRec ();
   for my $frec ($filter->frec, $filter->next->frec) {
       print "Name: ", $frec->name;
   }



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