X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=README;h=58c0b276453a41ae069ddfa2703a493fe45e8668;hb=4e449be9da4752d56373a9d9e11fa3e9558ad1dc;hp=5aa8638924da71264d46ad8d9f9a02e743c10d4d;hpb=6f6e1bb4c351b3983846bec8c4540bbbcf38a480;p=catagits%2FCatalyst-Runtime.git diff --git a/README b/README index 5aa8638..58c0b27 100644 --- a/README +++ b/README @@ -7,15 +7,15 @@ SYNOPSIS cd MyApp # add models, views, controllers - script/create.pl model Something - script/create.pl view Stuff - script/create.pl controller Yada + script/myapp_create.pl model Something + script/myapp_create.pl view Stuff + script/myapp_create.pl controller Yada # built in testserver - script/server.pl + script/myapp_server.pl # command line interface - script/test.pl /yada + script/myapp_test.pl /yada use Catalyst; @@ -42,9 +42,6 @@ SYNOPSIS See also Catalyst::Manual::Intro DESCRIPTION - Catalyst is based upon Maypole, which you should consider for smaller - projects. - The key concept of Catalyst is DRY (Don't Repeat Yourself). See Catalyst::Manual for more documentation. @@ -109,6 +106,14 @@ METHODS $c->prototype->define_javascript_functions; +CASE SENSITIVITY + By default Catalyst is not case sensitive, so "MyApp::C::FOO::Bar" + becomes "/foo/bar". + + But you can activate case sensitivity with a config parameter. + + MyApp->config->{case_sensitive} = 1; + LIMITATIONS mod_perl2 support is considered experimental and may contain bugs. @@ -134,16 +139,54 @@ SEE ALSO Catalyst::Response - The Response Object Catalyst::Test - The test suite. +CREDITS + 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 + + Matt S Trout + + Robert Sedlacek + + Sebastian Riedel + + Tatsuhiko Miyagawa + + Ulf Edvinsson + AUTHOR Sebastian Riedel, "sri@oook.de" -THANK YOU - 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 under the same terms as perl itself.