----- Original Message ----- From: James W. Howe <jwh@allencreek.com>
The product didn't have a 'broken' icon, it just didn't have any of the subobjects. Normally I would have the product name and three items in the product which corresponded to the three ZClasses defined in the product.
Whoops, didn't realize you meant an "open" ZClass-based Product. I don't know what the answer is in that case.
<dtml-call "FooClass_add(_.None, _, NoRedir=1)">
what is the equivalent Python code? The "_" isn't understood as an attribute and if I replaced "_" with self then None isn't found.
thing.FooClass_add(None, self.REQUEST, NoRedir=1) ...may be what you want. "None" doesn't need a '_.' in Python code, and REQUEST can sometimes stand in for "_". Cheers, Evan @ 4-am