Changeset 237 for server


Ignore:
Timestamp:
12/30/10 14:45:20 (13 years ago)
Author:
nanardon
Message:
  • readd url Chat command
File:
1 edited

Legend:

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

    r233 r237  
    338338} 
    339339 
     340=head2 url [-s] NAME 
     341 
     342Show the url of package C<NAME>. 
     343 
     344=cut  
     345 
     346sub url : XMLRPC { 
     347    my ($self, $c, $reqspec, @args) = @_; 
     348 
     349    $c->forward('qf', [ $reqspec, @args, '%{url}' ]); 
     350} 
     351 
     352=head2 u 
     353 
     354Is an alias to C<url> command. 
     355 
     356=cut  
     357 
     358sub u : XMLRPC { 
     359    my ($self, $c, @args) = @_; 
     360    $c->forward('url', [ @args ]); 
     361} 
     362 
    340363=head2 group [-s] NAME 
    341364 
Note: See TracChangeset for help on using the changeset viewer.