[Catalyst-commits] r7062 - in trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin: . Authentication Authentication/Credential Authentication/Store Authentication/User

bricas at dev.catalyst.perl.org bricas at dev.catalyst.perl.org
Thu Oct 25 21:39:15 GMT 2007


Author: bricas
Date: 2007-10-25 21:39:15 +0100 (Thu, 25 Oct 2007)
New Revision: 7062

Modified:
   trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication.pm
   trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Credential/Password.pm
   trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Realm.pm
   trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Store/Minimal.pm
   trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User.pm
   trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User/Hash.pm
Log:
fix pod errors and add stub pod for pod_coverage

Modified: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Credential/Password.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Credential/Password.pm	2007-10-25 20:33:48 UTC (rev 7061)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Credential/Password.pm	2007-10-25 20:39:15 UTC (rev 7062)
@@ -373,4 +373,8 @@
 Try to log a user in, receives a hashref containing authentication information
 as the first argument, and the current context as the second.
 
+=head2 check_password( )
+
+=head2 login( )
+
 =cut

Modified: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Realm.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Realm.pm	2007-10-25 20:33:48 UTC (rev 7061)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Realm.pm	2007-10-25 20:39:15 UTC (rev 7062)
@@ -196,7 +196,5 @@
 
 Delegates to the store object.
 
-=back
-
 =cut
 

Modified: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Store/Minimal.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Store/Minimal.pm	2007-10-25 20:33:48 UTC (rev 7061)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Store/Minimal.pm	2007-10-25 20:39:15 UTC (rev 7062)
@@ -211,6 +211,10 @@
 
 Chooses a random user from the hash and delegates to it.
 
+=head2 get_user( )
+
+=head2 setup( )
+
 =cut
 
 

Modified: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User/Hash.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User/Hash.pm	2007-10-25 20:33:48 UTC (rev 7061)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User/Hash.pm	2007-10-25 20:39:15 UTC (rev 7062)
@@ -144,12 +144,14 @@
 
 Accessor for the key whose name is the method.
 
-=head2 id( )
-
 =head2 store( )
 
 Accessors that override superclass's dying virtual methods.
 
+=head2 id( )
+
+=head2 can( )
+
 =head1 SEE ALSO
 
 L<Hash::AsObject>

Modified: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User.pm	2007-10-25 20:33:48 UTC (rev 7061)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/User.pm	2007-10-25 20:39:15 UTC (rev 7062)
@@ -106,5 +106,9 @@
 
 An introspection method used to determine what features a user object has, to support credential and authorization plugins.
 
+=head2 get( )
+
+=head2 get_object( )
+
 =cut
 

Modified: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication.pm	2007-10-25 20:33:48 UTC (rev 7061)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication.pm	2007-10-25 20:39:15 UTC (rev 7062)
@@ -654,8 +654,6 @@
 
 =head1 CONFIGURATION
 
-=over 4
-
     # example
     __PACKAGE__->config->{authentication} = 
                 {  
@@ -688,6 +686,8 @@
                 	}
                 };
 
+=over 4
+
 =item use_session
 
 Whether or not to store the user's logged in state in the session, if the
@@ -904,6 +904,14 @@
 
 Register stores into the application.
 
+=head2 auth_store_names( )
+
+=head2 get_user( )
+
+=head2 setup( )
+
+=head2 setup_auth_realm( )
+
 =head1 AUTHORS
 
 Yuval Kogman, C<nothingmuch at woobling.org>




More information about the Catalyst-commits mailing list