X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FAuthentication.pod;h=63c346cf65662272e175220dff901b1cab8d3526;hb=8a0214b4275e310f64f74c2a250a20c01efd4c66;hp=0f66ebff3cd1df02e6f1df07829a15501ceea2e7;hpb=191dee29949dbcb6c296feb845dc08e22eac2949;p=catagits%2FCatalyst-Manual.git diff --git a/lib/Catalyst/Manual/Tutorial/Authentication.pod b/lib/Catalyst/Manual/Tutorial/Authentication.pod index 0f66ebf..63c346c 100644 --- a/lib/Catalyst/Manual/Tutorial/Authentication.pod +++ b/lib/Catalyst/Manual/Tutorial/Authentication.pod @@ -266,6 +266,10 @@ C is new): Session::State::Cookie /); +B As discussed in MoreCatalystBasics, different versions of +C have used a variety of methods to load the plugins. +You can put the plugins in the C statement if you prefer. + The C plugin supports Authentication while the C plugins are required to maintain state across multiple HTTP requests. @@ -366,12 +370,8 @@ such matters up to you, the designer and programmer. Then open C, locate the C method (or C if you are using an older version of Catalyst) that was automatically inserted by the -helpers when we created the Login controller above, and delete this -line: - - $c->response->body('Matched MyApp::Controller::Login in Login.'); - -Then update it to match: +helpers when we created the Login controller above, and update the +definition of C to match: =head2 index @@ -535,7 +535,7 @@ quick introduction: =item * -The majority of application have traditionally used C actions +The majority of applications have traditionally used C actions for items that respond to user requests and C actions for those that do not directly respond to user input.