[Bps-public-commit] r16563 - in sd/branches/sd-dispatcher: .

sartak at bestpractical.com sartak at bestpractical.com
Tue Oct 28 12:28:56 EDT 2008


Author: sartak
Date: Tue Oct 28 12:28:56 2008
New Revision: 16563

Modified:
   sd/branches/sd-dispatcher/   (props changed)
   sd/branches/sd-dispatcher/lib/App/SD/CLI/Dispatcher.pm

Log:
 r74660 at onn:  sartak | 2008-10-28 12:28:47 -0400
 The keyword is "run" again


Modified: sd/branches/sd-dispatcher/lib/App/SD/CLI/Dispatcher.pm
==============================================================================
--- sd/branches/sd-dispatcher/lib/App/SD/CLI/Dispatcher.pm	(original)
+++ sd/branches/sd-dispatcher/lib/App/SD/CLI/Dispatcher.pm	Tue Oct 28 12:28:56 2008
@@ -3,10 +3,10 @@
 use Prophet::CLI::Dispatcher -base;
 use Moose;
 
-on qr'^\?(.*)$' => sub {my $cmd = $1 || '';  redispatch('help'. $cmd,  @_); last_rule;};
+on qr'^\?(.*)$' => sub {my $cmd = $1 || ''; run('help'. $cmd, @_); last_rule;};
 
 # 'sd about' -> 'sd help about', 'sd copying' -> 'sd help copying'
-on [ ['about', 'copying'] ] => sub { redispatch("help $1", @_); };
+on [ ['about', 'copying'] ] => sub { run("help $1", @_); };
 
 under help => sub {
     rewrite [ ['push', 'pull', 'publish', 'server'] ] => 'help sync';
@@ -21,7 +21,7 @@
     $self->context->set_arg(type  => 'ticket');
     $self->context->set_arg(id    => $3);
     $self->context->set_arg(owner => $4);
-    redispatch('update', $self, @_);
+    run('update', $self, @_);
 };
 
 # allow type to be specified via primary commands, e.g.
@@ -29,7 +29,7 @@
 on qr{^(ticket|comment|attachment) \s+ (.*)}xi => sub {
     my $self = shift;
     $self->context->set_arg(type => $1);
-    redispatch($2, $self, @_);
+    run($2, $self, @_);
 };
 
 



More information about the Bps-public-commit mailing list