X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst.pm;h=a8e997afa0db319041ca55add4f35c4cc2fa1456;hb=2cf9bc57f0deed5ecf6f08bac23b8bc93f20e887;hp=08037d2da9b24ed63da222c1e529b6d1c51af87f;hpb=cd677e12b127597abb93b76560c8cb23a47d5da6;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 08037d2..a8e997a 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -4,11 +4,12 @@ use strict; use base 'Catalyst::Base'; use UNIVERSAL::require; use Catalyst::Log; +use Catalyst::Helper; use Text::ASCIITable; __PACKAGE__->mk_classdata($_) for qw/dispatcher engine log/; -our $VERSION = '5.00'; +our $VERSION = '5.02'; our @ISA; =head1 NAME @@ -46,10 +47,10 @@ Catalyst - The Elegant MVC Web Application Framework sub index : Path('/index.html') { my ( $self, $c ) = @_; $c->res->output('Hello'); - $c->forward('_foo'); + $c->forward('foo'); } - sub product : Regex('/^product[_]*(\d*).html$/') { + sub product : Regex('^product[_]*(\d*).html$') { my ( $self, $c ) = @_; $c->stash->{template} = 'product.tt'; $c->stash->{product} = $c->req->snippets->[0]; @@ -126,19 +127,21 @@ sub import { my ( $self, @options ) = @_; my $caller = caller(0); + # Prepare inheritance unless ( $caller->isa($self) ) { no strict 'refs'; push @{"$caller\::ISA"}, $self; } if ( $caller->engine ) { - return; # Catalyst is allready initialized + return; # Catalyst is already initialized } unless ( $caller->log ) { $caller->log( Catalyst::Log->new ); } + # Debug? if ( $ENV{CATALYST_DEBUG} || $ENV{ uc($caller) . '_DEBUG' } ) { no strict 'refs'; *{"$caller\::debug"} = sub { 1 }; @@ -148,46 +151,64 @@ sub import { my $engine = 'Catalyst::Engine::CGI'; my $dispatcher = 'Catalyst::Dispatcher'; + # Detect mod_perl if ( $ENV{MOD_PERL} ) { require mod_perl; - if ( $mod_perl::VERSION >= 1.99 ) { - $engine = 'Catalyst::Engine::Apache::MP2'; + if ( $ENV{MOD_PERL_API_VERSION} == 2 ) { + $engine = 'Catalyst::Engine::Apache::MP20'; + } + elsif ( $mod_perl::VERSION >= 1.99 ) { + $engine = 'Catalyst::Engine::Apache::MP19'; } else { - $engine = 'Catalyst::Engine::Apache::MP1'; + $engine = 'Catalyst::Engine::Apache::MP13'; } } + $caller->log->info( "You are running an old helper script! " + . "Please update your scripts by regenerating the " + . "application and copying over the new scripts." ) + if ( $ENV{CATALYST_SCRIPT_GEN} + && ( + $ENV{CATALYST_SCRIPT_GEN} < $Catalyst::Helper::CATALYST_SCRIPT_GEN ) + ); + + # Process options my @plugins; foreach (@options) { + if (/^\-Debug$/) { next if $caller->debug; no strict 'refs'; *{"$caller\::debug"} = sub { 1 }; $caller->log->debug('Debug messages enabled'); } + elsif (/^-Dispatcher=(.*)$/) { $dispatcher = "Catalyst::Dispatcher::$1"; } + elsif (/^-Engine=(.*)$/) { $engine = "Catalyst::Engine::$1" } elsif (/^-.*$/) { $caller->log->error(qq/Unknown flag "$_"/) } + else { my $plugin = "Catalyst::Plugin::$_"; $plugin->require; - if ($@) { - $caller->log->error(qq/Couldn't load plugin "$plugin", "$@"/); - } + if ($@) { die qq/Couldn't load plugin "$plugin", "$@"/ } else { push @plugins, $plugin; no strict 'refs'; push @{"$caller\::ISA"}, $plugin; } } + } + + # Plugin table my $t = Text::ASCIITable->new( { hide_HeadRow => 1, hide_HeadLine => 1 } ); $t->setCols('Class'); $t->setColWidth( 'Class', 75, 1 ); @@ -195,19 +216,6 @@ sub import { $caller->log->debug( 'Loaded plugins', $t->draw ) if ( @plugins && $caller->debug ); - # Engine - $engine = "Catalyst::Engine::$ENV{CATALYST_ENGINE}" - if $ENV{CATALYST_ENGINE}; - - $engine->require; - die qq/Couldn't load engine "$engine", "$@"/ if $@; - { - no strict 'refs'; - push @{"$caller\::ISA"}, $engine; - } - $caller->engine($engine); - $caller->log->debug(qq/Loaded engine "$engine"/) if $caller->debug; - # Dispatcher $dispatcher = "Catalyst::Dispatcher::$ENV{CATALYST_DISPATCHER}" if $ENV{CATALYST_DISPATCHER}; @@ -221,6 +229,18 @@ sub import { $caller->dispatcher($dispatcher); $caller->log->debug(qq/Loaded dispatcher "$dispatcher"/) if $caller->debug; + # Engine + $engine = "Catalyst::Engine::$ENV{CATALYST_ENGINE}" + if $ENV{CATALYST_ENGINE}; + + $engine->require; + die qq/Couldn't load engine "$engine", "$@"/ if $@; + { + no strict 'refs'; + push @{"$caller\::ISA"}, $engine; + } + $caller->engine($engine); + $caller->log->debug(qq/Loaded engine "$engine"/) if $caller->debug; } =item $c->engine @@ -241,6 +261,13 @@ man page. =back +=head1 LIMITATIONS + +FCGI and mod_perl2 support are considered experimental and may contain bugs. + +You may encounter problems accessing the built in test server on public ip +addresses on the internet, thats because of a bug in HTTP::Daemon. + =head1 SUPPORT IRC: @@ -252,6 +279,10 @@ Mailing-Lists: http://lists.rawmode.org/mailman/listinfo/catalyst http://lists.rawmode.org/mailman/listinfo/catalyst-dev +Web: + + http://catalyst.perl.org + =head1 SEE ALSO =over 4 @@ -276,10 +307,10 @@ Sebastian Riedel, C =head1 THANK YOU -Andrew Ford, Andrew Ruthven, Christian Hansen, Christopher Hicks, -Dan Sully, Danijel Milicevic, David Naughton, Gary Ashton Jones, -Jesse Sheidlower, Johan Lindstrom, Marcus Ramberg, Tatsuhiko Miyagawa -and all the others who've helped. +Andy Grundman, Andrew Ford, Andrew Ruthven, Autrijus Tang, Christian Hansen, +Christopher Hicks, Dan Sully, Danijel Milicevic, David Naughton, +Gary Ashton Jones, Jesse Sheidlower, Johan Lindstrom, Marcus Ramberg, +Tatsuhiko Miyagawa and all the others who've helped. =head1 LICENSE