From: Tomas Doran Date: Mon, 13 Jul 2009 10:44:26 +0000 (+0000) Subject: Checking in changes prior to tagging of version 0.06. Changelog diff is: X-Git-Tag: v0.06^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Authentication-Credential-HTTP-Proxy.git;a=commitdiff_plain;h=bcd7b9c8aca41f6b99f8cf811035929d05133e42 Checking in changes prior to tagging of version 0.06. Changelog diff is: Index: Changes =================================================================== --- Changes (revision 10878) +++ Changes (working copy) @@ -1,3 +1,5 @@ +0.06 2009-07-13 + - Remove incorrectly shipped Catalyst::Plugin::Authentication::Credential::HTTP::User class - Fix misleading 'password' in documentation (because this module doesn't check against store passwords) (Ian Wells) --- diff --git a/.shipit b/.shipit index 5a1f17f..8a74f88 100644 --- a/.shipit +++ b/.shipit @@ -1,7 +1,7 @@ # auto-generated shipit config file. steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN -svk.tagpattern = //mirror/Catalyst-Authentication-Credential-HTTP-Proxy/1.000/tags/%v +svn.tagpattern = http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Credential-HTTP-Proxy/1.000/tags/%v # svn.tagpattern = MyProj-%v # svn.tagpattern = http://code.example.com/svn/tags/MyProj-%v diff --git a/Changes b/Changes index 02b2617..aad6fdf 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +0.06 2009-07-13 + - Remove incorrectly shipped Catalyst::Plugin::Authentication::Credential::HTTP::User class - Fix misleading 'password' in documentation (because this module doesn't check against store passwords) (Ian Wells) diff --git a/MANIFEST b/MANIFEST deleted file mode 100644 index 3bef395..0000000 --- a/MANIFEST +++ /dev/null @@ -1,26 +0,0 @@ -Changes -inc/Module/AutoInstall.pm -inc/Module/Install.pm -inc/Module/Install/AutoInstall.pm -inc/Module/Install/Base.pm -inc/Module/Install/Can.pm -inc/Module/Install/Fetch.pm -inc/Module/Install/Include.pm -inc/Module/Install/Makefile.pm -inc/Module/Install/Metadata.pm -inc/Module/Install/Win32.pm -inc/Module/Install/WriteAll.pm -lib/Catalyst/Authentication/Credential/HTTP/Proxy.pm -lib/Catalyst/Authentication/Credential/HTTP/Proxy/User.pm -lib/Catalyst/Authentication/Credential/HTTP/User.pm -Makefile.PL -MANIFEST This list of files -META.yml -README -t/kwalitee.t -t/live_app.t -t/mock.t -t/pod.t -t/pod_coverage.t -t/pod_spelling.t -t/use.t diff --git a/lib/Catalyst/Authentication/Credential/HTTP/Proxy.pm b/lib/Catalyst/Authentication/Credential/HTTP/Proxy.pm index d4f9509..5c6837b 100644 --- a/lib/Catalyst/Authentication/Credential/HTTP/Proxy.pm +++ b/lib/Catalyst/Authentication/Credential/HTTP/Proxy.pm @@ -8,7 +8,7 @@ use String::Escape (); use URI::Escape (); use Catalyst::Authentication::Credential::HTTP::Proxy::User; -our $VERSION = "0.05"; +our $VERSION = "0.06"; __PACKAGE__->mk_accessors(qw/ url diff --git a/lib/Catalyst/Authentication/Credential/HTTP/User.pm b/lib/Catalyst/Authentication/Credential/HTTP/User.pm deleted file mode 100644 index 88854ec..0000000 --- a/lib/Catalyst/Authentication/Credential/HTTP/User.pm +++ /dev/null @@ -1,47 +0,0 @@ -package Catalyst::Plugin::Authentication::Credential::HTTP::User; - -use strict; -use warnings; - -use base 'LWP::UserAgent'; - -sub credentials { - my ($self,$user,$pass)=@_; - @{$self->{credentials}}=($user,$pass); -} - -sub get_basic_credentials { - my $self = shift; - return @{$self->{credentials}}; -} - -1; - -=head1 NAME - -Catalyst::Plugin::Authentication::Credential::HTTP::User - Wrapper for LWP::UserAgent - -=head1 DESCRIPTION - -A thin wrapper for L to make basic auth simpler. - -=head1 METHODS - -=head2 credentials - -now takes just a username and password - -=head2 get_basic_credentials - -Returns the set credentials, takes no options. - -=head1 AUTHOR - -Marcus Ramberg