apply patch from RT#102187
Christopher Hoskin [Tue, 17 Feb 2015 22:02:25 +0000 (14:02 -0800)]
lib/Catalyst/Authentication/Store/Htpasswd.pm
lib/Catalyst/Authentication/Store/Htpasswd/User.pm

index 8fa2568..429183a 100644 (file)
@@ -90,7 +90,7 @@ __END__
 
 =head1 DESCRIPTION
 
-This plugin uses L<Authen::Htpasswd> to let your application use C<<.htpasswd>>
+This plugin uses L<Authen::Htpasswd> to let your application use C<< .htpasswd >>
 files for it's authentication storage.
 
 =head1 METHODS
@@ -105,11 +105,12 @@ Looks up the user, and returns a Catalyst::Authentication::Store::Htpasswd::User
 
 =head2 user_supports
 
-Delegates to L<Catalyst::Authentication::Store::Htpasswd::User->user_supports|Catalyst::Authentication::Store::Htpasswd::User#user_supports>
+Delegates to L<< Catalyst::Authentication::User->supports|Catalyst::Authentication::User/supports >> or an
+override in L<user_class|/user_class>.
 
 =head2 from_session
 
-Delegates the user lookup to C<< find_user >>
+Delegates the user lookup to L<find_user|/find_user>
 
 =head1 CONFIGURATION
 
index 60a8feb..f0d5eaa 100644 (file)
@@ -71,7 +71,7 @@ __END__
 =head1 DESCRIPTION
 
 This object wraps an L<Authen::Htpasswd::User> object. An instance of it will be returned
-by C<< $c->user >> when using L<Catalyst::Authentication::Store::Htpasswd>. Methods 
+by C<< $c->user >> when using L<Catalyst::Authentication::Store::Htpasswd>. Methods
 not defined in this module are passed through to the L<Authen::Htpasswd::User> object. The
 object stringifies to the username.
 
@@ -80,7 +80,7 @@ object stringifies to the username.
 =head2 new($store,$user)
 
 Creates a new object from a store object, normally an instance of 
-L<Catalyst::Authentication::Store::Htpasswd::Backend>, and a user object,
+L<Catalyst::Plugin::Authentication::Store::Htpasswd::Backend>, and a user object,
 normally an instance of L<Authen::Htpasswd::User>.
 
 =head2 id