[Catalyst] Catalyst::Plugin::Authentication::Credential::HTTP vs Catalyst::Engine::FastCGI

2007-05-10 Thread Maxim Nechaev
Look like Catalyst::Plugin::Authentication::Credential::HTTP don't work with Catalyst::Engine::FastCGI. Under builtin web server all is ok. I use apache1 web server and mod_fastcgi module. After some search i find that by default mod_fastcgi don't pass http header Authorization to application and

Re: [Catalyst] C:P:Session::Store::FastMmap

2007-05-10 Thread Ishigaki Kenichi
Hi, you can force install it almost safely (if you have successfully installed Cache::FastMmap). The broken test can be fixed like this. diff -ur Catalyst-Plugin-Session-Store-FastMmap-0.02/t/basic.t Catalyst-Plugin-Session-Store-FastMmap-0.02-patch/t/basic.t ---

Re: [Catalyst] Is it time for a Catalyst Conference yet?

2007-05-10 Thread Daniel McBrearty
FWIW (an aside really) there will be some kind of perl conference here in Belgium this year, I should be talking something about how we used Catalyst to rebuild our site. We're still not online with the cat version due to delays with translators, but that will get fixed soon. Anyhow, the cat

Re: [Catalyst] Is it time for a Catalyst Conference yet?

2007-05-10 Thread Thomas Klausner
Hi! On Thu, May 10, 2007 at 11:12:34AM +0200, Daniel McBrearty wrote: FWIW (an aside really) there will be some kind of perl conference here in Belgium this year, I should be talking something about how we used What kind of conference? A Belgium Perl Workshop? If you need help organising the

[Catalyst] [patch] Wrong Content-Length value error - Catalyst::Engine::CGI

2007-05-10 Thread Kazuma Shiraiwa
Hi, (Catalyst-Runtime-5.7007) Wrong Content-Length value: 4387 at /usr/lib/perl5/site_perl/5.8.8/Catalyst.pm line 1584 I worried because of this error. I was using Catalyst::Engine::CGI. (Xeon2.6GHz CentOS4.4-x86_64-smp Perl5.8.8-x86_64-linux) in Catalyst::Engine::CGI sub read_chunk { shift;

Re: [Catalyst] C:P:Session::Store::FastMmap

2007-05-10 Thread Octavian Rasnita
Thank you for this solution. I hope I will be able to apply it. BTW (and sorry for off topicness) do you know a way of applying the diff results under Windows in other way than manually editing the target file? Thanks. Octavian - Original Message - From: Ishigaki Kenichi [EMAIL

Re: [Catalyst] [patch] Wrong Content-Length value error - Catalyst::Engine::CGI

2007-05-10 Thread Andy Grundman
On May 10, 2007, at 5:56 AM, Kazuma Shiraiwa wrote: Hi, (Catalyst-Runtime-5.7007) Wrong Content-Length value: 4387 at /usr/lib/perl5/site_perl/5.8.8/Catalyst.pm line 1584 I worried because of this error. I was using Catalyst::Engine::CGI. (Xeon2.6GHz CentOS4.4-x86_64-smp

[Catalyst] [OT] Applying patches under Win32

2007-05-10 Thread Kiki
Thank you for this solution. I hope I will be able to apply it. BTW (and sorry for off topicness) do you know a way of applying the diff results under Windows in other way than manually editing the target file? Thanks. Octavian The fastest way is getting the Win32 port of GNU patch from

[Catalyst] Re: C:P:Session::Store::FastMmap

2007-05-10 Thread A. Pagaltzis
Hi Octavian, * Octavian Rasnita [EMAIL PROTECTED] [2007-05-10 13:55]: BTW (and sorry for off topicness) do you know a way of applying the diff results under Windows in other way than manually editing the target file? http://gnuwin32.sourceforge.net/packages/diffutils.htm Regards, --

Re: [Catalyst] Catalyst::Plugin::Authentication::Credential::HTTP vs Catalyst::Engine::FastCGI

2007-05-10 Thread Matt S Trout
On Thu, May 10, 2007 at 06:32:29PM +1100, Maxim Nechaev wrote: Look like Catalyst::Plugin::Authentication::Credential::HTTP don't work with Catalyst::Engine::FastCGI. Under builtin web server all is ok. I use apache1 web server and mod_fastcgi module. After some search i find that by default

Re: [Catalyst] Re: Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread Matt S Trout
On Wed, May 09, 2007 at 09:02:00PM -0500, Dave Rolsky wrote: This is as opposed to the historical Catalyst plugin pattern of jam a gazillion methods into Context ;) Sometimes I wonder if that one is actually a conspirancy by the local breweries. -- Matt S Trout Need help with

[Catalyst] Re: Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread A. Pagaltzis
* A. Pagaltzis [EMAIL PROTECTED] [2007-05-10 16:14]: * Anthony Gardner [EMAIL PROTECTED] [2007-05-10 16:00]: Why not use Attribute::Protected to define private etc. methods Because it does not actually prevent private methods in subclasses from overriding ones in their superclasses, moves

[Catalyst] Re: Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread A. Pagaltzis
* Anthony Gardner [EMAIL PROTECTED] [2007-05-10 16:00]: Why not use Attribute::Protected to define private etc. methods Because it does not actually prevent private methods in subclasses from overriding ones in their superclasses, moves error detection to compile time, adds overhead to every

Re: [Catalyst] Re: Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread Anthony Gardner
good enough reason not to use it then if you ask me ;) Have only played with it but haven;t taken it seriously myself. But, this does raise another question I have. There is plethora of modules that are to help Perl be more OO like and stricter which is cool, but are there any good

Re: [Catalyst] Re: Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread Tobias Kremer
But, this does raise another question I have. There is plethora of modules that are to help Perl be more OO like and stricter which is cool, but are there any good de-facto standard modules that are used by the majority of people wishing to be more OO compliant. That'd be Moose, I

Re: [Catalyst] Re: Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread Wade . Stuart
Anthony Gardner [EMAIL PROTECTED] wrote on 05/10/2007 10:04:33 AM: good enough reason not to use it then if you ask me ;) Have only played with it but haven;t taken it seriously myself. But, this does raise another question I have. There is plethora of modules that are to help Perl be

