[Catalyst-commits] r7710 - in Catalyst-Runtime/5.70/trunk: .
lib/Catalyst
bricas at dev.catalyst.perl.org
bricas at dev.catalyst.perl.org
Wed May 7 14:05:18 BST 2008
Author: bricas
Date: 2008-05-07 14:05:16 +0100 (Wed, 07 May 2008)
New Revision: 7710
Modified:
Catalyst-Runtime/5.70/trunk/Changes
Catalyst-Runtime/5.70/trunk/lib/Catalyst/Response.pm
Log:
POD: IO::FileHandle => IO::Handle (RT #35690)
Modified: Catalyst-Runtime/5.70/trunk/Changes
===================================================================
--- Catalyst-Runtime/5.70/trunk/Changes 2008-05-06 23:03:49 UTC (rev 7709)
+++ Catalyst-Runtime/5.70/trunk/Changes 2008-05-07 13:05:16 UTC (rev 7710)
@@ -6,6 +6,7 @@
under mod_fastcgi/mod_cgi.
- Fixed bug in HTTP engine where the connection was not closed properly if the
client disconnected before sending any headers. (Ton Voon)
+ - POD fix, IO::FileHandle => IO::Handle (RT #35690)
5.7012 2007-12-16 23:44:00
- Fix uri_for()'s and uri_with()'s handling of multibyte chars
Modified: Catalyst-Runtime/5.70/trunk/lib/Catalyst/Response.pm
===================================================================
--- Catalyst-Runtime/5.70/trunk/lib/Catalyst/Response.pm 2008-05-06 23:03:49 UTC (rev 7709)
+++ Catalyst-Runtime/5.70/trunk/lib/Catalyst/Response.pm 2008-05-07 13:05:16 UTC (rev 7710)
@@ -39,12 +39,12 @@
=head1 METHODS
-=head2 $res->body(<$text|$fh|$iofh_object)
+=head2 $res->body(<$text|$fh|$iohandle_object)
$c->response->body('Catalyst rocks!');
Sets or returns the output (text or binary data). If you are returning a large body,
-you might want to use a L<IO::FileHandle> type of object (Something that implements the read method
+you might want to use a L<IO::Handle> type of object (Something that implements the read method
in the same fashion), or a filehandle GLOB. Catalyst
will write it piece by piece into the response.
More information about the Catalyst-commits
mailing list