[Catalyst-commits] r12804 - in trunk/examples/Tutorial:
Hello_Chapter2/Hello/script MyApp_Chapter3/MyApp/script
MyApp_Chapter4/MyApp/script MyApp_Chapter5/MyApp/script
MyApp_Chapter6/MyApp/script MyApp_Chapter7/MyApp/script
MyApp_Chapter8/MyApp/script MyApp_Chapter9_FormFu/MyApp/script
MyApp_Chapter9_FormHandler/MyApp/script
zarquon at dev.catalyst.perl.org
zarquon at dev.catalyst.perl.org
Tue Feb 2 11:39:15 GMT 2010
Author: zarquon
Date: 2010-02-02 11:39:14 +0000 (Tue, 02 Feb 2010)
New Revision: 12804
Modified:
trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_cgi.pl
trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_create.pl
trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_fastcgi.pl
trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_server.pl
trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_test.pl
trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_cgi.pl
trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_create.pl
trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_fastcgi.pl
trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_server.pl
trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_test.pl
trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_cgi.pl
trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_create.pl
trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_fastcgi.pl
trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_server.pl
trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_test.pl
trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_cgi.pl
trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_create.pl
trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_fastcgi.pl
trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_server.pl
trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_test.pl
trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_cgi.pl
trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_create.pl
trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_fastcgi.pl
trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_server.pl
trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_test.pl
trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_cgi.pl
trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_create.pl
trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_fastcgi.pl
trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_server.pl
trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_test.pl
trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_cgi.pl
trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_create.pl
trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_fastcgi.pl
trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_server.pl
trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_test.pl
trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_cgi.pl
trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_create.pl
trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_fastcgi.pl
trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_server.pl
trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_test.pl
trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_cgi.pl
trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_create.pl
trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_fastcgi.pl
trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_server.pl
trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_test.pl
Log:
update scripts for latest version of catalyst
Modified: trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_cgi.pl
===================================================================
--- trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_cgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_cgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,15 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('Hello', 'CGI');
-use strict;
-use warnings;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use Hello;
-
-Hello->run;
-
1;
=head1 NAME
@@ -30,8 +23,8 @@
=head1 COPYRIGHT
-
This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_create.pl
===================================================================
--- trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_create.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_create.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -2,38 +2,10 @@
use strict;
use warnings;
-use Getopt::Long;
-use Pod::Usage;
-eval "use Catalyst::Helper;";
-if ($@) {
- die <<END;
-To use the Catalyst development tools including catalyst.pl and the
-generated script/myapp_create.pl you need Catalyst::Helper, which is
-part of the Catalyst-Devel distribution. Please install this via a
-vendor package or by running one of -
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('Hello', 'Create');
- perl -MCPAN -e 'install Catalyst::Devel'
- perl -MCPANPLUS -e 'install Catalyst::Devel'
-END
-}
-
-my $force = 0;
-my $mech = 0;
-my $help = 0;
-
-GetOptions(
- 'nonew|force' => \$force,
- 'mech|mechanize' => \$mech,
- 'help|?' => \$help
- );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
-
-pod2usage(1) unless $helper->mk_component( 'Hello', @ARGV );
-
1;
=head1 NAME
@@ -45,9 +17,9 @@
hello_create.pl [options] model|view|controller name [helper] [options]
Options:
- -force don't create a .new file where a file to be created exists
- -mechanize use Test::WWW::Mechanize::Catalyst for tests if available
- -help display this help and exits
+ --force don't create a .new file where a file to be created exists
+ --mechanize use Test::WWW::Mechanize::Catalyst for tests if available
+ --help display this help and exits
Examples:
hello_create.pl controller My::Controller
Modified: trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_fastcgi.pl
===================================================================
--- trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_fastcgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_fastcgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,40 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('Hello', 'FastCGI');
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use Hello;
-
-my $help = 0;
-my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr );
-
-GetOptions(
- 'help|?' => \$help,
- 'listen|l=s' => \$listen,
- 'nproc|n=i' => \$nproc,
- 'pidfile|p=s' => \$pidfile,
- 'manager|M=s' => \$manager,
- 'daemon|d' => \$detach,
- 'keeperr|e' => \$keep_stderr,
-);
-
-pod2usage(1) if $help;
-
-Hello->run(
- $listen,
- { nproc => $nproc,
- pidfile => $pidfile,
- manager => $manager,
- detach => $detach,
- keep_stderr => $keep_stderr,
- }
-);
-
1;
=head1 NAME
@@ -47,20 +15,20 @@
Options:
-? -help display this help and exits
- -l -listen Socket path to listen on
+ -l --listen Socket path to listen on
(defaults to standard input)
can be HOST:PORT, :PORT or a
filesystem path
- -n -nproc specify number of processes to keep
+ -n --nproc specify number of processes to keep
to serve requests (defaults to 1,
requires -listen)
- -p -pidfile specify filename for pid file
+ -p --pidfile specify filename for pid file
(requires -listen)
- -d -daemon daemonize (requires -listen)
- -M -manager specify alternate process manager
+ -d --daemon daemonize (requires -listen)
+ -M --manager specify alternate process manager
(FCGI::ProcManager sub-class)
or empty string to disable
- -e -keeperr send error messages to STDOUT, not
+ -e --keeperr send error messages to STDOUT, not
to the webserver
=head1 DESCRIPTION
Modified: trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_server.pl
===================================================================
--- trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_server.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_server.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,144 +1,43 @@
#!/usr/bin/env perl
BEGIN {
- $ENV{CATALYST_ENGINE} ||= 'HTTP';
- $ENV{CATALYST_SCRIPT_GEN} = 39;
- require Catalyst::Engine::HTTP;
+ $ENV{CATALYST_SCRIPT_GEN} = 40;
}
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('Hello', 'Server');
-my $debug = 0;
-my $fork = 0;
-my $help = 0;
-my $host = undef;
-my $port = $ENV{HELLO_PORT} || $ENV{CATALYST_PORT} || 3000;
-my $keepalive = 0;
-my $restart = $ENV{HELLO_RELOAD} || $ENV{CATALYST_RELOAD} || 0;
-my $background = 0;
-my $pidfile = undef;
-
-my $check_interval;
-my $file_regex;
-my $watch_directory;
-my $follow_symlinks;
-
-my @argv = @ARGV;
-
-GetOptions(
- 'debug|d' => \$debug,
- 'fork|f' => \$fork,
- 'help|?' => \$help,
- 'host=s' => \$host,
- 'port|p=s' => \$port,
- 'keepalive|k' => \$keepalive,
- 'restart|r' => \$restart,
- 'restartdelay|rd=s' => \$check_interval,
- 'restartregex|rr=s' => \$file_regex,
- 'restartdirectory=s@' => \$watch_directory,
- 'followsymlinks' => \$follow_symlinks,
- 'background' => \$background,
- 'pidfile=s' => \$pidfile,
-);
-
-pod2usage(1) if $help;
-
-if ( $debug ) {
- $ENV{CATALYST_DEBUG} = 1;
-}
-
-# If we load this here, then in the case of a restarter, it does not
-# need to be reloaded for each restart.
-require Catalyst;
-
-# If this isn't done, then the Catalyst::Devel tests for the restarter
-# fail.
-$| = 1 if $ENV{HARNESS_ACTIVE};
-
-my $runner = sub {
- # This is require instead of use so that the above environment
- # variables can be set at runtime.
- require Hello;
-
- Hello->run(
- $port, $host,
- {
- argv => \@argv,
- 'fork' => $fork,
- keepalive => $keepalive,
- background => $background,
- pidfile => $pidfile,
- }
- );
-};
-
-if ( $restart ) {
- die "Cannot run in the background and also watch for changed files.\n"
- if $background;
-
- require Catalyst::Restarter;
-
- my $subclass = Catalyst::Restarter->pick_subclass;
-
- my %args;
- $args{follow_symlinks} = 1
- if $follow_symlinks;
- $args{directories} = $watch_directory
- if defined $watch_directory;
- $args{sleep_interval} = $check_interval
- if defined $check_interval;
- $args{filter} = qr/$file_regex/
- if defined $file_regex;
-
- my $restarter = $subclass->new(
- %args,
- start_sub => $runner,
- argv => \@argv,
- );
-
- $restarter->run_and_watch;
-}
-else {
- $runner->();
-}
-
1;
=head1 NAME
-hello_server.pl - Catalyst Testserver
+hello_server.pl - Catalyst Test Server
=head1 SYNOPSIS
hello_server.pl [options]
- Options:
- -d -debug force debug mode
- -f -fork handle each request in a new process
- (defaults to false)
- -? -help display this help and exits
- -host host (defaults to all)
- -p -port port (defaults to 3000)
- -k -keepalive enable keep-alive connections
- -r -restart restart when files get modified
- (defaults to false)
- -rd -restartdelay delay between file checks
- (ignored if you have Linux::Inotify2 installed)
- -rr -restartregex regex match files that trigger
- a restart when modified
- (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
- -restartdirectory the directory to search for
- modified files, can be set mulitple times
- (defaults to '[SCRIPT_DIR]/..')
- -follow_symlinks follow symlinks in search directories
- (defaults to false. this is a no-op on Win32)
- -background run the process in the background
- -pidfile specify filename for pid file
+ -d --debug force debug mode
+ -f --fork handle each request in a new process
+ (defaults to false)
+ -? --help display this help and exits
+ -h --host host (defaults to all)
+ -p --port port (defaults to 3000)
+ -k --keepalive enable keep-alive connections
+ -r --restart restart when files get modified
+ (defaults to false)
+ -rd --restart_delay delay between file checks
+ (ignored if you have Linux::Inotify2 installed)
+ -rr --restart_regex regex match files that trigger
+ a restart when modified
+ (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
+ --restart_directory the directory to search for
+ modified files, can be set mulitple times
+ (defaults to '[SCRIPT_DIR]/..')
+ --follow_symlinks follow symlinks in search directories
+ (defaults to false. this is a no-op on Win32)
+ --background run the process in the background
+ --pidfile specify filename for pid file
See also:
perldoc Catalyst::Manual
@@ -158,3 +57,4 @@
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_test.pl
===================================================================
--- trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_test.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/Hello_Chapter2/Hello/script/hello_test.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,21 +1,8 @@
#!/usr/bin/env perl
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use Catalyst::Test 'Hello';
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('Hello', 'Test');
-my $help = 0;
-
-GetOptions( 'help|?' => \$help );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-print request($ARGV[0])->content . "\n";
-
1;
=head1 NAME
@@ -27,7 +14,7 @@
hello_test.pl [options] uri
Options:
- -help display this help and exits
+ --help display this help and exits
Examples:
hello_test.pl http://localhost/some_action
Modified: trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_cgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_cgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_cgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,15 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'CGI');
-use strict;
-use warnings;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-MyApp->run;
-
1;
=head1 NAME
@@ -30,8 +23,8 @@
=head1 COPYRIGHT
-
This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_create.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_create.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_create.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -2,38 +2,10 @@
use strict;
use warnings;
-use Getopt::Long;
-use Pod::Usage;
-eval "use Catalyst::Helper;";
-if ($@) {
- die <<END;
-To use the Catalyst development tools including catalyst.pl and the
-generated script/myapp_create.pl you need Catalyst::Helper, which is
-part of the Catalyst-Devel distribution. Please install this via a
-vendor package or by running one of -
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Create');
- perl -MCPAN -e 'install Catalyst::Devel'
- perl -MCPANPLUS -e 'install Catalyst::Devel'
-END
-}
-
-my $force = 0;
-my $mech = 0;
-my $help = 0;
-
-GetOptions(
- 'nonew|force' => \$force,
- 'mech|mechanize' => \$mech,
- 'help|?' => \$help
- );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
-
-pod2usage(1) unless $helper->mk_component( 'MyApp', @ARGV );
-
1;
=head1 NAME
@@ -45,9 +17,9 @@
myapp_create.pl [options] model|view|controller name [helper] [options]
Options:
- -force don't create a .new file where a file to be created exists
- -mechanize use Test::WWW::Mechanize::Catalyst for tests if available
- -help display this help and exits
+ --force don't create a .new file where a file to be created exists
+ --mechanize use Test::WWW::Mechanize::Catalyst for tests if available
+ --help display this help and exits
Examples:
myapp_create.pl controller My::Controller
Modified: trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_fastcgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,40 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'FastCGI');
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-my $help = 0;
-my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr );
-
-GetOptions(
- 'help|?' => \$help,
- 'listen|l=s' => \$listen,
- 'nproc|n=i' => \$nproc,
- 'pidfile|p=s' => \$pidfile,
- 'manager|M=s' => \$manager,
- 'daemon|d' => \$detach,
- 'keeperr|e' => \$keep_stderr,
-);
-
-pod2usage(1) if $help;
-
-MyApp->run(
- $listen,
- { nproc => $nproc,
- pidfile => $pidfile,
- manager => $manager,
- detach => $detach,
- keep_stderr => $keep_stderr,
- }
-);
-
1;
=head1 NAME
@@ -47,20 +15,20 @@
Options:
-? -help display this help and exits
- -l -listen Socket path to listen on
+ -l --listen Socket path to listen on
(defaults to standard input)
can be HOST:PORT, :PORT or a
filesystem path
- -n -nproc specify number of processes to keep
+ -n --nproc specify number of processes to keep
to serve requests (defaults to 1,
requires -listen)
- -p -pidfile specify filename for pid file
+ -p --pidfile specify filename for pid file
(requires -listen)
- -d -daemon daemonize (requires -listen)
- -M -manager specify alternate process manager
+ -d --daemon daemonize (requires -listen)
+ -M --manager specify alternate process manager
(FCGI::ProcManager sub-class)
or empty string to disable
- -e -keeperr send error messages to STDOUT, not
+ -e --keeperr send error messages to STDOUT, not
to the webserver
=head1 DESCRIPTION
Modified: trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_server.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_server.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_server.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,144 +1,43 @@
#!/usr/bin/env perl
BEGIN {
- $ENV{CATALYST_ENGINE} ||= 'HTTP';
- $ENV{CATALYST_SCRIPT_GEN} = 39;
- require Catalyst::Engine::HTTP;
+ $ENV{CATALYST_SCRIPT_GEN} = 40;
}
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Server');
-my $debug = 0;
-my $fork = 0;
-my $help = 0;
-my $host = undef;
-my $port = $ENV{MYAPP_PORT} || $ENV{CATALYST_PORT} || 3000;
-my $keepalive = 0;
-my $restart = $ENV{MYAPP_RELOAD} || $ENV{CATALYST_RELOAD} || 0;
-my $background = 0;
-my $pidfile = undef;
-
-my $check_interval;
-my $file_regex;
-my $watch_directory;
-my $follow_symlinks;
-
-my @argv = @ARGV;
-
-GetOptions(
- 'debug|d' => \$debug,
- 'fork|f' => \$fork,
- 'help|?' => \$help,
- 'host=s' => \$host,
- 'port|p=s' => \$port,
- 'keepalive|k' => \$keepalive,
- 'restart|r' => \$restart,
- 'restartdelay|rd=s' => \$check_interval,
- 'restartregex|rr=s' => \$file_regex,
- 'restartdirectory=s@' => \$watch_directory,
- 'followsymlinks' => \$follow_symlinks,
- 'background' => \$background,
- 'pidfile=s' => \$pidfile,
-);
-
-pod2usage(1) if $help;
-
-if ( $debug ) {
- $ENV{CATALYST_DEBUG} = 1;
-}
-
-# If we load this here, then in the case of a restarter, it does not
-# need to be reloaded for each restart.
-require Catalyst;
-
-# If this isn't done, then the Catalyst::Devel tests for the restarter
-# fail.
-$| = 1 if $ENV{HARNESS_ACTIVE};
-
-my $runner = sub {
- # This is require instead of use so that the above environment
- # variables can be set at runtime.
- require MyApp;
-
- MyApp->run(
- $port, $host,
- {
- argv => \@argv,
- 'fork' => $fork,
- keepalive => $keepalive,
- background => $background,
- pidfile => $pidfile,
- }
- );
-};
-
-if ( $restart ) {
- die "Cannot run in the background and also watch for changed files.\n"
- if $background;
-
- require Catalyst::Restarter;
-
- my $subclass = Catalyst::Restarter->pick_subclass;
-
- my %args;
- $args{follow_symlinks} = 1
- if $follow_symlinks;
- $args{directories} = $watch_directory
- if defined $watch_directory;
- $args{sleep_interval} = $check_interval
- if defined $check_interval;
- $args{filter} = qr/$file_regex/
- if defined $file_regex;
-
- my $restarter = $subclass->new(
- %args,
- start_sub => $runner,
- argv => \@argv,
- );
-
- $restarter->run_and_watch;
-}
-else {
- $runner->();
-}
-
1;
=head1 NAME
-myapp_server.pl - Catalyst Testserver
+myapp_server.pl - Catalyst Test Server
=head1 SYNOPSIS
myapp_server.pl [options]
- Options:
- -d -debug force debug mode
- -f -fork handle each request in a new process
- (defaults to false)
- -? -help display this help and exits
- -host host (defaults to all)
- -p -port port (defaults to 3000)
- -k -keepalive enable keep-alive connections
- -r -restart restart when files get modified
- (defaults to false)
- -rd -restartdelay delay between file checks
- (ignored if you have Linux::Inotify2 installed)
- -rr -restartregex regex match files that trigger
- a restart when modified
- (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
- -restartdirectory the directory to search for
- modified files, can be set mulitple times
- (defaults to '[SCRIPT_DIR]/..')
- -follow_symlinks follow symlinks in search directories
- (defaults to false. this is a no-op on Win32)
- -background run the process in the background
- -pidfile specify filename for pid file
+ -d --debug force debug mode
+ -f --fork handle each request in a new process
+ (defaults to false)
+ -? --help display this help and exits
+ -h --host host (defaults to all)
+ -p --port port (defaults to 3000)
+ -k --keepalive enable keep-alive connections
+ -r --restart restart when files get modified
+ (defaults to false)
+ -rd --restart_delay delay between file checks
+ (ignored if you have Linux::Inotify2 installed)
+ -rr --restart_regex regex match files that trigger
+ a restart when modified
+ (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
+ --restart_directory the directory to search for
+ modified files, can be set mulitple times
+ (defaults to '[SCRIPT_DIR]/..')
+ --follow_symlinks follow symlinks in search directories
+ (defaults to false. this is a no-op on Win32)
+ --background run the process in the background
+ --pidfile specify filename for pid file
See also:
perldoc Catalyst::Manual
@@ -158,3 +57,4 @@
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_test.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_test.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter3/MyApp/script/myapp_test.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,21 +1,8 @@
#!/usr/bin/env perl
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use Catalyst::Test 'MyApp';
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Test');
-my $help = 0;
-
-GetOptions( 'help|?' => \$help );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-print request($ARGV[0])->content . "\n";
-
1;
=head1 NAME
@@ -27,7 +14,7 @@
myapp_test.pl [options] uri
Options:
- -help display this help and exits
+ --help display this help and exits
Examples:
myapp_test.pl http://localhost/some_action
Modified: trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_cgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_cgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_cgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,15 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'CGI');
-use strict;
-use warnings;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-MyApp->run;
-
1;
=head1 NAME
@@ -30,8 +23,8 @@
=head1 COPYRIGHT
-
This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_create.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_create.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_create.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -2,38 +2,10 @@
use strict;
use warnings;
-use Getopt::Long;
-use Pod::Usage;
-eval "use Catalyst::Helper;";
-if ($@) {
- die <<END;
-To use the Catalyst development tools including catalyst.pl and the
-generated script/myapp_create.pl you need Catalyst::Helper, which is
-part of the Catalyst-Devel distribution. Please install this via a
-vendor package or by running one of -
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Create');
- perl -MCPAN -e 'install Catalyst::Devel'
- perl -MCPANPLUS -e 'install Catalyst::Devel'
-END
-}
-
-my $force = 0;
-my $mech = 0;
-my $help = 0;
-
-GetOptions(
- 'nonew|force' => \$force,
- 'mech|mechanize' => \$mech,
- 'help|?' => \$help
- );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
-
-pod2usage(1) unless $helper->mk_component( 'MyApp', @ARGV );
-
1;
=head1 NAME
@@ -45,9 +17,9 @@
myapp_create.pl [options] model|view|controller name [helper] [options]
Options:
- -force don't create a .new file where a file to be created exists
- -mechanize use Test::WWW::Mechanize::Catalyst for tests if available
- -help display this help and exits
+ --force don't create a .new file where a file to be created exists
+ --mechanize use Test::WWW::Mechanize::Catalyst for tests if available
+ --help display this help and exits
Examples:
myapp_create.pl controller My::Controller
Modified: trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_fastcgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,40 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'FastCGI');
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-my $help = 0;
-my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr );
-
-GetOptions(
- 'help|?' => \$help,
- 'listen|l=s' => \$listen,
- 'nproc|n=i' => \$nproc,
- 'pidfile|p=s' => \$pidfile,
- 'manager|M=s' => \$manager,
- 'daemon|d' => \$detach,
- 'keeperr|e' => \$keep_stderr,
-);
-
-pod2usage(1) if $help;
-
-MyApp->run(
- $listen,
- { nproc => $nproc,
- pidfile => $pidfile,
- manager => $manager,
- detach => $detach,
- keep_stderr => $keep_stderr,
- }
-);
-
1;
=head1 NAME
@@ -47,20 +15,20 @@
Options:
-? -help display this help and exits
- -l -listen Socket path to listen on
+ -l --listen Socket path to listen on
(defaults to standard input)
can be HOST:PORT, :PORT or a
filesystem path
- -n -nproc specify number of processes to keep
+ -n --nproc specify number of processes to keep
to serve requests (defaults to 1,
requires -listen)
- -p -pidfile specify filename for pid file
+ -p --pidfile specify filename for pid file
(requires -listen)
- -d -daemon daemonize (requires -listen)
- -M -manager specify alternate process manager
+ -d --daemon daemonize (requires -listen)
+ -M --manager specify alternate process manager
(FCGI::ProcManager sub-class)
or empty string to disable
- -e -keeperr send error messages to STDOUT, not
+ -e --keeperr send error messages to STDOUT, not
to the webserver
=head1 DESCRIPTION
Modified: trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_server.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_server.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_server.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,144 +1,43 @@
#!/usr/bin/env perl
BEGIN {
- $ENV{CATALYST_ENGINE} ||= 'HTTP';
- $ENV{CATALYST_SCRIPT_GEN} = 39;
- require Catalyst::Engine::HTTP;
+ $ENV{CATALYST_SCRIPT_GEN} = 40;
}
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Server');
-my $debug = 0;
-my $fork = 0;
-my $help = 0;
-my $host = undef;
-my $port = $ENV{MYAPP_PORT} || $ENV{CATALYST_PORT} || 3000;
-my $keepalive = 0;
-my $restart = $ENV{MYAPP_RELOAD} || $ENV{CATALYST_RELOAD} || 0;
-my $background = 0;
-my $pidfile = undef;
-
-my $check_interval;
-my $file_regex;
-my $watch_directory;
-my $follow_symlinks;
-
-my @argv = @ARGV;
-
-GetOptions(
- 'debug|d' => \$debug,
- 'fork|f' => \$fork,
- 'help|?' => \$help,
- 'host=s' => \$host,
- 'port|p=s' => \$port,
- 'keepalive|k' => \$keepalive,
- 'restart|r' => \$restart,
- 'restartdelay|rd=s' => \$check_interval,
- 'restartregex|rr=s' => \$file_regex,
- 'restartdirectory=s@' => \$watch_directory,
- 'followsymlinks' => \$follow_symlinks,
- 'background' => \$background,
- 'pidfile=s' => \$pidfile,
-);
-
-pod2usage(1) if $help;
-
-if ( $debug ) {
- $ENV{CATALYST_DEBUG} = 1;
-}
-
-# If we load this here, then in the case of a restarter, it does not
-# need to be reloaded for each restart.
-require Catalyst;
-
-# If this isn't done, then the Catalyst::Devel tests for the restarter
-# fail.
-$| = 1 if $ENV{HARNESS_ACTIVE};
-
-my $runner = sub {
- # This is require instead of use so that the above environment
- # variables can be set at runtime.
- require MyApp;
-
- MyApp->run(
- $port, $host,
- {
- argv => \@argv,
- 'fork' => $fork,
- keepalive => $keepalive,
- background => $background,
- pidfile => $pidfile,
- }
- );
-};
-
-if ( $restart ) {
- die "Cannot run in the background and also watch for changed files.\n"
- if $background;
-
- require Catalyst::Restarter;
-
- my $subclass = Catalyst::Restarter->pick_subclass;
-
- my %args;
- $args{follow_symlinks} = 1
- if $follow_symlinks;
- $args{directories} = $watch_directory
- if defined $watch_directory;
- $args{sleep_interval} = $check_interval
- if defined $check_interval;
- $args{filter} = qr/$file_regex/
- if defined $file_regex;
-
- my $restarter = $subclass->new(
- %args,
- start_sub => $runner,
- argv => \@argv,
- );
-
- $restarter->run_and_watch;
-}
-else {
- $runner->();
-}
-
1;
=head1 NAME
-myapp_server.pl - Catalyst Testserver
+myapp_server.pl - Catalyst Test Server
=head1 SYNOPSIS
myapp_server.pl [options]
- Options:
- -d -debug force debug mode
- -f -fork handle each request in a new process
- (defaults to false)
- -? -help display this help and exits
- -host host (defaults to all)
- -p -port port (defaults to 3000)
- -k -keepalive enable keep-alive connections
- -r -restart restart when files get modified
- (defaults to false)
- -rd -restartdelay delay between file checks
- (ignored if you have Linux::Inotify2 installed)
- -rr -restartregex regex match files that trigger
- a restart when modified
- (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
- -restartdirectory the directory to search for
- modified files, can be set mulitple times
- (defaults to '[SCRIPT_DIR]/..')
- -follow_symlinks follow symlinks in search directories
- (defaults to false. this is a no-op on Win32)
- -background run the process in the background
- -pidfile specify filename for pid file
+ -d --debug force debug mode
+ -f --fork handle each request in a new process
+ (defaults to false)
+ -? --help display this help and exits
+ -h --host host (defaults to all)
+ -p --port port (defaults to 3000)
+ -k --keepalive enable keep-alive connections
+ -r --restart restart when files get modified
+ (defaults to false)
+ -rd --restart_delay delay between file checks
+ (ignored if you have Linux::Inotify2 installed)
+ -rr --restart_regex regex match files that trigger
+ a restart when modified
+ (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
+ --restart_directory the directory to search for
+ modified files, can be set mulitple times
+ (defaults to '[SCRIPT_DIR]/..')
+ --follow_symlinks follow symlinks in search directories
+ (defaults to false. this is a no-op on Win32)
+ --background run the process in the background
+ --pidfile specify filename for pid file
See also:
perldoc Catalyst::Manual
@@ -158,3 +57,4 @@
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_test.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_test.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter4/MyApp/script/myapp_test.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,21 +1,8 @@
#!/usr/bin/env perl
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use Catalyst::Test 'MyApp';
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Test');
-my $help = 0;
-
-GetOptions( 'help|?' => \$help );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-print request($ARGV[0])->content . "\n";
-
1;
=head1 NAME
@@ -27,7 +14,7 @@
myapp_test.pl [options] uri
Options:
- -help display this help and exits
+ --help display this help and exits
Examples:
myapp_test.pl http://localhost/some_action
Modified: trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_cgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_cgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_cgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,15 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'CGI');
-use strict;
-use warnings;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-MyApp->run;
-
1;
=head1 NAME
@@ -30,8 +23,8 @@
=head1 COPYRIGHT
-
This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_create.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_create.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_create.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -2,38 +2,10 @@
use strict;
use warnings;
-use Getopt::Long;
-use Pod::Usage;
-eval "use Catalyst::Helper;";
-if ($@) {
- die <<END;
-To use the Catalyst development tools including catalyst.pl and the
-generated script/myapp_create.pl you need Catalyst::Helper, which is
-part of the Catalyst-Devel distribution. Please install this via a
-vendor package or by running one of -
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Create');
- perl -MCPAN -e 'install Catalyst::Devel'
- perl -MCPANPLUS -e 'install Catalyst::Devel'
-END
-}
-
-my $force = 0;
-my $mech = 0;
-my $help = 0;
-
-GetOptions(
- 'nonew|force' => \$force,
- 'mech|mechanize' => \$mech,
- 'help|?' => \$help
- );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
-
-pod2usage(1) unless $helper->mk_component( 'MyApp', @ARGV );
-
1;
=head1 NAME
@@ -45,9 +17,9 @@
myapp_create.pl [options] model|view|controller name [helper] [options]
Options:
- -force don't create a .new file where a file to be created exists
- -mechanize use Test::WWW::Mechanize::Catalyst for tests if available
- -help display this help and exits
+ --force don't create a .new file where a file to be created exists
+ --mechanize use Test::WWW::Mechanize::Catalyst for tests if available
+ --help display this help and exits
Examples:
myapp_create.pl controller My::Controller
Modified: trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_fastcgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,40 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'FastCGI');
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-my $help = 0;
-my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr );
-
-GetOptions(
- 'help|?' => \$help,
- 'listen|l=s' => \$listen,
- 'nproc|n=i' => \$nproc,
- 'pidfile|p=s' => \$pidfile,
- 'manager|M=s' => \$manager,
- 'daemon|d' => \$detach,
- 'keeperr|e' => \$keep_stderr,
-);
-
-pod2usage(1) if $help;
-
-MyApp->run(
- $listen,
- { nproc => $nproc,
- pidfile => $pidfile,
- manager => $manager,
- detach => $detach,
- keep_stderr => $keep_stderr,
- }
-);
-
1;
=head1 NAME
@@ -47,20 +15,20 @@
Options:
-? -help display this help and exits
- -l -listen Socket path to listen on
+ -l --listen Socket path to listen on
(defaults to standard input)
can be HOST:PORT, :PORT or a
filesystem path
- -n -nproc specify number of processes to keep
+ -n --nproc specify number of processes to keep
to serve requests (defaults to 1,
requires -listen)
- -p -pidfile specify filename for pid file
+ -p --pidfile specify filename for pid file
(requires -listen)
- -d -daemon daemonize (requires -listen)
- -M -manager specify alternate process manager
+ -d --daemon daemonize (requires -listen)
+ -M --manager specify alternate process manager
(FCGI::ProcManager sub-class)
or empty string to disable
- -e -keeperr send error messages to STDOUT, not
+ -e --keeperr send error messages to STDOUT, not
to the webserver
=head1 DESCRIPTION
Modified: trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_server.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_server.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_server.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,144 +1,43 @@
#!/usr/bin/env perl
BEGIN {
- $ENV{CATALYST_ENGINE} ||= 'HTTP';
- $ENV{CATALYST_SCRIPT_GEN} = 39;
- require Catalyst::Engine::HTTP;
+ $ENV{CATALYST_SCRIPT_GEN} = 40;
}
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Server');
-my $debug = 0;
-my $fork = 0;
-my $help = 0;
-my $host = undef;
-my $port = $ENV{MYAPP_PORT} || $ENV{CATALYST_PORT} || 3000;
-my $keepalive = 0;
-my $restart = $ENV{MYAPP_RELOAD} || $ENV{CATALYST_RELOAD} || 0;
-my $background = 0;
-my $pidfile = undef;
-
-my $check_interval;
-my $file_regex;
-my $watch_directory;
-my $follow_symlinks;
-
-my @argv = @ARGV;
-
-GetOptions(
- 'debug|d' => \$debug,
- 'fork|f' => \$fork,
- 'help|?' => \$help,
- 'host=s' => \$host,
- 'port|p=s' => \$port,
- 'keepalive|k' => \$keepalive,
- 'restart|r' => \$restart,
- 'restartdelay|rd=s' => \$check_interval,
- 'restartregex|rr=s' => \$file_regex,
- 'restartdirectory=s@' => \$watch_directory,
- 'followsymlinks' => \$follow_symlinks,
- 'background' => \$background,
- 'pidfile=s' => \$pidfile,
-);
-
-pod2usage(1) if $help;
-
-if ( $debug ) {
- $ENV{CATALYST_DEBUG} = 1;
-}
-
-# If we load this here, then in the case of a restarter, it does not
-# need to be reloaded for each restart.
-require Catalyst;
-
-# If this isn't done, then the Catalyst::Devel tests for the restarter
-# fail.
-$| = 1 if $ENV{HARNESS_ACTIVE};
-
-my $runner = sub {
- # This is require instead of use so that the above environment
- # variables can be set at runtime.
- require MyApp;
-
- MyApp->run(
- $port, $host,
- {
- argv => \@argv,
- 'fork' => $fork,
- keepalive => $keepalive,
- background => $background,
- pidfile => $pidfile,
- }
- );
-};
-
-if ( $restart ) {
- die "Cannot run in the background and also watch for changed files.\n"
- if $background;
-
- require Catalyst::Restarter;
-
- my $subclass = Catalyst::Restarter->pick_subclass;
-
- my %args;
- $args{follow_symlinks} = 1
- if $follow_symlinks;
- $args{directories} = $watch_directory
- if defined $watch_directory;
- $args{sleep_interval} = $check_interval
- if defined $check_interval;
- $args{filter} = qr/$file_regex/
- if defined $file_regex;
-
- my $restarter = $subclass->new(
- %args,
- start_sub => $runner,
- argv => \@argv,
- );
-
- $restarter->run_and_watch;
-}
-else {
- $runner->();
-}
-
1;
=head1 NAME
-myapp_server.pl - Catalyst Testserver
+myapp_server.pl - Catalyst Test Server
=head1 SYNOPSIS
myapp_server.pl [options]
- Options:
- -d -debug force debug mode
- -f -fork handle each request in a new process
- (defaults to false)
- -? -help display this help and exits
- -host host (defaults to all)
- -p -port port (defaults to 3000)
- -k -keepalive enable keep-alive connections
- -r -restart restart when files get modified
- (defaults to false)
- -rd -restartdelay delay between file checks
- (ignored if you have Linux::Inotify2 installed)
- -rr -restartregex regex match files that trigger
- a restart when modified
- (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
- -restartdirectory the directory to search for
- modified files, can be set mulitple times
- (defaults to '[SCRIPT_DIR]/..')
- -follow_symlinks follow symlinks in search directories
- (defaults to false. this is a no-op on Win32)
- -background run the process in the background
- -pidfile specify filename for pid file
+ -d --debug force debug mode
+ -f --fork handle each request in a new process
+ (defaults to false)
+ -? --help display this help and exits
+ -h --host host (defaults to all)
+ -p --port port (defaults to 3000)
+ -k --keepalive enable keep-alive connections
+ -r --restart restart when files get modified
+ (defaults to false)
+ -rd --restart_delay delay between file checks
+ (ignored if you have Linux::Inotify2 installed)
+ -rr --restart_regex regex match files that trigger
+ a restart when modified
+ (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
+ --restart_directory the directory to search for
+ modified files, can be set mulitple times
+ (defaults to '[SCRIPT_DIR]/..')
+ --follow_symlinks follow symlinks in search directories
+ (defaults to false. this is a no-op on Win32)
+ --background run the process in the background
+ --pidfile specify filename for pid file
See also:
perldoc Catalyst::Manual
@@ -158,3 +57,4 @@
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_test.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_test.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter5/MyApp/script/myapp_test.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,21 +1,8 @@
#!/usr/bin/env perl
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use Catalyst::Test 'MyApp';
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Test');
-my $help = 0;
-
-GetOptions( 'help|?' => \$help );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-print request($ARGV[0])->content . "\n";
-
1;
=head1 NAME
@@ -27,7 +14,7 @@
myapp_test.pl [options] uri
Options:
- -help display this help and exits
+ --help display this help and exits
Examples:
myapp_test.pl http://localhost/some_action
Modified: trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_cgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_cgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_cgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,15 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'CGI');
-use strict;
-use warnings;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-MyApp->run;
-
1;
=head1 NAME
@@ -30,8 +23,8 @@
=head1 COPYRIGHT
-
This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_create.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_create.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_create.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -2,38 +2,10 @@
use strict;
use warnings;
-use Getopt::Long;
-use Pod::Usage;
-eval "use Catalyst::Helper;";
-if ($@) {
- die <<END;
-To use the Catalyst development tools including catalyst.pl and the
-generated script/myapp_create.pl you need Catalyst::Helper, which is
-part of the Catalyst-Devel distribution. Please install this via a
-vendor package or by running one of -
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Create');
- perl -MCPAN -e 'install Catalyst::Devel'
- perl -MCPANPLUS -e 'install Catalyst::Devel'
-END
-}
-
-my $force = 0;
-my $mech = 0;
-my $help = 0;
-
-GetOptions(
- 'nonew|force' => \$force,
- 'mech|mechanize' => \$mech,
- 'help|?' => \$help
- );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
-
-pod2usage(1) unless $helper->mk_component( 'MyApp', @ARGV );
-
1;
=head1 NAME
@@ -45,9 +17,9 @@
myapp_create.pl [options] model|view|controller name [helper] [options]
Options:
- -force don't create a .new file where a file to be created exists
- -mechanize use Test::WWW::Mechanize::Catalyst for tests if available
- -help display this help and exits
+ --force don't create a .new file where a file to be created exists
+ --mechanize use Test::WWW::Mechanize::Catalyst for tests if available
+ --help display this help and exits
Examples:
myapp_create.pl controller My::Controller
Modified: trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_fastcgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,40 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'FastCGI');
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-my $help = 0;
-my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr );
-
-GetOptions(
- 'help|?' => \$help,
- 'listen|l=s' => \$listen,
- 'nproc|n=i' => \$nproc,
- 'pidfile|p=s' => \$pidfile,
- 'manager|M=s' => \$manager,
- 'daemon|d' => \$detach,
- 'keeperr|e' => \$keep_stderr,
-);
-
-pod2usage(1) if $help;
-
-MyApp->run(
- $listen,
- { nproc => $nproc,
- pidfile => $pidfile,
- manager => $manager,
- detach => $detach,
- keep_stderr => $keep_stderr,
- }
-);
-
1;
=head1 NAME
@@ -47,20 +15,20 @@
Options:
-? -help display this help and exits
- -l -listen Socket path to listen on
+ -l --listen Socket path to listen on
(defaults to standard input)
can be HOST:PORT, :PORT or a
filesystem path
- -n -nproc specify number of processes to keep
+ -n --nproc specify number of processes to keep
to serve requests (defaults to 1,
requires -listen)
- -p -pidfile specify filename for pid file
+ -p --pidfile specify filename for pid file
(requires -listen)
- -d -daemon daemonize (requires -listen)
- -M -manager specify alternate process manager
+ -d --daemon daemonize (requires -listen)
+ -M --manager specify alternate process manager
(FCGI::ProcManager sub-class)
or empty string to disable
- -e -keeperr send error messages to STDOUT, not
+ -e --keeperr send error messages to STDOUT, not
to the webserver
=head1 DESCRIPTION
Modified: trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_server.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_server.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_server.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,144 +1,43 @@
#!/usr/bin/env perl
BEGIN {
- $ENV{CATALYST_ENGINE} ||= 'HTTP';
- $ENV{CATALYST_SCRIPT_GEN} = 39;
- require Catalyst::Engine::HTTP;
+ $ENV{CATALYST_SCRIPT_GEN} = 40;
}
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Server');
-my $debug = 0;
-my $fork = 0;
-my $help = 0;
-my $host = undef;
-my $port = $ENV{MYAPP_PORT} || $ENV{CATALYST_PORT} || 3000;
-my $keepalive = 0;
-my $restart = $ENV{MYAPP_RELOAD} || $ENV{CATALYST_RELOAD} || 0;
-my $background = 0;
-my $pidfile = undef;
-
-my $check_interval;
-my $file_regex;
-my $watch_directory;
-my $follow_symlinks;
-
-my @argv = @ARGV;
-
-GetOptions(
- 'debug|d' => \$debug,
- 'fork|f' => \$fork,
- 'help|?' => \$help,
- 'host=s' => \$host,
- 'port|p=s' => \$port,
- 'keepalive|k' => \$keepalive,
- 'restart|r' => \$restart,
- 'restartdelay|rd=s' => \$check_interval,
- 'restartregex|rr=s' => \$file_regex,
- 'restartdirectory=s@' => \$watch_directory,
- 'followsymlinks' => \$follow_symlinks,
- 'background' => \$background,
- 'pidfile=s' => \$pidfile,
-);
-
-pod2usage(1) if $help;
-
-if ( $debug ) {
- $ENV{CATALYST_DEBUG} = 1;
-}
-
-# If we load this here, then in the case of a restarter, it does not
-# need to be reloaded for each restart.
-require Catalyst;
-
-# If this isn't done, then the Catalyst::Devel tests for the restarter
-# fail.
-$| = 1 if $ENV{HARNESS_ACTIVE};
-
-my $runner = sub {
- # This is require instead of use so that the above environment
- # variables can be set at runtime.
- require MyApp;
-
- MyApp->run(
- $port, $host,
- {
- argv => \@argv,
- 'fork' => $fork,
- keepalive => $keepalive,
- background => $background,
- pidfile => $pidfile,
- }
- );
-};
-
-if ( $restart ) {
- die "Cannot run in the background and also watch for changed files.\n"
- if $background;
-
- require Catalyst::Restarter;
-
- my $subclass = Catalyst::Restarter->pick_subclass;
-
- my %args;
- $args{follow_symlinks} = 1
- if $follow_symlinks;
- $args{directories} = $watch_directory
- if defined $watch_directory;
- $args{sleep_interval} = $check_interval
- if defined $check_interval;
- $args{filter} = qr/$file_regex/
- if defined $file_regex;
-
- my $restarter = $subclass->new(
- %args,
- start_sub => $runner,
- argv => \@argv,
- );
-
- $restarter->run_and_watch;
-}
-else {
- $runner->();
-}
-
1;
=head1 NAME
-myapp_server.pl - Catalyst Testserver
+myapp_server.pl - Catalyst Test Server
=head1 SYNOPSIS
myapp_server.pl [options]
- Options:
- -d -debug force debug mode
- -f -fork handle each request in a new process
- (defaults to false)
- -? -help display this help and exits
- -host host (defaults to all)
- -p -port port (defaults to 3000)
- -k -keepalive enable keep-alive connections
- -r -restart restart when files get modified
- (defaults to false)
- -rd -restartdelay delay between file checks
- (ignored if you have Linux::Inotify2 installed)
- -rr -restartregex regex match files that trigger
- a restart when modified
- (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
- -restartdirectory the directory to search for
- modified files, can be set mulitple times
- (defaults to '[SCRIPT_DIR]/..')
- -follow_symlinks follow symlinks in search directories
- (defaults to false. this is a no-op on Win32)
- -background run the process in the background
- -pidfile specify filename for pid file
+ -d --debug force debug mode
+ -f --fork handle each request in a new process
+ (defaults to false)
+ -? --help display this help and exits
+ -h --host host (defaults to all)
+ -p --port port (defaults to 3000)
+ -k --keepalive enable keep-alive connections
+ -r --restart restart when files get modified
+ (defaults to false)
+ -rd --restart_delay delay between file checks
+ (ignored if you have Linux::Inotify2 installed)
+ -rr --restart_regex regex match files that trigger
+ a restart when modified
+ (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
+ --restart_directory the directory to search for
+ modified files, can be set mulitple times
+ (defaults to '[SCRIPT_DIR]/..')
+ --follow_symlinks follow symlinks in search directories
+ (defaults to false. this is a no-op on Win32)
+ --background run the process in the background
+ --pidfile specify filename for pid file
See also:
perldoc Catalyst::Manual
@@ -158,3 +57,4 @@
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_test.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_test.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter6/MyApp/script/myapp_test.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,21 +1,8 @@
#!/usr/bin/env perl
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use Catalyst::Test 'MyApp';
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Test');
-my $help = 0;
-
-GetOptions( 'help|?' => \$help );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-print request($ARGV[0])->content . "\n";
-
1;
=head1 NAME
@@ -27,7 +14,7 @@
myapp_test.pl [options] uri
Options:
- -help display this help and exits
+ --help display this help and exits
Examples:
myapp_test.pl http://localhost/some_action
Modified: trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_cgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_cgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_cgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,15 +1,8 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'CGI');
-use strict;
-use warnings;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-MyApp->run;
-
1;
=head1 NAME
@@ -30,8 +23,8 @@
=head1 COPYRIGHT
-
-This library is free software, you can redistribute it and/or modify
+This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_create.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_create.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_create.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,39 +1,11 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
use strict;
use warnings;
-use Getopt::Long;
-use Pod::Usage;
-eval "use Catalyst::Helper;";
-if ($@) {
- die <<END;
-To use the Catalyst development tools including catalyst.pl and the
-generated script/myapp_create.pl you need Catalyst::Helper, which is
-part of the Catalyst-Devel distribution. Please install this via a
-vendor package or by running one of -
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Create');
- perl -MCPAN -e 'install Catalyst::Devel'
- perl -MCPANPLUS -e 'install Catalyst::Devel'
-END
-}
-
-my $force = 0;
-my $mech = 0;
-my $help = 0;
-
-GetOptions(
- 'nonew|force' => \$force,
- 'mech|mechanize' => \$mech,
- 'help|?' => \$help
- );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
-
-pod2usage(1) unless $helper->mk_component( 'MyApp', @ARGV );
-
1;
=head1 NAME
@@ -45,13 +17,12 @@
myapp_create.pl [options] model|view|controller name [helper] [options]
Options:
- -force don't create a .new file where a file to be created exists
- -mechanize use Test::WWW::Mechanize::Catalyst for tests if available
- -help display this help and exits
+ --force don't create a .new file where a file to be created exists
+ --mechanize use Test::WWW::Mechanize::Catalyst for tests if available
+ --help display this help and exits
Examples:
myapp_create.pl controller My::Controller
- myapp_create.pl controller My::Controller BindLex
myapp_create.pl -mechanize controller My::Controller
myapp_create.pl view My::View
myapp_create.pl view MyView TT
@@ -80,7 +51,7 @@
=head1 COPYRIGHT
-This library is free software, you can redistribute it and/or modify
+This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
Modified: trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_fastcgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,40 +1,8 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'FastCGI');
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-my $help = 0;
-my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr );
-
-GetOptions(
- 'help|?' => \$help,
- 'listen|l=s' => \$listen,
- 'nproc|n=i' => \$nproc,
- 'pidfile|p=s' => \$pidfile,
- 'manager|M=s' => \$manager,
- 'daemon|d' => \$detach,
- 'keeperr|e' => \$keep_stderr,
-);
-
-pod2usage(1) if $help;
-
-MyApp->run(
- $listen,
- { nproc => $nproc,
- pidfile => $pidfile,
- manager => $manager,
- detach => $detach,
- keep_stderr => $keep_stderr,
- }
-);
-
1;
=head1 NAME
@@ -47,20 +15,20 @@
Options:
-? -help display this help and exits
- -l -listen Socket path to listen on
+ -l --listen Socket path to listen on
(defaults to standard input)
can be HOST:PORT, :PORT or a
filesystem path
- -n -nproc specify number of processes to keep
+ -n --nproc specify number of processes to keep
to serve requests (defaults to 1,
requires -listen)
- -p -pidfile specify filename for pid file
+ -p --pidfile specify filename for pid file
(requires -listen)
- -d -daemon daemonize (requires -listen)
- -M -manager specify alternate process manager
+ -d --daemon daemonize (requires -listen)
+ -M --manager specify alternate process manager
(FCGI::ProcManager sub-class)
or empty string to disable
- -e -keeperr send error messages to STDOUT, not
+ -e --keeperr send error messages to STDOUT, not
to the webserver
=head1 DESCRIPTION
@@ -73,7 +41,7 @@
=head1 COPYRIGHT
-This library is free software, you can redistribute it and/or modify
+This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
Modified: trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_server.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_server.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_server.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,99 +1,44 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
BEGIN {
- $ENV{CATALYST_ENGINE} ||= 'HTTP';
- $ENV{CATALYST_SCRIPT_GEN} = 32;
- require Catalyst::Engine::HTTP;
+ $ENV{CATALYST_SCRIPT_GEN} = 40;
}
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Server');
-my $debug = 0;
-my $fork = 0;
-my $help = 0;
-my $host = undef;
-my $port = $ENV{MYAPP_PORT} || $ENV{CATALYST_PORT} || 3000;
-my $keepalive = 0;
-my $restart = $ENV{MYAPP_RELOAD} || $ENV{CATALYST_RELOAD} || 0;
-my $restart_delay = 1;
-my $restart_regex = '(?:/|^)(?!\.#).+(?:\.yml$|\.yaml$|\.conf|\.pm)$';
-my $restart_directory = undef;
-my $follow_symlinks = 0;
-
-my @argv = @ARGV;
-
-GetOptions(
- 'debug|d' => \$debug,
- 'fork' => \$fork,
- 'help|?' => \$help,
- 'host=s' => \$host,
- 'port=s' => \$port,
- 'keepalive|k' => \$keepalive,
- 'restart|r' => \$restart,
- 'restartdelay|rd=s' => \$restart_delay,
- 'restartregex|rr=s' => \$restart_regex,
- 'restartdirectory=s@' => \$restart_directory,
- 'followsymlinks' => \$follow_symlinks,
-);
-
-pod2usage(1) if $help;
-
-if ( $restart && $ENV{CATALYST_ENGINE} eq 'HTTP' ) {
- $ENV{CATALYST_ENGINE} = 'HTTP::Restarter';
-}
-if ( $debug ) {
- $ENV{CATALYST_DEBUG} = 1;
-}
-
-# This is require instead of use so that the above environment
-# variables can be set at runtime.
-require MyApp;
-
-MyApp->run( $port, $host, {
- argv => \@argv,
- 'fork' => $fork,
- keepalive => $keepalive,
- restart => $restart,
- restart_delay => $restart_delay,
- restart_regex => qr/$restart_regex/,
- restart_directory => $restart_directory,
- follow_symlinks => $follow_symlinks,
-} );
-
1;
=head1 NAME
-myapp_server.pl - Catalyst Testserver
+myapp_server.pl - Catalyst Test Server
=head1 SYNOPSIS
myapp_server.pl [options]
- Options:
- -d -debug force debug mode
- -f -fork handle each request in a new process
- (defaults to false)
- -? -help display this help and exits
- -host host (defaults to all)
- -p -port port (defaults to 3000)
- -k -keepalive enable keep-alive connections
- -r -restart restart when files get modified
- (defaults to false)
- -rd -restartdelay delay between file checks
- -rr -restartregex regex match files that trigger
- a restart when modified
- (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
- -restartdirectory the directory to search for
- modified files, can be set mulitple times
- (defaults to '[SCRIPT_DIR]/..')
- -follow_symlinks follow symlinks in search directories
- (defaults to false. this is a no-op on Win32)
+ -d --debug force debug mode
+ -f --fork handle each request in a new process
+ (defaults to false)
+ -? --help display this help and exits
+ -h --host host (defaults to all)
+ -p --port port (defaults to 3000)
+ -k --keepalive enable keep-alive connections
+ -r --restart restart when files get modified
+ (defaults to false)
+ -rd --restart_delay delay between file checks
+ (ignored if you have Linux::Inotify2 installed)
+ -rr --restart_regex regex match files that trigger
+ a restart when modified
+ (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
+ --restart_directory the directory to search for
+ modified files, can be set mulitple times
+ (defaults to '[SCRIPT_DIR]/..')
+ --follow_symlinks follow symlinks in search directories
+ (defaults to false. this is a no-op on Win32)
+ --background run the process in the background
+ --pidfile specify filename for pid file
+
See also:
perldoc Catalyst::Manual
perldoc Catalyst::Manual::Intro
@@ -108,7 +53,8 @@
=head1 COPYRIGHT
-This library is free software, you can redistribute it and/or modify
+This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_test.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_test.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter7/MyApp/script/myapp_test.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,21 +1,8 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use Catalyst::Test 'MyApp';
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Test');
-my $help = 0;
-
-GetOptions( 'help|?' => \$help );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-print request($ARGV[0])->content . "\n";
-
1;
=head1 NAME
@@ -27,7 +14,7 @@
myapp_test.pl [options] uri
Options:
- -help display this help and exits
+ --help display this help and exits
Examples:
myapp_test.pl http://localhost/some_action
@@ -47,7 +34,7 @@
=head1 COPYRIGHT
-This library is free software, you can redistribute it and/or modify
+This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
Modified: trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_cgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_cgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_cgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,15 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'CGI');
-use strict;
-use warnings;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-MyApp->run;
-
1;
=head1 NAME
@@ -30,8 +23,8 @@
=head1 COPYRIGHT
-
This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_create.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_create.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_create.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -2,38 +2,10 @@
use strict;
use warnings;
-use Getopt::Long;
-use Pod::Usage;
-eval "use Catalyst::Helper;";
-if ($@) {
- die <<END;
-To use the Catalyst development tools including catalyst.pl and the
-generated script/myapp_create.pl you need Catalyst::Helper, which is
-part of the Catalyst-Devel distribution. Please install this via a
-vendor package or by running one of -
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Create');
- perl -MCPAN -e 'install Catalyst::Devel'
- perl -MCPANPLUS -e 'install Catalyst::Devel'
-END
-}
-
-my $force = 0;
-my $mech = 0;
-my $help = 0;
-
-GetOptions(
- 'nonew|force' => \$force,
- 'mech|mechanize' => \$mech,
- 'help|?' => \$help
- );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
-
-pod2usage(1) unless $helper->mk_component( 'MyApp', @ARGV );
-
1;
=head1 NAME
@@ -45,9 +17,9 @@
myapp_create.pl [options] model|view|controller name [helper] [options]
Options:
- -force don't create a .new file where a file to be created exists
- -mechanize use Test::WWW::Mechanize::Catalyst for tests if available
- -help display this help and exits
+ --force don't create a .new file where a file to be created exists
+ --mechanize use Test::WWW::Mechanize::Catalyst for tests if available
+ --help display this help and exits
Examples:
myapp_create.pl controller My::Controller
Modified: trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_fastcgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,40 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'FastCGI');
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-my $help = 0;
-my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr );
-
-GetOptions(
- 'help|?' => \$help,
- 'listen|l=s' => \$listen,
- 'nproc|n=i' => \$nproc,
- 'pidfile|p=s' => \$pidfile,
- 'manager|M=s' => \$manager,
- 'daemon|d' => \$detach,
- 'keeperr|e' => \$keep_stderr,
-);
-
-pod2usage(1) if $help;
-
-MyApp->run(
- $listen,
- { nproc => $nproc,
- pidfile => $pidfile,
- manager => $manager,
- detach => $detach,
- keep_stderr => $keep_stderr,
- }
-);
-
1;
=head1 NAME
@@ -47,20 +15,20 @@
Options:
-? -help display this help and exits
- -l -listen Socket path to listen on
+ -l --listen Socket path to listen on
(defaults to standard input)
can be HOST:PORT, :PORT or a
filesystem path
- -n -nproc specify number of processes to keep
+ -n --nproc specify number of processes to keep
to serve requests (defaults to 1,
requires -listen)
- -p -pidfile specify filename for pid file
+ -p --pidfile specify filename for pid file
(requires -listen)
- -d -daemon daemonize (requires -listen)
- -M -manager specify alternate process manager
+ -d --daemon daemonize (requires -listen)
+ -M --manager specify alternate process manager
(FCGI::ProcManager sub-class)
or empty string to disable
- -e -keeperr send error messages to STDOUT, not
+ -e --keeperr send error messages to STDOUT, not
to the webserver
=head1 DESCRIPTION
Modified: trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_server.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_server.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_server.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,144 +1,43 @@
#!/usr/bin/env perl
BEGIN {
- $ENV{CATALYST_ENGINE} ||= 'HTTP';
- $ENV{CATALYST_SCRIPT_GEN} = 39;
- require Catalyst::Engine::HTTP;
+ $ENV{CATALYST_SCRIPT_GEN} = 40;
}
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Server');
-my $debug = 0;
-my $fork = 0;
-my $help = 0;
-my $host = undef;
-my $port = $ENV{MYAPP_PORT} || $ENV{CATALYST_PORT} || 3000;
-my $keepalive = 0;
-my $restart = $ENV{MYAPP_RELOAD} || $ENV{CATALYST_RELOAD} || 0;
-my $background = 0;
-my $pidfile = undef;
-
-my $check_interval;
-my $file_regex;
-my $watch_directory;
-my $follow_symlinks;
-
-my @argv = @ARGV;
-
-GetOptions(
- 'debug|d' => \$debug,
- 'fork|f' => \$fork,
- 'help|?' => \$help,
- 'host=s' => \$host,
- 'port|p=s' => \$port,
- 'keepalive|k' => \$keepalive,
- 'restart|r' => \$restart,
- 'restartdelay|rd=s' => \$check_interval,
- 'restartregex|rr=s' => \$file_regex,
- 'restartdirectory=s@' => \$watch_directory,
- 'followsymlinks' => \$follow_symlinks,
- 'background' => \$background,
- 'pidfile=s' => \$pidfile,
-);
-
-pod2usage(1) if $help;
-
-if ( $debug ) {
- $ENV{CATALYST_DEBUG} = 1;
-}
-
-# If we load this here, then in the case of a restarter, it does not
-# need to be reloaded for each restart.
-require Catalyst;
-
-# If this isn't done, then the Catalyst::Devel tests for the restarter
-# fail.
-$| = 1 if $ENV{HARNESS_ACTIVE};
-
-my $runner = sub {
- # This is require instead of use so that the above environment
- # variables can be set at runtime.
- require MyApp;
-
- MyApp->run(
- $port, $host,
- {
- argv => \@argv,
- 'fork' => $fork,
- keepalive => $keepalive,
- background => $background,
- pidfile => $pidfile,
- }
- );
-};
-
-if ( $restart ) {
- die "Cannot run in the background and also watch for changed files.\n"
- if $background;
-
- require Catalyst::Restarter;
-
- my $subclass = Catalyst::Restarter->pick_subclass;
-
- my %args;
- $args{follow_symlinks} = 1
- if $follow_symlinks;
- $args{directories} = $watch_directory
- if defined $watch_directory;
- $args{sleep_interval} = $check_interval
- if defined $check_interval;
- $args{filter} = qr/$file_regex/
- if defined $file_regex;
-
- my $restarter = $subclass->new(
- %args,
- start_sub => $runner,
- argv => \@argv,
- );
-
- $restarter->run_and_watch;
-}
-else {
- $runner->();
-}
-
1;
=head1 NAME
-myapp_server.pl - Catalyst Testserver
+myapp_server.pl - Catalyst Test Server
=head1 SYNOPSIS
myapp_server.pl [options]
- Options:
- -d -debug force debug mode
- -f -fork handle each request in a new process
- (defaults to false)
- -? -help display this help and exits
- -host host (defaults to all)
- -p -port port (defaults to 3000)
- -k -keepalive enable keep-alive connections
- -r -restart restart when files get modified
- (defaults to false)
- -rd -restartdelay delay between file checks
- (ignored if you have Linux::Inotify2 installed)
- -rr -restartregex regex match files that trigger
- a restart when modified
- (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
- -restartdirectory the directory to search for
- modified files, can be set mulitple times
- (defaults to '[SCRIPT_DIR]/..')
- -follow_symlinks follow symlinks in search directories
- (defaults to false. this is a no-op on Win32)
- -background run the process in the background
- -pidfile specify filename for pid file
+ -d --debug force debug mode
+ -f --fork handle each request in a new process
+ (defaults to false)
+ -? --help display this help and exits
+ -h --host host (defaults to all)
+ -p --port port (defaults to 3000)
+ -k --keepalive enable keep-alive connections
+ -r --restart restart when files get modified
+ (defaults to false)
+ -rd --restart_delay delay between file checks
+ (ignored if you have Linux::Inotify2 installed)
+ -rr --restart_regex regex match files that trigger
+ a restart when modified
+ (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
+ --restart_directory the directory to search for
+ modified files, can be set mulitple times
+ (defaults to '[SCRIPT_DIR]/..')
+ --follow_symlinks follow symlinks in search directories
+ (defaults to false. this is a no-op on Win32)
+ --background run the process in the background
+ --pidfile specify filename for pid file
See also:
perldoc Catalyst::Manual
@@ -158,3 +57,4 @@
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_test.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_test.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter8/MyApp/script/myapp_test.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,21 +1,8 @@
#!/usr/bin/env perl
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use Catalyst::Test 'MyApp';
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Test');
-my $help = 0;
-
-GetOptions( 'help|?' => \$help );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-print request($ARGV[0])->content . "\n";
-
1;
=head1 NAME
@@ -27,7 +14,7 @@
myapp_test.pl [options] uri
Options:
- -help display this help and exits
+ --help display this help and exits
Examples:
myapp_test.pl http://localhost/some_action
Modified: trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_cgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_cgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_cgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,15 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'CGI');
-use strict;
-use warnings;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-MyApp->run;
-
1;
=head1 NAME
@@ -30,8 +23,8 @@
=head1 COPYRIGHT
-
This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_create.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_create.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_create.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -2,38 +2,10 @@
use strict;
use warnings;
-use Getopt::Long;
-use Pod::Usage;
-eval "use Catalyst::Helper;";
-if ($@) {
- die <<END;
-To use the Catalyst development tools including catalyst.pl and the
-generated script/myapp_create.pl you need Catalyst::Helper, which is
-part of the Catalyst-Devel distribution. Please install this via a
-vendor package or by running one of -
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Create');
- perl -MCPAN -e 'install Catalyst::Devel'
- perl -MCPANPLUS -e 'install Catalyst::Devel'
-END
-}
-
-my $force = 0;
-my $mech = 0;
-my $help = 0;
-
-GetOptions(
- 'nonew|force' => \$force,
- 'mech|mechanize' => \$mech,
- 'help|?' => \$help
- );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
-
-pod2usage(1) unless $helper->mk_component( 'MyApp', @ARGV );
-
1;
=head1 NAME
@@ -45,9 +17,9 @@
myapp_create.pl [options] model|view|controller name [helper] [options]
Options:
- -force don't create a .new file where a file to be created exists
- -mechanize use Test::WWW::Mechanize::Catalyst for tests if available
- -help display this help and exits
+ --force don't create a .new file where a file to be created exists
+ --mechanize use Test::WWW::Mechanize::Catalyst for tests if available
+ --help display this help and exits
Examples:
myapp_create.pl controller My::Controller
Modified: trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_fastcgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,40 +1,8 @@
#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'FastCGI');
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-my $help = 0;
-my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr );
-
-GetOptions(
- 'help|?' => \$help,
- 'listen|l=s' => \$listen,
- 'nproc|n=i' => \$nproc,
- 'pidfile|p=s' => \$pidfile,
- 'manager|M=s' => \$manager,
- 'daemon|d' => \$detach,
- 'keeperr|e' => \$keep_stderr,
-);
-
-pod2usage(1) if $help;
-
-MyApp->run(
- $listen,
- { nproc => $nproc,
- pidfile => $pidfile,
- manager => $manager,
- detach => $detach,
- keep_stderr => $keep_stderr,
- }
-);
-
1;
=head1 NAME
@@ -47,20 +15,20 @@
Options:
-? -help display this help and exits
- -l -listen Socket path to listen on
+ -l --listen Socket path to listen on
(defaults to standard input)
can be HOST:PORT, :PORT or a
filesystem path
- -n -nproc specify number of processes to keep
+ -n --nproc specify number of processes to keep
to serve requests (defaults to 1,
requires -listen)
- -p -pidfile specify filename for pid file
+ -p --pidfile specify filename for pid file
(requires -listen)
- -d -daemon daemonize (requires -listen)
- -M -manager specify alternate process manager
+ -d --daemon daemonize (requires -listen)
+ -M --manager specify alternate process manager
(FCGI::ProcManager sub-class)
or empty string to disable
- -e -keeperr send error messages to STDOUT, not
+ -e --keeperr send error messages to STDOUT, not
to the webserver
=head1 DESCRIPTION
Modified: trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_server.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_server.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_server.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,144 +1,43 @@
#!/usr/bin/env perl
BEGIN {
- $ENV{CATALYST_ENGINE} ||= 'HTTP';
- $ENV{CATALYST_SCRIPT_GEN} = 39;
- require Catalyst::Engine::HTTP;
+ $ENV{CATALYST_SCRIPT_GEN} = 40;
}
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Server');
-my $debug = 0;
-my $fork = 0;
-my $help = 0;
-my $host = undef;
-my $port = $ENV{MYAPP_PORT} || $ENV{CATALYST_PORT} || 3000;
-my $keepalive = 0;
-my $restart = $ENV{MYAPP_RELOAD} || $ENV{CATALYST_RELOAD} || 0;
-my $background = 0;
-my $pidfile = undef;
-
-my $check_interval;
-my $file_regex;
-my $watch_directory;
-my $follow_symlinks;
-
-my @argv = @ARGV;
-
-GetOptions(
- 'debug|d' => \$debug,
- 'fork|f' => \$fork,
- 'help|?' => \$help,
- 'host=s' => \$host,
- 'port|p=s' => \$port,
- 'keepalive|k' => \$keepalive,
- 'restart|r' => \$restart,
- 'restartdelay|rd=s' => \$check_interval,
- 'restartregex|rr=s' => \$file_regex,
- 'restartdirectory=s@' => \$watch_directory,
- 'followsymlinks' => \$follow_symlinks,
- 'background' => \$background,
- 'pidfile=s' => \$pidfile,
-);
-
-pod2usage(1) if $help;
-
-if ( $debug ) {
- $ENV{CATALYST_DEBUG} = 1;
-}
-
-# If we load this here, then in the case of a restarter, it does not
-# need to be reloaded for each restart.
-require Catalyst;
-
-# If this isn't done, then the Catalyst::Devel tests for the restarter
-# fail.
-$| = 1 if $ENV{HARNESS_ACTIVE};
-
-my $runner = sub {
- # This is require instead of use so that the above environment
- # variables can be set at runtime.
- require MyApp;
-
- MyApp->run(
- $port, $host,
- {
- argv => \@argv,
- 'fork' => $fork,
- keepalive => $keepalive,
- background => $background,
- pidfile => $pidfile,
- }
- );
-};
-
-if ( $restart ) {
- die "Cannot run in the background and also watch for changed files.\n"
- if $background;
-
- require Catalyst::Restarter;
-
- my $subclass = Catalyst::Restarter->pick_subclass;
-
- my %args;
- $args{follow_symlinks} = 1
- if $follow_symlinks;
- $args{directories} = $watch_directory
- if defined $watch_directory;
- $args{sleep_interval} = $check_interval
- if defined $check_interval;
- $args{filter} = qr/$file_regex/
- if defined $file_regex;
-
- my $restarter = $subclass->new(
- %args,
- start_sub => $runner,
- argv => \@argv,
- );
-
- $restarter->run_and_watch;
-}
-else {
- $runner->();
-}
-
1;
=head1 NAME
-myapp_server.pl - Catalyst Testserver
+myapp_server.pl - Catalyst Test Server
=head1 SYNOPSIS
myapp_server.pl [options]
- Options:
- -d -debug force debug mode
- -f -fork handle each request in a new process
- (defaults to false)
- -? -help display this help and exits
- -host host (defaults to all)
- -p -port port (defaults to 3000)
- -k -keepalive enable keep-alive connections
- -r -restart restart when files get modified
- (defaults to false)
- -rd -restartdelay delay between file checks
- (ignored if you have Linux::Inotify2 installed)
- -rr -restartregex regex match files that trigger
- a restart when modified
- (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
- -restartdirectory the directory to search for
- modified files, can be set mulitple times
- (defaults to '[SCRIPT_DIR]/..')
- -follow_symlinks follow symlinks in search directories
- (defaults to false. this is a no-op on Win32)
- -background run the process in the background
- -pidfile specify filename for pid file
+ -d --debug force debug mode
+ -f --fork handle each request in a new process
+ (defaults to false)
+ -? --help display this help and exits
+ -h --host host (defaults to all)
+ -p --port port (defaults to 3000)
+ -k --keepalive enable keep-alive connections
+ -r --restart restart when files get modified
+ (defaults to false)
+ -rd --restart_delay delay between file checks
+ (ignored if you have Linux::Inotify2 installed)
+ -rr --restart_regex regex match files that trigger
+ a restart when modified
+ (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
+ --restart_directory the directory to search for
+ modified files, can be set mulitple times
+ (defaults to '[SCRIPT_DIR]/..')
+ --follow_symlinks follow symlinks in search directories
+ (defaults to false. this is a no-op on Win32)
+ --background run the process in the background
+ --pidfile specify filename for pid file
See also:
perldoc Catalyst::Manual
@@ -158,3 +57,4 @@
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_test.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_test.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter9_FormFu/MyApp/script/myapp_test.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,21 +1,8 @@
#!/usr/bin/env perl
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use Catalyst::Test 'MyApp';
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Test');
-my $help = 0;
-
-GetOptions( 'help|?' => \$help );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-print request($ARGV[0])->content . "\n";
-
1;
=head1 NAME
@@ -27,7 +14,7 @@
myapp_test.pl [options] uri
Options:
- -help display this help and exits
+ --help display this help and exits
Examples:
myapp_test.pl http://localhost/some_action
Modified: trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_cgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_cgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_cgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,15 +1,8 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'CGI');
-use strict;
-use warnings;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-MyApp->run;
-
1;
=head1 NAME
@@ -30,8 +23,8 @@
=head1 COPYRIGHT
-
-This library is free software, you can redistribute it and/or modify
+This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_create.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_create.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_create.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,39 +1,11 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
use strict;
use warnings;
-use Getopt::Long;
-use Pod::Usage;
-eval "use Catalyst::Helper;";
-if ($@) {
- die <<END;
-To use the Catalyst development tools including catalyst.pl and the
-generated script/myapp_create.pl you need Catalyst::Helper, which is
-part of the Catalyst-Devel distribution. Please install this via a
-vendor package or by running one of -
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Create');
- perl -MCPAN -e 'install Catalyst::Devel'
- perl -MCPANPLUS -e 'install Catalyst::Devel'
-END
-}
-
-my $force = 0;
-my $mech = 0;
-my $help = 0;
-
-GetOptions(
- 'nonew|force' => \$force,
- 'mech|mechanize' => \$mech,
- 'help|?' => \$help
- );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
-
-pod2usage(1) unless $helper->mk_component( 'MyApp', @ARGV );
-
1;
=head1 NAME
@@ -45,13 +17,12 @@
myapp_create.pl [options] model|view|controller name [helper] [options]
Options:
- -force don't create a .new file where a file to be created exists
- -mechanize use Test::WWW::Mechanize::Catalyst for tests if available
- -help display this help and exits
+ --force don't create a .new file where a file to be created exists
+ --mechanize use Test::WWW::Mechanize::Catalyst for tests if available
+ --help display this help and exits
Examples:
myapp_create.pl controller My::Controller
- myapp_create.pl controller My::Controller BindLex
myapp_create.pl -mechanize controller My::Controller
myapp_create.pl view My::View
myapp_create.pl view MyView TT
@@ -80,7 +51,7 @@
=head1 COPYRIGHT
-This library is free software, you can redistribute it and/or modify
+This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
Modified: trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_fastcgi.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_fastcgi.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,40 +1,8 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
-BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'FastCGI');
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use MyApp;
-
-my $help = 0;
-my ( $listen, $nproc, $pidfile, $manager, $detach, $keep_stderr );
-
-GetOptions(
- 'help|?' => \$help,
- 'listen|l=s' => \$listen,
- 'nproc|n=i' => \$nproc,
- 'pidfile|p=s' => \$pidfile,
- 'manager|M=s' => \$manager,
- 'daemon|d' => \$detach,
- 'keeperr|e' => \$keep_stderr,
-);
-
-pod2usage(1) if $help;
-
-MyApp->run(
- $listen,
- { nproc => $nproc,
- pidfile => $pidfile,
- manager => $manager,
- detach => $detach,
- keep_stderr => $keep_stderr,
- }
-);
-
1;
=head1 NAME
@@ -47,20 +15,20 @@
Options:
-? -help display this help and exits
- -l -listen Socket path to listen on
+ -l --listen Socket path to listen on
(defaults to standard input)
can be HOST:PORT, :PORT or a
filesystem path
- -n -nproc specify number of processes to keep
+ -n --nproc specify number of processes to keep
to serve requests (defaults to 1,
requires -listen)
- -p -pidfile specify filename for pid file
+ -p --pidfile specify filename for pid file
(requires -listen)
- -d -daemon daemonize (requires -listen)
- -M -manager specify alternate process manager
+ -d --daemon daemonize (requires -listen)
+ -M --manager specify alternate process manager
(FCGI::ProcManager sub-class)
or empty string to disable
- -e -keeperr send error messages to STDOUT, not
+ -e --keeperr send error messages to STDOUT, not
to the webserver
=head1 DESCRIPTION
@@ -73,7 +41,7 @@
=head1 COPYRIGHT
-This library is free software, you can redistribute it and/or modify
+This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
Modified: trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_server.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_server.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_server.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,99 +1,44 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
BEGIN {
- $ENV{CATALYST_ENGINE} ||= 'HTTP';
- $ENV{CATALYST_SCRIPT_GEN} = 32;
- require Catalyst::Engine::HTTP;
+ $ENV{CATALYST_SCRIPT_GEN} = 40;
}
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Server');
-my $debug = 0;
-my $fork = 0;
-my $help = 0;
-my $host = undef;
-my $port = $ENV{MYAPP_PORT} || $ENV{CATALYST_PORT} || 3000;
-my $keepalive = 0;
-my $restart = $ENV{MYAPP_RELOAD} || $ENV{CATALYST_RELOAD} || 0;
-my $restart_delay = 1;
-my $restart_regex = '(?:/|^)(?!\.#).+(?:\.yml$|\.yaml$|\.conf|\.pm)$';
-my $restart_directory = undef;
-my $follow_symlinks = 0;
-
-my @argv = @ARGV;
-
-GetOptions(
- 'debug|d' => \$debug,
- 'fork' => \$fork,
- 'help|?' => \$help,
- 'host=s' => \$host,
- 'port=s' => \$port,
- 'keepalive|k' => \$keepalive,
- 'restart|r' => \$restart,
- 'restartdelay|rd=s' => \$restart_delay,
- 'restartregex|rr=s' => \$restart_regex,
- 'restartdirectory=s@' => \$restart_directory,
- 'followsymlinks' => \$follow_symlinks,
-);
-
-pod2usage(1) if $help;
-
-if ( $restart && $ENV{CATALYST_ENGINE} eq 'HTTP' ) {
- $ENV{CATALYST_ENGINE} = 'HTTP::Restarter';
-}
-if ( $debug ) {
- $ENV{CATALYST_DEBUG} = 1;
-}
-
-# This is require instead of use so that the above environment
-# variables can be set at runtime.
-require MyApp;
-
-MyApp->run( $port, $host, {
- argv => \@argv,
- 'fork' => $fork,
- keepalive => $keepalive,
- restart => $restart,
- restart_delay => $restart_delay,
- restart_regex => qr/$restart_regex/,
- restart_directory => $restart_directory,
- follow_symlinks => $follow_symlinks,
-} );
-
1;
=head1 NAME
-myapp_server.pl - Catalyst Testserver
+myapp_server.pl - Catalyst Test Server
=head1 SYNOPSIS
myapp_server.pl [options]
- Options:
- -d -debug force debug mode
- -f -fork handle each request in a new process
- (defaults to false)
- -? -help display this help and exits
- -host host (defaults to all)
- -p -port port (defaults to 3000)
- -k -keepalive enable keep-alive connections
- -r -restart restart when files get modified
- (defaults to false)
- -rd -restartdelay delay between file checks
- -rr -restartregex regex match files that trigger
- a restart when modified
- (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
- -restartdirectory the directory to search for
- modified files, can be set mulitple times
- (defaults to '[SCRIPT_DIR]/..')
- -follow_symlinks follow symlinks in search directories
- (defaults to false. this is a no-op on Win32)
+ -d --debug force debug mode
+ -f --fork handle each request in a new process
+ (defaults to false)
+ -? --help display this help and exits
+ -h --host host (defaults to all)
+ -p --port port (defaults to 3000)
+ -k --keepalive enable keep-alive connections
+ -r --restart restart when files get modified
+ (defaults to false)
+ -rd --restart_delay delay between file checks
+ (ignored if you have Linux::Inotify2 installed)
+ -rr --restart_regex regex match files that trigger
+ a restart when modified
+ (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
+ --restart_directory the directory to search for
+ modified files, can be set mulitple times
+ (defaults to '[SCRIPT_DIR]/..')
+ --follow_symlinks follow symlinks in search directories
+ (defaults to false. this is a no-op on Win32)
+ --background run the process in the background
+ --pidfile specify filename for pid file
+
See also:
perldoc Catalyst::Manual
perldoc Catalyst::Manual::Intro
@@ -108,7 +53,8 @@
=head1 COPYRIGHT
-This library is free software, you can redistribute it and/or modify
+This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
+
Modified: trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_test.pl
===================================================================
--- trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_test.pl 2010-02-02 11:38:45 UTC (rev 12803)
+++ trunk/examples/Tutorial/MyApp_Chapter9_FormHandler/MyApp/script/myapp_test.pl 2010-02-02 11:39:14 UTC (rev 12804)
@@ -1,21 +1,8 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
-use strict;
-use warnings;
-use Getopt::Long;
-use Pod::Usage;
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-use Catalyst::Test 'MyApp';
+use Catalyst::ScriptRunner;
+Catalyst::ScriptRunner->run('MyApp', 'Test');
-my $help = 0;
-
-GetOptions( 'help|?' => \$help );
-
-pod2usage(1) if ( $help || !$ARGV[0] );
-
-print request($ARGV[0])->content . "\n";
-
1;
=head1 NAME
@@ -27,7 +14,7 @@
myapp_test.pl [options] uri
Options:
- -help display this help and exits
+ --help display this help and exits
Examples:
myapp_test.pl http://localhost/some_action
@@ -47,7 +34,7 @@
=head1 COPYRIGHT
-This library is free software, you can redistribute it and/or modify
+This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
More information about the Catalyst-commits
mailing list