autorisation des tags form, input et textarea.
authorBenoît Pin <pin@cri.ensmp.fr>
Mon, 29 Sep 2014 08:52:47 +0000 (10:52 +0200)
committerBenoît Pin <pin@cri.ensmp.fr>
Mon, 29 Sep 2014 08:52:47 +0000 (10:52 +0200)
__init__.py

index fe63530..b269824 100755 (executable)
@@ -98,7 +98,12 @@ validTags = default_cmf_utils.NASTY_TAGS.copy()
 for tag in validTags.keys() :
     validTags[tag] = 1
 
-VALID_TAGS = {'font': 1, 'param' : 1, 'iframe' : 1}
+VALID_TAGS = {'font': 1,
+              'param' : 1,
+              'iframe' : 1,
+              'form' : 1,
+              'input' : 1,
+              'textarea' : 1}
 
 validTags.update(VALID_TAGS)