fix pod errors and add stub pod for pod_coverage
Brian Cassidy [Thu, 25 Oct 2007 20:39:15 +0000 (20:39 +0000)]
lib/Catalyst/Plugin/Authentication.pm
lib/Catalyst/Plugin/Authentication/Credential/Password.pm
lib/Catalyst/Plugin/Authentication/Realm.pm
lib/Catalyst/Plugin/Authentication/Store/Minimal.pm
lib/Catalyst/Plugin/Authentication/User.pm
lib/Catalyst/Plugin/Authentication/User/Hash.pm

index e9addc1..2578ff0 100644 (file)
@@ -654,8 +654,6 @@ new source. The rest of your application is completely unchanged.
 
 =head1 CONFIGURATION
 
-=over 4
-
     # example
     __PACKAGE__->config->{authentication} = 
                 {  
@@ -688,6 +686,8 @@ new source. The rest of your application is completely unchanged.
                        }
                 };
 
+=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 @@ A hash keyed by name, with the stores registered in the app.
 
 Register stores into the application.
 
+=head2 auth_store_names( )
+
+=head2 get_user( )
+
+=head2 setup( )
+
+=head2 setup_auth_realm( )
+
 =head1 AUTHORS
 
 Yuval Kogman, C<nothingmuch@woobling.org>
index a0d76f0..960d9ff 100644 (file)
@@ -373,4 +373,8 @@ not function as expected.
 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
index 23c842d..c88d5e5 100644 (file)
@@ -196,7 +196,5 @@ Delegates to the store object.
 
 Delegates to the store object.
 
-=back
-
 =cut
 
index 2238e2a..3d98aaa 100644 (file)
@@ -211,6 +211,10 @@ Delegates to C<get_user>.
 
 Chooses a random user from the hash and delegates to it.
 
+=head2 get_user( )
+
+=head2 setup( )
+
 =cut
 
 
index 06830b7..9a50dd8 100644 (file)
@@ -106,5 +106,9 @@ ID.
 
 An introspection method used to determine what features a user object has, to support credential and authorization plugins.
 
+=head2 get( )
+
+=head2 get_object( )
+
 =cut
 
index 1c36e2b..921ced0 100644 (file)
@@ -144,12 +144,14 @@ Just passes returns the unserialized object, hoping it's intact.
 
 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>