Re: [Catalyst] Access-Control-Allow-Origin

2018-06-19 Thread Scott Thomson
If you have a front end web server then you can let it handle the CORS for you and don't worry about it in your app, I've used the approach in https://awesometoast.com/cors/ with success for apache, I've heard it's also pretty straightforward for nginx. This way you avoid a full catalyst request

Re: [Catalyst] Log4Perl and Catalyst startup routing table

2014-11-14 Thread Scott Thomson
-config-{version} = $visible_version; $class-log-info( Starting version: [ . $visible_version-{name} . ] ); } Something like that should do what you need. -- Scott ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman

[Catalyst] Creating Editing Records in a Related Table

2012-09-24 Thread scott
author SET name = ? WHERE ( id = ? ): 'scott', '1' SELECT me.id, me.address, me.author_id FROM address me WHERE ( ( me.id = ? AND me.author_id = ? ) ): '1', '1' UPDATE address SET address = ? WHERE ( id = ? ): '13 thriplee road', '1' Create Gives INSERT INTO author ( name) VALUES ( ? ): 'Marge

[Catalyst] Wiki is Temporarily Unavailable

2012-07-02 Thread scott
Just in case nobody has noticed the Catalyst WiKi is down and has been for at least a day. ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive:

[Catalyst] Authentication in a Many Database Scenario

2012-05-09 Thread Scott Simpson
to work out the details myself but could do with a few hints to get started. Regards, Scott ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com

Re: [Catalyst] Authentication in a Many Database Scenario

