X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst.pm;h=08037d2da9b24ed63da222c1e529b6d1c51af87f;hb=d36e81fd510d7cc90667cf54dc174db71fe711cf;hp=3b51c6333a38917cde46f87b64fa0e11efcd9d22;hpb=f5f8484715d3cd05e18db061d27705fbc905bb4c;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 3b51c63..08037d2 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -6,7 +6,7 @@ use UNIVERSAL::require; use Catalyst::Log; use Text::ASCIITable; -__PACKAGE__->mk_classdata($_) for qw/engine log/; +__PACKAGE__->mk_classdata($_) for qw/dispatcher engine log/; our $VERSION = '5.00'; our @ISA; @@ -145,7 +145,8 @@ sub import { $caller->log->debug('Debug messages enabled'); } - my $engine = 'Catalyst::Engine::CGI'; + my $engine = 'Catalyst::Engine::CGI'; + my $dispatcher = 'Catalyst::Dispatcher'; if ( $ENV{MOD_PERL} ) { @@ -167,6 +168,9 @@ sub import { *{"$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 { @@ -184,8 +188,9 @@ sub import { } } } - my $t = Text::ASCIITable->new; + my $t = Text::ASCIITable->new( { hide_HeadRow => 1, hide_HeadLine => 1 } ); $t->setCols('Class'); + $t->setColWidth( 'Class', 75, 1 ); $t->addRow($_) for @plugins; $caller->log->debug( 'Loaded plugins', $t->draw ) if ( @plugins && $caller->debug ); @@ -202,6 +207,20 @@ sub import { } $caller->engine($engine); $caller->log->debug(qq/Loaded engine "$engine"/) if $caller->debug; + + # Dispatcher + $dispatcher = "Catalyst::Dispatcher::$ENV{CATALYST_DISPATCHER}" + if $ENV{CATALYST_DISPATCHER}; + + $dispatcher->require; + die qq/Couldn't load dispatcher "$dispatcher", "$@"/ if $@; + { + no strict 'refs'; + push @{"$caller\::ISA"}, $dispatcher; + } + $caller->dispatcher($dispatcher); + $caller->log->debug(qq/Loaded dispatcher "$dispatcher"/) if $caller->debug; + } =item $c->engine @@ -235,8 +254,21 @@ Mailing-Lists: =head1 SEE ALSO -L, L, L, -L, L +=over 4 + +=item L - The Catalyst Manual + +=item L - Core Engine + +=item L - The Log Class. + +=item L - The Request Object + +=item L - The Response Object + +=item L - The test suite. + +=back =head1 AUTHOR