X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=e74a49d2e56d1b6dbdb1f6fe3ccdabd10031b466;hp=855226a111915cf83a632b753d8c5dc96a9a638d;hb=4ab87e274ac0a05f98c10a4cdba467ba4398b0d3;hpb=1627551a60fe1e220d390a565f793dea27cd36a6 diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index 855226a..e74a49d 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -38,8 +38,15 @@ See L. =head1 DESCRIPTION +This is the class that maps public urls to actions in your Catalyst +application based on the attributes you set. + =head1 METHODS +=item new + +Construct a new dispatcher. + =cut sub new { @@ -76,6 +83,8 @@ it with a C<+>, like so: =head2 $self->detach( $c, $command [, \@arguments ] ) +Documented in L + =cut sub detach { @@ -86,6 +95,10 @@ sub detach { =head2 $self->dispatch($c) +Delegate the dispatch to the action that matched the url, or return a +message about unknown resource + + =cut sub dispatch { @@ -106,6 +119,8 @@ sub dispatch { =head2 $self->forward( $c, $command [, \@arguments ] ) +Documented in L + =cut sub forward { @@ -206,6 +221,8 @@ qq/Couldn't forward to command "$command". Invalid action or component./; =head2 $self->prepare_action($c) +Find an dispatch type that matches $c->req->path, and set args from it. + =cut sub prepare_action { @@ -244,6 +261,8 @@ sub prepare_action { =head2 $self->get_action( $action, $namespace ) +returns a named action from a given namespace. + =cut sub get_action { @@ -278,6 +297,8 @@ sub get_actions { =head2 $self->get_containers( $namespace ) +Return all the action containers for a given namespace, inclusive + =cut sub get_containers { @@ -320,6 +341,10 @@ sub get_containers { =head2 $self->register( $c, $action ) +Make sure all required dispatch types for this action are loaded, then +pass the action to our dispatch types so they can register it if required. +Also, set up the tree with the action containers. + =cut sub register { @@ -378,7 +403,8 @@ sub register { $parent->getNodeValue->actions->{ $action->name } = $action; } -=head2 $self->setup_actions( $class, $component ) +=head2 $self->setup_actions( $class, $context ) + =cut