[Catalyst-commits] r6547 - in trunk/Catalyst-Plugin-Authentication:
. lib/Catalyst/Plugin
matthewt at dev.catalyst.perl.org
matthewt at dev.catalyst.perl.org
Tue Jul 17 17:58:00 GMT 2007
Author: matthewt
Date: 2007-07-17 17:58:00 +0100 (Tue, 17 Jul 2007)
New Revision: 6547
Modified:
trunk/Catalyst-Plugin-Authentication/
trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication.pm
Log:
r33945 at cain (orig r5495): jayk | 2006-11-11 22:16:16 +0000
Tweaks to documentation and spelling / capitalization fixes
Property changes on: trunk/Catalyst-Plugin-Authentication
___________________________________________________________________
Name: svk:merge
- 4ad37cd2-5fec-0310-835f-b3785c72a374:/branches/Catalyst-Plugin-Authentication:5494
+ 4ad37cd2-5fec-0310-835f-b3785c72a374:/branches/Catalyst-Plugin-Authentication:5495
Modified: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication.pm 2007-07-17 16:57:57 UTC (rev 6546)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication.pm 2007-07-17 16:58:00 UTC (rev 6547)
@@ -447,8 +447,8 @@
Authentication data can also be stored in a session, if the application
is using the L<Catalyst::Plugin::Session> module.
-B<NOTE> in version 0.10 of this module, the api changed. Please see
-L</COMPATIBILITY ROUTINES> for more information.
+B<NOTE> in version 0.10 of this module, the interface to this module changed.
+Please see L</COMPATIBILITY ROUTINES> for more information.
=head1 INTRODUCTION
@@ -827,8 +827,7 @@
=head2 User Storage Backends
L<Catalyst::Plugin::Authentication::Store::Minimal>,
-L<Catalyst::Plugin::Authentication::Store::Htpasswd>,
-L<Catalyst::Plugin::Authentication::Store::DBIC> (also works with Class::DBI).
+L<Catalyst::Plugin::Authentication::Store::DBIx::Class>,
=head2 Credential verification
@@ -865,20 +864,19 @@
=head1 COMPATIBILITY ROUTINES
-=over 4
-
In version 0.10 of L<Catalyst::Plugin::Authentication>, the API
changed. For app developers, this change is fairly minor, but for
Credential and Store authors, the changes are significant.
Please see the documentation in version 0.09 of
-Catalyst::Plugin::Authentication for a better understanding of how the old api
+Catalyst::Plugin::Authentication for a better understanding of how the old API
functioned.
The items below are still present in the plugin, though using them is
deprecated. They remain only as a transition tool, for those sites which can
-not be upgraded to use the new system due to local customizations, or use of
-Credential / store modules that have not yet been updated.
+not yet be upgraded to use the new system due to local customizations or use
+of Credential / Store modules that have not yet been updated to work with the
+new backend API.
These routines should not be used in any application using realms
functionality or any of the methods described above. These are for reference
@@ -899,6 +897,7 @@
This is set to C<< $c->config->{authentication}{store} >> if that value exists,
or by using a Store plugin:
+ # load the Minimal authentication store.
use Catalyst qw/Authentication Authentication::Store::Minimal/;
Sets the default store to
More information about the Catalyst-commits
mailing list