call a dtml doc in subfolder?
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? --Sean
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?
<dtml-with subfolder> <dtml-var docname> </dtml-with> HTH, -- Tim Cook -- Cook Information Systems | Office: (901) 884-4126 8am-5pm CDT * Specializing in Open Source Business Systems * FreePM Project Coordinator http://www.freepm.org OSHCA Founding Supporter http://www.oshca.org
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> Simple enough? (o8
--Sean
Have a better one, Curtis.
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
participants (4)
-
Chris Withers -
Curtis Maloney -
sean@horse101.com -
Tim Cook