RE: [Zope] DTML namespace puzzle

2001-01-30 Thread Ron Bickers
It was posted to zope-dev, which I should probably subscribe to. http://lists.zope.org/pipermail/zope-dev/2001-January/009018.html Thank you! Exactly what I needed. ___ Ron Bickers Logic Etc, Inc. [EMAIL PROTECTED] > -Original Message- > From: Dieter Maurer [mailto

RE: [Zope] DTML namespace puzzle

2001-01-30 Thread Dieter Maurer
Ron Bickers writes: > > I realized the DTML method > call from the Python Script included 'container' as the first parameter (as > shown below) > I don't understand how Python Scripts can/should call DTML methods. That > is, are there magical parameters?... About a week ago, I post

RE: [Zope] DTML namespace puzzle

2001-01-29 Thread Ron Bickers
> -Original Message- > From: Dieter Maurer [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 29, 2001 1:17 PM > To: Ron Bickers > Cc: [EMAIL PROTECTED] > Subject: RE: [Zope] DTML namespace puzzle > > of the namespace. "dtml-with" could but it is ver

RE: [Zope] DTML namespace puzzle

2001-01-29 Thread Dieter Maurer
Ron Bickers writes: > method(num=num SESSION=session): > > > > raises KeyError "num". > > SESSION['info'] does not have a key "num". The only num is passed as a > parameter. Did you use SQLSession to try to reproduce it, or just another > mapping? Could SQLSession have

RE: [Zope] DTML namespace puzzle

2001-01-28 Thread Ron Bickers
> -Original Message- > From: Dieter Maurer [mailto:[EMAIL PROTECTED]] > Sent: Sunday, January 28, 2001 3:43 PM > To: Ron Bickers > Cc: [EMAIL PROTECTED] > Subject: Re: [Zope] DTML namespace puzzle > Does "SESSION['info']" has a key "num&quo

Re: [Zope] DTML namespace puzzle

2001-01-28 Thread Dieter Maurer
Ron Bickers writes: > I have a Python Script (sendOrder) that calls a DTML method (orderMessage) > as follows: > > container.orderMessage(num=num, SESSION=SESSION) > > orderMessage contains the following: > > > Order Number: > Blah blah other session variables that work fine