Catalyst::Manual::FAQ looks like it was included in 5.5 and is seen at
http://search.cpan.org/~sri/Catalyst-5.55/lib/Catalyst/Manual/FAQ.pod
I discovered that 'call' is a reserved word for Catalyst controllers,
and any subroutines in a controller named 'call' will be ignored. So,
attached is a patched Catalyst::Manual::FAQ indicating this condition.
Russell Jurney
[EMAIL PROTECTED]
=head1 NAME
Catalyst::Manual::FAQ - Frequently Asked Questions
=head1 DESCRIPTION
Frequently Asked Questions
=head2 How do I regenerate the helper scripts?
Create a new app with the same name and copy scripts/ to app directory
=head2 I have added tables to my DB - how to autogenerate the classes?
Just run the _create.pl script again with the same parameters, it will ignore
the existing classes and create missing ones based on your DB layout.
=head2 What is the difference between $c->forward and $c->response->redirect?
Forward will modify the flow control and neither reset the context object nor
end the request cycle while a redirect will. See L<Catalyst::Manual::Intro>.
=head2 How can I get rid of those timer comments when using TT as my view?
This config line in MyApp::V::TT will disable this for you:
__PACKAGE__->config->{CONTEXT} = undef;
=head2 What words are reserved in Catalyst controller functions?
=over
=item call
Controller functions named call will be ignored by Catalyst.
=back
=head1 AUTHORS
Sebastian Riedel, C<[EMAIL PROTECTED]>
Danijel Milicevic, C<[EMAIL PROTECTED]>
Russell Jurney, C<[EMAIL PROTECTED]>
=head1 COPYRIGHT
This program is free software, you can redistribute it and/or modify it under
the same terms as Perl itself.
_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/