[Zope] URL quoting in python

Dieter Maurer dieter@handshake.de
Thu, 20 Jul 2000 23:13:25 +0200 (CEST)


Chris Withers writes:
 > How about doing the equivalent on html_quote in python?
from DocumentTemplate. import DT_Util

def html_quote(str):
  return DT_Util.html_quote(str)



Dieter