[Catalyst-commits] r11644 - Catalyst-Runtime/5.80/trunk/lib/Catalyst
poisonbit at dev.catalyst.perl.org
poisonbit at dev.catalyst.perl.org
Tue Oct 20 22:16:04 GMT 2009
Author: poisonbit
Date: 2009-10-20 22:16:03 +0000 (Tue, 20 Oct 2009)
New Revision: 11644
Modified:
Catalyst-Runtime/5.80/trunk/lib/Catalyst/Upgrading.pod
Log:
Fixes to pass podchecker OK
Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst/Upgrading.pod
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst/Upgrading.pod 2009-10-20 21:08:47 UTC (rev 11643)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst/Upgrading.pod 2009-10-20 22:16:03 UTC (rev 11644)
@@ -316,19 +316,19 @@
creating a myTest::Controller::Root, like the following example:
package MyTest::Controller::Root;
-
+
use strict;
use warnings;
-
+
use parent 'Catalyst::Controller';
-
+
__PACKAGE__->config(namespace => '');
-
+
sub action : Local {
my ( $self, $c ) = @_;
$c->do_something;
}
-
+
1;
=head2 ::[MVC]:: naming scheme
@@ -401,7 +401,7 @@
Calling the plugin method is deprecated, and calling it at run time is B<highly
deprecated>.
-Instead you are recommended to use L< Catalyst::Model::Adaptor > or similar to
+Instead you are recommended to use L<Catalyst::Model::Adaptor> or similar to
compose the functionality you need outside of the main application name space.
Calling the plugin method will not be supported past Catalyst 5.81.
More information about the Catalyst-commits
mailing list