Added C::Utils and C::E::A::MP2 to MANIFEST. Reorderd subs in C::E::A::* to be in...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / Apache.pm
index 7d11ea4..9f52366 100644 (file)
@@ -18,7 +18,7 @@ See L<Catalyst>.
 
 =head1 DESCRIPTION
 
-This is the Catalyst engine specialized for Apache (i.e. for mod_perl).
+This is a base class engine specialized for Apache (i.e. for mod_perl).
 
 =head1 METHODS
 
@@ -42,7 +42,7 @@ This class overloads some methods from C<Catalyst::Engine>.
 
 sub finalize_body {
     my $c = shift;
-    $c->apache->print( $c->response->output );
+    $c->apache->print( $c->response->body );
 }
 
 =item $c->prepare_body
@@ -63,7 +63,7 @@ sub prepare_body {
         $content .= $buffer;
     }
     
-    $c->request->input($content);
+    $c->request->body($content);
 }
 
 =item $c->prepare_connection
@@ -135,6 +135,7 @@ L<Catalyst>.
 =head1 AUTHOR
 
 Sebastian Riedel, C<sri@cpan.org>
+Christian Hansen C<ch@ngmedia.com>
 
 =head1 COPYRIGHT