[Catalyst] Example of a simple repeatable field and button

2009-03-10 Thread Florent Angly
Hi list, I have created a small Catalyst webapp that uses a form that is based on a FormFu YML configuration file. I would like to have some repeatable fields, along with a button to click in order generate more of these fields on the fly. I have read the Catalyst tutorial, the FormFu

Re: [Catalyst] Re: System call problem

2008-12-24 Thread Florent Angly
;' Returns: 0 I'm not sure what you mean with using $class-handle_request; in Catalyst/Engine/HTTP.pm. My Catayst app runs using the Catalyst test server at the moment. I haven't deployed it on a standalone webserver yet. Cheers, Florent Tomas Doran wrote: On 19 Dec 2008, at 16:21, Florent Angly

[Catalyst] Re: Upload problem

2008-12-23 Thread Florent Angly
I still haven't made any progress on this issue... Any hint on where to look to debug this problem? Thanks, Florent Florent Angly wrote: Hi all, I am designing my first Catalyst application. I am using a form to upload some documents. Although it works fine for a file of ~60MB, it doesn't

Re: [Catalyst] Re: Upload problem

2008-12-23 Thread Florent Angly
...@digitalcraftsmen.net wrote: On 23/12/08 10:33, Florent Angly wrote: I still haven't made any progress on this issue... Any hint on where to look to debug this problem? Thanks, Florent Hi Florent, I suspect this is not working because the file is too big. Web uploads are really meant

Re: [Catalyst] How to run self-tests from within the application

2008-12-20 Thread Florent Angly
Concerning wrong exit status, I've had this problem but could fix it. See here: http://www.gossamer-threads.com/lists/catalyst/users/21925?page=last Regards, Florent Peter Edwards wrote: 2008/12/20 Ashley a...@sedition.com mailto:a...@sedition.com What am I doing wrong? This code

[Catalyst] Upload problem

2008-12-19 Thread Florent Angly
Hi all, I am designing my first Catalyst application. I am using a form to upload some documents. Although it works fine for a file of ~60MB, it doesn't work at all for another file that is almost 3GB. It seems that the form isn't submitted; there is just some very brief activity in the

[Catalyst] System call problem

2008-12-19 Thread Florent Angly
Hi all, My Catalyst application uses an external Perl module that needs to call an external application using the Perl system() command. This Perl module works fine on its own (no error message when the external app is called). However, whenever used from within my Catalyst application