[Zope-dev] ZClass arguments dilemma

Kevin Dangoor kid@kendermedia.com
Fri, 28 Apr 2000 19:04:21 -0400


----- Original Message -----
From: "Kevin Howe" <khowe@performance-net.com>
To: "ZOPE-Dev Mailing List" <zope-dev@zope.org>
Sent: Friday, April 28, 2000 6:12 PM
Subject: [Zope-dev] ZClass arguments dilemma


> Example:
>
>     <dtml-with myZClassInstance>
>        <dtml-var "myMethod( self, link='http://domain' )">
>     </dtml-with>
>
> What is the correct way to go about this?

<dtml-var "myMethod(_.None, _, link='http://domain')">

(_.None is the "client object"... most important those is passing in the _
namespace.)

Kevin