Re: Not sure where to start to ask this...

2011-05-23 Thread nak
Alright, let's give this a shot. I am looking to use open source software (pyramid, jQuery, firefox/ opera/google-chrome browsers, MySQL possibly,) to develop a web app that will tie together a number of open web services. I don't want to go into too much detail here, but respond and I will

Paste reorganization / Paster graceful restart

2011-05-23 Thread Mike Orr
On Mon, May 23, 2011 at 8:56 AM, Phredward wrote: > I'm wondering if anyone is working on a graceful restart solution for > paster? > > While working with pylons in a production environment, I noticed that when > we restarted after a deploy, we would see a spike in 500's.  This was caused > by mul

Paster Graceful Restart

2011-05-23 Thread Phredward
I'm wondering if anyone is working on a graceful restart solution for paster? While working with pylons in a production environment, I noticed that when we restarted after a deploy, we would see a spike in 500's. This was caused by multiple factors, but high up in the list was the fact that the d

Re: Reusing sqlalchemy models across several pyramid apps

2011-05-23 Thread Chris Withers
On 23/05/2011 13:35, Daniel Holth wrote: It is perfectly alright to have 0, 1, or more than one declarative base class (you will have 0 if you are using the ORM without the declarative extension). The only limitation I've found is that you have to use class attributes, not string table names, to

Re: again: any plans or roadmap to switch to Python 3?

2011-05-23 Thread Vincenzo Ampolo
On Mon, 2011-05-23 at 10:28 -0500, Joe Dallago wrote: > Joel Bohman and I are going to be > working on porting Pyramid to Py3 for GSOC. Feel free to contact > either one of us if you would like to join in. Sure (let's continue in pvt). Bye -- Vincenzo Ampolo http://vincenzo-ampolo.net http://

Re: again: any plans or roadmap to switch to Python 3?

2011-05-23 Thread Joe Dallago
Vincenzo, I just wanted to let you know that Joel Bohman and I are going to be working on porting Pyramid to Py3 for GSOC. Feel free to contact either one of us if you would like to join in. -jayd3e On Sat, May 21, 2011 at 11:43 AM, Vincenzo Ampolo wrote: > On Sat, 2011-05-21 at 09:33 -0700,

Re: Reusing sqlalchemy models across several pyramid apps

2011-05-23 Thread Michael Merickel
On Mon, May 23, 2011 at 7:35 AM, Daniel Holth wrote: > The only limitation I've found is that you have to use class attributes, > not string table names, to reference foreign keys. e.g. > ForeignKey(User.foobar) instead of ForeignKey('usertable.foobar_id') I've never found a situation where I n

Re: Reusing sqlalchemy models across several pyramid apps

2011-05-23 Thread Daniel Holth
It is perfectly alright to have 0, 1, or more than one declarative base class (you will have 0 if you are using the ORM without the declarative extension). The only limitation I've found is that you have to use class attributes, not string table names, to reference foreign keys. e.g. ForeignKey