summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0258/__init__.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-06-18 01:32:58 -0700
committerLance Stout <lancestout@gmail.com>2012-06-18 22:07:39 -0700
commit5c4f7bfe8b122874475d8a4d52b2f8212dce6231 (patch)
tree69c46f29501d6cefff55ce050fdd6650c2975c49 /sleekxmpp/plugins/xep_0258/__init__.py
parent0b7f1340212b1bcca349f0bd21e910078b6e78ce (diff)
downloadslixmpp-5c4f7bfe8b122874475d8a4d52b2f8212dce6231.tar.gz
slixmpp-5c4f7bfe8b122874475d8a4d52b2f8212dce6231.tar.bz2
slixmpp-5c4f7bfe8b122874475d8a4d52b2f8212dce6231.tar.xz
slixmpp-5c4f7bfe8b122874475d8a4d52b2f8212dce6231.zip
Initial support for XEP-0258
Diffstat (limited to 'sleekxmpp/plugins/xep_0258/__init__.py')
-rw-r--r--sleekxmpp/plugins/xep_0258/__init__.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0258/__init__.py b/sleekxmpp/plugins/xep_0258/__init__.py
new file mode 100644
index 00000000..516a3706
--- /dev/null
+++ b/sleekxmpp/plugins/xep_0258/__init__.py
@@ -0,0 +1,18 @@
+"""
+ SleekXMPP: The Sleek XMPP Library
+ Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
+ This file is part of SleekXMPP.
+
+ See the file LICENSE for copying permission.
+"""
+
+from sleekxmpp.plugins.base import register_plugin
+
+from sleekxmpp.plugins.xep_0258 import stanza
+from sleekxmpp.plugins.xep_0258.stanza import SecurityLabel, Label
+from sleekxmpp.plugins.xep_0258.stanza import DisplayMarking, EquivalentLabel
+from sleekxmpp.plugins.xep_0258.stanza import ESSLabel, Catalog, CatalogItem
+from sleekxmpp.plugins.xep_0258.security_labels import XEP_0258
+
+
+register_plugin(XEP_0258)