14 Apr
2005
14 Apr
'05
4:20 p.m.
Tuples of length 2 just don't seem to work in DTML. I don't know what it is, certainly never seen any documented explanation before. The simple test below explains itself . Can anyone explain why the results are what they are? I'd go to the collector if it didn't seem like such a glaringly obvious quirk. I figure there must be some sensible reason why this happens, but my manual is missing that page. <pre> <dtml-let tt="[('a',),('b','c',),('d','e','f')]"> tt: <dtml-var tt> <dtml-in tt> tt[<dtml-var sequence-index>]: <dtml-var sequence-item> </dtml-in> </dtml-let> </pre> Jim