[Zope] Re: Parameters for external methods and page templates
Dieter Maurer
dieter@handshake.de
Mon, 16 Sep 2002 20:11:30 +0200
Andreas Tille writes:
> I can use it in dtml as
>
> <img src="inzidenz?argument=1" alt="Comment" />
In TAL, it looks the same ;-)
It's because it is pure HTMLm not DTML at all.
> ....
> Moreover I have real trouble in debugging the correctness of the
> parameter values. I tried something like
>
> fp = open('/tmp/my_debug.log', 'a')
> print >>fp, "argument = " + argument
> fp.close()
There are only two possible reasons: the code is not executed or raises
an exception.
Dieter