X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F03_MoreCatalystBasics.pod;h=afddf454f62b04e9dbce4a3c97835ced15b9e876;hb=b9e431e31e8cbd4efc46e4270098567faf7e4f29;hp=38497afa9d2383533709e33fc21a36c750ecfdee;hpb=39e260e93560242261572f530288ae0fe81aa4c6;p=catagits%2FCatalyst-Manual.git diff --git a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod index 38497af..afddf45 100644 --- a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod @@ -56,24 +56,24 @@ L =head1 DESCRIPTION -This chapter of the tutorial builds on the work done in Chapter 2 to -explore some features that are more typical of "real world" web -applications. From this chapter of the tutorial onward, we will be -building a simple book database application. Although the application -will be too limited to be of use to anyone, it should provide a basic -environment where we can explore a variety of features used in -virtually all web applications. +This chapter of the tutorial builds on the work done in Chapter 2 to +explore some features that are more typical of "real world" web +applications. From this chapter of the tutorial onward, we will be +building a simple book database application. Although the application +will be too limited to be of use to anyone, it should provide a basic +environment where we can explore a variety of features used in virtually +all web applications. You can check out the source code for this example from the Catalyst Subversion repository as per the instructions in L. -Please take a look at -L before -doing the rest of this tutorial. Although the tutorial should work -correctly under most any recent version of Perl running on any -operating system, the tutorial has been written using Debian 5 and -tested to be sure it runs correctly in this environment. +Please take a look at +L before +doing the rest of this tutorial. Although the tutorial should work +correctly under most any recent version of Perl running on any operating +system, the tutorial has been written using Debian 6 and tested to be +sure it runs correctly in this environment. =head1 CREATE A NEW APPLICATION @@ -95,19 +95,21 @@ tutorial or in a directory that already has a "MyApp" subdirectory): $ 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. (As noted in Chapter 2, omit the ".pl" from -the command if you are using Strawberry Perl.) +the tutorial, except with C and C substituted for 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. +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: @@ -121,12 +123,13 @@ Enables the Catalyst debug output you saw when we started the C