X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial.pod;h=5a32fc8ccf323051df5b7b82261c03b210566e89;hb=0d201f156689ef722093027789f4a6b1b938cd86;hp=adfc086ed3142122e371ccede80852d5091b346a;hpb=1c14b7796fa01f2430bc59481aa37be748b2c661;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Manual/Tutorial.pod b/lib/Catalyst/Manual/Tutorial.pod index adfc086..5a32fc8 100644 --- a/lib/Catalyst/Manual/Tutorial.pod +++ b/lib/Catalyst/Manual/Tutorial.pod @@ -1,323 +1,497 @@ =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. - -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: - - $ perl -MCPAN -e 'install Bundle::Catalyst' - -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.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" +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. -This creates the directory structure shown, populated with skeleton -files. +The tutorial is divided into the following sections: +=over 4 + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=back + +A tarball of the final application is available at +C. + +=head1 Detailed Table Of Contents + +=head2 Part 1: Introduction + +=over 4 + +=item * + +VERSIONS AND CONVENTIONS USED IN THIS TUTORIAL + +=item * + +CATALYST INSTALLATION + +=item * + +DATABASES + +=item * + +WHERE TO GET WORKING CODE + +=back + + +=head2 Part 2: Catalyst Application Development Basics + +=over 4 + +=item * + +CREATE A CATALYST PROJECT + +=item * + +CREATE A SQLITE DATABASE + +=item * + +EDIT THE LIST OF CATALYST PLUGINS + +=item * + +DATABASE ACCESS WITH DBIx::Class + +=item * + +Create a DBIC Schema File + +=item * + +Create the DBIC ``Result Source'' Files + +=item * + +Use Catalyst::Model::DBIC::Schema to Load the Model Class + + =item * + +CREATE A CATALYST CONTROLLER + +=item * + +CATALYST VIEWS + +=over 4 + +=item * + +Create a Catalyst View Using TTSite + +=item * + +Globally Customize Every View + +=item * + +Create a TT Template Page + +=back + +=item * + +RUN THE APPLICATION + +=back + +=head2 Part 3: Basic CRUD + +=over 4 + +=item * + +FORMLESS SUBMISSION + +=over 4 + +=item * + +Include a Create Action in the Books Controller + +=item * + +Include a Template for the url_create Action: + +=item * + +Try the url_create Feature + +=back + +=item * + +MANUALLY BUILDING A CREATE FORM + +=over 4 + +=item * + +Add a Method to Display the Form + +=item * + +Add a Template for the Form + +=item * + +Add Method to Process Form Values and Update Database + +=item * + +Test Out the Form + +=back + +=item * + +A SIMPLE DELETE FEATURE + +=over 4 + +=item * + +Include a Delete Link in the List + +=item * + +Add a Delete Action to the Controller + +=item * + +Try the Delete Feature + +=back + +=back + +=head2 Part 4: Authentication + +=over 4 + +=item * + +BASIC AUTHENTICATION + +=over 4 + +=item * + +Add Users and Roles to the Database + +=item * + +Add User and Role Information to DBIC Schema + +=item * + +Create New ``Result Source Objects'' + +=item * + +Sanity-Check Reload of Development Server + +=item * + +Include Authentication and Session Plugins + +=item * + +Configure Authentication + +=item * + +Add Login and Logout Controllers + +=item * + +Add a Login Form TT Template Page + +=item * + +Add Valid User Check + +=item * + +Displaying Content Only to Authenticated Users + +=item * + +Try Out Authentication + +=back + +=item * + +USING PASSWORD HASHES + +=over 4 + +=item * + +Get a SHA-1 Hash for the Password + +=item * + +Switch to SHA-1 Password Hashes in the Database + +=item * +Enable SHA-1 Hash Passwords in Catalyst::Plugin::Authentication::Store::DBIC -=head2 Testing out the sample application +=item * -You can test out your new application by running the server script that -catalyst provides: +Try Out the Hashed Passwords - $ cd My-App - $ script/server.pl - [...] [catalyst] [debug] Debug messages enabled - [...] [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 +=back -(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.) +=back -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): +=head2 Part 5: Authorization - $ telnet localhost 3000 - Trying 127.0.0.1... - Connected to localhost. - Escape character is '^]'. - GET / HTTP/1.0 - - HTTP/1.0 200 - Server: Catalyst/5.00 - Status: 200 - Date: Sun, 20 Mar 2005 12:31:55 GMT - X-catalyst: 5.00 - Content-length: 40 - Content-Type: text/html; charset=ISO-8859-1 +=over 4 - Congratulations, My::App is on Catalyst! - Connection closed by foreign host. - $ +=item * -More trace messages will appear in the original terminal window: +BASIC AUTHORIZATION - [...] [catalyst] [debug] ******************************** - [...] [catalyst] [debug] * Request 1 (0.027/s) [9818] - [...] [catalyst] [debug] ******************************** - [...] [catalyst] [debug] "GET" request for "" from localhost - [...] [catalyst] [info] Request took 0.051399s (19.456/s) - .=--------------------------------------------------+----------=. - | Action | Time | - |=--------------------------------------------------+----------=| - | /default | 0.000026s | - '=--------------------------------------------------+----------=' +=over 4 -The server will continue running until you interrupt it. +=item * -The application can also be tested from the command line using the generated -helper script, C