[Erp5-dev] Monkey Patching problem

Łukasz Nowak lukasz.nowak at ventis.com.pl
Tue Sep 4 15:36:12 CEST 2007


Hello,

I'd like to monkey patch Products.ERP5.Document.Resource file.

I've got my own product (Ventis), its contents are:

Ventis/
Ventis/__init__.py:
import ZopePatch
Ventis/ZopePatch.py:
from zLOG import LOG, INFO
LOG('Ventis Patching',INFO,'Resouce Patch')
from Products.Ventis.patches import ResourcePatch
Ventis/patches/
Ventis/patches/__init__.py (empty)
Ventis/patches/ResourcePatch.py:
from Products.ERP5.Document.Resource import Resource
def shufla(self):
  print 'eeek eeeek'
Resource.shufla = shufla

I'm 100% sure that my product is analysed - adding logs into
Ventis/ZopePatch.py and Ventis/patches/ResourcePatch.py shows them
while starting zope.

But when I set breakpoint in Products/ERP5/Document/Resource.py, catch
it and try to invoke shufla(), I've got AttributeError.

What do I do wrong? I've peeked some data from ERP5Type monkeypatching
and all *seems* to be correct.

Thanks for any tips.

Regards,
Luke

PS. Same problem, while trying to monkeypatch
Products.ERP5.Document.Order...
-- 
Łukasz Nowak R&D Ventis http://www.ventis.com.pl/
tel: +48 32 768 16 85 fax: +48 32 392 10 61
``Use the Source, Luke...''



More information about the Erp5-dev mailing list