[Zope] DTML Syntax contd.

Oliver Frommel oliver@aec.at
Tue, 9 Nov 1999 23:11:31 +0100 (CET)


Hi,

so why do these two pieces of code produce different results? (I thought they
should print the same, according to the with-tag howto)
(the second one prints the title of folder A twice)

<dtml-with A>
  <dtml-var title><br>
  <dtml-var "B.title">
</dtml-with>

<dtml-with A>
 <dtml-var title><br>
 <dtml-with B>
  <dtml-var title>
 </dtml-with>
</dtml-with>


--Oliver