Hello,

Maybe I miss something very obvious here...

I created a FooFolder class, subclassing zope.app.folder.Folder. After adding
the necessary configurations, I have an entry in the addMenu, and I indeed can
add a FooFolder instance.

Now I want this FooFolder to become a site right after having added it (so,
instead of doing this from the ZMI). I naively thought to do this in the
FooFolder's __init__, like so:

  from zope.app.folder import Folder
  from zope.app.site.service import SiteManager

  class FooFolder(Folder):

    def __init__(self):
      super(FooFolder, self).__init__()
      sitemanager = SiteManager(self)
      self.setSiteManager(sitemanager)

This however throws:

  File "/home/jw/projects/zope3x/lib/python/zope/app/site/service.py", line 81,
in __init__
    self._setNext(site)
  File "/home/jw/projects/zope3x/lib/python/zope/app/site/service.py", line 96,
in _setNext
    raise TypeError("Not enough context information")


Somehow I cannot think of the correct way to do this... Can anyone help? Do I
need to specify more details?


TIA, regards,
jw

-- 
Jan-Wijbrand Kolman
[EMAIL PROTECTED]
_______________________________________________
Zope3-users mailing list
Zope3-users@zope.org
http://mail.zope.org/mailman/listinfo/zope3-users

Reply via email to