From 39f5c04f94a7419bc8bd33f2d931b180ffc98da7 Mon Sep 17 00:00:00 2001 From: Michele Comitini Date: Sat, 22 Sep 2012 23:14:15 +0200 Subject: [PATCH] added comment --- gluon/html.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gluon/html.py b/gluon/html.py index 362b8597..0909290c 100644 --- a/gluon/html.py +++ b/gluon/html.py @@ -32,6 +32,7 @@ regex_crlf = re.compile('\r|\n') join = ''.join +# name2codepoint is incomplete respect to xhtml (and xml): 'apos' is missing. entitydefs = dict(map(lambda (k,v): (k, unichr(v).encode('utf-8')), name2codepoint.iteritems())) entitydefs.setdefault('apos', u"'")