minor doc improvements
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Action.pm
index 0bc165a..ca695c4 100644 (file)
@@ -3,7 +3,7 @@ package Catalyst::Action;
 use strict;
 use base qw/Class::Accessor::Fast/;
 
-__PACKAGE__->mk_accessors(qw/code namespace reverse prefix attributes name/);
+__PACKAGE__->mk_accessors(qw/class namespace reverse attributes name code/);
 
 use overload (
 
@@ -13,6 +13,9 @@ use overload (
     # Codulate to encapsulated action coderef
     '&{}' => sub { shift->{code} },
 
+    # Make general $stuff still work
+    fallback => 1,
+
 );
 
 =head1 NAME
@@ -25,30 +28,59 @@ See L<Catalyst>.
 
 =head1 DESCRIPTION
 
+This class represents a Catalyst Action. You can access the object for the 
+currently dispatched action via $c->action
+
 =head1 METHODS
 
-=over 4
+=head2 attributes
+
+The sub attributes that are set for this action, like Local, Path, Private
+and so on.
+
+=head2 class
 
-=item attributes
+Returns the class name of this action
 
-=item code
+=head2 code
 
-=item execute
+Returns a code reference to this action
+
+=head2 execute <c>
+
+Execute this action against a context
 
 =cut
 
 sub execute {    # Execute ourselves against a context
     my ( $self, $c ) = @_;
-    return $c->execute( $self->namespace, $self );
+    local $c->namespace = $self->namespace;
+    return $c->execute( $self->class, $self );
 }
 
-=item namespace
+=head2 match <context>
+
+Check Args setting, and makes sure number of args matches the setting.
+
+=cut
+
+sub match {
+    my ( $self, $c ) = @_;
+    return 1 unless exists $self->attributes->{Args};
+    return scalar(@{$c->req->args}) == $self->attributes->{Args}[0];
+}
+
+=head2 namespace
+
+Returns the private namespace this action lives in.
+
+=head2 reverse
 
-=item reverse
+Returns the private path for this action.
 
-=item name
+=head2 name
 
-=back
+returns the sub name of this action.
 
 =head1 AUTHOR