X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst.pm;h=e7cc9a943d40e60e893142cf5526ad559225f87e;hb=d1a31ac68c5b7f93e3b1f99c08006638bce7c907;hp=08037d2da9b24ed63da222c1e529b6d1c51af87f;hpb=cd677e12b127597abb93b76560c8cb23a47d5da6;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 08037d2..e7cc9a9 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -126,6 +126,7 @@ sub import { my ( $self, @options ) = @_; my $caller = caller(0); + # Prepare inheritance unless ( $caller->isa($self) ) { no strict 'refs'; push @{"$caller\::ISA"}, $self; @@ -139,6 +140,7 @@ sub import { $caller->log( Catalyst::Log->new ); } + # Debug? if ( $ENV{CATALYST_DEBUG} || $ENV{ uc($caller) . '_DEBUG' } ) { no strict 'refs'; *{"$caller\::debug"} = sub { 1 }; @@ -148,46 +150,53 @@ 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'; + $engine = 'Catalyst::Engine::Apache::MP19'; } else { - $engine = 'Catalyst::Engine::Apache::MP1'; + $engine = 'Catalyst::Engine::Apache::MP13'; } } + # 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 ); @@ -241,6 +250,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: