From: Rafael Kitover Date: Sun, 7 Feb 2010 10:30:49 +0000 (+0000) Subject: chapter 5: recommend Memcached, minor changes X-Git-Tag: v5.8005~50 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=e12f80114e604748198074c94b9e6408a6bac099 chapter 5: recommend Memcached, minor changes --- 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