From: Matt S Trout Date: Thu, 8 Jun 2006 14:38:18 +0000 (+0000) Subject: torched C::M::FAQ X-Git-Tag: 5.7099_04~530 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=2b7a5d369bb888c61b484c79cdf785d0209bfbef torched C::M::FAQ r9219@cain (orig r4264): jester | 2006-06-02 02:29:42 +0000 --- diff --git a/lib/Catalyst/Manual.pod b/lib/Catalyst/Manual.pod index 4532212..1453666 100644 --- a/lib/Catalyst/Manual.pod +++ b/lib/Catalyst/Manual.pod @@ -27,9 +27,6 @@ L L Here be dragons! -L - Frequently Asked Questions. - =head1 SUPPORT IRC: diff --git a/lib/Catalyst/Manual/FAQ.pod b/lib/Catalyst/Manual/FAQ.pod deleted file mode 100644 index 8ce7bef..0000000 --- a/lib/Catalyst/Manual/FAQ.pod +++ /dev/null @@ -1,42 +0,0 @@ -=head1 NAME - -Catalyst::Manual::FAQ - Frequently Asked Questions - -=head1 DESCRIPTION - -Frequently Asked Questions - -=head2 How do I regenerate the helper scripts? - -Outside your apps dir run the C script with the same name, and the -C<-scripts> switch. - - catalyst.pl -scripts Foo - -To overwrite (instead of creating C<.new> files) use the C<-force> switch. - -=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. - -=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; - -=head1 AUTHORS - -Sebastian Riedel, C -Danijel Milicevic, C - -=head1 COPYRIGHT - -This program is free software, you can redistribute it and/or modify it under -the same terms as Perl itself.