Re: [Catalyst] Re: Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread Matt S Trout
On Thu, May 10, 2007 at 05:23:41PM +0200, Tobias Kremer wrote: But, this does raise another question I have. There is plethora of modules that are to help Perl be more OO like and stricter which is cool, but are there any good de-facto standard modules that are used by the majority

Re: [Catalyst] Re: Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread Anthony Gardner
No, I don't need to learn OO as I'm happy with it. It's just that while looking at patterns and how Java does them, for example, I start having a rummage around CPAN to see what's there to help me i.e Class::Decorator seemed like a good toy ... but doesn;t work. And then all this other stuff

Re: [Catalyst] [patch] Wrong Content-Length value error - Catalyst::Engine::CGI

2007-05-10 Thread Kazuma Shiraiwa
Thanks for your attention. Sorry.My explanation was insufficient. CPU: Xeon2.6GHz OS: CentOS4 Server -x86_64 - upgrade CentOS4.4 for yum (Linux 2.6.9-42.0.3.ELsmp x86_64 GNU/Linux) Perl: v5.8.8 built for x86_64-linux WebServer: Apache/2.0.52 It doesn't happen every POST. POST size is about 4096

Re: [Catalyst] [patch] Wrong Content-Length value error - Catalyst::Engine::CGI

2007-05-10 Thread Andy Grundman
On May 10, 2007, at 12:33 PM, Kazuma Shiraiwa wrote: Thanks for your attention. Sorry.My explanation was insufficient. CPU: Xeon2.6GHz OS: CentOS4 Server -x86_64 - upgrade CentOS4.4 for yum (Linux 2.6.9-42.0.3.ELsmp x86_64 GNU/Linux) Perl: v5.8.8 built for x86_64-linux WebServer:

[Catalyst] Re: Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread A. Pagaltzis
* Anthony Gardner [EMAIL PROTECTED] [2007-05-10 18:15]: Esp now as I've discovered cpantools.org which is great for showing up packages that otherwise I'd never have come across. $ host cpantools.org Host cpantools.org not found: 3(NXDOMAIN) $ host www.cpantools.org Host

Re: [Catalyst] Re: Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread Anthony Gardner
sorry, cpantools.com I always write .org. Don't know why it's .com A. Pagaltzis [EMAIL PROTECTED] wrote: * Anthony Gardner [2007-05-10 18:15]: Esp now as I've discovered cpantools.org which is great for showing up packages that otherwise I'd never have come across. $ host cpantools.org

Re: [Catalyst] Re: Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread Daniel Hulme
On Thu, May 10, 2007 at 08:19:38PM +0200, A. Pagaltzis wrote: * Anthony Gardner [EMAIL PROTECTED] [2007-05-10 18:15]: Esp now as I've discovered cpantools.org which is great for showing up packages that otherwise I'd never have come across. $ host cpantools.org Host cpantools.org

[Catalyst] Re: Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread A. Pagaltzis
* Daniel Hulme [EMAIL PROTECTED] [2007-05-10 20:45]: If you'd googled rather than hosting you'd have found that Anthony meant to say cpantools.com. Condescending much? xoxo, -- Aristotle Pagaltzis // http://plasmasturm.org/ ___ List:

Re: [Catalyst] Re: Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread Daniel Hulme
On Thu, May 10, 2007 at 09:00:07PM +0200, A. Pagaltzis wrote: * Daniel Hulme [EMAIL PROTECTED] [2007-05-10 20:45]: If you'd googled rather than hosting you'd have found that Anthony meant to say cpantools.com. Condescending much? No, but on finding it not working my first guess was that

Re: [Catalyst] Catalyst::Plugin::Authentication::Credential::HTTP vs Catalyst::Engine::FastCGI

2007-05-10 Thread Maxim Nechaev
I solve this problem. I don't know what module really need to fix Catalyst::Plugin::Authentication::Credential::HTTP or Catalyst::Engine::CGI but this patch work for me. -- Maxim Nechaev --- lib/Catalyst/Engine/CGI.pm 2007-05-11 09:28:00.0 +1100 +++ lib/Catalyst/Engine/CGI.pm

Re: [Catalyst] Shoot out -- Catalyst / RoR / Other MVC apps --

2007-05-10 Thread Jonathan Rockway
On Tuesday 08 May 2007 03:20:32 pm Matt S Trout wrote: Does anybody know of a place where creating your own model is documented in more detail? I'd like to read it. Not yet. I suspect there'll be a chainsawblues series on it at some point if nobody else gets a good explanation together

[Catalyst] Catalyst-Model-PayPal-IPN, Catalyst-Controller-WrapCGI

2007-05-10 Thread Matt S Trout
Two new modules sat in Catalyst trunk, the former written for some Shadowcat client work, the second extracted from work done on http://www.altinity.com/'s http://www.opsview.org/ project which they kindly agreed to consider sponsored development. Neither is particularly possessing docs or tests