X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F02_CatalystBasics.pod;h=f04e5edfbf1276fe402c826e69bfa4dd2ed39158;hp=1ffcd2c072dbaa1c8fa982b1c7de8e4d066ea27a;hb=f390ee62bbfa00c03c8c2ae8b573e7d3b1e38c11;hpb=e7cfb0cc7b727def160a320e0329ad866d6b2607 diff --git a/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod index 1ffcd2c..f04e5ed 100644 --- a/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod @@ -427,11 +427,6 @@ default) view to be rendered (unless there's a C<$c-Eresponse- Ebody()> statement). So your template will be magically displayed at the end of your method. -After saving the file, restart the development server, and look at -L again. You should -see the template that you just made. - - =head1 CREATE A SIMPLE CONTROLLER AND AN ACTION Create a controller named "Site" by executing the create script: @@ -475,10 +470,6 @@ template file at that location. Include a line like:

Hello, [% username %]!

-Bring up or restart the server. Notice in the server output that -C is listed in the Loaded Path actions. Go to -L in your browser. - You should see your test.tt file displayed, including the name "John" that you set in the controller.