X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAuthentication%2FStore%2FHtpasswd.pm;h=b45019febe4cfcd0342c23237922dfbde7a9fe24;hb=1fad0d369cd0f2370affdae8cf07466dfe1322f0;hp=5bcce947455dd496973b22effc2475f5e0ac23ce;hpb=9a398d0fb729be77f748e8cb72220ba85948c06d;p=catagits%2FCatalyst-Authentication-Store-Htpasswd.git diff --git a/lib/Catalyst/Authentication/Store/Htpasswd.pm b/lib/Catalyst/Authentication/Store/Htpasswd.pm index 5bcce94..b45019f 100644 --- a/lib/Catalyst/Authentication/Store/Htpasswd.pm +++ b/lib/Catalyst/Authentication/Store/Htpasswd.pm @@ -9,7 +9,7 @@ use Authen::Htpasswd; use Catalyst::Authentication::Store::Htpasswd::User; use Scalar::Util qw/blessed/; -our $VERSION = '1.003'; +our $VERSION = '1.004'; BEGIN { __PACKAGE__->mk_accessors(qw/file user_field user_class/) } @@ -119,15 +119,15 @@ Delegates the user lookup to C<< find_user >> =head2 file The path to the htpasswd file. If the path starts with a slash, then it is assumed to be a fully -qualified path, otherwise the path is fed through C< $c->path_to > and so normalised to the +qualified path, otherwise the path is fed through C<< $c->path_to >> and so normalised to the application root. -Alternatively, it is possible to pass in an L< Authen::Htpasswd > object here, and this will be +Alternatively, it is possible to pass in an L object here, and this will be used as the htpasswd file. =head2 user_class -Change the user class which this store returns. Defaults to L< Catalyst::Authentication::Store::Htpasswd::User >. +Change the user class which this store returns. Defaults to L. This can be used to add additional functionality to the user class by sub-classing it, but will not normally be needed.