Author: joes
Date: Mon May 16 11:38:46 2005
New Revision: 170424

URL: http://svn.apache.org/viewcvs?rev=170424&view=rev
Log:
Frivolous doc tweaks.

Modified:
    httpd/apreq/trunk/FAQ.pod
    httpd/apreq/trunk/INSTALL

Modified: httpd/apreq/trunk/FAQ.pod
URL: 
http://svn.apache.org/viewcvs/httpd/apreq/trunk/FAQ.pod?rev=170424&r1=170423&r2=170424&view=diff
==============================================================================
--- httpd/apreq/trunk/FAQ.pod (original)
+++ httpd/apreq/trunk/FAQ.pod Mon May 16 11:38:46 2005
@@ -10,27 +10,30 @@
 
 
 
-=head2 When I use Apache::Request in my output filter, it seems to lose the 
incoming POST variables.
+=head2 When I use Apache::Request in my output filter, it seems to lose
+       the incoming POST variables.
 
-The problem is likely that the mod_apreq filter has not been 
+The problem is likely that the mod_apreq2 filter has not been 
 added to the input filter chain in time to read the POST data.
 
 There are two solutions to this problem:
 
 
- 1) Write a filter init handler for you filter that instantiates an 
Apache::Request object. 
+ 1) Write a filter init handler for you filter that instantiates an
+    Apache2::Request object. 
 
-    http://perl.apache.org/docs/2.0/api/Apache/Filter.html#C_FilterInitHandler_
+    
http://perl.apache.org/docs/2.0/api/Apache2/Filter.html#C_FilterInitHandler_
 
  2) Use .htaccess or your server config to ensure the apreq input filter
     is active for this request with "AddInputFilter APREQ" or somesuch.
 
 We recommend using (1), and falling back to (2) until you get (1) working.
 
-=head2 When I try to upload a file, why do I get this error "[error] Can't 
locate .../Apache/Request/upload.al in @INC"?
+=head2 When I try to upload a file, why do I get this error 
+       "[error] Can't locate .../Apache2/Request/upload.al in @INC"?
 
-I<Apache::Upload> is now a separate module in apreq2, so you need to 
-C<use Apache::Upload> to load the C<Apache::Request::upload> function.
+I<Apache2::Upload> is now a separate module in apreq2, so you need to 
+C<use Apache2::Upload> to load the C<Apache2::Request::upload> function.
 
 
 
@@ -51,9 +54,9 @@
 
 apreq's repository is broken into three subdirectories:
 
-        /trunk    - the current codebase for active development.
-        /tags     - release snapshots.
-        /branches - where older releases and experimental development lines 
live.
+    /trunk    - the current codebase for active development.
+    /tags     - release snapshots.
+    /branches - where older releases and experimental development lines live.
 
 apreq follows a Commit-then-Review policy for its entire repository,
 but being a shared library places certain restrictions on the admissible

Modified: httpd/apreq/trunk/INSTALL
URL: 
http://svn.apache.org/viewcvs/httpd/apreq/trunk/INSTALL?rev=170424&r1=170423&r2=170424&view=diff
==============================================================================
--- httpd/apreq/trunk/INSTALL (original)
+++ httpd/apreq/trunk/INSTALL Mon May 16 11:38:46 2005
@@ -18,8 +18,8 @@
             % make install
 
 
-Or using the CPAN/perlish way (which includes the Apache::Request and
-Apache::Cookie modules):
+Or using the CPAN/perlish way (which includes the Apache2::Request and
+Apache2::Cookie modules):
 
             % perl Makefile.PL --with-apache2-apxs=/path/to/apache2/bin/apxs
             % make


Reply via email to