2 Apr
2003
2 Apr
'03
6:54 p.m.
Danny W. Adair wrote at 2003-4-2 11:56 +1200:
Now my problem: ---------------------------------------------------------------------------------------------------- <span tal:define="Log root/path/to/Log" tal:replace="Log/show_entries">The log entries of Log</span> ---------------------------------------------------------------------------------------------------- won't work as (I) expected. Apparently - although I say "Log/show_entries", the ZPT passes "here" as the client to "show_entries".
If you do not like this, pass arguments explicitely to "show_entries": ... tal:replace="python Log.show_entries(Log,request)" ... Dieter