Re: [Catalyst] How to extend authentication to use other DB fields?

2010-03-25 Thread Evan Carroll
I would like to extend my autentication to accept other fields: with $c-authenticate({ fileld1 = [..], field2 = [...], fieldd = [...] }); ... Do I have to create my own Catalyst::Authentication::Credential plugin? No, it already does that... per the docs: The first, and most common,

[Catalyst] Catalyst Redirect to https

2010-03-25 Thread Octavian Rasnita
-uri_for_action() able to see that the current URI uses https and continue to use it or this revert to http is intentional? Thanks. -- Octavian __ Information from ESET NOD32 Antivirus, version of virus signature database 4973 (20100325) __ The message was checked by ESET NOD32

Re: [Catalyst] Taking advantage of idle periods by performing some action(s)

2010-03-25 Thread Bill Moseley
On Thu, Mar 25, 2010 at 5:30 AM, Ido Perlmuter i...@ido50.net wrote: I'm looking for direction on how to possibly implement a feature in a Catalyst app that automatically performs some action, or actions, when the app is idle and hasn't been accepting requests (either none or some small

Re: [Catalyst] Taking advantage of idle periods by performing some action(s)

2010-03-25 Thread Ido Perlmuter
Kiffin, thanks for the heads up about Plugin::Scheduler, seems to fit my needs quite good. Bill, an outside worker is actually the heavier solution in this case, because I'm not loading my Catalyst app just to run some code, my Catalyst app is _always_ running (for the matter, it's a FastCGI

Re: [Catalyst] Taking advantage of idle periods by performing some action(s)

2010-03-25 Thread Peter Karman
Ido Perlmuter wrote on 03/25/2010 10:04 AM: Kiffin, thanks for the heads up about Plugin::Scheduler, seems to fit my needs quite good. Starting an external worker that needs to connect to the schema and try hard to figure out what's going on in the already running Catalyst process is

Re: [Catalyst] Taking advantage of idle periods by performing some action(s)

2010-03-25 Thread Bill Moseley
On Thu, Mar 25, 2010 at 8:04 AM, Ido Perlmuter i...@ido50.net wrote: Kiffin, thanks for the heads up about Plugin::Scheduler, seems to fit my needs quite good. I used that plugin in an early application that is still running. I've never spent the time to debug, but I've had times when it

[Catalyst] Re: Which C::View::PDF should I use?

2010-03-25 Thread Aristotle Pagaltzis
* Wade Stuart w...@grepit.net [2010-03-22 22:35]: On Tue, Mar 16, 2010 at 2:53 PM, Aristotle Pagaltzis pagalt...@gmx.dewrote: * Adam Sjøgren a...@koldfront.dk [2010-03-16 18:15]: An alternative could perhaps be CutyCapt: * http://cutycapt.sourceforge.net/ It requires an X11 server,

Re: [Catalyst] Catalyst Redirect to https

2010-03-25 Thread Christiaan Kras
it or this revert to http is intentional? Thanks. -- Octavian __ Information from ESET NOD32 Antivirus, version of virus signature database 4973 (20100325) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com

Re: [Catalyst] Catalyst Redirect to https

2010-03-25 Thread Octavian Rasnita
as in the request for the current page. Isn't $c-uri_for_action() able to see that the current URI uses https and continue to use it or this revert to http is intentional? Thanks. -- Octavian __ Information from ESET NOD32 Antivirus, version of virus signature database 4973 (20100325

[Catalyst] Catalyst 5.80021

2010-03-25 Thread gordon
Dear List I have just updated to Catalyst 5.80021 from 5.8002 and now I am seeing the following error when I restart my application. Use of uninitialized value in list assignment at /usr/local/share/perl/5.8.8/Catalyst/Engine/HTTP.pm line 371. I get 8 of these in one go. Can someone tell me if

Re: [Catalyst] Catalyst 5.80021

2010-03-25 Thread J. Shirley
On Thu, Mar 25, 2010 at 2:08 PM, gor...@gorste.plus.com wrote: Dear List I have just updated to Catalyst 5.80021 from 5.8002 and now I am seeing the following error when I restart my application. Use of uninitialized value in list assignment at

Re: [Catalyst] Catalyst Redirect to https

2010-03-25 Thread Bill Moseley
2010/3/25 Octavian Rasnita orasn...@gmail.com The back end servers don't know if the current request is an http or an https one and on each redirect, they do the redirection using the http scheme. (I have also set the configuration option using_frontend_proxy to true.) Also, because the

Re: [Catalyst] Re: Which C::View::PDF should I use?

2010-03-25 Thread Wade Stuart
On Mar 25, 2010, at 12:01 PM, Aristotle Pagaltzis pagalt...@gmx.de wrote: * Wade Stuart w...@grepit.net [2010-03-22 22:35]: On Tue, Mar 16, 2010 at 2:53 PM, Aristotle Pagaltzis pagalt...@gmx.de wrote: * Adam Sjøgren a...@koldfront.dk [2010-03-16 18:15]: An alternative could perhaps be

Re: [Catalyst] Re: Which C::View::PDF should I use?

2010-03-25 Thread Peter Edwards
On Mar 25, 2010, at 12:01 PM, Aristotle Pagaltzis pagalt...@gmx.de And how is Xvfb (which is an X11 server) a solution the problem of requiring an X11 server? I've used it before to run unit tests from batch under Solaris where no interactive X display is attached for code targeted to run using

Re: [Catalyst] How to extend authentication to use other DB fields?

2010-03-25 Thread Julien Sobrier
Hello, I am not really sure what you mean. I have tried this, but authentication always fails: $c-authenticate({ facebook_id = $uid, active = 1 }) I have triple checked that the parameters are correct, and the user exists in the database. On Wed, Mar 24, 2010 at 10:59 PM, Evan Carroll

Re: [Catalyst] How to extend authentication to use other DB fields?

2010-03-25 Thread Julien Sobrier
Actually, I found the reason: password_type = 'self_check', To fix my issue, I added a second real with password_type = 'clear', __PACKAGE__-config-{'Plugin::Authentication'} = { default = { class = 'SimpleDB', user_model = 'DB::User',