Make go('/chained/action') execute the full chain, not just the endpoint.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / DispatchType.pm
index b368473..06905ad 100644 (file)
@@ -1,8 +1,7 @@
 package Catalyst::DispatchType;
 
-use Moose;
-#use strict;
-#use base 'Class::Accessor::Fast';
+use Moose; # using it to add Moose::Object to @ISA ...
+no Moose;
 
 =head1 NAME
 
@@ -14,7 +13,7 @@ See L<Catalyst>.
 
 =head1 DESCRIPTION
 
-This is an abstract base class for Dispatch Types.
+This is an abstract base class for Dispatch Types. 
 
 =head1 METHODS
 
@@ -39,7 +38,7 @@ sub match { die "Abstract method!" }
 =head2 $self->register( $c, $action )
 
 abstract method, to be implemented by dispatchtypes. Takes a
-context object and a L<Catalyst::Action> object.
+context object and a L<Catalyst::Action> object. 
 
 Should return true if it registers something, or false otherwise.
 
@@ -59,10 +58,11 @@ arrayref, or undef if unable to do so.
 
 sub uri_for_action { }
 
-=head1 AUTHOR
+sub expand_action { }
 
-Matt S Trout
-Sebastian Riedel, C<sri@cpan.org>
+=head1 AUTHORS
+
+Catalyst Contributors, see Catalyst.pm
 
 =head1 COPYRIGHT