X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F03_MoreCatalystBasics.pod;h=f8751f11926c174bc8d0c5d82eaee55cdbdf94df;hp=ffd01befef9115434c983c41cbb0a81a1c89f11c;hb=1edbdee6a1bad3524a3d97c6daaae02b5109c1d2;hpb=5a82cb361e4a283dede371331f437bfd05ccba14 diff --git a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod index ffd01be..f8751f1 100644 --- a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod @@ -91,21 +91,25 @@ tutorial or in a directory that already has a "MyApp" subdirectory): created "MyApp/root" ... created "MyApp/script/myapp_create.pl" + Change to application directory and Run "perl Makefile.PL" to make sure your install is complete $ cd MyApp This creates a similar skeletal structure to what we saw in Chapter 2 of the tutorial, except with C and C substituted for -C and C. +C and C. (As noted in Chapter 2, omit the ".pl" from +the command if you are using Strawberry Perl.) =head1 EDIT THE LIST OF CATALYST PLUGINS -One of the greatest benefits of Catalyst is that it has such a large -library of plugins and base classes available. Plugins are used to -seamlessly integrate existing Perl modules into the overall Catalyst -framework. In general, they do this by adding additional methods to the -C object (generally written as C<$c>) that Catalyst passes to -every component throughout the framework. +One of the greatest benefits of Catalyst is that it has such a large +library of bases classes and plugins available that you can use easily +add functionality to your application. Plugins are used to seamlessly +integrate existing Perl modules into the overall Catalyst framework. In +general, they do this by adding additional methods to the C +object (generally written as C<$c>) that Catalyst passes to every +component throughout the framework. + By default, Catalyst enables three plugins/flags: @@ -119,15 +123,31 @@ Enables the Catalyst debug output you saw when we started the C