1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
Description: Fix broken links and malformed formatting in POD
Author: Christopher Hoskin <christopher.hoskin@gmail.com>
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=102187
Last-Update: 2016-05-18
--- a/lib/Catalyst/Authentication/Store/Htpasswd.pm
+++ b/lib/Catalyst/Authentication/Store/Htpasswd.pm
@@ -93,7 +93,7 @@
=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
@@ -104,15 +104,16 @@
=head2 find_user
-Looks up the user, and returns a Catalyst::Authentication::Store::Htpasswd::User object.
+Looks up the user, and returns a L<Catalyst::Authentication::Store::Htpasswd::User> object.
=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
--- a/lib/Catalyst/Authentication/Store/Htpasswd/User.pm
+++ b/lib/Catalyst/Authentication/Store/Htpasswd/User.pm
@@ -72,7 +72,7 @@
=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.
@@ -81,7 +81,7 @@
=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
|