Re: [Zope3-Users] Re: Creating objects in software space when making site

2006-03-08 Thread Joseph Method
This is just work for you, but you could put up a list mapping recipe description to thread. But then others could help distill and annotate the recipes. On the question of where to put it, I have a heretical suggestion: plone.org. Plone developers are trying to understand Zope 3. On 3/8/06, Andr

Re: [Zope3-Users] Re: Creating objects in software space when making site

2006-03-07 Thread Joseph Method
This should definitely be a prominent How-To somewhere. On 3/7/06, Andreas Elvers <[EMAIL PROTECTED]> wrote: > Florian Lindner wrote: > > Hello, > > my content object depends on a number of utilities to be present. It is > > usually also used as a site. During development it happens often that I >

Re: [Zope3-Users] Re: Creating objects in software space when making site

2006-03-07 Thread Michael Howitz
Am Dienstag, den 07.03.2006, 12:49 +0100 schrieb Florian Lindner: > Hello, > I've tried from __init__ so content is self in my case (at least I think so): > > from zope.app.component import site > from zope.proxy import removeAllProxies > > class Centershock(BTreeContainer, SiteManagerContainer):

Re: [Zope3-Users] Re: Creating objects in software space when making site

2006-03-07 Thread Florian Lindner
Hello, I've tried from __init__ so content is self in my case (at least I think so): from zope.app.component import site from zope.proxy import removeAllProxies class Centershock(BTreeContainer, SiteManagerContainer): __doc__ = ICentershock.__doc__ implements(ICentershock)