X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F02_CatalystBasics.pod;fp=lib%2FCatalyst%2FManual%2FTutorial%2F02_CatalystBasics.pod;h=3f58d07648b945f2998b3d6051249bf6a569747f;hp=99b531b978dce709cf4712c69976396b819420aa;hb=f4e9de4a3171fd75d04fa8e294fd9a0ae367bc18;hpb=429d1caf111575afa4c25287cc48d7ed712af327 diff --git a/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod index 99b531b..3f58d07 100644 --- a/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod @@ -117,13 +117,13 @@ L. Catalyst provides a number of helper scripts that can be used to quickly flesh out the basic structure of your application. All Catalyst projects -begin with the C helper (see +begin with the F helper (see L for more information on helpers). Also note that as of Catalyst 5.7000, you will not have the helper scripts unless you install both L and L. -In this first chapter of the tutorial, use the Catalyst C +In this first chapter of the tutorial, use the Catalyst F script to initialize the framework for an application called C: $ catalyst.pl Hello @@ -140,7 +140,7 @@ Note: If you are using Strawberry Perl on Win32, drop the ".pl" from the end of the "catalyst.pl" command and simply use "catalyst Hello". -The C helper script will display the names of the +The F helper script will display the names of the directories and files it creates: Changes # Record of application changes @@ -170,7 +170,7 @@ directories and files it creates: Catalyst will "auto-discover" modules in the Controller, Model, and View -directories. When you use the C script it will create Perl +directories. When you use the F script it will create Perl module scaffolds in those directories, plus test files in the "t" directory. The default location for templates is in the "root" directory. The scripts in the script directory will always start with @@ -264,7 +264,7 @@ necessary. =head2 The Simplest Way The Root.pm controller is a place to put global actions that usually -execute on the root URL. Open the C file +execute on the root URL. Open the F file in your editor. You will see the "index" subroutine, which is responsible for displaying the welcome screen that you just saw in your browser. @@ -314,7 +314,7 @@ method. While you leave the C