mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-30 19:19:55 +00:00
added fromXML/getXML compatiblity to the new xep-0004 w/ deprecated warnings
This commit is contained in:
parent
16104b6e56
commit
130a148d34
2 changed files with 11 additions and 0 deletions
|
@ -21,6 +21,7 @@ from . import base
|
||||||
import logging
|
import logging
|
||||||
from xml.etree import cElementTree as ET
|
from xml.etree import cElementTree as ET
|
||||||
import copy
|
import copy
|
||||||
|
import logging
|
||||||
#TODO support item groups and results
|
#TODO support item groups and results
|
||||||
|
|
||||||
class old_0004(base.base_plugin):
|
class old_0004(base.base_plugin):
|
||||||
|
@ -33,6 +34,7 @@ class old_0004(base.base_plugin):
|
||||||
def post_init(self):
|
def post_init(self):
|
||||||
base.base_plugin.post_init(self)
|
base.base_plugin.post_init(self)
|
||||||
self.xmpp.plugin['xep_0030'].add_feature('jabber:x:data')
|
self.xmpp.plugin['xep_0030'].add_feature('jabber:x:data')
|
||||||
|
logging.warning("This implementation of XEP-0004 is deprecated.")
|
||||||
|
|
||||||
def handler_message_xform(self, xml):
|
def handler_message_xform(self, xml):
|
||||||
object = self.handle_form(xml)
|
object = self.handle_form(xml)
|
||||||
|
|
|
@ -35,6 +35,15 @@ class Form(ElementBase):
|
||||||
field['options'] = options
|
field['options'] = options
|
||||||
return field
|
return field
|
||||||
|
|
||||||
|
def getXML(self):
|
||||||
|
logging.warning("Form.getXML() is deprecated API compatibility with plugins/old_0004.py")
|
||||||
|
return self.xml
|
||||||
|
|
||||||
|
def fromXML(self, xml):
|
||||||
|
logging.warning("Form.fromXML() is deprecated API compatibility with plugins/old_0004.py")
|
||||||
|
n = Form(xml=xml)
|
||||||
|
return n
|
||||||
|
|
||||||
def addItem(self, values):
|
def addItem(self, values):
|
||||||
itemXML = ET.Element('{%s}item' % self.namespace)
|
itemXML = ET.Element('{%s}item' % self.namespace)
|
||||||
self.xml.append(itemXML)
|
self.xml.append(itemXML)
|
||||||
|
|
Loading…
Reference in a new issue