summaryrefslogtreecommitdiff
path: root/sleekxmpp/stanza/htmlim.py
blob: 24b68592e74bac6f4402bb0feeea1dfde4d85679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from .. xmlstream.stanzabase import ElementBase, ET

class HTMLIM(ElementBase):
	namespace = 'http://jabber.org/protocol/xhtml-im'
	name = 'html'
	plugin_attrib = 'html'
	interfaces = set(('html'))
	plugin_attrib_map = set()
	plugin_xml_map = set()

	def setHtml(self, html):
		if issinstance(html, str):
			html = ET.XML(html)
		if html.find('{http://www.w3.org/1999/xhtml}body') is None:
			body = ET.Element('{http://www.w3.org/1999/xhtml}body')
			body.append(html)
		else:
			body = html
		self.xml.append(html)
	
	def getHtml(self):
		html = self.xml.find('{http://www.w3.org/1999/xhtml}body')
		if html is None: return ''
		return __str__(html)
	
	def delHtml(self):
		return self.__del__()