1
0
forked from ScoDoc/ScoDoc

replaced old stripogram by a new HTML parser

This commit is contained in:
Emmanuel Viennet 2021-07-11 22:00:41 +02:00
parent 37839aadd5
commit 1034c096e7
3 changed files with 74 additions and 7 deletions

View File

@ -1,13 +1,80 @@
from stripogram import html2text, html2safehtml
# -*- mode: python -*-
# -*- coding: utf-8 -*-
# permet de conserver quelques tags html
def HTML2SafeHTML(text, convert_br=True):
text = html2safehtml(text, valid_tags=("b", "a", "i", "br", "p"))
##############################################################################
#
# Gestion scolarite IUT
#
# Copyright (c) 1999 - 2021 Emmanuel Viennet. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Emmanuel Viennet emmanuel.viennet@viennet.net
#
##############################################################################
from html.parser import HTMLParser
"""HTML sanitizing function
used to clean user submitted HTML
(Python 3 only)
"""
# permet de conserver les liens
def html_to_safe_html(text, convert_br=True):
# text = html2safehtml(text, valid_tags=("b", "a", "i", "br", "p"))
# New version (jul 2021) with our own parser
text = convert_html_to_text(text)
if convert_br:
return newline_to_br(text)
else:
return text
def convert_html_to_text(s):
parser = HTMLSanitizer()
parser.feed(s)
return parser.text
def newline_to_br(text):
return text.replace("\n", "<br/>")
class HTMLSanitizer(HTMLParser):
def __init__(self, allowed_tags=("i", "b", "em", "br", "p"), **kwargs):
super(HTMLSanitizer, self).__init__(**kwargs)
self.allowed_tags = set(allowed_tags)
self.text = ""
def handle_starttag(self, tag, attrs):
if tag in self.allowed_tags:
self.text += "<{} {}>".format(
tag, ", ".join(['{}="{}"'.format(k, v) for (k, v) in attrs])
)
def handle_endtag(self, tag):
if tag in self.allowed_tags:
self.text += "</" + tag + ">"
def handle_data(self, data):
self.text += data
if __name__ == "__main__":
test_parser = HTMLSanitizer()
test_parser.feed("""<p>Hello world <b z="1" >gras</b> <i a="2">italique</i></p>""")
print(test_parser.text)

View File

@ -239,7 +239,7 @@ _itemsuiviEditor = ndb.EditableTable(
sortkey="item_date desc",
convert_null_outputs_to_empty=True,
output_formators={
"situation": safehtml.HTML2SafeHTML,
"situation": safehtml.html_to_safe_html,
"item_date": ndb.DateISOtoDMY,
},
input_formators={"item_date": ndb.DateDMYtoISO},

View File

@ -768,7 +768,7 @@ _etud_annotationsEditor = ndb.EditableTable(
),
sortkey="date desc",
convert_null_outputs_to_empty=True,
output_formators={"comment": safehtml.HTML2SafeHTML, "date": ndb.DateISOtoDMY},
output_formators={"comment": safehtml.html_to_safe_html, "date": ndb.DateISOtoDMY},
)
@ -807,7 +807,7 @@ _appreciationsEditor = ndb.EditableTable(
),
sortkey="date desc",
convert_null_outputs_to_empty=True,
output_formators={"comment": safehtml.HTML2SafeHTML, "date": ndb.DateISOtoDMY},
output_formators={"comment": safehtml.html_to_safe_html, "date": ndb.DateISOtoDMY},
)
appreciations_create = _appreciationsEditor.create