X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial.pod;h=6ad32ae64d9da92d50ca20314d7aa1f79c772054;hp=58f6f7edba298017c82d8e132375351663638ce5;hb=b248fa4a4191cd3eaa13d72e6ec8e64dfef973e0;hpb=b89fe2ddc069b0eef992de0e0e6f1dae333da7bd diff --git a/lib/Catalyst/Manual/Tutorial.pod b/lib/Catalyst/Manual/Tutorial.pod index 58f6f7e..6ad32ae 100644 --- a/lib/Catalyst/Manual/Tutorial.pod +++ b/lib/Catalyst/Manual/Tutorial.pod @@ -23,7 +23,7 @@ Catalyst includes a helper script, C, that will set up a skeleton application for you: $ catalyst MyApp - + created "MyApp" created "MyApp/script" created "MyApp/lib" @@ -87,7 +87,7 @@ Catalyst provides: +--------------------------------------+---------------------------------------+ | /default | MyApp | '--------------------------------------+---------------------------------------' - + [...] [catalyst] [info] MyApp powered by Catalyst 5.5 You can connect to your server at http://localhost:3000 @@ -104,7 +104,7 @@ and hit return twice): Connected to localhost. Escape character is '^]'. GET / HTTP/1.0 - + HTTP/1.0 200 OK Date: Mon, 07 Nov 2005 14:57:39 GMT Content-Length: 5525 @@ -188,7 +188,7 @@ explain more about those later. =head2 Debugging The simplest way to debug your Catalyst application is to run it using -the built-in mini-server as described in L. +the built-in mini-server as described in L. If you want to output any debugging information to the console, then call C<< $context->log->debug() >>, passing it a string to output. For @@ -330,7 +330,7 @@ This a private action which will not be matched to a path like our done. Only one end action will be called, if there is one in a controller, it will be prefered over one in the application module, and so on. - + Since we're writing a simple application, just add an end action like this to F: