[Zope-dev] Deciphering Zope Comments

2008-06-04 Thread Shane Hathaway
Hi all, I'm trying to get a handle on Zope 3. I plan to take a bunch of Zope 3 modules and combine them in a new way. The goal is to create for myself a comfortable working environment that lets me run simple code in a small mod_wsgi environment with easy reloading and no ZODB initially.

Re: [Zope-dev] Deciphering Zope Comments

2008-06-04 Thread Wichert Akkerman
Previously Shane Hathaway wrote: I think I want to use a threading.local as my site manager. That way, I can use a different configuration for each WSGI app even if several apps run in different threads of a single Python interpreter. It looks like the zope.app.component.hooks module does

Re: [Zope-dev] Deciphering Zope Comments

2008-06-04 Thread Shane Hathaway
Wichert Akkerman wrote: Previously Shane Hathaway wrote: I think I want to use a threading.local as my site manager. That way, I can use a different configuration for each WSGI app even if several apps run in different threads of a single Python interpreter. It looks like the

[Zope-dev] Zope Tests: 5 OK

2008-06-04 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Tue Jun 3 11:00:00 2008 UTC to Wed Jun 4 11:00:00 2008 UTC. There were 5 messages: 5 from Zope Tests. Tests passed OK --- Subject: OK : Zope-2.8 Python-2.3.6 : Linux From: Zope Tests Date: Tue Jun 3 20:54:15 EDT 2008 URL:

Re: [Zope-dev] Deciphering Zope Comments

2008-06-04 Thread Stephan Richter
On Tuesday 03 June 2008, Shane Hathaway wrote: # SiteManager API. This needs to get deprecated eventually. But... um... everything in the module uses getSiteManager().  The whole component foundation is built on it.  When is it going to be replaced? With what?  By whom? This is a result of

[Zope-dev] Re: Deciphering Zope Comments

2008-06-04 Thread Philipp von Weitershausen
Shane Hathaway wrote: Hi all, I'm trying to get a handle on Zope 3. I plan to take a bunch of Zope 3 modules and combine them in a new way. The goal is to create for myself a comfortable working environment that lets me run simple code in a small mod_wsgi environment with easy reloading

[Zope-dev] SQLAlchemy (zope.sqlalchemy) integration

2008-06-04 Thread Hermann Himmelbauer
Hi, Regarding to the discussion some days ago with the SQLAlchemy Zope3 integration, I still have problems with retrieving the session. I currently use a utility for the engine, which seems to work well. However, for retrieving the session, I tried to use the following pattern (many thanks to

Re: [Zope-dev] SQLAlchemy (zope.sqlalchemy) integration

2008-06-04 Thread Michael Bayer
On Jun 4, 2008, at 12:02 PM, Hermann Himmelbauer wrote: Hi, Regarding to the discussion some days ago with the SQLAlchemy Zope3 integration, I still have problems with retrieving the session. I currently use a utility for the engine, which seems to work well. However, for retrieving the

Re: [Zope-dev] Deciphering Zope Comments

2008-06-04 Thread Dieter Maurer
Shane Hathaway wrote at 2008-6-4 00:01 -0600: ... # SiteManager API. This needs to get deprecated eventually. But... um... everything in the module uses getSiteManager(). The whole component foundation is built on it. When is it going to be replaced? With what? By whom? I'm assuming for

[Zope-dev] Re: SQLAlchemy (zope.sqlalchemy) integration

2008-06-04 Thread Laurence Rowe
Hermann Himmelbauer wrote: Hi, Regarding to the discussion some days ago with the SQLAlchemy Zope3 integration, I still have problems with retrieving the session. I currently use a utility for the engine, which seems to work well. However, for retrieving the session, I tried to use the