Ignore:
Timestamp:
12/30/10 11:24:37 (13 years ago)
Author:
nanardon
Message:
  • resurrect summary command
File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/trunk/web/lib/Sophie/Controller/Chat/Cmd.pm

    r232 r233  
    269269} 
    270270 
     271=head2 summary [-s] NAME 
     272 
     273Show the summary of package C<NAME>. 
     274 
     275=cut 
     276 
     277sub summary : XMLRPC { 
     278    my ($self, $c, $reqspec, @args) = @_; 
     279 
     280    $c->forward('qf', [ $reqspec, @args, '%{summary}' ]); 
     281} 
     282 
     283=head2 s 
     284 
     285Is an alias for C<summary> command. 
     286 
     287=cut 
     288 
     289sub s : XMLRPC { 
     290    my ($self, $c, @args) = @_; 
     291    $c->forward('summary', [ @args ]); 
     292} 
     293 
    271294=head2 packager [-s] NAME 
    272295 
Note: See TracChangeset for help on using the changeset viewer.