X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FMoreCatalystBasics.pod;h=1c6f48f13e92a841cac8fd993513564d443ae01a;hp=48982abfa40b6ed81039c662a1a700934cf46919;hb=7edc54841a8a242568f86b548bf05ebe2400de80;hpb=45c7830fc2a9167e08203368ca11d6d13628c5fb diff --git a/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod index 48982ab..1c6f48f 100644 --- a/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod @@ -56,25 +56,25 @@ L =head1 DESCRIPTION -This part of the tutorial builds on the work done in Part 2 to explore -some features that are more typical of "real world" web applications. -From this part 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 +This part of the tutorial builds on the work done in Part 2 to explore +some features that are more typical of "real world" web applications. +From this part 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 checkout the source code for this example from the catalyst subversion repository as per the instructions in -L +L. =head1 CREATE A NEW APPLICATION -The remainder of the tutorial will build an application call C. -Use the Catalyst C script to initialize the framework for -an application called C (make sure you aren't still inside the -directory of the C application from the previous part of the +The remainder of the tutorial will build an application called C. +First use the Catalyst C script to initialize the framework +for the C application (make sure you aren't still inside the +directory of the C application from the previous part of the tutorial): $ catalyst.pl MyApp @@ -86,38 +86,38 @@ tutorial): created "MyApp/script/myapp_create.pl" $ cd MyApp -This creates a similar skeletal structure to what we saw in Part 2 of -the tutorial, except with C or C substituted for +This creates a similar skeletal structure to what we saw in Part 2 of +the tutorial, except with C and C substituted for C and C. =head1 EDIT THE LIST OF CATALYST PLUGINS One of the greatest benefits of Catalyst is that it has such a large -library of plugins 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 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. By default, Catalyst enables three plugins/flags: =over 4 -=item * +=item * C<-Debug> Flag Enables the Catalyst debug output you saw when we started the C