[Zope3-Users] Get a site

2007-01-21 Thread Florian Lindner
Hello, I am in a function that has no context and want to set a site. The function is called periodically from a scheduler: from scheduler import loop def onStartup(event): refresher = loop.LoopTask(releaseRefreshEvent, interval=60) In this function I need to call getUtilitiesFor which

[Zope3-Users] Re: Zope 3.3.1

2007-01-21 Thread Robert Hicks
Jegenye 2001 Bt (Miklós Prisznyák) wrote: 2007/1/14, Stephan Richter [EMAIL PROTECTED]: Zope 3.3.1 was released today. Unfortunately I cannot access wiki.zope.org right now to get you the release link. http://wiki.zope.org/zope3/Zope331 However there's no downloadable for v3.3.1 at

[Zope3-Users] __setitem__ works, __delitem__ fails on custom site

2007-01-21 Thread Roy Mathew
Hi Folks, I am trying to create a custom Site object, using the below declarations; all goes well when addding an object O1 to the QSite, but when trying to delete object O1, I get: ForbiddenAttribute: ('__delitem__', ...QSite object at 0xa61dcd6c) The code: class IQSite(IPossibleSite):

Re: [Zope3-Users] __setitem__ works, __delitem__ fails on custom site

2007-01-21 Thread FB
Hi, On Sun, Jan 21, 2007 at 07:06:36PM -0500, Roy Mathew wrote: Hi Folks, I am trying to create a custom Site object, using the below declarations; all goes well when addding an object O1 to the QSite, but when trying to delete object O1, I get: ForbiddenAttribute: ('__delitem__',

Re: [Zope3-Users] Get a site

2007-01-21 Thread Christian Theune
Hi, Am Sonntag, den 21.01.2007, 14:44 +0100 schrieb Florian Lindner: Hello, I am in a function that has no context and want to set a site. The function is called periodically from a scheduler: from scheduler import loop def onStartup(event): refresher =