Mercurial > libervia-web
changeset 182:ec37ec737411
browser side: html_sanitize now manage Line Feed, fixing multi-lines messages in chat widget
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 26 Feb 2013 00:39:19 +0100 |
parents | c0b78a3af06d |
children | a50ce9c06e0e |
files | browser_side/tools.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/browser_side/tools.py Sun Feb 24 18:15:38 2013 +0100 +++ b/browser_side/tools.py Tue Feb 26 00:39:19 2013 +0100 @@ -21,4 +21,4 @@ def html_sanitize(html): """Naive sanitization of HTML""" - return html.replace('<','<').replace('>','>') + return html.replace('<','<').replace('>','>').replace('\n','<br>')