Re: Some thoughts about Pyramid

2011-03-04 Thread Carlos de la Guardia
Guys, I'll be at PyCon and would like to sprint on this. Maybe a tutorial with code. Anyone? Carlos de la Guardia On Thu, Mar 3, 2011 at 6:08 PM, Chris McDonough wrote: > On Thu, 2011-03-03 at 17:57 -0600, Joe Dallago wrote: >> So the thing we can carry away from this discuss

Questions for Pyramid talk at PyCon

2011-03-09 Thread Carlos de la Guardia
n is about traversal vs. routes and there are also many questions about the preferred ways to do sql_alchemy/forms/auth/etc. I have a few ideas, but to make my talk more complete I'd like to have some input from the list. Any favorite questions that I should cover? Thanks. Carlos de la Guardia -

Re: [GitHub] Added Pylons migration guide and dev docs links. [Pylons/pylonshq GH-15]

2011-03-21 Thread Carlos de la Guardia
Mike, I thought we would change the link to point to Akhet as soon as there was a final release. If you wish I can change it today. Anyone else has an opinion on this? Carlos de la Guardia On Mon, Mar 21, 2011 at 4:44 PM, Mike Orr wrote: > Oh dear, this is now out of date. (And I don't

Re: requests and transactions

2011-04-01 Thread Carlos de la Guardia
> Anyone know why isDoomed exists rather than whatever dooms the transaction > just raising an exception? > http://zodb-documentation.readthedocs.org/en/latest/transactions.html#dooming-a-transaction Carlos de la Guardia -- You received this message because you are subscribed to t

Re: Proposition for newbies guide form for Pyramid

2011-06-02 Thread Carlos de la Guardia
Thanks for watching the talk. I'm interested in coming up with another tutorial or series of tutorials. I'll check these links out. Thanks for the ideas. Carlos de la Guardia On Fri, May 27, 2011 at 3:46 PM, Jan Koprowski wrote: > Hi, > I'm not sure is it a good place for

Re: transaction: getting hooks and synchronizers to work

2013-02-17 Thread Carlos de la Guardia
Hi, there were some problems with the code snippets in the book. I updated them here: http://zodb.readthedocs.org/en/latest/transactions.html#before-commit-hooks For some reason I could only get synch to work using classmethod. Carlos de la Guardia On Sat, Feb 16, 2013 at 3:56 AM, Siddhartha

Re: transaction: getting hooks and synchronizers to work

2013-03-03 Thread Carlos de la Guardia
Laurence, did you get it to work like that? I tried before using classmethod and wasn't able to make it work. Carlos de la Guardia > Pass an instance of the MySynch class rather than the class itself, e.g: > > class MySynch(object): > def beforeCompletion(self, transaction)