[Zope] call a dtml doc in subfolder?

Chris Withers chrisw@nipltd.com
Wed, 13 Sep 2000 10:38:01 +0100


Curtis Maloney wrote:
> 
> On Wed, 13 Sep 2000, sean@horse101.com wrote:
> > Hi,
> > I want to call a dtml doc with <dtml-var docname> where docname
> > is in a subfolder.  What is the syntax to do this?
> >
> 
> This is where we find out why you don't put a . in an object name. (o8
> 
> <dtml-var folder.docname>

'cept it probably won't work :P

The dtml-with way is better, but if you must:

<dtml-var "folder.docname(_.None,_)">

Chris