X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FCatalystBasics.pod;h=ee43d241022dfb550ea3b12d1048d5a2cbda222b;hb=45569686c8d290df9fb4bd6a89ec1fcf6b5bbcb2;hp=12bad6a08bef258bc9fe398a1bdaa1a5f82549ac;hpb=292eba91f41f6be26c6f432293a39b0ea938429d;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Manual/Tutorial/CatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/CatalystBasics.pod index 12bad6a..ee43d24 100644 --- a/lib/Catalyst/Manual/Tutorial/CatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/CatalystBasics.pod @@ -45,7 +45,7 @@ L =item 9 -L +L =back @@ -103,18 +103,18 @@ to persist and restore objects to/from a relational database. =back -B: Note that all of the code for this part of the tutorial can be -pulled from the Catalyst Subversion repository in one step with the -following command: - - svn checkout http://dev.catalyst.perl.org/repos/Catalyst/trunk/examples/Tutorial -r 4609 . - +You can checkout the source code for this example from the catalyst +subversion repository as per the instructions in +L =head1 CREATE A CATALYST PROJECT 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. +begin with the C 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 the case of this tutorial, use the Catalyst C script to initialize the framework for an application called C: @@ -139,13 +139,14 @@ application with the built-in development web server: [debug] Debug messages enabled [debug] Loaded plugins: .----------------------------------------------------------------------------. - | Catalyst::Plugin::ConfigLoader 0.06 | + | Catalyst::Plugin::ConfigLoader 0.13 | | Catalyst::Plugin::Static::Simple 0.14 | '----------------------------------------------------------------------------' [debug] Loaded dispatcher "Catalyst::Dispatcher" [debug] Loaded engine "Catalyst::Engine::HTTP" - [debug] Found home "/root/dev/MyApp" + [debug] Found home "/home/me/MyApp" + [debug] Loaded Config "/home/me/myapp.yml" [debug] Loaded components: .-----------------------------------------------------------------+----------. | Class | Type | @@ -161,8 +162,13 @@ application with the built-in development web server: | /end | MyApp::Controller::Root | end | '----------------------+--------------------------------------+--------------' - [info] MyApp powered by Catalyst 5.7000 - You can connect to your server at http://localhost.localdomain:3000 + [info] MyApp powered by Catalyst 5.7002 + You can connect to your server at http://localhost:3000 + +B: Be sure you run the C