Re: [Catalyst] new Catalyst::Authentication::Credential::JWT

2017-06-10 Thread Ferruccio Zamuner
Thank you Gerard. How can it be combined in a Catalyst::Authentication::Realm::Progressive? Best regards.\ferz On 01/06/2017 13:26, Gerhard Jungwirth wrote: Hey, I just wrote a new module, to support JWT in Catalyst. I would be happy about your opinions. Later, I would like to

Re: [Catalyst] what happened to mod_fastcgi?

2016-04-09 Thread Ferruccio Zamuner
On 07/04/2016 14:18, Steve wrote: Like John, we had good experiences with fastcgi for the past 5 years or so. That said, a recent O/S upgrade (RHEL 7.1) caused us to migrate to mod_fcgid, as we had no luck getting mod_fastcgi to work. Steve Schafer

Re: [Catalyst] Opening existing PDF with Catalyst::View::PDF::API2

2014-10-12 Thread Ferruccio Zamuner
On 12/10/2014 13:56, Adam Witney wrote: Hi, I am trying to use Catalyst::View::PDF::API2 to open an existing PDF, modify it and then send it to the user. Why did not use Catalyst::View::PDF::Reuse instead? Thanks for any help You are welcome.\ferz

Re: [Catalyst] Monitoring Catalyst on Apache2 FastCGI

2014-06-05 Thread Ferruccio Zamuner
On 05/06/2014 13:39, Bernhard Bauch wrote: Dear all, i can believe that there is no monitoring tool for catalyst-application in production. I've a catalyst app in production as external fastcgi since 8 years, the only one time it had troubles was for a disk failure. Anyway you can have

[Catalyst] Chained issue?

2013-11-16 Thread Ferruccio Zamuner
Hi, in controller Account I've defined this action: sub fox : Chained('/auth/authenticated') ChainPart('account') Args(0) { ... } I thought to have defined an action for '/account/' url, instead: | /fox | /base (0) | | | - /auth/base (0)

Re: [Catalyst] Re: Chained issue?

2013-11-16 Thread Ferruccio Zamuner
On 11/17/13 01:05, Adam Sjøgren wrote: Ferruccio Zamuner nonsolos...@diff.org writes: sub fox : Chained('/auth/authenticated') ChainPart('account') Try writing 'PathPart' instead of 'ChainPart'. Sorry, I've dreamt ChainPart :d and I was wrong. Thank you, \ferz

[Catalyst] How to style CatalystX::Controller::Auth?

2013-09-10 Thread Ferruccio Zamuner
Hi, I would like to style login form with Twitter Bootstrap without change sent html in browser using js. I don't understand how to do this in CatalystX::Controller::Auth. Is there any example of customization of it? Thank you in advance for your anwser or hint.\ferz

Re: [Catalyst] How to style CatalystX::Controller::Auth?

2013-09-10 Thread Ferruccio Zamuner
Hi Rob Brown. thank you for your reply. On 09/10/13 10:55, Rob Brown wrote: Hi Ferz, I'm a little confused as to what you're trying to do exactly. Here's a simple typical TT example of the login form using CatalystX::Controller::Auth... If modifications are needed to

Re: [Catalyst] Catalyst starter template

2013-09-01 Thread Ferruccio Zamuner
On 08/22/13 14:46, John Napiorkowski wrote: Ynon++ You might want to look at https://metacpan.org/module/Template::Tiny for templating, I don't think we need all of TT John If the catalyzer is for help new users, I do not agree with a simplier template engine: * TT is full featured and

[Catalyst] C::Authentication::Credential::MultiFactors and C::Authentication::Progressive

2013-07-23 Thread Ferruccio Zamuner
Hi, I'm a bit confused about user case when I can use Catalyst::Authentication::Realm::Progressive or when I can use Catalyst::Authentication::Credential::MultiFactor When have I to prefer one of them? Thank you in advance, \ferz Links:

Re: [Catalyst] New design

2013-07-23 Thread Ferruccio Zamuner
On 07/23/13 10:48, Mark Keating wrote: Take a look and let me know what you guys think. http://www.mdk.me.uk/community/mocks/Catalyst.jpg I love it. Dancing people makes it seem amusing to use. Space mood makes it ready for the future. Best regards,\ferz

Re: [Catalyst] List of Applications using Catalyst

2013-06-09 Thread Ferruccio Zamuner
On 06/08/13 12:02, Denny wrote: On Fri, 2013-06-07 at 16:16 -0700, bill hauck wrote: Does anyone know of a list of applications that are using Catalyst? http://wiki.catalystframework.org/wiki/catalystpoweredsoftware At least SheepWool and FileZ have broken links. Can anyone update them if

Re: [Catalyst] Out of Memory - File delivery issue

2013-05-03 Thread Ferruccio Zamuner
On 05/02/13 09:54, Craig Chant wrote: Hi, I understand that Catalyst has a known issue with delivering authenticated files via the response mechanism. What does the Catalyst community do to work around this problem? I've delivered authenticated large files using a Catalyst web app without

Re: [Catalyst] PostgreSQL Conference: West

2008-08-20 Thread Ferruccio Zamuner
Joshua Drake wrote: Right, that is the constant issue with all the toolkits. My mind is something that provides an introduction to Catalyst (which is good for Catalyst) but also, Why use Catalyst with PostgreSQL?. What kind of cool features can Catalyst (and is associated libs) expose that

Re: [Catalyst] SQL authentification

2008-02-28 Thread Ferruccio Zamuner
Genadijus Paleckis wrote: Hello, I'm new on this list and on Catalyst itself also. I want to migrate our application to catalyst from cgi and I've came to question. Is it possible to authenticate users directly by SQL server user base ? I mean to make connection with speciffic user and

[Catalyst] C::C::FormBuilder and TT

2007-11-05 Thread Ferruccio Zamuner
Hi, I've found some strange behaviours from Catalyst about CGI::FormBuilder and TT2: example 1: in - edit.tt --- [% IF FormBuilder %] TRUE [% ELSE %] FALSE [% END %] - end - myapp::Controller::mycontroller --- sub edit : Local Form { my ( $self, $c ) = @_;