[Catalyst] 'Couldn't render template file error - foo/bar: not found'

2009-01-04 Thread Jens Schwarz
Hi *, I am switching over from FormFu to FormBuilder and have a problem with my Catalyst application: I get the error "Couldn't render template file error - foo/bar: not found" when trying to access the 'bar' action in my 'foo' controller. Here is the situation: In my controller Foo i have ...

RE: [Catalyst] autocomplete forms?

2009-01-04 Thread Dami Laurent (PJ)
>-Message d'origine- >De : Michael Higgins [mailto:li...@evolone.org] >Envoyé : mercredi, 31. décembre 2008 18:45 >À : The elegant MVC web framework >Objet : [Catalyst] autocomplete forms? > >Hey, all -- > >Using formbuilder forms with Controller::FormBuilder. But. >What I'd like (actu

Re: [Catalyst] size of the uploaded file

2009-01-04 Thread J. Shirley
On Sun, Jan 4, 2009 at 9:43 AM, Robert Mah wrote: > Just FYI, with flash 9 (or was it 10?), Adobe changed the way security on the > file upload functionality worked. It must now be invoked via a flash UI > element (i.e. a button push). Quite annoying. > > Cheers, > Rob > The latest SWFUpload an

RE: [Catalyst] size of the uploaded file

2009-01-04 Thread Robert Mah
Just FYI, with flash 9 (or was it 10?), Adobe changed the way security on the file upload functionality worked. It must now be invoked via a flash UI element (i.e. a button push). Quite annoying. Cheers, Rob -Original Message- From: Robin Berjon [mailto:ro...@berjon.com] Sent: Sunday,

Re: [Catalyst] size of the uploaded file

2009-01-04 Thread Robin Berjon
On Jan 4, 2009, at 17:01 , Octavian Rasnita wrote: And unfortunately other solutions like a Flash uploader are not accessible for screen readers, but I have also read that it is recommended to upload files smaller than 100 MB with the Flash uploader... I forgot to say: you might want to ta

Re: [Catalyst] size of the uploaded file

2009-01-04 Thread Robin Berjon
On Jan 4, 2009, at 17:01 , Octavian Rasnita wrote: And unfortunately other solutions like a Flash uploader are not accessible for screen readers, but I have also read that it is recommended to upload files smaller than 100 MB with the Flash uploader... You can make Flash uploaders accessib

Re: [Catalyst] size of the uploaded file

2009-01-04 Thread Octavian Rasnita
From: "Tomas Doran" On 4 Jan 2009, at 13:42, Octavian Rasnita wrote: Does anyone know if the browsers have some file upload size limits and if they can be modified? Yes, no - but you can work around them with Flash or Java. This was discussed on-list recently: http://www.gossamer-thread

Re: [Catalyst] size of the uploaded file

2009-01-04 Thread Tomas Doran
On 4 Jan 2009, at 13:42, Octavian Rasnita wrote: Does anyone know if the browsers have some file upload size limits and if they can be modified? Yes, no - but you can work around them with Flash or Java. This was discussed on-list recently: http://www.gossamer-threads.com/lists/catalyst/u

Re: [Catalyst] Large static files behind Authorisation

2009-01-04 Thread Ash Berlin
On 4 Jan 2009, at 13:50, Ash Berlin wrote: On 4 Jan 2009, at 08:48, Trevor Phillips wrote: I'm working on a Catalyst application, and one of the requirements is to deliver large-ish files to authorised users only. I'm a bit wary about passing through large files in a framework I don't kno

Re: [Catalyst] Large static files behind Authorisation

2009-01-04 Thread Ash Berlin
On 4 Jan 2009, at 08:48, Trevor Phillips wrote: I'm working on a Catalyst application, and one of the requirements is to deliver large-ish files to authorised users only. I'm a bit wary about passing through large files in a framework I don't know the intricacies of, since a mishandled lar

[Catalyst] size of the uploaded file

2009-01-04 Thread Octavian Rasnita
Hello, I've created a file upload form using C::P::UploadProgress and I am able to upload small files with it. I have tried to upload a file that has 696 MB, but only 313 MB of this file is uploaded in the /tmp directory if I use IE 6 or 108 MB if I use Firefox, no matter how many times I tried.

Re: [Catalyst] Large static files behind Authorisation

2009-01-04 Thread Tomas Doran
On 4 Jan 2009, at 11:09, Nickolay Platonov wrote: Thats strange, because as I know default template (actually default View) is applying only if the response body is empty.. Actually, you're totally correct - in this situation (if you call serve_static_file), then you *do not* have to manua

Re: [Catalyst] Large static files behind Authorisation

2009-01-04 Thread Kieren Diment
On 04/01/2009, at 10:47 PM, Trevor Phillips wrote: On Sun, Jan 4, 2009 at 7:48 PM, Tomas Doran wrote: Just use a stash key to indicate that you have served a file yourself to stop calling TT.. e.g. sub serve_stuff : Local { my ( $self, $c ) = @_; $c->serve_static_file('some_file');

Re: [Catalyst] Large static files behind Authorisation

2009-01-04 Thread Trevor Phillips
On Sun, Jan 4, 2009 at 7:48 PM, Tomas Doran wrote: > > Just use a stash key to indicate that you have served a file yourself to stop > calling TT.. e.g. > > sub serve_stuff : Local { >my ( $self, $c ) = @_; >$c->serve_static_file('some_file'); >$c->stash->{file_output} = 1; > } > > su

Re: [Catalyst] Large static files behind Authorisation

2009-01-04 Thread Nickolay Platonov
Thats strange, because as I know default template (actually default View) is applying only if the response body is empty.. On Sun, Jan 4, 2009 at 1:48 PM, Tomas Doran wrote: > > On 4 Jan 2009, at 08:48, Trevor Phillips wrote: > >> I'm currently trying to use Catalyst::Plugin::Static::Simple, whi

Re: [Catalyst] Large static files behind Authorisation

2009-01-04 Thread Tomas Doran
On 4 Jan 2009, at 08:48, Trevor Phillips wrote: I'm currently trying to use Catalyst::Plugin::Static::Simple, which has a documented function serve_static_file to serve a static file from a Controller. However, I am getting an error as the TT View is still trying to apply a default template

[Catalyst] Large static files behind Authorisation

2009-01-04 Thread Trevor Phillips
I'm working on a Catalyst application, and one of the requirements is to deliver large-ish files to authorised users only. I'm a bit wary about passing through large files in a framework I don't know the intricacies of, since a mishandled large file can explode memory usage of a daemon. However, th