Re: [Zope-dev] Proxy Object / __getattr__ / Acquisition

2002-08-30 Thread Dieter Maurer
[EMAIL PROTECTED] writes: I am using __getattr__ within my product, and the code pasted below works ... However, because of the way that this messes with Acquisition, certain things like accessing the ZMI pages or acquired methods can be quite slow (but work). ... def

Re: [Zope-dev] Proxy Object / __getattr__ / Acquisition

2002-08-29 Thread Steve Alexander
[EMAIL PROTECTED] wrote: I am trying to implement a proxy class (specifically for the purposes of multi-versioned document objects (folderish proxies that contain the object that they proxy to). I am using __getattr__ within my product, and the code pasted below works, and does not break

Re: [Zope-dev] Proxy Object / __getattr__ / Acquisition

2002-08-29 Thread Johan Carlsson [Torped]
At 14:28 2002-08-29 -0700, [EMAIL PROTECTED] said: I am trying to implement a proxy class (specifically for the purposes of multi-versioned document objects (folderish proxies that contain the object Hi Sean, We've been stealing some code from CMFCore.Skinnable to do similar things