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=4a96d18921cb230c697549271e62320ea1000c3d;hp=7bae32b6e0fb5690d512c3136e4c2cc13d4ad553;hb=1dc333c7b1dbb2334c1a263f5c19e6191f5562a8;hpb=9887a877add998942bf080efb0b12aaf1df9a538 diff --git a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod index 7bae32b..4a96d18 100644 --- a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod @@ -200,20 +200,22 @@ For our application, we want to add one new plugin into the mix. To do this, edit C (this file is generally referred to as your I) and delete the lines with: - use Catalyst qw/-Debug - ConfigLoader - Static::Simple/; + use Catalyst qw/ + -Debug + ConfigLoader + Static::Simple + /; Then replace it with: # Load plugins use Catalyst qw/ - -Debug - ConfigLoader - Static::Simple - - StackTrace - /; + -Debug + ConfigLoader + Static::Simple + + StackTrace + /; B Recent versions of C have used a variety of techniques to load these plugins/flags. For example, you might see @@ -233,7 +235,7 @@ browser, not in the console window from which you're running your application, which is where logging output usually goes. Make sure when adding new plugins you also include them as a new -dependancy within the Makefile.PL file. For example, after adding +dependency within the Makefile.PL file. For example, after adding the StackTrace plugin the Makefile.PL should include the following line: