Ignore:
Timestamp:
12/05/10 17:43:24 (14 years ago)
Author:
nanardon
Message:
  • add distrib selection to explorer
File:
1 edited

Legend:

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

    r63 r77  
    3838        message => [ 
    3939            'availlable command:', 
    40             join(', ', @{ $self->_commands }), 
     40            join(', ', grep { $_ !~ /^end$/ } @{ $self->_commands }), 
    4141        ], 
    4242    } 
     
    4747    my ( $self, $c ) = @_; 
    4848    return $c->stash->{xmlrpc} = { 
    49         message => [ 'Sophie ' . $Sophie::VERSION . ' Chat: ' . q$Rev$ ], 
     49        message => [ 'Sophie: ' . $Sophie::VERSION . ', Chat ' . q$Rev$ ], 
    5050    }; 
    5151} 
    5252 
     53sub end : Private { 
     54    my ($self, $c ) = @_; 
     55    my $reqspec = $c->req->arguments->[0]; 
    5356 
     57    $c->forward('/end'); 
     58} 
    5459 
    5560=head1 AUTHOR 
Note: See TracChangeset for help on using the changeset viewer.