Updated: Added entry to FAQ
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Manual / FAQ.pod
1 =head1 NAME
2
3 Catalyst::Manual::FAQ - Frequently Asked Questions
4
5 =head1 DESCRIPTION
6
7 Frequently Asked Questions
8
9 =head2 How do I regenerate the helper scripts?
10
11 Create a new app with the same name and copy scripts/ to app directory
12
13 =head2 I have added tables to my DB - how to autogenerate the classes?
14
15 Just run the _create.pl script again with the same parameters, it will ignore
16 the existing classes and create missing ones based on your DB layout.
17
18 =head2 What is the difference between $c->forward and $c->response->redirect?
19
20 Forward will modify the flow control and neither reset the context object nor
21 end the request cycle while a redirect will. See L<Catalyst::Manual::Intro>.
22
23 =head2 How can I get rid of those timer comments when using TT as my view?
24
25 This config line in MyApp::V::TT will disable this for you:
26
27     __PACKAGE__->config->{CONTEXT} = undef;
28
29 =head1 AUTHORS
30
31 Sebastian Riedel, C<sri@oook.de>
32 Danijel Milicevic, C<me@danijel.de>
33
34 =head1 COPYRIGHT
35
36 This program is free software, you can redistribute it and/or modify it under
37 the same terms as Perl itself.