2012-05-09 Thread scott
database. Once authenticated, I use InstancePerContext to build the appropriate database model. It works fine. Steve On 5/9/2012 4:42 PM, Denny wrote: On Wed, 2012-05-09 at 21:09 +0100, Scott Simpson wrote: I’d like to offer users their own database (so that their own data is separate from

[Catalyst] Social.com Co-Founder with Perl/Catalyst experience

2010-03-17 Thread Scott Carter
I'm looking for a technical Co-Founder for a Social.com startup in Massachusetts (applicants from southern NH or Rhode Island are fine also). Details are here: http://j.mp/cQatCf or http://jobs.webinnovatorsgroup.com/job/co-founder-for-social-media-startup-southborough-ma-social-com-d59c5cee63/

RE: [Catalyst] Jason Kohles' tutorial on ExtJs editable data gridsandCatalyst

2009-05-01 Thread Scott Pham (scpham)
You want to do.. $person-affiliation_id- affiliation_id From: jagdish eashwar [mailto:jagdish.eash...@gmail.com] Sent: Friday, May 01, 2009 11:21 AM To: The elegant MVC web framework Subject: Re: [Catalyst] Jason Kohles' tutorial on ExtJs editable data gridsandCatalyst Thanks, Adam.

Re: [Catalyst] Catalyst::Plugin::Session::State::Cookie and HttpOnly flag

2009-04-17 Thread Scott Thomson
On Thu, Apr 16, 2009 at 5:47 PM, Scott Thomson smoothho...@gmail.com wrote: On Tue, Apr 14, 2009 at 7:50 PM, Tomas Doran bobtf...@bobtfish.net wrote: On 14 Apr 2009, at 10:58, Scott Thomson wrote: Currently Catalyst::Plugin::Session::State::Cookie doesn't allow configuration of the HttpOnly

RE: [Catalyst] Jason Kohles' tutorial on ExtJs editable data grids and Catalyst

2009-04-17 Thread Scott Pham (scpham)
Comment out console.log and see if that fixes your problem. Please someone correct me if I'm wrong, but isn't that firebug only? From: jagdish eashwar [mailto:jagdish.eash...@gmail.com] Sent: Friday, April 17, 2009 12:20 AM To: The elegant MVC web framework Subject: Re: [Catalyst] Jason

Re: [Catalyst] Catalyst::Plugin::Session::State::Cookie and HttpOnly flag

2009-04-16 Thread Scott Thomson
On Tue, Apr 14, 2009 at 7:50 PM, Tomas Doran bobtf...@bobtfish.net wrote: On 14 Apr 2009, at 10:58, Scott Thomson wrote: Currently Catalyst::Plugin::Session::State::Cookie doesn't allow configuration of the HttpOnly flag, it looks trivial to add, so basically I'm wondering whether this idea

[Catalyst] Catalyst::Plugin::Session::State::Cookie and HttpOnly flag

2009-04-14 Thread Scott Thomson
Hi, Currently Catalyst::Plugin::Session::State::Cookie doesn't allow configuration of the HttpOnly flag, it looks trivial to add, so basically I'm wondering whether this idea has been discussed and discounted before and if there is any reason why I shouldn't just patch it? Cheers

Re: [Catalyst] General Web- and OO-question

2009-03-27 Thread Scott McWhirter
object with the data at the end. If you need to do validation along the way, you could reuse the moose type constraints in the classes meta information without constructing an object. -- -Scott McWhirter- | -Technology Consultant- [ Cloudtone Studios - http://www.cloudtone.ca

Re: [Catalyst] General Web- and OO-question

2009-03-27 Thread Scott McWhirter
MooseX::Params::Validate along with using the metaclass for the Moose Class. -- -Scott McWhirter- | -Technology Consultant- [ Cloudtone Studios - http://www.cloudtone.ca ] ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin

RE: [Catalyst] Catalyst and ExtJS

2009-03-16 Thread Scott Pham (scpham)
-Original Message- From: Adam Witney [mailto:awit...@sgul.ac.uk] Sent: Saturday, March 14, 2009 2:05 PM To: The elegant MVC web framework Subject: Re: [Catalyst] Catalyst and ExtJS On 14 Mar 2009, at 15:19, Scott Pham (scpham) wrote: -Original Message- From: Adam

RE: [Catalyst] Catalyst and ExtJS

2009-03-16 Thread Scott Pham (scpham)
-Original Message- From: Adam Witney [mailto:awit...@sgul.ac.uk] Sent: Monday, March 16, 2009 3:00 PM To: The elegant MVC web framework Subject: Re: [Catalyst] Catalyst and ExtJS No, don't do that! Use $row-get_columns which returns a hash of the column data! Accessing

RE: [Catalyst] Catalyst and ExtJS

2009-03-14 Thread Scott Pham (scpham)
-Original Message- From: Adam Witney [mailto:awit...@sgul.ac.uk] Sent: Saturday, March 14, 2009 10:36 AM To: The elegant MVC web framework Subject: [Catalyst] Catalyst and ExtJS Hi, I was thinking about using Catalyst and ExtJS, does anyone have any experience or know if they

RE: [Catalyst] Catalyst - any good AJAX tutes?

2009-03-06 Thread Scott Pham (scpham)
I second that ExtJS recommendation. The user community is pretty good from a support point of view. Once you get the hang of it, it's really easy to do a lot of neat things with it. -Original Message- From: Alexander Hartmaier [mailto:alexander.hartma...@t-systems.at] Sent: Friday,

Re: [Catalyst] Requirements for Catalyst

2009-02-24 Thread Scott McWhirter
! -- -Scott McWhirter- | -konobi- [ Technology Consultant - Cloudtone Studios ] ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst

Re: [Catalyst] [OT] Catayst-ish PHP web framework?

2009-02-10 Thread Scott McWhirter
it too much. ta! -- -Scott McWhirter- | -konobi- ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev site: http

Re: [Catalyst] Using Selenium to test Catalyst app

2009-01-27 Thread Scott McWhirter
You need to be running the Selenium-RC server yourself. You can get that from http://www.openqa.org/ -- -Scott McWhirter- | -konobi- On Tue, Jan 27, 2009 at 19:15, Daniel Austin daniel.aus...@gmail.comwrote: Hi Is anyone successfully using Test::WWW::Selenium::Catalyst? I can't get

Re: [Catalyst] Catalyst modperl - child process segmentation fault

2009-01-05 Thread Scott McWhirter
to do is disconnect (but not destroy) the database handle before forking and then get each child to reconnect() themselves (DBI can deal with pooling transparently, iirc). Apache::DBI does this for you, but iirc it doesn't _quite_ work correctly. ta! -- -Scott McWhirter- | -konobi- On Mon, Jan