X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F05_Authentication.pod;h=fff4bea97236d59fe73d901c57ce47b13600b27f;hp=aa0c38635ff692c1ded0f37f166a7946f2e5a7c0;hb=e12f80114e604748198074c94b9e6408a6bac099;hpb=61cb69fd002171a4c8a0e6c1188dc3530b918993 diff --git a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod index aa0c386..fff4bea 100644 --- a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod +++ b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod @@ -244,17 +244,17 @@ configuration (see below). Make sure you include the additional plugins as new dependencies in the Makefile.PL file something like this: - requires ( - 'Catalyst::Plugin::Authentication' => '0', - 'Catalyst::Plugin::Session' => '0', - 'Catalyst::Plugin::Session::Store::FastMmap' => '0', - 'Catalyst::Plugin::Session::State::Cookie' => '0', - ); + requires 'Catalyst::Plugin::Authentication'; + requires 'Catalyst::Plugin::Session'; + requires 'Catalyst::Plugin::Session::Store::FastMmap'; + requires 'Catalyst::Plugin::Session::State::Cookie'; Note that there are several options for L -(L -is generally a good choice if you are on Unix; try + +(L or +L is +generally a good choice if you are on Unix; try L if you are on Win32) -- consult L and its subclasses @@ -627,7 +627,7 @@ includes EncodedColumn in the C line. Take a look at C since that's the main class where we want to use hashed and salted passwords: - __PACKAGE__->load_components("InflateColumn::DateTime", "TimeStamp", "EncodedColumn", "Core"); + __PACKAGE__->load_components("InflateColumn::DateTime", "TimeStamp", "EncodedColumn"); =head2 Modify the "password" Column to Use EncodedColumn