Re: [Zope] renaming python input params in DTML

2001-01-15 Thread Dieter Maurer
Lee writes: ... I have a Python method expecting 'text' as a parameter ... ... The Python method, testSQL, returns 'result'. ... dtml-in expr="REQUEST.form.items()" dtml-in expr="testSQL(text='dtml-var sequence-keyxdtml-var sequence-item')" dtml-var result /dtml-in/dtml-in

[Zope] renaming python input params in DTML

2001-01-14 Thread Lee
Hi, I am having a problem passing in a variable to a Python method, which is obtained from the REQUEST object - I'd really appreciate someone's insight into how to correctly go about this. I have a form that submits a parameter named '9728430xp0xclasstest' with a value = 7 to a DTML method. I

RE: [Zope] renaming python input params in DTML

2001-01-14 Thread Randall F. Kern
tSQL(text=_['sequence-key'] + 'x' + _['sequence-item'])" dtml-var result /dtml-in/dtml-in -Randy -Original Message- From: Lee [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 14, 2001 1:23 PM To: [EMAIL PROTECTED] Subject: [Zope] renaming python input params in DTML Hi,