X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=README;h=7ebe2a2f752759a4a14d2213a283d4f1289803a4;hb=a1c8f974699a855b480845bb0e0afb570f346e99;hp=5aa8638924da71264d46ad8d9f9a02e743c10d4d;hpb=6f6e1bb4c351b3983846bec8c4540bbbcf38a480;p=catagits%2FCatalyst-Runtime.git diff --git a/README b/README index 5aa8638..7ebe2a2 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.