Re: [Catalyst] Single-domain multi-shop, multi-gateway; linked to the one shopping-cart

2011-12-04 Thread Alec Taylor
Shawn: I was thinking more a single SSL cert, with stores we'll manage on our end. If they store's start fraudulent behaviour, then I just kick them off the system. Otherwise, keep everything separate (store receipts centrally though), and allow each store to run a different payment gateway and se

Re: [Catalyst] Single-domain multi-shop, multi-gateway; linked to the one shopping-cart

2011-12-04 Thread shawn wilson
On Dec 4, 2011 11:56 PM, "Alec Taylor" wrote: > > Good afternoon, > > How would I go about building a single-domain multi-shop with > multiple-gateways; linked to the one shopping-cart; using Catalyst? > (Not answering your question, but...) I would think twice about doing this because of the cos

[Catalyst] Single-domain multi-shop, multi-gateway; linked to the one shopping-cart

2011-12-04 Thread Alec Taylor
Good afternoon, How would I go about building a single-domain multi-shop with multiple-gateways; linked to the one shopping-cart; using Catalyst? Thanks for all suggestions, Alec Taylor ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys

Re: [Catalyst] YA CRUD module

2011-12-04 Thread David Schmidt
just thought i'll keep you up to day so you dont waste time trying to help with a problem i already solved. Turns out the error cause was in one of the roles. It required a method declared in the same role. The CatalystX::SimpleLogin (using CatalystX::InjectComponent and CatalystX::Component::Tra

Re: [Catalyst] YA CRUD module

2011-12-04 Thread David Schmidt
davewood: I have a problem with CatalystX::Component::Traits. When i apply 2 traits and one requires some methods provided by the other an error appears saying ... "Couldn't instantiate component ... requires the methods ..." Caelum: davewood: you can't do that, the traits are applied all at once

Re: [Catalyst] YA CRUD module

2011-12-04 Thread David Schmidt
Hi t0m I am currently stuck at configuring/applying roles via TestApp::config I want to apply the role via catalyst config in MyApp.pm __PACKAGE__->config( 'Controller::Resource' => { resultset_key => 'cds_rs', resources_key => 'cds', resource_key => 'cd', model => 'DB

Re: [Catalyst] Re: Catalyst::Test & Test::DBIx::Class

2011-12-04 Thread Jason Galea
On Sun, Dec 4, 2011 at 7:59 PM, Dimitar Petrov wrote: > You might want to check this blog post also: > http://www.modernperlbooks.com/mt/2011/11/parallelism-and-test-suites.html thanks, but that's what got me into this mess.. well http://www.modernperlbooks.com/mt/2011/12/controlling-test-paral

Re: [Catalyst] Re: Catalyst::Test & Test::DBIx::Class

2011-12-04 Thread Dimitar Petrov
You might want to check this blog post also: http://www.modernperlbooks.com/mt/2011/11/parallelism-and-test-suites.html Cheers On Sun, Dec 4, 2011 at 10:49 AM, Jason Galea wrote: > On Sun, Dec 4, 2011 at 7:10 PM, Tomas Doran wrote: >> >>> >>> On 4 Dec 2011, at 04:13, Jason Galea wrote: >>> >>>

Re: [Catalyst] Re: Catalyst::Test & Test::DBIx::Class

2011-12-04 Thread Jason Galea
> > On Sun, Dec 4, 2011 at 7:10 PM, Tomas Doran wrote: > >> >> On 4 Dec 2011, at 04:13, Jason Galea wrote: >> >> hmm.. actually.. can I hand Catalyst::Test the schema I can get from >>> Test::DBIx::Class? >>> >> >> I think you can just force replace the schema, with something like >> MyApp->model

Re: [Catalyst] Re: Catalyst::Test & Test::DBIx::Class

2011-12-04 Thread Jason Galea
ok cool. thanks, t0m. On Sun, Dec 4, 2011 at 7:10 PM, Tomas Doran wrote: > > On 4 Dec 2011, at 04:13, Jason Galea wrote: > > hmm.. actually.. can I hand Catalyst::Test the schema I can get from >> Test::DBIx::Class? >> > > I think you can just force replace the schema, with something like > M

Re: [Catalyst] Re: Catalyst::Test & Test::DBIx::Class

2011-12-04 Thread Tomas Doran
On 4 Dec 2011, at 04:13, Jason Galea wrote: hmm.. actually.. can I hand Catalyst::Test the schema I can get from Test::DBIx::Class? I think you can just force replace the schema, with something like MyApp->model('DB')->schema($mytestschema); Alternatively, you can setup a test config (by