2009-06-03 22:56:51 +00:00
|
|
|
"""
|
|
|
|
SleekXMPP: The Sleek XMPP Library
|
2010-07-20 15:19:49 +00:00
|
|
|
Copyright (C) 2010 Nathanael C. Fritz
|
2009-06-03 22:56:51 +00:00
|
|
|
This file is part of SleekXMPP.
|
2010-10-21 02:43:53 +00:00
|
|
|
|
2010-07-20 15:19:49 +00:00
|
|
|
See the file LICENSE for copying permission.
|
2009-06-03 22:56:51 +00:00
|
|
|
"""
|
2011-08-06 07:45:18 +00:00
|
|
|
|
2012-03-12 01:09:45 +00:00
|
|
|
from sleekxmpp.plugins.base import PluginManager, PluginNotFound, \
|
|
|
|
BasePlugin, register_plugin
|
|
|
|
|
2012-01-16 06:51:59 +00:00
|
|
|
__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)
|
2012-03-11 23:32:16 +00:00
|
|
|
'xep_0047', # In-Band Bytestreams
|
2012-01-16 06:51:59 +00:00
|
|
|
'xep_0050', # Ad-hoc Commands
|
|
|
|
'xep_0059', # Result Set Management
|
|
|
|
'xep_0060', # Pubsub (Client)
|
2012-03-11 23:32:16 +00:00
|
|
|
'xep_0066', # Out of Band Data
|
|
|
|
'xep_0077', # In-Band Registration
|
2012-01-16 06:51:59 +00:00
|
|
|
# 'xep_0078', # Non-SASL auth. Don't automatically load
|
2012-03-10 20:54:31 +00:00
|
|
|
'xep_0080', # User Location
|
2012-01-16 06:51:59 +00:00
|
|
|
'xep_0082', # XMPP Date and Time Profiles
|
|
|
|
'xep_0085', # Chat State Notifications
|
|
|
|
'xep_0086', # Legacy Error Codes
|
|
|
|
'xep_0092', # Software Version
|
2012-03-11 07:32:20 +00:00
|
|
|
'xep_0107', # User Mood
|
2012-03-11 19:37:54 +00:00
|
|
|
'xep_0108', # User Activity
|
2012-01-16 06:51:59 +00:00
|
|
|
'xep_0115', # Entity Capabilities
|
2012-03-10 20:48:35 +00:00
|
|
|
'xep_0118', # User Tune
|
2012-01-16 06:51:59 +00:00
|
|
|
'xep_0128', # Extended Service Discovery
|
2012-03-10 20:48:35 +00:00
|
|
|
'xep_0163', # Personal Eventing Protocol
|
2012-03-11 08:22:28 +00:00
|
|
|
'xep_0172', # User Nickname
|
2012-03-11 23:32:16 +00:00
|
|
|
'xep_0184', # Message Receipts
|
2012-01-16 06:51:59 +00:00
|
|
|
'xep_0199', # Ping
|
|
|
|
'xep_0202', # Entity Time
|
|
|
|
'xep_0203', # Delayed Delivery
|
|
|
|
'xep_0224', # Attention
|
|
|
|
'xep_0249', # Direct MUC Invitations
|
|
|
|
]
|