4 Oct
2001
4 Oct
'01
4:09 p.m.
When stating which icon to use for a python product you do that like this in __init__.py icon="event.gif" But what about subclasses which are object on their own? They don't use the initialize() method. I have tried: class SubClassObject(ObjectManager, etc): meta_type='Event' icon='event.gif' where event.gif is a valid gif next to the .py file I write this in. That didn't work! So, I have also tried: icon="misc_/MyProduct/event.gif" and icon="misc_/MyProduct/event" and icon="/misc_/MyProduct/event.gif" and icon="/misc_/MyProduct/event" Nothing has worked? Zope 2.4.0 What's the trick? Peter