X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst.pm;h=96ff97d44e93de8c5229db5e4eb1699705d4a646;hb=7fb8754af168fe56a2e33c4be3c66edf660415dd;hp=97dfc4e8d4afaf7cbb7f6d149ab54b11f84ff9ad;hpb=d759db1eaa6182976904610a43fa8110cb488f24;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 97dfc4e..96ff97d 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -830,6 +830,7 @@ sub welcome_message {

If you want to jump right into web development with Catalyst you might want to check out the documentation.

perldoc Catalyst::Manual::Intro
+perldoc Catalyst::Manual::Tutorial
 perldoc Catalyst::Manual

What to do next?

Next it's time to write an actual application. Use the @@ -926,7 +927,7 @@ via $c->error. sub execute { my ( $c, $class, $code ) = @_; - $class = $c->components->{$class} || $class; + $class = $c->component($class) || $class; $c->state(0); if ( $c->debug ) {