[Zope] DTMLDocument content - "html quoted" or not
Dieter Maurer
dieter@handshake.de
Wed, 12 Jul 2000 00:54:12 +0200 (CEST)
Michael Gutmann writes:
> Aleksander Salwa schrieb am Fre, 07 Jul 2000:
> <...>
> >In mentioned method, to render document, I wrote:
> >
> ><dtml-var this>
> >
> >But this outputs html quoted text (so I see HTML and DTML tags in browser,
> >instead of formatting and variables).
> Hmm, looks like a problem I had a few days ago. Maybe
>
> <dtml-var "this.(_.None,_)">
"this" is a parameter less method, thus you call is like "this()".
Try <dtml-var "this()(_.None,_)">.
Dieter