X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=7e534e0abd6da37ee11c9aaf109d99b945b54ba3;hp=ca6c0eece0be6f03956d479974f56416a376506a;hb=bd7d2e943ac38b8884bb36c2eaeb9e57ce85d0d6;hpb=13436c1448185c749da62c06dd4ed9609599f01a diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index ca6c0ee..7e534e0 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -24,15 +24,15 @@ See L. =over 4 -=item $c->detach($command) +=item $c->detach( $command [, \@arguments ] ) Like C but doesn't return. =cut sub detach { - my ( $c, $command ) = @_; - $c->forward($command) if $command; + my ( $c, $command, @args ) = @_; + $c->forward( $command, @args ) if $command; die $Catalyst::Engine::DETACH; } @@ -148,14 +148,15 @@ sub forward { my $results = $c->get_action( $command, $namespace ); unless ( @{$results} ) { - + unless ( $c->components->{$command} ) { - my $error = qq/Couldn't forward to command "$command". Invalid action or component./; + my $error = +qq/Couldn't forward to command "$command". Invalid action or component./; $c->error($error); $c->log->debug($error) if $c->debug; return 0; } - + my $class = $command; my $method = shift || 'process'; @@ -165,7 +166,8 @@ sub forward { } else { - my $error = qq/Couldn't forward to "$class". Does not implement "$method"/; + my $error = + qq/Couldn't forward to "$class". Does not implement "$method"/; $c->error($error); $c->log->debug($error) if $c->debug; @@ -173,8 +175,8 @@ sub forward { } } - - local $c->request->{arguments} = [ @{ $arguments } ]; + + local $c->request->{arguments} = [ @{$arguments} ]; for my $result ( @{$results} ) { $c->execute( @{ $result->[0] } );