> > We've been customizing our event class mappings quite a bit. I remember > putting a particular Python expression on the Transform (on the event class, > drop-down arrow menu | More| Transform) page of an event class, but I can't > remember which one. > > Is there any way to find the event classes for which we've supplied transform > expressions, or search for a particular expression? >
You could do the following in zendmd: Code: >>> for ec in dmd.Events.getSubOrganizers(): ... if ec.transform: ... print ec.getOrganizerName() -------------------- m2f -------------------- Read this topic online here: http://community.zenoss.com/forums/viewtopic.php?p=15590#15590 -------------------- m2f -------------------- _______________________________________________ zenoss-users mailing list [email protected] http://lists.zenoss.org/mailman/listinfo/zenoss-users
