Re: [ZODB-Dev] [RFC] ZEO: Allow non-packaged products

2011-04-29 Thread Vincent Pelletier
Le vendredi 29 avril 2011 13:39:19, Hanno Schlichting a écrit : > 1. create a base directory > 2. create a directory called 'Products' in it > 3. put the setuptools magic into an __init__.py into the Products > directory so it contains: > __import__('pkg_resources').declare_namespace(__name__) > 4.

Re: [ZODB-Dev] [RFC] ZEO: Allow non-packaged products

2011-04-29 Thread Hanno Schlichting
On Fri, Apr 29, 2011 at 3:24 PM, Vincent Pelletier wrote: > I need ZEO to be able to find non-packaged products for conflict resolution > purposes. As ZEO AFAIK doesn't support this I gave it a quick try. I reached > the "works for me" state, that I now would like to get feedback on. > > Basically

Re: [ZODB-Dev] [RFC] ZEO: Allow non-packaged products

2011-04-29 Thread Wichert Akkerman
On 4/29/11 15:24 , Vincent Pelletier wrote: > Hi. > > I need ZEO to be able to find non-packaged products for conflict resolution > purposes. As ZEO AFAIK doesn't support this I gave it a quick try. I reached > the "works for me" state, that I now would like to get feedback on. > > Basically, I tra

[ZODB-Dev] [RFC] ZEO: Allow non-packaged products

2011-04-29 Thread Vincent Pelletier
Hi. I need ZEO to be able to find non-packaged products for conflict resolution purposes. As ZEO AFAIK doesn't support this I gave it a quick try. I reached the "works for me" state, that I now would like to get feedback on. Basically, I transposed Zope's "products" config option to ZEO. Did I