X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FIntro.pod;h=fdce808bf73a20d6b676054b8a16515af8cbcb00;hp=5fdbc7b1c98dbb90ddd78224e87724b4b8d68cb5;hb=cf582e91b80f0002a576fd6c01cb571311cb609f;hpb=ffeb744858046041fe3235d231229555cacf16ed diff --git a/lib/Catalyst/Manual/Tutorial/Intro.pod b/lib/Catalyst/Manual/Tutorial/Intro.pod index 5fdbc7b..fdce808 100644 --- a/lib/Catalyst/Manual/Tutorial/Intro.pod +++ b/lib/Catalyst/Manual/Tutorial/Intro.pod @@ -70,11 +70,10 @@ management). You can obtain the code for all the tutorial examples from the catalyst subversion repository by issuing the command: - svn co http://dev.catalyst.perl.org/repos/Catalyst/tags/examples/Tutorial/MyApp/5.7/ CatalystTutorial + svn co http://dev.catalyst.perl.org/repos/Catalyst/trunk/examples/Tutorial/ CatalystTutorial -This will download the current code for each tutorial chapter in the -CatalystTutorial directory. Each example application directory has -the same name as the tutorial chapter. +This will download the most recent tarball for each part of the +tutorial into the CatalystTutorial directory on your machine. B area of the Catalyst Subversion repository at L. -B There are a variety of other introductory materials available -through the Catalyst web site and at -L and -L. - =head1 VERSIONS AND CONVENTIONS USED IN THIS TUTORIAL @@ -342,15 +336,16 @@ Install Catalyst: sudo apt-get update sudo apt-get install libdbd-sqlite3-perl libcatalyst-perl libcatalyst-modules-perl libconfig-general-perl -Accept all of the dependencies. Done. +Accept all of the dependencies. Done. + +If you are running from the Live CD, you probably also want to free up +some disk space with the following: -NOTE: If you are low on disk space after the above commands (use C -to tell), you can free up some space with -C (the Live CD uses memory for -disk space, so having a decent amount of memory will help). And, -while the instructions above mention the Live CD because that makes it -easy for people new to Linux, you can obviously also use one of the -options to install Ubuntu on your drive. + sudo apt-get clean + +NOTE: While the instructions above mention the Live CD because that +makes it easy for people new to Linux, you can obviously also use one +of the options to install Ubuntu on your drive. =back @@ -449,21 +444,15 @@ same. =head1 WHERE TO GET WORKING CODE -Each part of the tutorial has complete code available in the main -Catalyst Subversion repository (see the note at the beginning of each -part for the appropriate svn command to use). Additionally, the final -code through Part 8 of the tutorial is available as a ready-to-run -tarball at -L. -The final code for other parts of the tutorial are available at: -L. - +Each part of the tutorial has complete code available as a tarball in +the main Catalyst Subversion repository (see the note at the beginning +of each part for the appropriate svn command to use). -B You can run the test cases for the final code with the following -commands: +B You can run the test cases for the final code through Part 8 +with the following commands: - wget http://dev.catalyst.perl.org/repos/Catalyst/trunk/examples/Tutorial/Final_Tarball/MyApp_Part8.tgz - tar zxvf MyApp.tgz + wget http://dev.catalyst.perl.org/repos/Catalyst/trunk/examples/Tutorial/MyApp_Part8.tgz + tar zxvf MyApp_Part8.tgz cd MyApp CATALYST_DEBUG=0 prove --lib lib t