# HG changeset patch # User souliane # Date 1453200667 -3600 # Node ID 160b0d4c6520571daf020d34cf53f10b39f6d421 # Parent 90ae9a2462c2fb070f96bc587f792a494a1217df plugin XEP-0071, XEP-0277: method clean_xhtml has been renamed to cleanXHTML diff -r 90ae9a2462c2 -r 160b0d4c6520 src/plugins/plugin_xep_0071.py --- a/src/plugins/plugin_xep_0071.py Tue Jan 19 11:49:25 2016 +0100 +++ b/src/plugins/plugin_xep_0071.py Tue Jan 19 11:51:07 2016 +0100 @@ -118,7 +118,7 @@ if xhtml: raise exceptions.DataError(_("Can't have xhtml and rich content at the same time")) if xhtml: - d = self.synt_plg.clean_xhtml(xhtml) + d = self.synt_plg.cleanXHTML(xhtml) d.addCallback(syntax_converted) return d diff -r 90ae9a2462c2 -r 160b0d4c6520 src/plugins/plugin_xep_0277.py --- a/src/plugins/plugin_xep_0277.py Tue Jan 19 11:49:25 2016 +0100 +++ b/src/plugins/plugin_xep_0277.py Tue Jan 19 11:51:07 2016 +0100 @@ -177,7 +177,7 @@ raise failure.Failure(exceptions.DataError(_('Content of type XHTML must declare its namespace!'))) key = check_conflict(u'{}_xhtml'.format(elem.name)) data = data_elt.toXml() - microblog_data[key] = yield self.host.plugins["TEXT-SYNTAXES"].clean_xhtml(data) + microblog_data[key] = yield self.host.plugins["TEXT-SYNTAXES"].cleanXHTML(data) else: key = check_conflict(elem.name) microblog_data[key] = unicode(elem) @@ -365,7 +365,7 @@ if '{}_xhtml'.format(elem_name) in data: raise failure.Failure(exceptions.DataError(_("Can't have xhtml and rich content at the same time"))) else: # clean the XHTML input - converted = yield synt.clean_xhtml(data[attr]) + converted = yield synt.cleanXHTML(data[attr]) xml_content = u'
{converted}
'.format( ns=NS_XHTML, diff -r 90ae9a2462c2 -r 160b0d4c6520 src/test/test_plugin_misc_text_syntaxes.py --- a/src/test/test_plugin_misc_text_syntaxes.py Tue Jan 19 11:49:25 2016 +0100 +++ b/src/test/test_plugin_misc_text_syntaxes.py Tue Jan 19 11:51:07 2016 +0100 @@ -76,14 +76,14 @@ """ - d = self.text_syntaxes.clean_xhtml(self.EVIL_HTML1) + d = self.text_syntaxes.cleanXHTML(self.EVIL_HTML1) d.addCallback(self.assertEqualXML, expected, ignore_blank=True) return d def test_styles_sanitise(self): expected = u"""

test retest
toto

""" - d = self.text_syntaxes.clean_xhtml(self.EVIL_HTML2) + d = self.text_syntaxes.cleanXHTML(self.EVIL_HTML2) d.addCallback(self.assertEqualXML, expected) return d