Re: [Catalyst] Development Server Crashing

2006-06-21 Thread Brandon Black
On 6/21/06, Brandon Black <[EMAIL PROTECTED]> wrote: > On 6/21/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > When I run "script/myapp_server.pl -k" with the keepalive option (so > > that things work with IE), I get the following crash (not right away, > > but usually within the first few cli

Re: [Catalyst] Development Server Crashing

2006-06-21 Thread Brandon Black
On 6/21/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > When I run "script/myapp_server.pl -k" with the keepalive option (so > that things work with IE), I get the following crash (not right away, > but usually within the first few clicks): > > Use of uninitialized value in subroutine entry at >

Re: [Catalyst] Debugging DBIC inside a catalyst app

2006-06-21 Thread Kevin Old
On 6/21/06, Eric W. Bates <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I have read in the new Catalyst/Manual/Tutorial/CatalystBasics.pod (the > whole tutorial is very nice, btw) that you can invoke DBIC's debugging > inside your code thusly: > > $class->storage-

Re: [Catalyst] Patch for Catalyst::Engine::Apache

2006-06-21 Thread Bill Moseley
This is to follow up on a patch I posted on April 28 that was ever applied. Andy asked if the SSL detection should be factored out to work with other engines (CGI/FastCGI), which it should, but in the mean time the patch got lost again. I noticed ningu made a patch that attempts to do something

Re: [Catalyst] catalyst/perl and resources

2006-06-21 Thread Kieren Diment
On 21/06/06, Tobias Kremer <[EMAIL PROTECTED]> wrote: Which raises my all-time favourite question: Why is Perl still going strongin the US and UK whereas good-old Europe seems to has already abandoned itcompletely? I can only speak for Germany though but I have the feeling that the people here alwa

[Catalyst] Development Server Crashing

2006-06-21 Thread hkclark
When I run "script/myapp_server.pl -k" with the keepalive option (so that things work with IE), I get the following crash (not right away, but usually within the first few clicks): Use of uninitialized value in subroutine entry at /usr/lib/perl5/5.8.5/i386-linux-thread-multi/Socket.pm line 370. Ba

[Catalyst] Debugging DBIC inside a catalyst app

2006-06-21 Thread Eric W. Bates
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I have read in the new Catalyst/Manual/Tutorial/CatalystBasics.pod (the whole tutorial is very nice, btw) that you can invoke DBIC's debugging inside your code thusly: $class->storage->debug(1); However, I cannot figure out where to get "$class". I

Re: [Catalyst] catalyst/perl and resources

2006-06-21 Thread John Wang
On 6/21/06, Tobias Kremer <[EMAIL PROTECTED]> wrote: Zitat von Jurgen Pletinckx <[EMAIL PROTECTED]>:> hang on. There _is_ a perl job market in Belgium? That's good to know> I didn't find one last time I looked. (But then, that was long ago, > and I didn't look very hard.)Which raises my all-time fa

Re: [Catalyst] catalyst/perl and resources

2006-06-21 Thread Nilson Santos Figueiredo Junior
On 6/21/06, Tobias Kremer <[EMAIL PROTECTED]> wrote: > Which raises my all-time favourite question: Why is Perl still going strong > in the US and UK whereas good-old Europe seems to has already abandoned it > completely? Not exactly Europe, but here in Brazil it also seems that almost everyone ab

Re: [Catalyst] catalyst/perl and resources

2006-06-21 Thread Matija Grabnar
Tobias Kremer wrote: > Which raises my all-time favourite question: Why is Perl still going > strong > in the US and UK whereas good-old Europe seems to has already abandoned it > completely? I can only speak for Germany though but I have the feeling that > the > people here always have to do a t

Re: [Catalyst] catalyst/perl and resources

2006-06-21 Thread Daniel McBrearty
true, there is very little in Europe. There were a couple of positions advertised recently, but they have disappeared. A few bits in pieces in the Netherlands seems to be all. On 6/21/06, Tobias Kremer <[EMAIL PROTECTED]> wrote: > Zitat von Jurgen Pletinckx <[EMAIL PROTECTED]>: > > > hang on.

Re: [Catalyst] catalyst/perl and resources

2006-06-21 Thread Tobias Kremer
Zitat von Jurgen Pletinckx <[EMAIL PROTECTED]>: > hang on. There _is_ a perl job market in Belgium? That's good to know > I didn't find one last time I looked. (But then, that was long ago, > and I didn't look very hard.) Which raises my all-time favourite question: Why is Perl still going strong

Re: [Catalyst] catalyst/perl and resources

2006-06-21 Thread Jan Gerene
Op woensdag 21 juni 2006 13:58, schreef Jurgen Pletinckx: > There _is_ a perl job market in Belgium? That's good to know > - > I didn't find one last time I looked. (But then, that was long ago, > and > I didn't look very hard.) Indeed good to know, I hadn't find one either. I should look around

Re: [Catalyst] catalyst/perl and resources

2006-06-21 Thread Jurgen Pletinckx
| I've been keeping half an eye on the perl jobs market over the last | months, where I am (Belgium) there aren't many, but the ones that come | up seeem to hang around. I'm getting the impression that it isn't too | easy to recruit perlers. Tangential to the main point, but: hang on. There _is_

Re: [Catalyst] Streaming?

2006-06-21 Thread John Napiorkowski
This is exactly what I was looking for! Thanks! --john --- Andreas Marienborg <[EMAIL PROTECTED]> wrote: > http://dev.catalyst.perl.org/browser/trunk/examples/Streaming > > might be something to look at. > > > andreas > > On 21. jun. 2006, at 05.00, John Napiorkowski wrote: > > > This woul

Re: [Catalyst] Catalyst::Plugin::DefaultEnd - returning a false string (zeroes)

2006-06-21 Thread Adam Sjøgren
On Fri, 7 Apr 2006 14:30:34 +0100, Carl wrote: > On 07/04/06, ADSJ (Adam Sjøgren) <[EMAIL PROTECTED]> wrote: >> -return 1 if $c->response->body; >> +return 1 if length $c->response->body; > That'll cause a warning whenever body is undefined. I didn't see any warnings when I tried it, but

Re: [Catalyst] Streaming?

2006-06-21 Thread Simon Wilcox
On Tue, 20 Jun 2006, John Napiorkowski wrote: > I need it for a streaming video service I'm building. For our latest project (plug : www.monday9am.tv) I handed off serving video to Apache's normal handlers. Of course this doesn't work if you're not using apache but I found that the dev server wor