Re: [Zope] .html from python

2008-10-18 Thread Andreas Jung
On 17.10.2008 22:06 Uhr, Garry Saddington wrote: How would I do this: dtml_method = context.singleitemview.html dtml_method = getattr(context, 'singleitemview.html') ? -aj begin:vcard fn:Andreas Jung n:Jung;Andreas org:ZOPYX Ltd. Co. KG adr;quoted-printable:;;Charlottenstr.

Re: [Zope] .html from python

2008-10-17 Thread Andrew Milton
+---[ Garry Saddington ]-- | How would I do this: | | dtml_method = context.singleitemview.html | s = | return s dtml_method = getattr(context, 'singleitemview.html') return dtml_method(client=context, REQUEST={}, foo='bar') -- Andrew Milton [EMAIL PROTECTED]

Re: [Zope] .html from python

2008-10-17 Thread Garry Saddington
On Friday 17 October 2008 21:30, Andrew Milton wrote: +---[ Garry Saddington ]-- | How would I do this: | | dtml_method = context.singleitemview.html | s = | return s dtml_method = getattr(context, 'singleitemview.html') return dtml_method(client=context,