[Catalyst] code after finalize: mod_perl, testserver ok - fastcgi not

2007-04-07 Thread Josef Chladek
hello list, we try to execute some long running code after finishing the request, $c-response-content_type('text/html; charset=utf-8'); $c-res-body('blabla...'); $c-response-status(200); $c-finalize; $c-forward('very_long_running_code'); while this works perfectly when

Re: [Catalyst] code after finalize: mod_perl, testserver ok - fastcgi not

2007-04-07 Thread Bill Moseley
On Sat, Apr 07, 2007 at 11:00:19AM +0200, Josef Chladek wrote: we try to execute some long running code after finishing the request, $c-response-content_type('text/html; charset=utf-8'); $c-res-body('blabla...'); $c-response-status(200); $c-finalize;

Re: [Catalyst] Re: HTML::FormFu and Rose::DB::Object?

2007-04-07 Thread Jeff Chimene
Peter Karman wrote: Quinn Weaver scribbled on 4/4/07 1:12 AM: Bill Moseley wrote: On Tue, Apr 03, 2007 at 08:53:32PM -0700, Quinn Weaver wrote: In contrast to FormBuilder, RHTMLO wants you to write your HTML form by calling Perl methods, somewhat in the spirit of CGI.pm. This makes it

Re: [Catalyst] Re: HTML::FormFu and Rose::DB::Object?

2007-04-07 Thread David Morel
Le 7 avr. 07 à 20:29, Jeff Chimene a écrit : I realize that one is supposed to be born knowing these things, but for those of us who arrived late to the party: In view.tt, edit,tt results.tt there are references to methods isa() and can() Are those methods from Rose, from Template

[Catalyst] How to make chained actions nice?

2007-04-07 Thread Oleg Pronin
Greetings. I've got some kind of problem using chained actions. There are some objects. Each object has a number of properties. And this is how i want it to be: URL for a list of objects is /object/list URL for editing object is /object/OBJ_ID/edit (through chained action) URL for list of

Re: [Catalyst] How to make chained actions nice?

2007-04-07 Thread Danny Warren
The Chained('.') parameter is used for chaining across controllers. I understand your URI layout from your comments, but I don't understand what you are trying to do with all those weird Chained params you are using. Here is how I would lay it out. Read the perldoc again, it took me a few