X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial.pod;h=af64d7fc9d6afae0252c0080b357df2ff5e92265;hb=07e73f821bce2ecf2846ddb2e1b120513d23cb18;hp=dea503ea95f363832b29d399400de289f0290dfb;hpb=b460ad78a952bcaaa8f468d6e578c17002d0645b;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Manual/Tutorial.pod b/lib/Catalyst/Manual/Tutorial.pod index dea503e..af64d7f 100644 --- a/lib/Catalyst/Manual/Tutorial.pod +++ b/lib/Catalyst/Manual/Tutorial.pod @@ -6,26 +6,24 @@ Catalyst::Manual::Tutorial - Getting started with Catalyst This document aims to get you up and running with Catalyst. -NOTE: THIS DOCUMENT IS STILL VERY MUCH IN AN EARLY DRAFT STATE. SEE THE NOTES -AT THE BOTTOM OF THE DOCUMENT. - - +NOTE: THIS DOCUMENT IS STILL VERY MUCH IN AN EARLY DRAFT STATE. SEE +THE NOTES AT THE BOTTOM OF THE DOCUMENT. =head2 Installation -The first step is to install Catalyst, and the simplest way to do this is to -install the Catalyst bundle from CPAN: +The first step is to install Catalyst, and the simplest way to do this +is to install the Catalyst bundle from CPAN: $ perl -MCPAN -e 'install Bundle::Catalyst' -This will retrieve Catalyst and a number of useful extensions and install them -for you. +This will retrieve Catalyst and a number of useful extensions and +install them for you. =head2 Setting up your application -Catalyst includes a helper script, C, that will set up a skeleton -application for you: +Catalyst includes a helper script, C, that will set up a +skeleton application for you: $ catalyst.pl My::App created "My-App" @@ -53,30 +51,37 @@ application for you: created "My-App/script/test.pl" created "My-App/script/create.pl" -This creates the directory structure shown, populated with skeleton files. +This creates the directory structure shown, populated with skeleton +files. =head2 Testing out the sample application You can test out your new application by running the server script that -catalyst provides: +Catalyst provides: $ cd My-App $ script/server.pl [...] [catalyst] [debug] Debug messages enabled - [...] [catalyst] [debug] Loaded engine "Catalyst::Engine::CGI" - [...] [catalyst] [debug] Initialized components "" - [...] [catalyst] [info] My::App powered by Catalyst 4.26 - [...] [catalyst] [debug] "My::App" defined "!default" as "CODE(0x83fd570)" + [...] [catalyst] [debug] Loaded engine "Catalyst::Engine::HTTP" + [...] [catalyst] [debug] Loaded private actions + .=----------------------+----------------------+---------------=. + | Private | Class | Code | + |=----------------------+----------------------+---------------=| + | /default | MyApp | CODE(0x86f08ac)| + '=----------------------+----------------------+---------------=' + "My::App" defined "!default" as "CODE(0x83fd570)" + [...] [catalyst] [info] My::App powered by Catalyst 5.00 You can connect to your server at http://localhost:3000 -(Note that each line logged by Catalyst includes a timestamp, which has been -replaced here with "C<...>" so that the text fits onto the lines.) +(Note that each line logged by Catalyst includes a timestamp, which has +been replaced here with "C<...>" so that the text fits onto the lines.) -The server is now waiting for you to make requests of it. Try using telnet to -manually make a simple GET request of the server (when telnet responds with -"Escape character is '^]'.", type "GET / HTTP/1.0" and hit return twice): +The server is now waiting for you to make requests of it. Try using +telnet to manually make a simple GET request of the server (when +telnet responds with "Escape character is '^]'.", type "GET / HTTP/1.0" +and hit return twice): $ telnet localhost 3000 Trying 127.0.0.1... @@ -85,10 +90,10 @@ manually make a simple GET request of the server (when telnet responds with GET / HTTP/1.0 HTTP/1.0 200 - Server: Catalyst/4.26 + Server: Catalyst/5.00 Status: 200 Date: Sun, 20 Mar 2005 12:31:55 GMT - X-catalyst: 4.26 + X-catalyst: 5.00 Content-length: 40 Content-Type: text/html; charset=ISO-8859-1 @@ -101,10 +106,13 @@ More trace messages will appear in the original terminal window: [...] [catalyst] [debug] ******************************** [...] [catalyst] [debug] * Request 1 (0.027/s) [9818] [...] [catalyst] [debug] ******************************** - [...] [catalyst] [debug] "GET" request for "" - [...] [catalyst] [debug] Using default action - [...] [catalyst] [info] Processing "!default" took 0.000033s + [...] [catalyst] [debug] "GET" request for "" from localhost [...] [catalyst] [info] Request took 0.051399s (19.456/s) + .=--------------------------------------------------+----------=. + | Action | Time | + |=--------------------------------------------------+----------=| + | /default | 0.000026s | + '=--------------------------------------------------+----------=' The server will continue running until you interrupt it. @@ -114,11 +122,11 @@ helper script, C