X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FDispatchType%2FIndex.pm;h=8f0707e17b90793e3ef0826fbaf9a362ba351636;hp=ca68118aa62ec6315e6e4b478fe82b5818cf2d1e;hb=26dc649ad1a74622697f25fcbf29e806e75fcd2f;hpb=e8b9f2a92084b3b9dab6b2b879900481b8548b3b diff --git a/lib/Catalyst/DispatchType/Index.pm b/lib/Catalyst/DispatchType/Index.pm index ca68118..8f0707e 100644 --- a/lib/Catalyst/DispatchType/Index.pm +++ b/lib/Catalyst/DispatchType/Index.pm @@ -2,9 +2,7 @@ package Catalyst::DispatchType::Index; use Moose; extends 'Catalyst::DispatchType'; - -#use strict; -#use base qw/Catalyst::DispatchType/; +no Moose; =head1 NAME @@ -12,10 +10,21 @@ Catalyst::DispatchType::Index - Index DispatchType =head1 SYNOPSIS -See L. +See L. =head1 DESCRIPTION +Dispatch type managing behaviour for index pages. For more information on +dispatch types, see: + +=over 4 + +=item * L for how they affect website authors + +=item * L for implementation information. + +=back + =head1 METHODS =head2 $self->match( $c, $path ) @@ -58,9 +67,9 @@ sub uri_for_action { return "/".$action->namespace; } -=head1 AUTHOR +=head1 AUTHORS -Sebastian Riedel, C +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT @@ -69,4 +78,6 @@ the same terms as Perl itself. =cut +__PACKAGE__->meta->make_immutable; + 1;