X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial.pod;h=4b5084841015a7aa4bb81d6c0e5b537f7240a158;hb=4f4dac1f2c66aeaea0d05e100f550af669c56dcb;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..4b50848 100644 --- a/lib/Catalyst/Manual/Tutorial.pod +++ b/lib/Catalyst/Manual/Tutorial.pod @@ -1,317 +1,583 @@ =head1 NAME -Catalyst::Manual::Tutorial - Getting started with Catalyst +Catalyst::Manual::Tutorial - Catalyst Tutorial: Overview =head1 DESCRIPTION -This document aims to get you up and running with Catalyst. +The Catalyst framework is a flexible and comprehensive environment for +quickly building high-functionality web applications. This tutorial is +designed to provide a rapid introduction to its basics and its most +commonly used features while focusing on real-world best practices. -NOTE: THIS DOCUMENT IS STILL VERY MUCH IN AN EARLY DRAFT STATE. SEE THE NOTES -AT THE BOTTOM OF THE DOCUMENT. +The tutorial is divided into the following sections: +B CLICK THESE LINKS TO JUMP TO CHAPTERS (the index links above +only navigate inside this page). +=over 4 -=head2 Installation +=item * -The first step is to install Catalyst, and the simplest way to do this is to -install the Catalyst bundle from CPAN: +L - $ perl -MCPAN -e 'install Bundle::Catalyst' +=item * -This will retrieve Catalyst and a number of useful extensions and install them -for you. +L +=item * -=head2 Setting up your application +L -Catalyst includes a helper script, C, that will set up a skeleton -application for you: +=item * - $ catalyst.pl My::App - created "My-App" - created "My-App/script" - created "My-App/lib" - created "My-App/root" - created "My-App/t" - created "My-App/t/m" - created "My-App/t/v" - created "My-App/t/c" - created "My-App/lib/My/App" - created "My-App/lib/My/App/M" - created "My-App/lib/My/App/V" - created "My-App/lib/My/App/C" - created "My-App/lib/My/App.pm" - created "My-App/Makefile.PL" - created "My-App/README" - created "My-App/Changes" - created "My-App/t/01app.t" - created "My-App/t/02podcoverage.t" - created "My-App/script/cgi.pl" - created "My-App/script/nph-cgi.pl" - created "My-App/script/fcgi.pl" - created "My-App/script/server.pl" - created "My-App/script/test.pl" - created "My-App/script/create.pl" +L -This creates the directory structure shown, populated with skeleton files. +=item * +L +=item * -=head2 Testing out the sample application +L -You can test out your new application by running the server script that -catalyst provides: +=item * - $ 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)" - You can connect to your server at http://localhost:3000 +L -(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.) +=item * -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): +L - $ telnet localhost 3000 - Trying 127.0.0.1... - Connected to localhost. - Escape character is '^]'. - GET / HTTP/1.0 - - HTTP/1.0 200 - Server: Catalyst/4.26 - Status: 200 - Date: Sun, 20 Mar 2005 12:31:55 GMT - X-catalyst: 4.26 - Content-length: 40 - Content-Type: text/html; charset=ISO-8859-1 +=item * - Congratulations, My::App is on Catalyst! - Connection closed by foreign host. - $ +L -More trace messages will appear in the original terminal window: +=back - [...] [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] [info] Request took 0.051399s (19.456/s) +A tarball of the final application is available at +L. -The server will continue running until you interrupt it. -The application can also be tested from the command line using the generated -helper script, C