[Catalyst-commits] r6306 - trunk/Catalyst-Action-RenderView/lib/Catalyst/Action

bricas at dev.catalyst.perl.org bricas at dev.catalyst.perl.org
Thu Apr 26 16:12:48 GMT 2007


Author: bricas
Date: 2007-04-26 16:12:46 +0100 (Thu, 26 Apr 2007)
New Revision: 6306

Modified:
   trunk/Catalyst-Action-RenderView/lib/Catalyst/Action/RenderView.pm
Log:
add strict/warnings. rework pod slightly

Modified: trunk/Catalyst-Action-RenderView/lib/Catalyst/Action/RenderView.pm
===================================================================
--- trunk/Catalyst-Action-RenderView/lib/Catalyst/Action/RenderView.pm	2007-04-26 14:47:03 UTC (rev 6305)
+++ trunk/Catalyst-Action-RenderView/lib/Catalyst/Action/RenderView.pm	2007-04-26 15:12:46 UTC (rev 6306)
@@ -1,7 +1,10 @@
 package Catalyst::Action::RenderView;
 
-our $VERSION='0.05';
+use strict;
+use warnings;
 
+our $VERSION = '0.05';
+
 use base 'Catalyst::Action';
 
 sub execute {
@@ -41,31 +44,24 @@
 order to force a debug screen, while in debug mode.
 
 If you have more than one view, you can specify which one to use with
-the C<default_view> config setting (see L<Catalyst/"$c->view($name)">.)
+the C<default_view> config setting (see L<Catalyst>'s C<$c->view($name)>
+method).
 
 =head1 METHODS
 
-=over 4
+=head2 end
 
-=item end
-
 The default C<end> action. You can override this as required in your
 application class; normal inheritance applies.
 
-=back
-
 =head1 INTERNAL METHODS
 
-=over 4
+=head2 execute
 
-=item execute
-
 Dispatches control to superclasses, then forwards to the default View.
 
 See L<Catalyst::Action/METHODS/action>.
 
-=back
-
 =head1 EXTENDING
 
 To add something to an C<end> action that is called before rendering,




More information about the Catalyst-commits mailing list