2009-06-03 15:56:51 -07:00
|
|
|
"""
|
|
|
|
SleekXMPP: The Sleek XMPP Library
|
2010-07-20 08:19:49 -07:00
|
|
|
Copyright (C) 2010 Nathanael C. Fritz
|
2009-06-03 15:56:51 -07:00
|
|
|
This file is part of SleekXMPP.
|
2010-10-20 19:43:53 -07:00
|
|
|
|
2010-07-20 08:19:49 -07:00
|
|
|
See the file LICENSE for copying permission.
|
2009-06-03 15:56:51 -07:00
|
|
|
"""
|
2011-08-06 00:45:18 -07:00
|
|
|
|
2012-03-12 09:43:24 -07:00
|
|
|
from sleekxmpp.plugins.base import PluginManager, PluginNotFound, BasePlugin
|
|
|
|
from sleekxmpp.plugins.base import register_plugin, load_plugin
|
|
|
|
|
2012-03-11 18:09:45 -07:00
|
|
|
|
2012-01-15 22:51:59 -08:00
|
|
|
__all__ = [
|
|
|
|
# Non-standard
|
|
|
|
'gmail_notify', # Gmail searching and notifications
|
|
|
|
|
|
|
|
# XEPS
|
|
|
|
'xep_0004', # Data Forms
|
|
|
|
'xep_0009', # Jabber-RPC
|
|
|
|
'xep_0012', # Last Activity
|
2012-09-26 01:47:05 -07:00
|
|
|
'xep_0013', # Flexible Offline Message Retrieval
|
2012-07-30 22:07:24 -07:00
|
|
|
'xep_0016', # Privacy Lists
|
2012-04-06 12:13:04 -07:00
|
|
|
'xep_0027', # Current Jabber OpenPGP Usage
|
2012-01-15 22:51:59 -08:00
|
|
|
'xep_0030', # Service Discovery
|
|
|
|
'xep_0033', # Extended Stanza Addresses
|
|
|
|
'xep_0045', # Multi-User Chat (Client)
|
2012-03-11 16:32:16 -07:00
|
|
|
'xep_0047', # In-Band Bytestreams
|
2012-09-11 20:39:32 -07:00
|
|
|
'xep_0049', # Private XML Storage
|
2012-01-15 22:51:59 -08:00
|
|
|
'xep_0050', # Ad-hoc Commands
|
2012-04-07 17:50:02 -07:00
|
|
|
'xep_0054', # vcard-temp
|
2012-01-15 22:51:59 -08:00
|
|
|
'xep_0059', # Result Set Management
|
|
|
|
'xep_0060', # Pubsub (Client)
|
2012-06-10 14:15:58 -07:00
|
|
|
'xep_0065', # SOCKS5 Bytestreams
|
2012-03-11 16:32:16 -07:00
|
|
|
'xep_0066', # Out of Band Data
|
|
|
|
'xep_0077', # In-Band Registration
|
2012-01-15 22:51:59 -08:00
|
|
|
# 'xep_0078', # Non-SASL auth. Don't automatically load
|
2012-03-10 12:54:31 -08:00
|
|
|
'xep_0080', # User Location
|
2012-01-15 22:51:59 -08:00
|
|
|
'xep_0082', # XMPP Date and Time Profiles
|
2012-06-17 16:26:19 -07:00
|
|
|
'xep_0084', # User Avatar
|
2012-01-15 22:51:59 -08:00
|
|
|
'xep_0085', # Chat State Notifications
|
|
|
|
'xep_0086', # Legacy Error Codes
|
2012-09-26 01:47:45 -07:00
|
|
|
'xep_0091', # Legacy Delayed Delivery
|
2012-01-15 22:51:59 -08:00
|
|
|
'xep_0092', # Software Version
|
2012-07-23 02:13:19 -07:00
|
|
|
'xep_0106', # JID Escaping
|
2012-03-10 23:32:20 -08:00
|
|
|
'xep_0107', # User Mood
|
2012-03-11 12:37:54 -07:00
|
|
|
'xep_0108', # User Activity
|
2012-01-15 22:51:59 -08:00
|
|
|
'xep_0115', # Entity Capabilities
|
2012-03-10 12:48:35 -08:00
|
|
|
'xep_0118', # User Tune
|
2012-01-15 22:51:59 -08:00
|
|
|
'xep_0128', # Extended Service Discovery
|
2012-07-28 01:06:21 -07:00
|
|
|
'xep_0131', # Standard Headers and Internet Metadata
|
2012-07-22 13:40:22 -07:00
|
|
|
'xep_0133', # Service Administration
|
2012-04-09 18:41:59 -07:00
|
|
|
'xep_0153', # vCard-Based Avatars
|
2012-03-10 12:48:35 -08:00
|
|
|
'xep_0163', # Personal Eventing Protocol
|
2012-03-11 00:22:28 -08:00
|
|
|
'xep_0172', # User Nickname
|
2012-03-11 16:32:16 -07:00
|
|
|
'xep_0184', # Message Receipts
|
2012-06-20 23:37:39 -07:00
|
|
|
'xep_0186', # Invisible Command
|
2012-07-19 23:59:35 -07:00
|
|
|
'xep_0191', # Blocking Command
|
2012-03-18 01:02:19 -07:00
|
|
|
'xep_0198', # Stream Management
|
2012-01-15 22:51:59 -08:00
|
|
|
'xep_0199', # Ping
|
|
|
|
'xep_0202', # Entity Time
|
|
|
|
'xep_0203', # Delayed Delivery
|
2012-06-20 23:38:30 -07:00
|
|
|
'xep_0221', # Data Forms Media Element
|
2012-06-17 23:19:35 -07:00
|
|
|
'xep_0222', # Persistent Storage of Public Data via Pubsub
|
|
|
|
'xep_0223', # Persistent Storage of Private Data via Pubsub
|
2012-01-15 22:51:59 -08:00
|
|
|
'xep_0224', # Attention
|
2012-04-08 20:27:19 -07:00
|
|
|
'xep_0231', # Bits of Binary
|
2012-09-04 19:42:49 -07:00
|
|
|
'xep_0235', # OAuth Over XMPP
|
2012-07-30 22:07:49 -07:00
|
|
|
'xep_0242', # XMPP Client Compliance 2009
|
2012-01-15 22:51:59 -08:00
|
|
|
'xep_0249', # Direct MUC Invitations
|
2012-06-22 21:13:30 -07:00
|
|
|
'xep_0256', # Last Activity in Presence
|
2012-10-19 00:01:02 -07:00
|
|
|
'xep_0257', # Client Certificate Management for SASL EXTERNAL
|
2012-06-18 01:32:58 -07:00
|
|
|
'xep_0258', # Security Labels in XMPP
|
2012-06-22 21:26:25 -07:00
|
|
|
'xep_0270', # XMPP Compliance Suites 2010
|
2012-09-04 20:39:43 -07:00
|
|
|
'xep_0279', # Server IP Check
|
2012-09-25 02:34:51 -07:00
|
|
|
'xep_0280', # Message Carbons
|
2012-09-24 22:59:19 -07:00
|
|
|
'xep_0297', # Stanza Forwarding
|
2012-06-22 21:50:43 -07:00
|
|
|
'xep_0302', # XMPP Compliance Suites 2012
|
2012-09-25 12:35:53 -07:00
|
|
|
'xep_0308', # Last Message Correction
|
2012-09-25 20:20:43 -07:00
|
|
|
'xep_0313', # Message Archive Management
|
2012-01-15 22:51:59 -08:00
|
|
|
]
|