diff -r f178182b1305 -r af4d8f75c5db web/views/plots.py --- a/web/views/plots.py Tue Jul 07 13:25:24 2009 +0200 +++ b/web/views/plots.py Tue Jul 07 13:26:44 2009 +0200 @@ -13,7 +13,7 @@ from simplejson import dumps from logilab.common import flatten -from logilab.mtconverter import html_escape +from logilab.mtconverter import xml_escape from cubicweb.utils import make_uid, UStringIO, datetime2ticks from cubicweb.vregistry import objectify_selector @@ -167,7 +167,7 @@ piechart.size(width, height) if self.title: piechart.title(self.title) - self.w(u'' % html_escape(piechart.url)) + self.w(u'' % xml_escape(piechart.url)) class PieChartView(baseviews.AnyRsetView): id = 'piechart'