summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0334/hints.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-06-04 19:34:12 +0200
committermathieui <mathieui@mathieui.net>2016-06-04 19:34:12 +0200
commitffced0ed9a605f30c0ab54d02fe12e5d37eb24a0 (patch)
treebf5adcbdb9cd15dac648a57631c56e382369d828 /slixmpp/plugins/xep_0334/hints.py
parente7248d9af9dd45839565c8e5322e37d55dd5c6d2 (diff)
downloadslixmpp-ffced0ed9a605f30c0ab54d02fe12e5d37eb24a0.tar.gz
slixmpp-ffced0ed9a605f30c0ab54d02fe12e5d37eb24a0.tar.bz2
slixmpp-ffced0ed9a605f30c0ab54d02fe12e5d37eb24a0.tar.xz
slixmpp-ffced0ed9a605f30c0ab54d02fe12e5d37eb24a0.zip
Add a xep-0334 plugin
Diffstat (limited to 'slixmpp/plugins/xep_0334/hints.py')
-rw-r--r--slixmpp/plugins/xep_0334/hints.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/slixmpp/plugins/xep_0334/hints.py b/slixmpp/plugins/xep_0334/hints.py
new file mode 100644
index 00000000..5f86eecb
--- /dev/null
+++ b/slixmpp/plugins/xep_0334/hints.py
@@ -0,0 +1,28 @@
+"""
+ Slixmpp: The Slick XMPP Library
+ Copyright (C) 2016 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 Message
+from slixmpp.plugins import BasePlugin
+from slixmpp.xmlstream import register_stanza_plugin
+from slixmpp.plugins.xep_0334 import stanza, Store, NoStore, NoPermanentStore, NoCopy
+
+log = logging.getLogger(__name__)
+
+class XEP_0334(BasePlugin):
+
+ name = 'xep_0334'
+ description = 'XEP-0334: Message Processing Hints'
+ stanza = stanza
+
+ def plugin_init(self):
+ register_stanza_plugin(Message, Store)
+ register_stanza_plugin(Message, NoStore)
+ register_stanza_plugin(Message, NoPermanentStore)
+ register_stanza_plugin(Message, NoCopy)