Re: [Zope] Problem with __before_publishing_traverse__

2007-03-30 Thread Peter Bengtsson
Wow! You are amazing! Yes, recreating the CookieCrumber just like it was before made it work. Quirky I must admit. Dieter Maurer wrote: Peter Bengtsson wrote at 2007-3-28 10:40 +0100: ... Removing the CookieCrumbler object obviously isn't a good enough solution because we need it for pretty

Re: [Zope] Problem with __before_publishing_traverse__

2007-03-28 Thread Peter Bengtsson
Sorry for late reply. There is no Five in this environment. The solution was to remove the CookieCrumbler instance inside the MyApp instance. CookieCrumber (1.2) doesn't have a __before_publishing_traverse__ method but it does have this (CookieCrumbler.py:214):: def __call__(self,

Re: [Zope] Problem with __before_publishing_traverse__

2007-03-23 Thread Dieter Maurer
Peter Bengtsson wrote at 2007-3-23 13:29 +: I have a product that looks like this:: class MyApp(Something): meta_type = 'x' def foobar(self): doc str return xxx def __before_publishing_traverse__(self, object, request=None): print HOUSTON ... When I view