Re: [Zope3-Users] [Zope-dev] Next Step to Bug Resolution???

2009-01-10 Thread Tim Cook
On Fri, 2009-01-09 at 11:02 +, Chris Withers wrote: Hi Chris, Thanks for the opportunity to address these issues. Hang on, you're making out this project of yours is some big deal, Well, it is kind of a big deal in healthcare. Simplistix (and others) may be interested in the fact that the

[Zope3-Users] How do I get rid of a PAU with the API?

2009-01-10 Thread Sebastian Bartos
Hello, now that I have registered the PAU, I also want to add a removal part. The creation part was this: ... def RenderRunOutput(self): Do the setup and output the result. # Check for existing install site = getSite() sm =

Re: [Zope3-Users] How do I get rid of a PAU with the API?

2009-01-10 Thread Douglas Cerna
Try to remove the utility from the sm like this: del sm['authentication'] Hope this helps. Douglas ... allí­ es cuando te das cuenta que las cosas malas pueden resultar bastante buenas... - Lionel Messi Por favor, evite enviarme adjuntos de Word, Excel o PowerPoint. Vea

[Zope3-Users] Letting a custom factory instance act like a class with implements()

2009-01-10 Thread Martin Aspeli
Hi, I have the following three classes. DelegatingIndexer is a kind of generic implementation of the IIndexer interface (not shown, it basically just has a __call__ method) that delegates to a given callable after doing some prep work. DelegatingIndexerFactory is an adapter factory for the