Catalyst::Manual::FAQ - Frequently Asked Questions |
Catalyst::Manual::FAQ - Frequently Asked Questions
Frequently Asked Questions
Outside your apps dir run the catalyst.pl
script with the same name, and the
-scripts
switch.
catalyst.pl -scripts Foo
To overwrite (instead of creating .new
files) use the -force
switch.
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.
Forward will modify the flow control and neither reset the context object nor end the request cycle while a redirect will. See the Catalyst::Manual::Intro manpage.
This config line in MyApp::V::TT will disable this for you:
__PACKAGE__->config->{CONTEXT} = undef;
Sebastian Riedel, sri@oook.de
Danijel Milicevic, me@danijel.de
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
Catalyst::Manual::FAQ - Frequently Asked Questions |