X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=README;h=5aa8638924da71264d46ad8d9f9a02e743c10d4d;hp=de2defe4f1ca62e98b5e504b56f29693ebd4ef76;hb=6f6e1bb4c351b3983846bec8c4540bbbcf38a480;hpb=7c1078a49a3c3f5a23b307395eccfc3c4e5a8b06 diff --git a/README b/README index de2defe..5aa8638 100644 --- a/README +++ b/README @@ -30,10 +30,10 @@ SYNOPSIS 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]; @@ -101,12 +101,16 @@ METHODS Your log class should implement the methods described in the "Catalyst::Log" man page. -LIMITATIONS - FCGI and mod_perl2 support are considered experimental and may contain - bugs. + $c->plugin( $name, $class, @args ) + Instant plugins for Catalyst. Classdata accessor/mutator will be + created, class loaded and instantiated. + + MyApp->plugin( 'prototype', 'HTML::Prototype' ); + + $c->prototype->define_javascript_functions; - 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. +LIMITATIONS + mod_perl2 support is considered experimental and may contain bugs. SUPPORT IRC: @@ -118,6 +122,10 @@ SUPPORT http://lists.rawmode.org/mailman/listinfo/catalyst http://lists.rawmode.org/mailman/listinfo/catalyst-dev + Web: + + http://catalyst.perl.org + SEE ALSO Catalyst::Manual - The Catalyst Manual Catalyst::Engine - Core Engine @@ -130,10 +138,11 @@ AUTHOR Sebastian Riedel, "sri@oook.de" 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, Geoff Richards, Jesse Sheidlower, Jody Belka, Johan + Lindstrom, Juan Camacho, Leon Brocard, Marcus Ramberg, Tatsuhiko + Miyagawa and all the others who've helped. LICENSE This library is free software . You can redistribute it and/or modify it