X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=README;h=387806f1dc42e323cfad2addbf35b652f52b0233;hp=669f8bf9835568ef78728b11a296c76a9ac9d7a4;hb=60b53d078b97c5f90a870f46bef70b889d857701;hpb=e24c5c59f274a81a05ba60bc9fe4f991baae0bf5 diff --git a/README b/README index 669f8bf..387806f 100644 --- a/README +++ b/README @@ -232,6 +232,10 @@ INTERNAL METHODS $c->dispatch Dispatch request to actions. + dump_these + Returns a list of 2-element array references (name, structure) pairs + that will be dumped on the error page in debug mode. + $c->execute($class, $coderef) Execute a coderef in given class and catch exceptions. Errors are available via $c->error. @@ -260,9 +264,13 @@ INTERNAL METHODS $c->finalize_uploads Finalize uploads. Cleans up any temporary files. - $c->get_action( $action, $namespace, $inherit ) + $c->get_action( $action, $namespace ) Get an action in a given namespace. + $c->get_actions( $action, $namespace ) + Get all actions of a given name in a namespace and all base + namespaces. + handle_request( $class, @arguments ) Handles the request. @@ -346,6 +354,15 @@ INTERNAL METHODS Returns the Catalyst version number. mostly useful for powered by messages in template systems. +INTERNAL ACTIONS + Catalyst uses internal actions like "_DISPATCH", "_BEGIN", "_AUTO" + "_ACTION" and "_END", these are by default not shown in the private + action table. + + But you can deactivate this with a config parameter. + + MyApp->config->{show_internal_actions} = 1; + CASE SENSITIVITY By default Catalyst is not case sensitive, so "MyApp::C::FOO::Bar" becomes "/foo/bar". @@ -475,6 +492,8 @@ CREDITS Robert Sedlacek + Sam Vilain + Tatsuhiko Miyagawa Ulf Edvinsson