[Catalyst-commits] r10475 - in
Catalyst-Authentication-Credential-HTTP/0.00/trunk: .
lib/Catalyst/Plugin/Authentication/Credential
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Sun Jun 7 16:33:54 GMT 2009
Author: t0m
Date: 2009-06-07 16:33:53 +0000 (Sun, 07 Jun 2009)
New Revision: 10475
Modified:
Catalyst-Authentication-Credential-HTTP/0.00/trunk/Changes
Catalyst-Authentication-Credential-HTTP/0.00/trunk/README
Catalyst-Authentication-Credential-HTTP/0.00/trunk/lib/Catalyst/Plugin/Authentication/Credential/HTTP.pm
Log:
New version
Modified: Catalyst-Authentication-Credential-HTTP/0.00/trunk/Changes
===================================================================
--- Catalyst-Authentication-Credential-HTTP/0.00/trunk/Changes 2009-06-07 16:31:33 UTC (rev 10474)
+++ Catalyst-Authentication-Credential-HTTP/0.00/trunk/Changes 2009-06-07 16:33:53 UTC (rev 10475)
@@ -1,3 +1,6 @@
+0.13 2009-07-07
+ - Fix tests to work with Catalyst 5.80004 and above.
+
0.12 2008-09-11
- Added deprecation notice to module.
Modified: Catalyst-Authentication-Credential-HTTP/0.00/trunk/README
===================================================================
--- Catalyst-Authentication-Credential-HTTP/0.00/trunk/README 2009-06-07 16:31:33 UTC (rev 10474)
+++ Catalyst-Authentication-Credential-HTTP/0.00/trunk/README 2009-06-07 16:33:53 UTC (rev 10475)
@@ -1,6 +1,7 @@
NAME
- Catalyst::Plugin::Authentication::Credential::HTTP - HTTP Basic and
- Digest authentication for Catalyst.
+ Catalyst::Plugin::Authentication::Credential::HTTP - Superseded /
+ deprecated module providing HTTP Basic and Digest authentication for
+ Catalyst applications.
SYNOPSIS
use Catalyst qw/
@@ -34,6 +35,19 @@
$c->error(0);
}
+DEPRECATION NOTICE
+ Please note that this module is DEPRECATED, it has been Superseded by
+ Catalyst::Authentication::Credential::HTTP, please use that module in
+ any new projects.
+
+ Porting existing projects to use the new module should also be easy, and
+ if there are any facilities in this module which you cannot see how to
+ achieve in the new module then *please contact the maintainer* as this
+ is a bug and *will be fixed*.
+
+ Let me say that again: THIS MODULE IS NOT SUPPORTED, use
+ Catalyst::Authentication::Credential::HTTP instead.
+
DESCRIPTION
This moduule lets you use HTTP authentication with
Catalyst::Plugin::Authentication. Both basic and digest authentication
@@ -96,6 +110,8 @@
You may override these methods. By default they will call "get" and
"set" on "$c->cache".
+ get_http_auth_store %opts
+
CONFIGURATION
All configuration is stored in
"YourApp->config->{authentication}{http}".
Modified: Catalyst-Authentication-Credential-HTTP/0.00/trunk/lib/Catalyst/Plugin/Authentication/Credential/HTTP.pm
===================================================================
--- Catalyst-Authentication-Credential-HTTP/0.00/trunk/lib/Catalyst/Plugin/Authentication/Credential/HTTP.pm 2009-06-07 16:31:33 UTC (rev 10474)
+++ Catalyst-Authentication-Credential-HTTP/0.00/trunk/lib/Catalyst/Plugin/Authentication/Credential/HTTP.pm 2009-06-07 16:33:53 UTC (rev 10475)
@@ -11,7 +11,7 @@
use Catalyst ();
use Digest::MD5 ();
-our $VERSION = "0.12";
+our $VERSION = "0.13";
sub authenticate_http {
my ( $c, @args ) = @_;
More information about the Catalyst-commits
mailing list