30 May
1999
30 May
'99
4:33 a.m.
In an external method, is there a simple way to get a fully rendered html representation of a zope dtml method/document ? eg, I can loop through all the things I want using types = ('DTML Document','DTML Method') # meta types to snarf for t in types: for fooname,foo in self.objectItems([t]): With dtml method foo, I can call str(foo) and get an html quoted version complete with zope tags...not quite what I had in mind. I've tried HTML(foo) from DT_HTML without success...is there some simple way to do this !?