X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=4bd49cab199f298ed4121ca1c3da3ac246765178;hb=e5f21aa207cbf0364944a25a5e3d403aa81b77c4;hp=e8e37972d2ef1660b79116d9d4f576b70841bef2;hpb=0299ba2263bf6d87703fcb5b5ee5377d7a985d87;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index e8e3797..4bd49ca 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -9,14 +9,6 @@ use Tree::Simple::Visitor::FindByPath; __PACKAGE__->mk_classdata($_) for qw/actions tree/; -# These are the core structures -__PACKAGE__->actions( - { plain => {}, private => {}, regex => {}, compiled => [], reverse => {} } -); - -# We use a tree -__PACKAGE__->tree( Tree::Simple->new( 0, Tree::Simple->ROOT ) ); - =head1 NAME Catalyst::Dispatcher - The Catalyst Dispatcher @@ -65,15 +57,16 @@ sub dispatch { } # Execute the auto chain - my $auto; - for $auto ( @{ $c->get_action( 'auto', $namespace, 1 ) } ) { + my $autorun = 0; + for my $auto ( @{ $c->get_action( 'auto', $namespace, 1 ) } ) { + $autorun++; $c->execute( @{ $auto->[0] } ); return if scalar @{ $c->error }; last unless $c->state; } # Execute the action or last default - my $mkay = defined $auto ? $c->state ? 1 : 0 : 1; + my $mkay = $autorun ? $c->state ? 1 : 0 : 1; if ( ( my $action = $c->req->action ) && $mkay ) { if ( my $result = @{ $c->get_action( $action, $default, 1 ) }[-1] ) { @@ -356,6 +349,20 @@ Setup actions for a component. sub setup_actions { my ( $self, $comps ) = @_; + # These are the core structures + $self->actions( + { + plain => {}, + private => {}, + regex => {}, + compiled => [], + reverse => {} + } + ); + + # We use a tree + $self->tree( Tree::Simple->new( 0, Tree::Simple->ROOT ) ); + for my $comp (@$comps) { $comp = ref $comp || $comp;