From: Jay Kuri Date: Wed, 5 Dec 2007 06:06:30 +0000 (+0000) Subject: Compatibility shims X-Git-Tag: v0.10009_01~31 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e1e685783fb9bf6c25835516479d27b9d60843aa;hp=97c40cf270fef77a8f9f5bbf5b123920d28c0579;p=catagits%2FCatalyst-Plugin-Authentication.git Compatibility shims --- diff --git a/lib/Catalyst/Plugin/Authentication/Credential/Password.pm b/lib/Catalyst/Plugin/Authentication/Credential/Password.pm index dd0662a..b7f5b88 100644 --- a/lib/Catalyst/Plugin/Authentication/Credential/Password.pm +++ b/lib/Catalyst/Plugin/Authentication/Credential/Password.pm @@ -20,6 +20,8 @@ Catalyst::Plugin::Authentication::Credential::Password - Compatibility shim THIS IS A COMPATIBILITY SHIM. It allows old configurations of Catalyst Authentication to work without code changes. +B + Please see L for more information. diff --git a/lib/Catalyst/Plugin/Authentication/Store/Minimal.pm b/lib/Catalyst/Plugin/Authentication/Store/Minimal.pm index 7793b59..bc4a32e 100644 --- a/lib/Catalyst/Plugin/Authentication/Store/Minimal.pm +++ b/lib/Catalyst/Plugin/Authentication/Store/Minimal.pm @@ -20,5 +20,7 @@ Catalyst::Plugin::Authentication::Store::Minimal - Compatibility shim THIS IS A COMPATIBILITY SHIM. It allows old configurations of Catalyst Authentication to work without code changes. +B + Please see L for more information. diff --git a/lib/Catalyst/Plugin/Authentication/User.pm b/lib/Catalyst/Plugin/Authentication/User.pm new file mode 100644 index 0000000..4dad8d0 --- /dev/null +++ b/lib/Catalyst/Plugin/Authentication/User.pm @@ -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 + +Please see L for more information. diff --git a/lib/Catalyst/Plugin/Authentication/User/Hash.pm b/lib/Catalyst/Plugin/Authentication/User/Hash.pm new file mode 100644 index 0000000..563c763 --- /dev/null +++ b/lib/Catalyst/Plugin/Authentication/User/Hash.pm @@ -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 + +Please see L for more information.