summaryrefslogtreecommitdiff
path: root/sleekxmpp
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-01-15 22:51:59 -0800
committerLance Stout <lancestout@gmail.com>2012-01-15 22:51:59 -0800
commit7b854a190e877cc70da61ef076e61eb8b8c8c498 (patch)
tree5d98ff5969e1085a9e7aa029d442f7059bf35cba /sleekxmpp
parent947d1ffbb3be39670729264a7f53c028d7ecb2e3 (diff)
downloadslixmpp-7b854a190e877cc70da61ef076e61eb8b8c8c498.tar.gz
slixmpp-7b854a190e877cc70da61ef076e61eb8b8c8c498.tar.bz2
slixmpp-7b854a190e877cc70da61ef076e61eb8b8c8c498.tar.xz
slixmpp-7b854a190e877cc70da61ef076e61eb8b8c8c498.zip
Tidy up and update the plugin __init__ file.
Diffstat (limited to 'sleekxmpp')
-rw-r--r--sleekxmpp/plugins/__init__.py33
1 files changed, 28 insertions, 5 deletions
diff --git a/sleekxmpp/plugins/__init__.py b/sleekxmpp/plugins/__init__.py
index c0b1121b..0b2fa119 100644
--- a/sleekxmpp/plugins/__init__.py
+++ b/sleekxmpp/plugins/__init__.py
@@ -5,9 +5,32 @@
See the file LICENSE for copying permission.
"""
-__all__ = ['xep_0004', 'xep_0009', 'xep_0012', 'xep_0030', 'xep_0033',
- 'xep_0045', 'xep_0050', 'xep_0060', 'xep_0066', 'xep_0082',
- 'xep_0085', 'xep_0086', 'xep_0092', 'xep_0128', 'xep_0199',
- 'xep_0203', 'xep_0224', 'xep_0249', 'gmail_notify']
-# Don't automatically load xep_0078
+__all__ = [
+ # Non-standard
+ 'gmail_notify', # Gmail searching and notifications
+
+ # XEPS
+ 'xep_0004', # Data Forms
+ 'xep_0009', # Jabber-RPC
+ 'xep_0012', # Last Activity
+ 'xep_0030', # Service Discovery
+ 'xep_0033', # Extended Stanza Addresses
+ 'xep_0045', # Multi-User Chat (Client)
+ 'xep_0050', # Ad-hoc Commands
+ 'xep_0059', # Result Set Management
+ 'xep_0060', # Pubsub (Client)
+ 'xep_0066', # Out-of-band Transfer
+# 'xep_0078', # Non-SASL auth. Don't automatically load
+ 'xep_0082', # XMPP Date and Time Profiles
+ 'xep_0085', # Chat State Notifications
+ 'xep_0086', # Legacy Error Codes
+ 'xep_0092', # Software Version
+ 'xep_0115', # Entity Capabilities
+ 'xep_0128', # Extended Service Discovery
+ 'xep_0199', # Ping
+ 'xep_0202', # Entity Time
+ 'xep_0203', # Delayed Delivery
+ 'xep_0224', # Attention
+ 'xep_0249', # Direct MUC Invitations
+]