Hi, Whats the best way to run this code, but for objects in a different directory? <ul> <dtml-in expr="objectValues('DTML Document')"> <li><a href="&dtml-absolute_url;"><dtml-var title_or_id></a></li> </dtml-in> </ul> Thanks, Kevin Sullivan, MCP, A+ Systems Administrator MIT Economics Dept ksull@economics.mit.edu 617-253-8895
hi, something like will do: <dtml-in expr=" folder1.subfolder1.objectValues('DTML Document') + folder1.subfolder2.subsubfolder4.objectValues('DTML Document') + folder2.objectValues('DTML Document') + "> <dtml-var title_or_id></a> </dtml-in> think of folder1.subfolder1 and so on as the "python-paths" to the directories you want to include... cheers, maik Kevin Sullivan wrote:
Hi,
Whats the best way to run this code, but for objects in a different directory?
<ul> <dtml-in expr="objectValues('DTML Document')"> <li><a href="&dtml-absolute_url;"><dtml-var title_or_id></a></li> </dtml-in> </ul>
participants (2)
-
Kevin Sullivan -
Maik Jablonski