[Catalyst-commits] r7232 - in trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication: . Credential Store User

jayk at dev.catalyst.perl.org jayk at dev.catalyst.perl.org
Wed Dec 5 06:06:31 GMT 2007


Author: jayk
Date: 2007-12-05 06:06:30 +0000 (Wed, 05 Dec 2007)
New Revision: 7232

Added:
   trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User.pm
   trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User/
   trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User/Hash.pm
Modified:
   trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Credential/Password.pm
   trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Store/Minimal.pm
Log:
Compatibility shims

Modified: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Credential/Password.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Credential/Password.pm	2007-12-05 02:37:29 UTC (rev 7231)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Credential/Password.pm	2007-12-05 06:06:30 UTC (rev 7232)
@@ -20,6 +20,8 @@
 THIS IS A COMPATIBILITY SHIM.  It allows old configurations of Catalyst
 Authentication to work without code changes.  
 
+B<DO NOT USE IT IN ANY NEW CODE!>
+
 Please see L<Catalyst::Authentication::Credential::Password> for more information.
 
 

Modified: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Store/Minimal.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Store/Minimal.pm	2007-12-05 02:37:29 UTC (rev 7231)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Store/Minimal.pm	2007-12-05 06:06:30 UTC (rev 7232)
@@ -20,5 +20,7 @@
 THIS IS A COMPATIBILITY SHIM.  It allows old configurations of Catalyst
 Authentication to work without code changes.  
 
+B<DO NOT USE IT IN ANY NEW CODE!>
+
 Please see L<Catalyst::Authentication::Store::Minimal> for more information.
 

Added: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User/Hash.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User/Hash.pm	                        (rev 0)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User/Hash.pm	2007-12-05 06:06:30 UTC (rev 7232)
@@ -0,0 +1,25 @@
+package Catalyst::Plugin::Authentication::User::Hash;
+
+use strict;
+use warnings;
+
+use base qw/Catalyst::Authentication::User::Hash/;
+
+__PACKAGE__;
+
+__END__
+
+=pod
+
+=head1 NAME
+
+Catalyst::Plugin::Authentication::User::Hash - Compatibility shim
+
+=head1 DESCRIPTION
+
+THIS IS A COMPATIBILITY SHIM.  It allows old configurations of Catalyst
+Authentication to work without code changes.  
+
+B<DO NOT USE IT IN ANY NEW CODE!>
+
+Please see L<Catalyst::Authentication::User::Hash> for more information.

Added: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User.pm	                        (rev 0)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User.pm	2007-12-05 06:06:30 UTC (rev 7232)
@@ -0,0 +1,25 @@
+package Catalyst::Plugin::Authentication::User;
+
+use strict;
+use warnings;
+
+use base qw/Catalyst::Authentication::User/;
+
+__PACKAGE__;
+
+__END__
+
+=pod
+
+=head1 NAME
+
+Catalyst::Plugin::Authentication::User- Compatibility shim
+
+=head1 DESCRIPTION
+
+THIS IS A COMPATIBILITY SHIM.  It allows old configurations of Catalyst
+Authentication to work without code changes.  
+
+B<DO NOT USE IT IN ANY NEW CODE!>
+
+Please see L<Catalyst::Authentication::User> for more information.




More information about the Catalyst-commits mailing list