X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=README;h=5aa8638924da71264d46ad8d9f9a02e743c10d4d;hb=219b019151f23cf468dc1a08b64da92234abe92d;hp=5e9958b38a7f682a44f5fa64159d669b2fb750b7;hpb=4be6aea7831ff59f2e333b8fffae649a010d89ca;p=catagits%2FCatalyst-Runtime.git diff --git a/README b/README index 5e9958b..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,6 +101,17 @@ METHODS Your log class should implement the methods described in the "Catalyst::Log" man page. + $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; + +LIMITATIONS + mod_perl2 support is considered experimental and may contain bugs. + SUPPORT IRC: @@ -111,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 @@ -123,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