[Zope] dtml-return question

Martijn Faassen faassen@vet.uu.nl
Mon, 17 Jan 2000 19:16:14 +0100


Shalabh Chaturvedi wrote:
[snip]
> I think what you need is this (untested):
> 
> <dtml-with "/path/to/folder_with_newsitems">

Common mistake, but this can't work, you need a Python expression between
"..", not an URL path, so:

<dtml-with "PARENTS[-1].path.to.folder_with_newsitems">

Or something like that.

Regards,

Martijn