[Catalyst] Re: Catalyst-Manual-FAQ Addition

2008-03-31 Thread Aristotle Pagaltzis
* Russell Jurney <[EMAIL PROTECTED]> [2008-03-31 14:30]: > I discovered that 'call' is a reserved word for Catalyst > controllers, and any subroutines in a controller named 'call' > will be ignored. OK, but… > So, attached is a patched Catalyst::Manual::FAQ indicating this > condition. … err, ho

[Catalyst] installing Catalyst

2008-03-31 Thread Octavian Rasnita
Hi, I've tried installing a newer version of Catalyst with the latest version of its modules under Windows, and it gave a few errors when installing Catalyst.pm, Catalyst/Runtime.pm and DBIx::Class. I thought those errors wouldn't be fatal, so I ignored them because I wouldn't know how to solv

Re: [Catalyst] Problem storing session data

2008-03-31 Thread Andrew Rodland
On Monday 31 March 2008 09:03:40 am Bill Moseley wrote: > On Mon, Mar 31, 2008 at 09:07:02AM +0200, Peter Sørensen wrote: > > This is working when output is fairly small but if I use a bigger > > TimeFrame and generate a far bigger output table it fails. > I think you want to increase page_size. >

RE: [Catalyst] Memory leak under FastCGI?

2008-03-31 Thread Matt Pitts
Thanks very much for the pointer - it's good to know that I'm not alone in my troubles. I'm now actually planning on writing a ProcManager based on FCGI::Engine::ProcManager that incorporates some true process management - a la MaxRequestsPerChild - rather than just a loop to startup X childs and t

Re: [Catalyst] Problem storing session data

2008-03-31 Thread Bill Moseley
On Mon, Mar 31, 2008 at 09:07:02AM +0200, Peter Sørensen wrote: > > use Catalyst qw/-Debug > ConfigLoader > Static::Simple > Session > Session::State::Cookie > Session::Store::FastMmap >

[Catalyst] Re: Meios

2008-03-31 Thread Christopher H. Laco
Mojo Nichols wrote: Hi Christopher, I'm wondering what the status of Meios is. I have found an svn version on handleframework.org and one other server, but the do not work for me out of the box even after all dependencies are set up. I believe because of changes to catalyst and dbix-class.

Re: [Catalyst] Memory leak under FastCGI?

2008-03-31 Thread John Goulah
On Mon, Mar 31, 2008 at 5:22 AM, Matthieu Codron <[EMAIL PROTECTED]> wrote: > There was something about growing FastCGI processes in the Catalyst advent > calendar: > > http://www.catalystframework.org/calendar/2007/18 > > In short: Apparently this is normal behavior, and the article recommends > y

[Catalyst] Catalyst-Manual-FAQ Addition

2008-03-31 Thread Russell Jurney
Catalyst::Manual::FAQ looks like it was included in 5.5 and is seen at http://search.cpan.org/~sri/Catalyst-5.55/lib/Catalyst/Manual/FAQ.pod I discovered that 'call' is a reserved word for Catalyst controllers, and any subroutines in a controller named 'call' will be ignored. So, attached i

Re: [Catalyst] mod_perl2 vs. Catalyst server: utf problem

2008-03-31 Thread Alex Povolotsky
Jon wrote: On Sat, Mar 22, 2008 at 7:34 PM, Alex Povolotsky <[EMAIL PROTECTED] > wrote: Hello! Hi I've debugged my app under Catalyst::HTTP server, it worked just fine with UTF-8. After deploying it under mod_perl, I've found garbled content, UT

Re: [Catalyst] mod_perl2 vs. Catalyst server: utf problem

2008-03-31 Thread Jon
On Sat, Mar 22, 2008 at 7:34 PM, Alex Povolotsky <[EMAIL PROTECTED]> wrote: > Hello! > Hi > > I've debugged my app under Catalyst::HTTP server, it worked just fine > with UTF-8. > > After deploying it under mod_perl, I've found garbled content, UTF-8 > strings are just different. > Is all you

Re: [Catalyst] Memory leak under FastCGI?

2008-03-31 Thread Matthieu Codron
There was something about growing FastCGI processes in the Catalyst advent calendar: http://www.catalystframework.org/calendar/2007/18 In short: Apparently this is normal behavior, and the article recommends you, like you suggested, to periodically restart fastcgi processes to keep memory usage r

[Catalyst] Nested calls to model does not work?

2008-03-31 Thread Alex Povolotsky
Hello! I've experienced strange problem displaying data. Minimal test case is fairly big, I can attach it here, but will try to extract most important information. Creating database (Pg) create table parent (pid serial primary key, name varchar(64)); create table child (cid serial primary ke

Re: [Catalyst] Meios

2008-03-31 Thread Oleg Pronin
It automatically scans you models, and build an admin-interface where you can edit any data according to your models (data type, etc), search data, etc. It is not a gallery plugin, it is universal, for any project. It can edit/load any kind of data, including images, videos, etc. Did you see django

[Catalyst] Problem storing session data

2008-03-31 Thread Peter Sørensen
Hi, I use session to store output between calls and have some serious problem with this. I still fairly new to Catalyst. I have the following defined use Catalyst qw/-Debug ConfigLoader Static::Simple Session