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=86e45ee947bf3f854113ae5f3c3819de63760262;hp=bbda89c38e749f5282876570998e71a483f468fd;hb=536bee890cf24e0e4bcda7562e7b70cc03ca0620;hpb=6680c772eaa987eafdb32e9437fd2d649dc914d9 diff --git a/lib/Catalyst/DispatchType/Index.pm b/lib/Catalyst/DispatchType/Index.pm index bbda89c..86e45ee 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 application authors + +=item * L for implementation information. + +=back + =head1 METHODS =head2 $self->match( $c, $path ) @@ -58,18 +67,17 @@ sub uri_for_action { return "/".$action->namespace; } -=head1 AUTHOR +=head1 AUTHORS -Sebastian Riedel, C +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT -This program is free software, you can redistribute it and/or modify it under +This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. =cut -no Moose; __PACKAGE__->meta->make_immutable; 1;