more docs
John Napiorkowski [Fri, 24 Jan 2014 22:47:50 +0000 (16:47 -0600)]
lib/Catalyst/Delta.pod
lib/Catalyst/Engine.pm

index ea0b7c5..b7fcb37 100755 (executable)
@@ -64,8 +64,7 @@ additional performance when you don't need all the checks and constraints.
 We also deprecated setting the response body to an object that does 'read'
 but not 'getline'.  If you are using a custom IO-Handle like object for
 response you should verify that 'getline' is supported in your interface.
-You will get a first use warning for this error in your logs.  Unless we
-here this case is a major issue for people, we will be removing support
+Unless we here this case is a major issue for people, we will be removing support
 in a near future release of Catalyst.  When the code encounters this it
 will issue a warning.  You also may run into this issue with L<MogileFS::Client>
 which does read but not getline.  For now we will just warn when encountering
@@ -104,6 +103,7 @@ to support setting body to a simple value since this is possible, but at
 some future release a choice to use streaming indicates that you will do
 so for the rest of the request.
 
+
 =head2 VERSION 5.90053
 
 We are now clarifying the behavior of log, plugins and configuration during
index d48d9a4..017b2d4 100644 (file)
@@ -162,6 +162,11 @@ sub finalize_body {
               close $body;
           }
           else {
+              
+              # Case where body was set afgter calling ->write.  We'd prefer not to
+              # support this, but I can see some use cases with the way most of the
+              # views work.
+
               $self->write($c, $body );
           }
         }