Move XEP-0082 to new system.

This commit is contained in:
Lance Stout 2012-03-11 22:42:30 -07:00
parent 23cc62fe7c
commit 6d855ec06c

View file

@ -9,7 +9,7 @@
import logging import logging
import datetime as dt import datetime as dt
from sleekxmpp.plugins.base import base_plugin from sleekxmpp.plugins import BasePlugin, register_plugin
from sleekxmpp.thirdparty import tzutc, tzoffset, parse_iso from sleekxmpp.thirdparty import tzutc, tzoffset, parse_iso
@ -184,7 +184,8 @@ def datetime(year=None, month=None, day=None, hour=None,
return value return value
return format_datetime(value) return format_datetime(value)
class xep_0082(base_plugin):
class XEP_0082(BasePlugin):
""" """
XEP-0082: XMPP Date and Time Profiles XEP-0082: XMPP Date and Time Profiles
@ -205,11 +206,12 @@ class xep_0082(base_plugin):
parse -- Convert a time string into a Python datetime object. parse -- Convert a time string into a Python datetime object.
""" """
name = 'xep_0082'
description = 'XEP-0082: XMPP Date and Time Profiles'
dependencies = set()
def plugin_init(self): def plugin_init(self):
"""Start the XEP-0082 plugin.""" """Start the XEP-0082 plugin."""
self.xep = '0082'
self.description = 'XMPP Date and Time Profiles'
self.date = date self.date = date
self.datetime = datetime self.datetime = datetime
self.time = time self.time = time
@ -217,3 +219,6 @@ class xep_0082(base_plugin):
self.format_datetime = format_datetime self.format_datetime = format_datetime
self.format_time = format_time self.format_time = format_time
self.parse = parse self.parse = parse
register_plugin(XEP_0082)