Updated Intro.pod
[catagits/Catalyst-Runtime.git] / README
diff --git a/README b/README
index 669f8bf..387806f 100644 (file)
--- 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