31 May
2004
31 May
'04
5:49 p.m.
Mark Barratt wrote at 2004-5-31 13:10 +0100:
Debugging a dtml page that won't save, found
<dtml-if expr="exec=='1'">checked</dtml-if>
is the culprit.
exec is a Python reserved word, I discover. Can I use it anyway through some kind of escape notation in the expression,
"_['exec']" (for simple values) or "_.getitem('exec')" (for callable objects that should not be called). -- Dieter