[Zope-dev] manage_changeProperties and the "lines" property

Kevin Dangoor kid@kendermedia.com
Wed, 22 Sep 1999 15:24:41 -0400


-----Original Message-----
From: Dan Rusch <dgr427@gb.frontiernet.net>
To: zope-dev@zope.org <zope-dev@zope.org>
Date: Wednesday, September 22, 1999 2:48 PM
Subject: [Zope-dev] manage_changeProperties and the "lines" property


>Has anyone (or does anyone "know" how to) changed an existing  "lines"
>property of a DTML Document using the manage_changeProperties DTML
>Document method?

Assuming you're doing this within a DTML Method in the same container as the
DTML Document:

<dtml-with docID>
<dtml-call "manage_changeProperties({"linesprop" : ['one', 'two',
'five']})">
</dtml-with>

Kevin