X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FCatalystBasics.pod;h=b150990f054d8a2e49d24de2d65e31020b7bbd1e;hb=a4804358868199fe9ec2c98becadaa3b469a1a4f;hp=32388a37ef86019b3b7ee34e50bbab1e6298b41e;hpb=586b6141d5d4fd8bea38d71e70dab2af3579314f;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Manual/Tutorial/CatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/CatalystBasics.pod index 32388a3..b150990 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,19 +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@4609 . - IMPORTANT: Does not work yet. Will be completed for final version. - +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: @@ -140,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 | @@ -162,8 +162,13 @@ application with the built-in development web server: | /end | MyApp::Controller::Root | end | '----------------------+--------------------------------------+--------------' - [info] MyApp powered by Catalyst 5.70 - 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