Re: [Zope] Using DTML - I'm too stupid
10 Apr
1999
10 Apr
'99
4:36 p.m.
Python: print T(None, {'t': 'abc', 'w': 'DEF'})
DTML: <!--#var t--> <!--#var w-->
Why can I not use dictionaries within dictonaries? Python: print T(None, {'t': 'abc', 'w': {'A': 'DEF'}}) DTML: <!--#var t--> <!--#var w['A']--> How could I use n-dimensional structures? Oliver
10 Apr
10 Apr
3:49 p.m.
New subject: [Zope] Using DTML - I'm too stupid
On Sat, 10 Apr 1999, Oliver Thuns wrote:
Why can I not use dictionaries within dictonaries?
You can.
Python: print T(None, {'t': 'abc', 'w': {'A': 'DEF'}})
DTML: <!--#var t--> <!--#var w['A']-->
<!--#var "w['A']"--> This works for me.
How could I use n-dimensional structures?
Oliver
Oleg. ---- Oleg Broytmann National Research Surgery Centre http://sun.med.ru/~phd/ Programmers don't die, they just GOSUB without RETURN.
9857
Age (days ago)
9857
Last active (days ago)
1 comments
2 participants
participants (2)
-
Oleg Broytmann -
Oliver Thuns