Implement XEP-0256 (last activity in presence)
mostly useless, but allows to use LastActivity stanzas inside Presence stanzas as well.
This commit is contained in:
parent
1a00a08b7d
commit
bb81fbbdfc
13
slixmpp/plugins/xep_0256/__init__.py
Normal file
13
slixmpp/plugins/xep_0256/__init__.py
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
"""
|
||||||
|
Slixmpp: The Slick XMPP Library
|
||||||
|
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
This file is part of Slixmpp.
|
||||||
|
|
||||||
|
See the file LICENSE for copying permission.
|
||||||
|
"""
|
||||||
|
|
||||||
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
|
from slixmpp.plugins.xep_0256.last_activity_presence import XEP_0256, LastActivity
|
||||||
|
|
||||||
|
register_plugin(XEP_0256)
|
27
slixmpp/plugins/xep_0256/last_activity_presence.py
Normal file
27
slixmpp/plugins/xep_0256/last_activity_presence.py
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
"""
|
||||||
|
Slixmpp: The Slick XMPP Library
|
||||||
|
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
This file is part of Slixmpp.
|
||||||
|
|
||||||
|
See the file LICENSE for copying permission.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import logging
|
||||||
|
|
||||||
|
from slixmpp import Presence
|
||||||
|
from slixmpp.plugins import BasePlugin
|
||||||
|
from slixmpp.xmlstream import register_stanza_plugin
|
||||||
|
from slixmpp.plugins.xep_0012 import stanza, LastActivity
|
||||||
|
|
||||||
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
class XEP_0256(BasePlugin):
|
||||||
|
|
||||||
|
name = 'xep_0256'
|
||||||
|
description = 'XEP-0256: Last Activity in Presence'
|
||||||
|
dependencies = set(['xep_0030'])
|
||||||
|
stanza = stanza
|
||||||
|
|
||||||
|
def plugin_init(self):
|
||||||
|
register_stanza_plugin(Presence, LastActivity)
|
Loading…
Reference in New Issue
Block a user