[Zope] <dtml-with> Question

Kevin Dangoor kid@kendermedia.com
Sun, 10 Oct 1999 14:16:12 -0400


-----Original Message-----
From: Sascha Matzke <matzke@metabox.de>
To: zope@zope.org <zope@zope.org>
Date: Sunday, October 10, 1999 2:03 PM
Subject: [Zope] <dtml-with> Question


>I want to do something like
>
><dtml-with "objA.objB.objC">
>  something
></dtml-with>
>
>but the "objA..."-part is in a string variable.
>
><dtml-with "stringvar"> or <dtml-with stringvar> don't work...

It sounds like you're basically trying to do a namespace lookup.

<dtml-with "_[objA]">
should do what you want.

Kevin