global: rewrite copyright notice to use comments
This commit is contained in:
parent
cff4588499
commit
bbd351e9c1
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||||
|
|
||||||
|
@ -1,16 +1,10 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# slixmpp.basexmpp
|
||||||
"""
|
# ~~~~~~~~~~~~~~~~~~
|
||||||
slixmpp.basexmpp
|
# This module provides the common XMPP functionality
|
||||||
~~~~~~~~~~~~~~~~~~
|
# for both clients and components.
|
||||||
|
# Part of Slixmpp: The Slick XMPP Library
|
||||||
This module provides the common XMPP functionality
|
# :copyright: (c) 2011 Nathanael C. Fritz
|
||||||
for both clients and components.
|
# :license: MIT, see LICENSE for more details
|
||||||
|
|
||||||
Part of Slixmpp: The Slick XMPP Library
|
|
||||||
|
|
||||||
:copyright: (c) 2011 Nathanael C. Fritz
|
|
||||||
:license: MIT, see LICENSE for more details
|
|
||||||
"""
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
|
@ -1,17 +1,11 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
"""
|
|
||||||
slixmpp.clientxmpp
|
|
||||||
~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
This module provides XMPP functionality that
|
|
||||||
is specific to client connections.
|
|
||||||
|
|
||||||
Part of Slixmpp: The Slick XMPP Library
|
|
||||||
|
|
||||||
:copyright: (c) 2011 Nathanael C. Fritz
|
|
||||||
:license: MIT, see LICENSE for more details
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# slixmpp.clientxmpp
|
||||||
|
# ~~~~~~~~~~~~~~~~~~~~
|
||||||
|
# This module provides XMPP functionality that
|
||||||
|
# is specific to client connections.
|
||||||
|
# Part of Slixmpp: The Slick XMPP Library
|
||||||
|
# :copyright: (c) 2011 Nathanael C. Fritz
|
||||||
|
# :license: MIT, see LICENSE for more details
|
||||||
import asyncio
|
import asyncio
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
@ -1,17 +1,11 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
"""
|
|
||||||
slixmpp.clientxmpp
|
|
||||||
~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
This module provides XMPP functionality that
|
|
||||||
is specific to external server component connections.
|
|
||||||
|
|
||||||
Part of Slixmpp: The Slick XMPP Library
|
|
||||||
|
|
||||||
:copyright: (c) 2011 Nathanael C. Fritz
|
|
||||||
:license: MIT, see LICENSE for more details
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# slixmpp.clientxmpp
|
||||||
|
# ~~~~~~~~~~~~~~~~~~~~
|
||||||
|
# This module provides XMPP functionality that
|
||||||
|
# is specific to external server component connections.
|
||||||
|
# Part of Slixmpp: The Slick XMPP Library
|
||||||
|
# :copyright: (c) 2011 Nathanael C. Fritz
|
||||||
|
# :license: MIT, see LICENSE for more details
|
||||||
import logging
|
import logging
|
||||||
import hashlib
|
import hashlib
|
||||||
|
|
||||||
|
@ -1,14 +1,9 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
"""
|
|
||||||
slixmpp.exceptions
|
|
||||||
~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
Part of Slixmpp: The Slick XMPP Library
|
|
||||||
|
|
||||||
:copyright: (c) 2011 Nathanael C. Fritz
|
|
||||||
:license: MIT, see LICENSE for more details
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# slixmpp.exceptions
|
||||||
|
# ~~~~~~~~~~~~~~~~~~~~
|
||||||
|
# Part of Slixmpp: The Slick XMPP Library
|
||||||
|
# :copyright: (c) 2011 Nathanael C. Fritz
|
||||||
|
# :license: MIT, see LICENSE for more details
|
||||||
|
|
||||||
class XMPPError(Exception):
|
class XMPPError(Exception):
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
__all__ = [
|
__all__ = [
|
||||||
'feature_starttls',
|
'feature_starttls',
|
||||||
'feature_mechanisms',
|
'feature_mechanisms',
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.features.feature_bind.bind import FeatureBind
|
from slixmpp.features.feature_bind.bind import FeatureBind
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import asyncio
|
import asyncio
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase
|
from slixmpp.xmlstream import ElementBase
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.features.feature_mechanisms.mechanisms import FeatureMechanisms
|
from slixmpp.features.feature_mechanisms.mechanisms import FeatureMechanisms
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import ssl
|
import ssl
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
|
|
||||||
from slixmpp.features.feature_mechanisms.stanza.mechanisms import Mechanisms
|
from slixmpp.features.feature_mechanisms.stanza.mechanisms import Mechanisms
|
||||||
from slixmpp.features.feature_mechanisms.stanza.auth import Auth
|
from slixmpp.features.feature_mechanisms.stanza.auth import Auth
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import StanzaBase
|
from slixmpp.xmlstream import StanzaBase
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import base64
|
import base64
|
||||||
|
|
||||||
from slixmpp.util import bytes
|
from slixmpp.util import bytes
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import base64
|
import base64
|
||||||
|
|
||||||
from slixmpp.util import bytes
|
from slixmpp.util import bytes
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import StanzaBase, ET
|
from slixmpp.xmlstream import StanzaBase, ET
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase, ET
|
from slixmpp.xmlstream import ElementBase, ET
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import base64
|
import base64
|
||||||
|
|
||||||
from slixmpp.util import bytes
|
from slixmpp.util import bytes
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import base64
|
import base64
|
||||||
|
|
||||||
from slixmpp.util import bytes
|
from slixmpp.util import bytes
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.features.feature_preapproval.preapproval import FeaturePreApproval
|
from slixmpp.features.feature_preapproval.preapproval import FeaturePreApproval
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from slixmpp.stanza import StreamFeatures
|
from slixmpp.stanza import StreamFeatures
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase
|
from slixmpp.xmlstream import ElementBase
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.features.feature_rosterver.rosterver import FeatureRosterVer
|
from slixmpp.features.feature_rosterver.rosterver import FeatureRosterVer
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from slixmpp.stanza import StreamFeatures
|
from slixmpp.stanza import StreamFeatures
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase
|
from slixmpp.xmlstream import ElementBase
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.features.feature_session.session import FeatureSession
|
from slixmpp.features.feature_session.session import FeatureSession
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import asyncio
|
import asyncio
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase, ET
|
from slixmpp.xmlstream import ElementBase, ET
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.features.feature_starttls.starttls import FeatureSTARTTLS
|
from slixmpp.features.feature_starttls.starttls import FeatureSTARTTLS
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import StanzaBase, ElementBase
|
from slixmpp.xmlstream import StanzaBase, ElementBase
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from slixmpp.stanza import StreamFeatures
|
from slixmpp.stanza import StreamFeatures
|
||||||
|
@ -1,16 +1,10 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
"""
|
|
||||||
slixmpp.jid
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
This module allows for working with Jabber IDs (JIDs).
|
|
||||||
|
|
||||||
Part of Slixmpp: The Slick XMPP Library
|
|
||||||
|
|
||||||
:copyright: (c) 2011 Nathanael C. Fritz
|
|
||||||
:license: MIT, see LICENSE for more details
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# slixmpp.jid
|
||||||
|
# ~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
# This module allows for working with Jabber IDs (JIDs).
|
||||||
|
# Part of Slixmpp: The Slick XMPP Library
|
||||||
|
# :copyright: (c) 2011 Nathanael C. Fritz
|
||||||
|
# :license: MIT, see LICENSE for more details
|
||||||
import re
|
import re
|
||||||
import socket
|
import socket
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import PluginManager, PluginNotFound, BasePlugin
|
from slixmpp.plugins.base import PluginManager, PluginNotFound, BasePlugin
|
||||||
from slixmpp.plugins.base import register_plugin, load_plugin
|
from slixmpp.plugins.base import register_plugin, load_plugin
|
||||||
|
|
||||||
|
@ -1,17 +1,11 @@
|
|||||||
# -*- encoding: utf-8 -*-
|
|
||||||
|
|
||||||
"""
|
# slixmpp.plugins.base
|
||||||
slixmpp.plugins.base
|
# ~~~~~~~~~~~~~~~~~~~~~~
|
||||||
~~~~~~~~~~~~~~~~~~~~~~
|
# This module provides XMPP functionality that
|
||||||
|
# is specific to client connections.
|
||||||
This module provides XMPP functionality that
|
# Part of Slixmpp: The Slick XMPP Library
|
||||||
is specific to client connections.
|
# :copyright: (c) 2012 Nathanael C. Fritz
|
||||||
|
# :license: MIT, see LICENSE for more details
|
||||||
Part of Slixmpp: The Slick XMPP Library
|
|
||||||
|
|
||||||
:copyright: (c) 2012 Nathanael C. Fritz
|
|
||||||
:license: MIT, see LICENSE for more details
|
|
||||||
"""
|
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import copy
|
import copy
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
from slixmpp.plugins import BasePlugin
|
from slixmpp.plugins import BasePlugin
|
||||||
from .. xmlstream.handler.callback import Callback
|
from .. xmlstream.handler.callback import Callback
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin, BasePlugin
|
from slixmpp.plugins.base import register_plugin, BasePlugin
|
||||||
|
|
||||||
from slixmpp.plugins.google.gmail import Gmail
|
from slixmpp.plugins.google.gmail import Gmail
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.google.auth import stanza
|
from slixmpp.plugins.google.auth import stanza
|
||||||
from slixmpp.plugins.google.auth.auth import GoogleAuth
|
from slixmpp.plugins.google.auth.auth import GoogleAuth
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import register_stanza_plugin
|
from slixmpp.xmlstream import register_stanza_plugin
|
||||||
from slixmpp.plugins import BasePlugin
|
from slixmpp.plugins import BasePlugin
|
||||||
from slixmpp.plugins.google.auth import stanza
|
from slixmpp.plugins.google.auth import stanza
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase, ET
|
from slixmpp.xmlstream import ElementBase, ET
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.google.gmail import stanza
|
from slixmpp.plugins.google.gmail import stanza
|
||||||
from slixmpp.plugins.google.gmail.notifications import Gmail
|
from slixmpp.plugins.google.gmail.notifications import Gmail
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from slixmpp.stanza import Iq
|
from slixmpp.stanza import Iq
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase, register_stanza_plugin
|
from slixmpp.xmlstream import ElementBase, register_stanza_plugin
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.google.nosave import stanza
|
from slixmpp.plugins.google.nosave import stanza
|
||||||
from slixmpp.plugins.google.nosave.nosave import GoogleNoSave
|
from slixmpp.plugins.google.nosave.nosave import GoogleNoSave
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.stanza import Iq, Message
|
from slixmpp.stanza import Iq, Message
|
||||||
from slixmpp.xmlstream.handler import Callback
|
from slixmpp.xmlstream.handler import Callback
|
||||||
from slixmpp.xmlstream.matcher import StanzaPath
|
from slixmpp.xmlstream.matcher import StanzaPath
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.jid import JID
|
from slixmpp.jid import JID
|
||||||
from slixmpp.xmlstream import ElementBase, register_stanza_plugin
|
from slixmpp.xmlstream import ElementBase, register_stanza_plugin
|
||||||
|
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.google.settings import stanza
|
from slixmpp.plugins.google.settings import stanza
|
||||||
from slixmpp.plugins.google.settings.settings import GoogleSettings
|
from slixmpp.plugins.google.settings.settings import GoogleSettings
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.stanza import Iq
|
from slixmpp.stanza import Iq
|
||||||
from slixmpp.xmlstream.handler import Callback
|
from slixmpp.xmlstream.handler import Callback
|
||||||
from slixmpp.xmlstream.matcher import StanzaPath
|
from slixmpp.xmlstream.matcher import StanzaPath
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ET, ElementBase
|
from slixmpp.xmlstream import ET, ElementBase
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0004.stanza import Form
|
from slixmpp.plugins.xep_0004.stanza import Form
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp import Message
|
from slixmpp import Message
|
||||||
from slixmpp.xmlstream import register_stanza_plugin
|
from slixmpp.xmlstream import register_stanza_plugin
|
||||||
from slixmpp.xmlstream.handler import Callback
|
from slixmpp.xmlstream.handler import Callback
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.xep_0004.stanza.field import FormField, FieldOption
|
from slixmpp.plugins.xep_0004.stanza.field import FormField, FieldOption
|
||||||
from slixmpp.plugins.xep_0004.stanza.form import Form
|
from slixmpp.plugins.xep_0004.stanza.form import Form
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase, ET
|
from slixmpp.xmlstream import ElementBase, ET
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import copy
|
import copy
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0009 import stanza
|
from slixmpp.plugins.xep_0009 import stanza
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ET
|
from slixmpp.xmlstream import ET
|
||||||
import base64
|
import base64
|
||||||
import logging
|
import logging
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.xep_0009.binding import py2xml, xml2py, xml2fault, fault2xml
|
from slixmpp.plugins.xep_0009.binding import py2xml, xml2py, xml2fault, fault2xml
|
||||||
from threading import RLock
|
from threading import RLock
|
||||||
import abc
|
import abc
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from slixmpp import Iq
|
from slixmpp import Iq
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream.stanzabase import ElementBase
|
from slixmpp.xmlstream.stanzabase import ElementBase
|
||||||
from xml.etree import ElementTree as ET
|
from xml.etree import ElementTree as ET
|
||||||
|
|
||||||
|
@ -1,9 +1,6 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.xep_0009.stanza.RPC import RPCQuery, MethodCall, MethodResponse
|
from slixmpp.plugins.xep_0009.stanza.RPC import RPCQuery, MethodCall, MethodResponse
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0012.stanza import LastActivity
|
from slixmpp.plugins.xep_0012.stanza import LastActivity
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
from asyncio import Future
|
from asyncio import Future
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase
|
from slixmpp.xmlstream import ElementBase
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permissio
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permissio
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0013.stanza import Offline
|
from slixmpp.plugins.xep_0013.stanza import Offline
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permissio
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permissio
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
import slixmpp
|
import slixmpp
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permissio
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permissio
|
||||||
from slixmpp.jid import JID
|
from slixmpp.jid import JID
|
||||||
from slixmpp.xmlstream import ElementBase, register_stanza_plugin
|
from slixmpp.xmlstream import ElementBase, register_stanza_plugin
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0016 import stanza
|
from slixmpp.plugins.xep_0016 import stanza
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp import Iq
|
from slixmpp import Iq
|
||||||
from slixmpp.xmlstream import register_stanza_plugin
|
from slixmpp.xmlstream import register_stanza_plugin
|
||||||
from slixmpp.plugins import BasePlugin
|
from slixmpp.plugins import BasePlugin
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0020 import stanza
|
from slixmpp.plugins.xep_0020 import stanza
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from slixmpp import Iq, Message
|
from slixmpp import Iq, Message
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase
|
from slixmpp.xmlstream import ElementBase
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0027.stanza import Signed, Encrypted
|
from slixmpp.plugins.xep_0027.stanza import Signed, Encrypted
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.thirdparty import GPG
|
from slixmpp.thirdparty import GPG
|
||||||
|
|
||||||
from slixmpp.stanza import Presence, Message
|
from slixmpp.stanza import Presence, Message
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase
|
from slixmpp.xmlstream import ElementBase
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0030 import stanza
|
from slixmpp.plugins.xep_0030 import stanza
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import asyncio
|
import asyncio
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.xep_0030.stanza.info import DiscoInfo
|
from slixmpp.plugins.xep_0030.stanza.info import DiscoInfo
|
||||||
from slixmpp.plugins.xep_0030.stanza.items import DiscoItems
|
from slixmpp.plugins.xep_0030.stanza.items import DiscoItems
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase, ET
|
from slixmpp.xmlstream import ElementBase, ET
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase, register_stanza_plugin
|
from slixmpp.xmlstream import ElementBase, register_stanza_plugin
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from slixmpp import Iq
|
from slixmpp import Iq
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0033 import stanza
|
from slixmpp.plugins.xep_0033 import stanza
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from slixmpp import Message, Presence
|
from slixmpp import Message, Presence
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import JID, ElementBase, ET, register_stanza_plugin
|
from slixmpp.xmlstream import JID, ElementBase, ET, register_stanza_plugin
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2020 "Maxime “pep” Buquet <pep@bouah.net>"
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2020 "Maxime “pep” Buquet <pep@bouah.net>"
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins import register_plugin
|
from slixmpp.plugins import register_plugin
|
||||||
from slixmpp.plugins.xep_0045 import stanza
|
from slixmpp.plugins.xep_0045 import stanza
|
||||||
from slixmpp.plugins.xep_0045.muc import XEP_0045
|
from slixmpp.plugins.xep_0045.muc import XEP_0045
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
# Slixmpp: The Slick XMPP Library
|
||||||
Slixmpp: The Slick XMPP Library
|
# Copyright (C) 2010 Nathanael C. Fritz
|
||||||
Copyright (C) 2010 Nathanael C. Fritz
|
# Copyright (C) 2020 "Maxime “pep” Buquet <pep@bouah.net>"
|
||||||
Copyright (C) 2020 "Maxime “pep” Buquet <pep@bouah.net>"
|
# This file is part of Slixmpp.
|
||||||
This file is part of Slixmpp.
|
# See the file LICENSE for copying permission.
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
from __future__ import with_statement
|
from __future__ import with_statement
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
|
@ -1,12 +1,9 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz
|
|
||||||
Copyright (C) 2020 "Maxime “pep” Buquet <pep@bouah.net>"
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz
|
||||||
|
# Copyright (C) 2020 "Maxime “pep” Buquet <pep@bouah.net>"
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from typing import (
|
from typing import (
|
||||||
Iterable,
|
Iterable,
|
||||||
Set,
|
Set,
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0047 import stanza
|
from slixmpp.plugins.xep_0047 import stanza
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0048.stanza import Bookmarks, Conference, URL
|
from slixmpp.plugins.xep_0048.stanza import Bookmarks, Conference, URL
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from slixmpp import Iq
|
from slixmpp import Iq
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp import JID
|
from slixmpp import JID
|
||||||
from slixmpp.xmlstream import ET, ElementBase, register_stanza_plugin
|
from slixmpp.xmlstream import ET, ElementBase, register_stanza_plugin
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0049.stanza import PrivateXML
|
from slixmpp.plugins.xep_0049.stanza import PrivateXML
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
from typing import (
|
from typing import (
|
||||||
List,
|
List,
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ET, ElementBase
|
from slixmpp.xmlstream import ET, ElementBase
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0050.stanza import Command
|
from slixmpp.plugins.xep_0050.stanza import Command
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase, ET
|
from slixmpp.xmlstream import ElementBase, ET
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0054.stanza import VCardTemp
|
from slixmpp.plugins.xep_0054.stanza import VCardTemp
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
from asyncio import Future
|
from asyncio import Future
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz, Erik Reuterborg Larsson
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz, Erik Reuterborg Larsson
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.plugins.base import register_plugin
|
from slixmpp.plugins.base import register_plugin
|
||||||
|
|
||||||
from slixmpp.plugins.xep_0059.stanza import Set
|
from slixmpp.plugins.xep_0059.stanza import Set
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz, Erik Reuterborg Larsson
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz, Erik Reuterborg Larsson
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
import slixmpp
|
import slixmpp
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
"""
|
|
||||||
Slixmpp: The Slick XMPP Library
|
|
||||||
Copyright (C) 2010 Nathanael C. Fritz, Erik Reuterborg Larsson
|
|
||||||
This file is part of Slixmpp.
|
|
||||||
|
|
||||||
See the file LICENSE for copying permission.
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
# Slixmpp: The Slick XMPP Library
|
||||||
|
# Copyright (C) 2010 Nathanael C. Fritz, Erik Reuterborg Larsson
|
||||||
|
# This file is part of Slixmpp.
|
||||||
|
# See the file LICENSE for copying permission.
|
||||||
from slixmpp.xmlstream import ElementBase, ET
|
from slixmpp.xmlstream import ElementBase, ET
|
||||||
from slixmpp.plugins.xep_0030.stanza.items import DiscoItems
|
from slixmpp.plugins.xep_0030.stanza.items import DiscoItems
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user