[Zope] <dtml-if "&dtml-var; != &dtml.-var;">

Danny William Adair danny@adair.net
Mon, 30 Jul 2001 16:25:26 +1200


>I don't want to create a python script for this simple problem.
>html_quote is a DocumentTemplate function, but not exported, or?

I do that with the following PythonScript:

----------------------------------------------------------
ID: htmlquote
Parameter List: *args
----------------------------------------------------------
from Products.PythonScripts.standard import html_quote
from string import join
res = []
for arg in args: res.append(html_quote(arg))
return join(res, '\n')
----------------------------------------------------------

This is the easiest and fastest solution I could find to the "html_quote 
problem"... sorry, I also would have loved to do it without a python script...

hth,
Danny