[Zope] <dtml-var> html_quote

Holger Hoffmann hohoff@rz.uni-potsdam.de
Thu, 16 Mar 2000 09:34:11 +0100


Chien-pin Wang wrote:
> 
> Hi,
> 
>     Suppose the following folder/Obj structure:
> 
>                 Zope Root
>                     - test
>                         showImage     (DTML Document)
>                         - image
>                             testImage (image object)
>                     - test2
>                         testProgram   (DTML Document)
> 
>     showImage contains one line of code:
>        <A HREF="test"><dtml-var "image.testImage"></A>
>     that shows the testImage properly alone. But if I put
>     <dtml-var "test.showImage"> in testProgram (in test2),
>     I got all "<" as "&lt;" and the ugly code like the
>     following was returned intead of the image with link.
> 
> &lt;A HREF=&quot;test.html&quot;&gt;&lt;dtml-var
> &quot;testImg&quot;&gt;&lt;/A&gt;

Uups, sorry

<dtml-var "test.showImage(_.None, _)">
           ^^^^^^^^^^^^^^ 

but i think you have to call also

<A HREF="test"><dtml-var "image.testImage()"></A>
                                         ^^

... Holger