[Zope] <dtml-with> confusion
Dan L. Pierson
dan@sol.control.com
Wed, 9 Aug 2000 17:06:49 -0400 (EDT)
Chris Withers writes:
> Can someone explain the difference between:
>
> <dtml-with "PARENTS[-1]">
> <dtml-with squishdot>
> ...do stuff here...
> </dtml-with>
> </dtml-with>
Push the root (PARENTS[-1]) on the namespace stack.
Push squishdot on the namespace stack.
...do stuff here...
> <dtml-with "PARENTS[-1].squishdot">
> ...do stuff here...
> </dtml-with>
Push PARENTS[-1].squishdot on the namespace stack.
...do stuff here...
Now, when would this make a difference?