Re: RESTful Admin Interface

2009-05-06 Thread Mike Lewis
Would you be able to use the same namespace and just use different authorization groups on each class on either admin-only and public. -Mike On May 5, 1:00 am, Jonas Fietz jonasfi...@gmx.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi everyone, the topic line describes

Re: app engine - state of play - 0.9.7

2009-05-06 Thread Wichert Akkerman
Previously Ben Bangert wrote: On May 3, 2009, at 7:42 AM, Wichert Akkerman wrote: And it's not limited to GAE; interactive traceback hasn't work for me for a month or so. It hasn't? What is happening instead? I click on the + and get a javascript error. Wichert. -- Wichert Akkerman

Re: Mailer for Pylons

2009-05-06 Thread Jonathan Vanasco
I use a module that I originally wrote for TG 3+ years ago All it does is: set defaults in code or config set envelope info set template info mail i've found that the best solution. --~--~-~--~~~---~--~~ You received this message because you are

Re: app engine - state of play - 0.9.7

2009-05-06 Thread Ian Bicking
The server always sets wsgi.multiprocess, but in the dev environment the processes aren't recycled that often so it's actually almost always okay (no worse than using it with paster --reload), but evalerror still disables itself. On Wed, May 6, 2009 at 1:35 PM, Mike Orr sluggos...@gmail.com

Re: Plugin architecture

2009-05-06 Thread Brian Beck
On Apr 28, 12:25 pm, Ben Bangert b...@groovie.org wrote: The key difference between Django style re-use and repoze.bfg/Zope   style re-use is how much life is going to suck down the road   maintaining the apps. When you consider how Django approaches it, it   seems like this will be a pain

Re: app engine - state of play - 0.9.7

2009-05-06 Thread Wichert Akkerman
Previously Ben Bangert wrote: On May 6, 2009, at 12:54 AM, Wichert Akkerman wrote: I click on the + and get a javascript error. What type of environment? What wsgi server? I can see why it wouldn't work under GAE, since there's no guarantee you'll get back to the same process (it

Best practice/schemes for database locking using Pylons and SQLAlchemy?

2009-05-06 Thread Jeremy Burton
Pylons works superbly out-of-the-box with SQLAlchemy if your web application solely responds to HTTP requests. However, it seems to me that most non-trivial web applications (including mine) will inevitably need to have additional threads performing other tasks, e.g. mail send/receive, that

Re: Best practice/schemes for database locking using Pylons and SQLAlchemy?

2009-05-06 Thread Matthew Burgess
On Wed, 6 May 2009 15:43:22 -0700 (PDT), Jeremy Burton jeremymbur...@yahoo.com wrote: My question is what do people suggest are the best approaches for a database locking scheme using Pylons and SQLAlchemy? I may be misunderstanding your question completely, but I'd have thought if you use

Re: Best practice/schemes for database locking using Pylons and SQLAlchemy?

2009-05-06 Thread Michael Bayer
On May 6, 2009, at 6:43 PM, Jeremy Burton wrote: Pylons works superbly out-of-the-box with SQLAlchemy if your web application solely responds to HTTP requests. However, it seems to me that most non-trivial web applications (including mine) will inevitably need to have additional