[Jifty-commit] r6761 - jifty/trunk/lib/Jifty/View/Mason

Jifty commits jifty-commit at lists.jifty.org
Thu Apr 9 18:40:28 EDT 2009


Author: alexmv
Date: Thu Apr  9 18:40:28 2009
New Revision: 6761

Modified:
   jifty/trunk/lib/Jifty/View/Mason/Request.pm

Log:
Document Jifty::View::Mason::Request

Modified: jifty/trunk/lib/Jifty/View/Mason/Request.pm
==============================================================================
--- jifty/trunk/lib/Jifty/View/Mason/Request.pm	(original)
+++ jifty/trunk/lib/Jifty/View/Mason/Request.pm	Thu Apr  9 18:40:28 2009
@@ -57,6 +57,14 @@
     }
 }
 
+=head2 print
+
+=head2 out
+
+Append to the shared L<String::BufferStack> stored in L<Jifty::Handler/buffer>.
+
+=cut
+
 sub print {
     shift;
     Jifty->handler->buffer->append(@_);
@@ -64,6 +72,13 @@
 
 *out = \&print;
 
+=head2 comp
+
+Jump through hoops necessary to keep L<Jifty::Handler/buffer> lined up
+with Mason's internal buffer stack.
+
+=cut
+
 sub comp {
     my $self = shift;
 
@@ -87,6 +102,13 @@
     return $wantarray ? @result : $result[0];    
 }
 
+=head2 content
+
+Jump through hoops necessary to keep L<Jifty::Handler/buffer> lined up
+with Mason's internal buffer stack.
+
+=cut
+
 sub content {
     my $self = shift;
 


More information about the Jifty-commit mailing list