Re: [Catalyst] Catalyst Framework website redirected to theyaomingfoundation.org

2022-08-02 Thread Gianni Ceccarelli
On Thu, 28 Jul 2022 12:46:46 +0800 Turritopsis Dohrnii Teo En Ming wrote: > I notice that the Catalyst Framework website redirects to > theyaomingfoundation.org. Has the project been retired? Interesting! http://catalyst.perl.org/ works fine but http://dev.catalyst.perl.org/ redirects to

Re: [Catalyst] Simple question about "use Catalyst"

2015-10-19 Thread Gianni Ceccarelli
On Mon, 19 Oct 2015 14:21:15 +0100 "Andrew" wrote: > What was the significance of 5.80 being written there? It's a general feature of perl, not specific to Catalyst. As your most probably already know, when you say:: use Some::Module qw(some thing); it

Re: [Catalyst] Re: Chained and exceptions

2013-05-14 Thread Gianni Ceccarelli
On 2013-05-14 Dimitar Petrov mita...@gmail.com wrote: That's the proposition based on Bill's answer: https://github.com/dpetrov/catalyst-runtime/commit/391a98ed4e386af9ef11a3d4ea979f1e6a3c51f4 Any thoughts? Maybe the test should actually check what happens when the action Cdies? (spoiler: it

Re: [Catalyst] Catalyst::Model::RabbitMQ

2012-08-18 Thread Gianni Ceccarelli
I'm using a combination of CatalystX::ComponentsFromConfig and Net::Stomp::Producer. The first (t0m's code, even if released by me) allows you to avoid writing essentially empty model classes (and to apply roles via configuration file). The second is the one that actually deals with messaging.

Re: [Catalyst] Managing module regressions.

2012-07-03 Thread Gianni Ceccarelli
On 2012-07-02 Bill Moseley mose...@hank.org wrote: But, essentially you build a separate Perl on a staging machine with all dependencies and then use RPM to copy to production, correct? Yes, to production and to any development VM. Do you also use RPM for bringing in non-perl dependencies?

Re: [Catalyst] Managing module regressions.

2012-07-02 Thread Gianni Ceccarelli
On 2012-07-02 Bill Moseley mose...@hank.org wrote: You have tarballs of every single dependency? How do you determine what those are? IIRC (and the system works well so I don't have to remember how it works :) ) we have a wrapper for CPAN.pm that logs the downloads and adds them to the

Re: [Catalyst] Managing module regressions.

2012-06-29 Thread Gianni Ceccarelli
Here's what we do: - we have a (VCS-managed) set of tarballs downloaded from CPAN - we run a CPAN-like server providing those tarballs - we have a rather large set of distroprefs to skip unreliable tests and apply local patches - we usually update to the latest CPAN (and perl) releases -

Re: [Catalyst] CatalystX::JobServer (anyone use it?)

2012-06-05 Thread Gianni Ceccarelli
On 2012-06-05 Tomas Doran bobtf...@bobtfish.net wrote: Most of the good parts got ripped off by dakkar++, and combined with the (ideas from the) Catalyst::Engine::STOMP stuff, to make [3 dists] which is ActiveMQ specific, but a nice jobs solution. To be honest, those distributions are not

Re: [Catalyst] POST data for base64

2012-04-13 Thread Gianni Ceccarelli
On 2012-04-13 Сергей Дмитриев s_dmitr...@inbox.ru wrote: Recently we've developed small web application which, for some cases, receives data in base64 format, as value of one fields of POST request. I've noticed that probably there's something wrong with decoding of such data. E.g. + will

Re: [Catalyst] DB2 Connection string problem

2012-03-27 Thread Gianni Ceccarelli
https://metacpan.org/source/IBMTORDB2/DBD-DB2-1.84/DB2.pod#L187 you may want: dbi:DB2:DATABASE=${your_db_name};HOSTNAME=${server_name};PORT=${port} -- Dakkar - Mobilis in mobile GPG public key fingerprint = A071 E618 DD2C 5901 9574 6FE2

Re: [Catalyst] DB2 Connection string problem

2012-03-27 Thread Gianni Ceccarelli
On 2012-03-27 Kenneth S Mclane ksmcl...@us.ibm.com wrote: [IBM][CLI Driver] SQL1031N The database directory cannot be found on the indicated file system. SQLSTATE=58031 This is the result I get from that change. I can't really help you more than this, I was just reading the documentation…

[Catalyst] Multiple actions matching a request - what happens?

2012-03-01 Thread Gianni Ceccarelli
Imagine you have a set of actions that match the same request. Maybe they have the same :Path, or maybe you're using Catalyst::ActionRole::MatchRequestMethod or something similar, and you do: sub post_foo :Path('foo') Method('POST') { } sub other_foo :Path('foo') { } intending for the

[Catalyst] Re: use for expand_modules

2011-08-08 Thread Gianni Ceccarelli
(re-sent, since apparently the mailing list didn't like my previous attempt) Hello. I am using expand_modules at work. It may not be the best solution to my problem, but it seemed appropriate. Let's see if I can describe what I'm doing. I have a thing that just happens to be a Catalyst

[Catalyst] Re: use for expand_modules

2011-07-28 Thread Gianni Ceccarelli
Hello. I am using expand_modules at work. It may not be the best solution to my problem, but it seemed appropriate. Let's see if I can describe what I'm doing. I have a thing that just happens to be a Catalyst application, using Catalyst::Engine::Stomp to respond to ActiveMQ messages instead of