# HG changeset patch # User Sylvain Thénault # Date 1294745089 -3600 # Node ID ff9059e144f9462b6c0288b905a209c78bc97bb3 # Parent 33952695295b0aba49b4b57ca76332045beae4b6 [pyviews] document the fact that content is not xml-escaped (closes #1382038) diff -r 33952695295b -r ff9059e144f9 web/views/pyviews.py --- a/web/views/pyviews.py Tue Jan 11 12:20:39 2011 +0100 +++ b/web/views/pyviews.py Tue Jan 11 12:24:49 2011 +0100 @@ -24,6 +24,10 @@ class PyValTableView(View): + """display a list of list of values into an html table. + + Take care, content is NOT xml-escaped. + """ __regid__ = 'pyvaltable' __select__ = match_kwargs('pyvalue') @@ -50,6 +54,10 @@ class PyValListView(View): + """display a list of values into an html list. + + Take care, content is NOT xml-escaped. + """ __regid__ = 'pyvallist' __select__ = match_kwargs('pyvalue')