X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatchType%2FPath.pm;h=454f87c92fdd56e910bd25af6116ff1a5664f07b;hb=2633d7dc3bb9c0cf7bf3e7cf936d6411fe3ba5aa;hp=7f291db4624356d0efe53e601e2bba083bbf03d1;hpb=78d760bb64c2142042834b11911b728259e3005d;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/DispatchType/Path.pm b/lib/Catalyst/DispatchType/Path.pm index 7f291db..454f87c 100644 --- a/lib/Catalyst/DispatchType/Path.pm +++ b/lib/Catalyst/DispatchType/Path.pm @@ -3,40 +3,63 @@ package Catalyst::DispatchType::Path; use strict; use base qw/Catalyst::DispatchType/; -sub prepare_action { - my ($self, $c, $path) = @_; +=head1 NAME + +Catalyst::DispatchType::Path - Path DispatchType + +=head1 SYNOPSIS + +See L. + +=head1 DESCRIPTION + +=head1 METHODS + +=over 4 + +=item $self->match( $c, $path ) + +=cut + +sub match { + my ( $self, $c, $path ) = @_; if ( my $action = $self->{paths}->{$path} ) { $c->req->action($path); $c->req->match($path); $c->action($action); - $c->namespace($action->prefix); + $c->namespace( $action->prefix ); return 1; } return 0; } -sub register_action { +=item $self->register( $c, $action ) + +=cut + +sub register { my ( $self, $c, $action ) = @_; my $attrs = $action->attributes; my @register; - foreach my $r (@{$attrs->{Path} || []}) { - unless ($r =~ m!^/!) { # It's a relative path - $r = $action->prefix."/$r"; + foreach my $r ( @{ $attrs->{Path} || [] } ) { + unless ( $r =~ m!^/! ) { # It's a relative path + $r = $action->prefix . "/$r"; } - push(@register, $r); + push( @register, $r ); } - if ($attrs->{Global} || $attrs->{Absolute}) { - push(@register, $action->name); # Register sub name against root + if ( $attrs->{Global} || $attrs->{Absolute} ) { + push( @register, $action->name ); # Register sub name against root } - if ($attrs->{Local} || $attrs->{Relative}) { - push(@register, join('/', $action->prefix, $action->name)); - # Register sub name as a relative path + if ( $attrs->{Local} || $attrs->{Relative} ) { + push( @register, join( '/', $action->prefix, $action->name ) ); + + # Register sub name as a relative path } foreach my $r (@register) { @@ -45,4 +68,18 @@ sub register_action { } } +=back + +=head1 AUTHOR + +Matt S Trout +Sebastian Riedel, C + +=head1 COPYRIGHT + +This program is free software, you can redistribute it and/or modify it under +the same terms as Perl itself. + +=cut + 1;