24 Sep
2003
24 Sep
'03
6:26 a.m.
darkness wrote:
Is there some clean way around this? One might consider that when a call is made to an object from ZPT, and that object has a known argument list, ZPT/Zope should attempt to fill in the arguments to that object just as if it were called from XML-RPC (or directly via a URL).
Is this what you are looking for? <span tal:replace="python:here.MyScript(request['theArg'])" /> the same as <span tal:define="theArg request/theArg" tal:replace="python:here.MyScript(theArg)" /> regards Max M