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=ffd01befef9115434c983c41cbb0a81a1c89f11c;hp=208b02c58b16f2b352ff18ff65fc52fe11972cb3;hb=5a82cb361e4a283dede371331f437bfd05ccba14;hpb=3ab6187c1a123983b6ae29e57f543328ce15755c diff --git a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod index 208b02c..ffd01be 100644 --- a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod @@ -189,7 +189,8 @@ your I) and delete the lines with: Then replace it with: # Load plugins - use Catalyst qw/-Debug + use Catalyst qw/ + -Debug ConfigLoader Static::Simple @@ -553,7 +554,7 @@ model working below. If you run into problems getting your application to run correctly, it might be helpful to refer to some of the debugging techniques covered in -the L part of the +the L chapter of the tutorial. @@ -692,8 +693,9 @@ running this command: 'print "$Catalyst::Model::DBIC::Schema::VERSION\n"' 0.23 -(please note that the '\' above is a line continuation marker and -should NOT be included as part of the command) +Please note the '\' above. Depending on your environment, you might +be able to cut and paste the text as shown or need to remove the '\' +character to that the command is all on a single line. If you don't have version 0.23 or higher, please run this command to install it directly from CPAN: @@ -713,7 +715,7 @@ L and automatically build the required files for us: $ script/myapp_create.pl model DB DBIC::Schema MyApp::Schema \ - create=static components=TimeStamp dbi:SQLite:myapp.db + create=static dbi:SQLite:myapp.db exists "/home/me/MyApp/script/../lib/MyApp/Model" exists "/home/me/MyApp/script/../t" Dumping manual schema for MyApp::Schema to directory /home/me/MyApp/script/../lib ... @@ -721,8 +723,9 @@ automatically build the required files for us: created "/home/me/MyApp/script/../lib/MyApp/Model/DB.pm" created "/home/me/MyApp/script/../t/model_DB.t" -(please note that the '\' above is a line continuation marker and -should NOT be included as part of the command) +Please note the '\' above. Depending on your environment, you might +be able to cut and paste the text as shown or need to remove the '\' +character to that the command is all on a single line. The C