X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FCatalystBasics.pod;h=d1303bbc2e33804097630f35e8c3d06cd2955d10;hb=f2c10d65222a90ee666a98daeff0120508061b52;hp=db00bcee7ec2c3bb8fdaa98028f16e665a7a86cd;hpb=13852f978caf002dab00728e7f6d03c30c3c9560;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Manual/Tutorial/CatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/CatalystBasics.pod index db00bce..d1303bb 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@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