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=3404ca2ee0aab6098e771bc1d4672a5142f73034;hp=27f1dcd7bb228706b3d067ee23f742fcc69144bc;hb=3dfcf16a80948793046ece8b2bde7f5272d5a7bb;hpb=444d6b277933a652eb38bbeae072dbdfbe47c1c8 diff --git a/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod index 27f1dcd..3404ca2 100644 --- a/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod @@ -193,8 +193,7 @@ previous step): [debug] Statistics enabled [debug] Loaded plugins: .----------------------------------------------------------------------------. - | Catalyst::Plugin::ConfigLoader 0.23 | - | Catalyst::Plugin::Static::Simple 0.21 | + | Catalyst::Plugin::ConfigLoader 0.27 | '----------------------------------------------------------------------------' [debug] Loaded dispatcher "Catalyst::Dispatcher" @@ -221,11 +220,11 @@ previous step): .-------------------------------------+--------------------------------------. | Path | Private | +-------------------------------------+--------------------------------------+ - | / | /default | | / | /index | + | / | /default | '-------------------------------------+--------------------------------------' - [info] Hello powered by Catalyst 5.80013 + [info] Hello powered by Catalyst 5.80018 You can connect to your server at http://debian:3000 Point your web browser to L (substituting a @@ -235,15 +234,16 @@ screen or an "Index" screen, you probably forgot to specify port 3000 in your URL). Information similar to the following should be appended to the logging output of the development server: - [info] *** Request 1 (0.005/s) [20712] [Sun Oct 11 11:58:51 2009] *** - [debug] "GET" request for "/" from "172.0.0.1" - [info] Request took 0.007342s (136.203/s) - .----------------------------------------------------------------+-----------. - | Action | Time | - +----------------------------------------------------------------+-----------+ - | /index | 0.000491s | - | /end | 0.000595s | - '----------------------------------------------------------------+-----------' + [info] *** Request 1 (0.001/s) [23194] [Sat Jan 16 11:09:18 2010] *** + [debug] "GET" request for "/" from "127.0.0.1" + [debug] Path is "/" + [info] Request took 0.004851s (206.143/s) + .------------------------------------------------------------+-----------. + | Action | Time | + +------------------------------------------------------------+-----------+ + | /index | 0.000395s | + | /end | 0.000425s | + '------------------------------------------------------------+-----------' Press Ctrl-C to break out of the development server. @@ -303,7 +303,7 @@ C method. Add the following subroutine to your C file: - sub hello : Global { + sub hello :Global { my ( $self, $c ) = @_; $c->response->body("Hello, World!"); @@ -384,7 +384,7 @@ template file (C). The rest of the template is normal HTML. Change the hello method in C to the following: - sub hello : Global { + sub hello :Global { my ( $self, $c ) = @_; $c->stash->{template} = 'hello.tt'; @@ -417,7 +417,7 @@ not much there. In C, add the following method: - sub test : Local { + sub test :Local { my ( $self, $c ) = @_; $c->stash->{username} = "John";