From: Danijel Milicevic Date: Sun, 10 Jul 2005 19:18:05 +0000 (+0000) Subject: Updated: Added entry to FAQ X-Git-Tag: 5.7099_04~1262 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=3c5a3cab1e15fae054c9f08fc87bea1e9a58e1ea Updated: Added entry to FAQ --- diff --git a/lib/Catalyst/Manual/FAQ.pod b/lib/Catalyst/Manual/FAQ.pod index 25d7fcc..158b45e 100644 --- a/lib/Catalyst/Manual/FAQ.pod +++ b/lib/Catalyst/Manual/FAQ.pod @@ -15,11 +15,17 @@ Create a new app with the same name and copy scripts/ to app directory 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 ? +=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