Changeset 242 for trunk/script


Ignore:
Timestamp:
06/13/09 15:27:17 (15 years ago)
Author:
nanardon
Message:
  • rename Vote module to Epoll (#16)
Location:
trunk/script
Files:
5 moved

Legend:

Unmodified
Added
Removed
  • trunk/script/epoll_cgi.pl

    r213 r242  
    77use FindBin; 
    88use lib "$FindBin::Bin/../lib"; 
    9 use Vote; 
     9use Epoll; 
    1010 
    11 Vote->run; 
     11Epoll->run; 
    1212 
    13131; 
     
    1515=head1 NAME 
    1616 
    17 vote_cgi.pl - Catalyst CGI 
     17epoll_cgi.pl - Catalyst CGI 
    1818 
    1919=head1 SYNOPSIS 
  • trunk/script/epoll_create.pl

    r213 r242  
    2121my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } ); 
    2222 
    23 pod2usage(1) unless $helper->mk_component( 'Vote', @ARGV ); 
     23pod2usage(1) unless $helper->mk_component( 'Epoll', @ARGV ); 
    2424 
    25251; 
     
    2727=head1 NAME 
    2828 
    29 vote_create.pl - Create a new Catalyst Component 
     29epoll_create.pl - Create a new Catalyst Component 
    3030 
    3131=head1 SYNOPSIS 
    3232 
    33 vote_create.pl [options] model|view|controller name [helper] [options] 
     33epoll_create.pl [options] model|view|controller name [helper] [options] 
    3434 
    3535 Options: 
     
    3939 
    4040 Examples: 
    41    vote_create.pl controller My::Controller 
    42    vote_create.pl -mechanize controller My::Controller 
    43    vote_create.pl view My::View 
    44    vote_create.pl view MyView TT 
    45    vote_create.pl view TT TT 
    46    vote_create.pl model My::Model 
    47    vote_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\ 
     41   epoll_create.pl controller My::Controller 
     42   epoll_create.pl -mechanize controller My::Controller 
     43   epoll_create.pl view My::View 
     44   epoll_create.pl view MyView TT 
     45   epoll_create.pl view TT TT 
     46   epoll_create.pl model My::Model 
     47   epoll_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\ 
    4848   dbi:SQLite:/tmp/my.db 
    49    vote_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\ 
     49   epoll_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\ 
    5050   dbi:Pg:dbname=foo root 4321 
    5151 
  • trunk/script/epoll_fastcgi.pl

    r213 r242  
    99use FindBin; 
    1010use lib "$FindBin::Bin/../lib"; 
    11 use Vote; 
     11use Epoll; 
    1212 
    1313my $help = 0; 
     
    2626pod2usage(1) if $help; 
    2727 
    28 Vote->run(  
     28Epoll->run(  
    2929    $listen,  
    3030    {   nproc   => $nproc, 
     
    4040=head1 NAME 
    4141 
    42 vote_fastcgi.pl - Catalyst FastCGI 
     42epoll_fastcgi.pl - Catalyst FastCGI 
    4343 
    4444=head1 SYNOPSIS 
    4545 
    46 vote_fastcgi.pl [options] 
     46epoll_fastcgi.pl [options] 
    4747  
    4848 Options: 
  • trunk/script/epoll_server.pl

    r213 r242  
    5151# This is require instead of use so that the above environment 
    5252# variables can be set at runtime. 
    53 require Vote; 
     53require Epoll; 
    5454 
    55 Vote->run( $port, $host, { 
     55Epoll->run( $port, $host, { 
    5656    argv              => \@argv, 
    5757    'fork'            => $fork, 
     
    6767=head1 NAME 
    6868 
    69 vote_server.pl - Catalyst Testserver 
     69epoll_server.pl - Catalyst Testserver 
    7070 
    7171=head1 SYNOPSIS 
    7272 
    73 vote_server.pl [options] 
     73epoll_server.pl [options] 
    7474 
    7575 Options: 
  • trunk/script/epoll_test.pl

    r213 r242  
    77use FindBin; 
    88use lib "$FindBin::Bin/../lib"; 
    9 use Catalyst::Test 'Vote'; 
     9use Catalyst::Test 'Epoll'; 
    1010 
    1111my $help = 0; 
     
    2121=head1 NAME 
    2222 
    23 vote_test.pl - Catalyst Test 
     23epoll_test.pl - Catalyst Test 
    2424 
    2525=head1 SYNOPSIS 
    2626 
    27 vote_test.pl [options] uri 
     27epoll_test.pl [options] uri 
    2828 
    2929 Options: 
     
    3131 
    3232 Examples: 
    33    vote_test.pl http://localhost/some_action 
    34    vote_test.pl /some_action 
     33   epoll_test.pl http://localhost/some_action 
     34   epoll_test.pl /some_action 
    3535 
    3636 See also: 
Note: See TracChangeset for help on using the changeset viewer.