X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FCatalystBasics.pod;h=de4fe54f176f561d8eba6aff6eee3c7e19e62bc0;hp=c1e1b91ba9e1e91def9c9485d9d531f8d6eae408;hb=e13f83ccef7d53d2bcb8d2f2f459bbd2e6f3474e;hpb=3533daff0314522f79dff9c618da087568f1378c diff --git a/lib/Catalyst/Manual/Tutorial/CatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/CatalystBasics.pod index c1e1b91..de4fe54 100644 --- a/lib/Catalyst/Manual/Tutorial/CatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/CatalystBasics.pod @@ -145,7 +145,7 @@ directories and files it creates: View # Directory for Views Hello.pm # Base application module Makefile.PL # Makefile to build application - hello.yml # Application configuration file + hello.conf # Application configuration file README # README file root # Equiv of htdocs, dir for templates, css, javascript favicon.ico @@ -192,7 +192,7 @@ server: [debug] Loaded dispatcher "Catalyst::Dispatcher" [debug] Loaded engine "Catalyst::Engine::HTTP" [debug] Found home "/home/me/Hello" - [debug] Loaded Config "/home/me/Hello/hello.yml" + [debug] Loaded Config "/home/me/Hello/hello.conf" [debug] Loaded components: .-----------------------------------------------------------------+----------. | Class | Type | @@ -318,8 +318,8 @@ Now that the TT.pm "View" exists, Catalyst will autodiscover it and be able to use it to display the view templates, using the "process" method that it inherits from the C. -Template Toolkit is a rather complicated template facility, with -excellent docs at +Template Toolkit is a very full featured template facility, with +excellent documentation at L, but since this is not a TT tutorial, we'll stick to only basic TT usage here (and explore some of the more common TT features in later