Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
846f2bac5f |
13
.github/pull_request_template.md
vendored
13
.github/pull_request_template.md
vendored
@@ -1,13 +0,0 @@
|
|||||||
################ Please use Gitlab instead of Github ###################################
|
|
||||||
|
|
||||||
Hello, thank you for contributing to slixmpp!
|
|
||||||
|
|
||||||
You’re about to open a pull request on github. However this github repository is not the official place for contributions on slixmpp.
|
|
||||||
|
|
||||||
Please open your merge request on https://lab.louiz.org/poezio/slixmpp/
|
|
||||||
|
|
||||||
You should be able to log in there with your github credentials, clone the slixmpp repository in your namespace, push your existing pull request into a new branch, and then open a merge request with one click, within 3 minutes.
|
|
||||||
|
|
||||||
This will help us review your contribution, avoid spreading things everywhere and it will even run the tests automatically with your changes.
|
|
||||||
|
|
||||||
Thank you.
|
|
||||||
10
.gitignore
vendored
10
.gitignore
vendored
@@ -1,4 +1,4 @@
|
|||||||
*.py[co]
|
*.pyc
|
||||||
build/
|
build/
|
||||||
dist/
|
dist/
|
||||||
MANIFEST
|
MANIFEST
|
||||||
@@ -6,10 +6,4 @@ docs/_build/
|
|||||||
*.swp
|
*.swp
|
||||||
.tox/
|
.tox/
|
||||||
.coverage
|
.coverage
|
||||||
slixmpp.egg-info/
|
sleekxmpp.egg-info/
|
||||||
.ropeproject/
|
|
||||||
4913
|
|
||||||
*~
|
|
||||||
.baboon/
|
|
||||||
.DS_STORE
|
|
||||||
.idea/
|
|
||||||
|
|||||||
@@ -1,37 +0,0 @@
|
|||||||
stages:
|
|
||||||
- test
|
|
||||||
- trigger
|
|
||||||
|
|
||||||
test:
|
|
||||||
stage: test
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
image: ubuntu:latest
|
|
||||||
script:
|
|
||||||
- apt update
|
|
||||||
- apt install -y python3 python3-pip cython3 gpg
|
|
||||||
- pip3 install emoji aiohttp
|
|
||||||
- ./run_tests.py
|
|
||||||
|
|
||||||
test_integration:
|
|
||||||
stage: test
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
image: ubuntu:latest
|
|
||||||
only:
|
|
||||||
variables:
|
|
||||||
- $CI_ACCOUNT1
|
|
||||||
- $CI_ACCOUNT2
|
|
||||||
script:
|
|
||||||
- apt update
|
|
||||||
- apt install -y python3 python3-pip cython3 gpg
|
|
||||||
- pip3 install emoji aiohttp aiodns
|
|
||||||
- ./run_integration_tests.py
|
|
||||||
|
|
||||||
trigger_poezio:
|
|
||||||
stage: trigger
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
image: appropriate/curl:latest
|
|
||||||
script:
|
|
||||||
- curl --request POST -F token="$SLIXMPP_TRIGGER_TOKEN" -F ref=master https://lab.louiz.org/api/v4/projects/18/trigger/pipeline
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
language: python
|
|
||||||
python:
|
|
||||||
- "3.7"
|
|
||||||
- "3.8-dev"
|
|
||||||
install:
|
|
||||||
- "pip install ."
|
|
||||||
script: testall.py
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
Contributing to the Slixmpp project
|
|
||||||
===================================
|
|
||||||
|
|
||||||
To contribute, the preferred way is to commit your changes on some
|
|
||||||
publicly-available git repository (on a fork `on github
|
|
||||||
<https://github.com/poezio/slixmpp>`_ or on your own repository) and to
|
|
||||||
notify the developers with either:
|
|
||||||
- a ticket `on the bug tracker <https://lab.louiz.org/poezio/slixmpp/issues/new>`_
|
|
||||||
- a pull request on github
|
|
||||||
- a simple message on `the XMPP MUC <xmpp:slixmpp@muc.poez.io>`_
|
|
||||||
|
|
||||||
Even though Slixmpp’s github repository is just a read-only mirror, we can
|
|
||||||
still be notified of the pull requests and fetch your mirror manually to
|
|
||||||
integrate your changes.
|
|
||||||
6
INSTALL
6
INSTALL
@@ -1,7 +1,5 @@
|
|||||||
Pre-requisites:
|
Pre-requisites:
|
||||||
- Python 3.7+
|
- Python 3.1 or 2.6
|
||||||
- Cython 0.22 and libidn, optionally (making JID faster by compiling the stringprep module)
|
|
||||||
- GnuPG, for testing
|
|
||||||
|
|
||||||
Install:
|
Install:
|
||||||
> python3 setup.py install
|
> python3 setup.py install
|
||||||
@@ -11,4 +9,4 @@ Root install:
|
|||||||
|
|
||||||
To test:
|
To test:
|
||||||
> cd examples
|
> cd examples
|
||||||
> python3 echo_client.py -d -j [USER@example.com] -p [PASSWORD]
|
> python echo_client.py -v -j [USER@example.com] -p [PASSWORD]
|
||||||
|
|||||||
30
LICENSE
30
LICENSE
@@ -86,12 +86,40 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
OrderedDict - A port of the Python 2.7+ OrderedDict to Python 2.6
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Copyright (c) 2009 Raymond Hettinger
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person
|
||||||
|
obtaining a copy of this software and associated documentation files
|
||||||
|
(the "Software"), to deal in the Software without restriction,
|
||||||
|
including without limitation the rights to use, copy, modify, merge,
|
||||||
|
publish, distribute, sublicense, and/or sell copies of the Software,
|
||||||
|
and to permit persons to whom the Software is furnished to do so,
|
||||||
|
subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||||
|
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||||
|
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
SUELTA – A PURE-PYTHON SASL CLIENT LIBRARY
|
SUELTA – A PURE-PYTHON SASL CLIENT LIBRARY
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
This software is subject to "The MIT License"
|
This software is subject to "The MIT License"
|
||||||
|
|
||||||
Copyright 2004-2013 David Alan Cridland
|
Copyright 2007-2010 David Alan Cridland
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
include README.rst
|
include README.rst
|
||||||
include LICENSE
|
include LICENSE
|
||||||
include run_tests.py
|
include testall.py
|
||||||
include slixmpp/stringprep.pyx
|
|
||||||
recursive-include docs Makefile *.bat *.py *.rst *.css *.ttf *.png
|
recursive-include docs Makefile *.bat *.py *.rst *.css *.ttf *.png
|
||||||
recursive-include examples *.py
|
recursive-include examples *.py
|
||||||
recursive-include tests *.py
|
recursive-include tests *.py
|
||||||
|
|||||||
136
README.rst
136
README.rst
@@ -1,21 +1,77 @@
|
|||||||
Slixmpp
|
SleekXMPP
|
||||||
#########
|
#########
|
||||||
|
|
||||||
Slixmpp is an MIT licensed XMPP library for Python 3.7+. It is a fork of
|
SleekXMPP is an MIT licensed XMPP library for Python 2.6/3.1+,
|
||||||
SleekXMPP.
|
and is featured in examples in
|
||||||
|
`XMPP: The Definitive Guide <http://oreilly.com/catalog/9780596521271>`_
|
||||||
|
by Kevin Smith, Remko Tronçon, and Peter Saint-Andre. If you've arrived
|
||||||
|
here from reading the Definitive Guide, please see the notes on updating
|
||||||
|
the examples to the latest version of SleekXMPP.
|
||||||
|
|
||||||
Slixmpp's goals is to only rewrite the core of the library (the low level
|
SleekXMPP's design goals and philosphy are:
|
||||||
socket handling, the timers, the events dispatching) in order to remove all
|
|
||||||
threads.
|
|
||||||
|
|
||||||
Building
|
**Low number of dependencies**
|
||||||
--------
|
Installing and using SleekXMPP should be as simple as possible, without
|
||||||
|
having to deal with long dependency chains.
|
||||||
|
|
||||||
Slixmpp can make use of cython to improve performance on critical modules.
|
As part of reducing the number of dependencies, some third party
|
||||||
To do that, **cython3** is necessary along with **libidn** headers.
|
modules are included with SleekXMPP in the ``thirdparty`` directory.
|
||||||
Otherwise, no compilation is needed. Building is done by running setup.py::
|
Imports from this module first try to import an existing installed
|
||||||
|
version before loading the packaged version, when possible.
|
||||||
|
|
||||||
|
**Every XEP as a plugin**
|
||||||
|
Following Python's "batteries included" approach, the goal is to
|
||||||
|
provide support for all currently active XEPs (final and draft). Since
|
||||||
|
adding XEP support is done through easy to create plugins, the hope is
|
||||||
|
to also provide a solid base for implementing and creating experimental
|
||||||
|
XEPs.
|
||||||
|
|
||||||
|
**Rewarding to work with**
|
||||||
|
As much as possible, SleekXMPP should allow things to "just work" using
|
||||||
|
sensible defaults and appropriate abstractions. XML can be ugly to work
|
||||||
|
with, but it doesn't have to be that way.
|
||||||
|
|
||||||
|
|
||||||
|
Get the Code
|
||||||
|
------------
|
||||||
|
|
||||||
|
Get the latest stable version from PyPI::
|
||||||
|
|
||||||
|
pip install sleekxmpp
|
||||||
|
|
||||||
|
The latest source code for SleekXMPP may be found on `Github
|
||||||
|
<http://github.com/fritzy/SleekXMPP>`_. Releases can be found in the
|
||||||
|
``master`` branch, while the latest development version is in the
|
||||||
|
``develop`` branch.
|
||||||
|
|
||||||
|
**Latest Release**
|
||||||
|
- `1.1.10 <http://github.com/fritzy/SleekXMPP/zipball/1.1.10>`_
|
||||||
|
|
||||||
|
**Develop Releases**
|
||||||
|
- `Latest Develop Version <http://github.com/fritzy/SleekXMPP/zipball/develop>`_
|
||||||
|
|
||||||
|
|
||||||
|
Installing DNSPython
|
||||||
|
---------------------
|
||||||
|
If you are using Python3 and wish to use dnspython, you will have to checkout and
|
||||||
|
install the ``python3`` branch::
|
||||||
|
|
||||||
|
git clone http://github.com/rthalley/dnspython
|
||||||
|
cd dnspython
|
||||||
|
git checkout python3
|
||||||
|
python3 setup.py install
|
||||||
|
|
||||||
|
Discussion
|
||||||
|
----------
|
||||||
|
A mailing list and XMPP chat room are available for discussing and getting
|
||||||
|
help with SleekXMPP.
|
||||||
|
|
||||||
|
**Mailing List**
|
||||||
|
`SleekXMPP Discussion on Google Groups <http://groups.google.com/group/sleekxmpp-discussion>`_
|
||||||
|
|
||||||
|
**Chat**
|
||||||
|
`sleek@conference.jabber.org <xmpp:sleek@conference.jabber.org?join>`_
|
||||||
|
|
||||||
python3 setup.py build_ext --inplace
|
|
||||||
|
|
||||||
Documentation and Testing
|
Documentation and Testing
|
||||||
-------------------------
|
-------------------------
|
||||||
@@ -27,37 +83,22 @@ be in ``docs/_build/html``::
|
|||||||
make html
|
make html
|
||||||
open _build/html/index.html
|
open _build/html/index.html
|
||||||
|
|
||||||
To run the test suite for Slixmpp::
|
To run the test suite for SleekXMPP::
|
||||||
|
|
||||||
python run_tests.py
|
python testall.py
|
||||||
|
|
||||||
Integration tests require the following environment variables to be set:::
|
|
||||||
|
|
||||||
$CI_ACCOUNT1
|
The SleekXMPP Boilerplate
|
||||||
$CI_ACCOUNT1_PASSWORD
|
|
||||||
$CI_ACCOUNT2
|
|
||||||
$CI_ACCOUNT2_PASSWORD
|
|
||||||
$CI_MUC_SERVER
|
|
||||||
|
|
||||||
where the account variables are JIDs of valid, existing accounts, and
|
|
||||||
the passwords are the account passwords. The MUC server must allow room
|
|
||||||
creation from those JIDs.
|
|
||||||
|
|
||||||
To run the integration test suite for Slixmpp::
|
|
||||||
|
|
||||||
python run_integration_tests.py
|
|
||||||
|
|
||||||
The Slixmpp Boilerplate
|
|
||||||
-------------------------
|
-------------------------
|
||||||
Projects using Slixmpp tend to follow a basic pattern for setting up client/component
|
Projects using SleekXMPP tend to follow a basic pattern for setting up client/component
|
||||||
connections and configuration. Here is the gist of the boilerplate needed for a Slixmpp
|
connections and configuration. Here is the gist of the boilerplate needed for a SleekXMPP
|
||||||
based project. See the documentation or examples directory for more detailed archetypes for
|
based project. See the documetation or examples directory for more detailed archetypes for
|
||||||
Slixmpp projects::
|
SleekXMPP projects::
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from slixmpp import ClientXMPP
|
from sleekxmpp import ClientXMPP
|
||||||
from slixmpp.exceptions import IqError, IqTimeout
|
from sleekxmpp.exceptions import IqError, IqTimeout
|
||||||
|
|
||||||
|
|
||||||
class EchoBot(ClientXMPP):
|
class EchoBot(ClientXMPP):
|
||||||
@@ -111,28 +152,11 @@ Slixmpp projects::
|
|||||||
|
|
||||||
xmpp = EchoBot('somejid@example.com', 'use_getpass')
|
xmpp = EchoBot('somejid@example.com', 'use_getpass')
|
||||||
xmpp.connect()
|
xmpp.connect()
|
||||||
xmpp.process(forever=True)
|
xmpp.process(block=True)
|
||||||
|
|
||||||
|
|
||||||
Slixmpp Credits
|
Credits
|
||||||
---------------
|
-------
|
||||||
|
|
||||||
**Maintainers:**
|
|
||||||
- Florent Le Coz (`louiz@louiz.org <xmpp:louiz@louiz.org?message>`_),
|
|
||||||
- Mathieu Pasquet (`mathieui@mathieui.net <xmpp:mathieui@mathieui.net?message>`_),
|
|
||||||
|
|
||||||
**Contributors:**
|
|
||||||
- Emmanuel Gil Peyrot (`Link mauve <xmpp:linkmauve@linkmauve.fr?message>`_)
|
|
||||||
- Sam Whited (`Sam Whited <mailto:sam@samwhited.com>`_)
|
|
||||||
- Dan Sully (`Dan Sully <mailto:daniel@electricalrain.com>`_)
|
|
||||||
- Gasper Zejn (`Gasper Zejn <mailto:zejn@kiberpipa.org>`_)
|
|
||||||
- Krzysztof Kotlenga (`Krzysztof Kotlenga <mailto:pocek@users.sf.net>`_)
|
|
||||||
- Tsukasa Hiiragi (`Tsukasa Hiiragi <mailto:bakalolka@gmail.com>`_)
|
|
||||||
- Maxime Buquet (`pep <xmpp:pep@bouah.net?message>`_)
|
|
||||||
|
|
||||||
Credits (SleekXMPP)
|
|
||||||
-------------------
|
|
||||||
|
|
||||||
**Main Author:** Nathan Fritz
|
**Main Author:** Nathan Fritz
|
||||||
`fritzy@netflint.net <xmpp:fritzy@netflint.net?message>`_,
|
`fritzy@netflint.net <xmpp:fritzy@netflint.net?message>`_,
|
||||||
`@fritzy <http://twitter.com/fritzy>`_
|
`@fritzy <http://twitter.com/fritzy>`_
|
||||||
|
|||||||
@@ -72,17 +72,17 @@ qthelp:
|
|||||||
@echo
|
@echo
|
||||||
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
|
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
|
||||||
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
|
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
|
||||||
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/Slixmpp.qhcp"
|
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/SleekXMPP.qhcp"
|
||||||
@echo "To view the help file:"
|
@echo "To view the help file:"
|
||||||
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/Slixmpp.qhc"
|
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/SleekXMPP.qhc"
|
||||||
|
|
||||||
devhelp:
|
devhelp:
|
||||||
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
|
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
|
||||||
@echo
|
@echo
|
||||||
@echo "Build finished."
|
@echo "Build finished."
|
||||||
@echo "To view the help file:"
|
@echo "To view the help file:"
|
||||||
@echo "# mkdir -p $$HOME/.local/share/devhelp/Slixmpp"
|
@echo "# mkdir -p $$HOME/.local/share/devhelp/SleekXMPP"
|
||||||
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/Slixmpp"
|
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/SleekXMPP"
|
||||||
@echo "# devhelp"
|
@echo "# devhelp"
|
||||||
|
|
||||||
epub:
|
epub:
|
||||||
|
|||||||
21
docs/_static/haiku.css
vendored
21
docs/_static/haiku.css
vendored
@@ -408,3 +408,24 @@ div.viewcode-block:target {
|
|||||||
margin: -1px -12px;
|
margin: -1px -12px;
|
||||||
padding: 0 12px;
|
padding: 0 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#from_andyet {
|
||||||
|
-webkit-box-shadow: #CCC 0px 0px 3px;
|
||||||
|
background: rgba(255, 255, 255, 1);
|
||||||
|
bottom: 0px;
|
||||||
|
right: 17px;
|
||||||
|
padding: 3px 10px;
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
|
||||||
|
#from_andyet h2 {
|
||||||
|
background-image: url("images/from_&yet.png");
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
height: 29px;
|
||||||
|
line-height: 0;
|
||||||
|
text-indent: -9999em;
|
||||||
|
width: 79px;
|
||||||
|
margin-top: 0;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|||||||
1
docs/_templates/layout.html
vendored
1
docs/_templates/layout.html
vendored
@@ -65,5 +65,6 @@
|
|||||||
<div class="bottomnav">
|
<div class="bottomnav">
|
||||||
{{ nav() }}
|
{{ nav() }}
|
||||||
</div>
|
</div>
|
||||||
|
<a id="from_andyet" href="http://andyet.net"><h2>From &yet</h2></a>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
BaseXMPP
|
BaseXMPP
|
||||||
========
|
========
|
||||||
|
|
||||||
.. module:: slixmpp.basexmpp
|
.. module:: sleekxmpp.basexmpp
|
||||||
|
|
||||||
.. autoclass:: BaseXMPP
|
.. autoclass:: BaseXMPP
|
||||||
:members:
|
:members:
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
ClientXMPP
|
ClientXMPP
|
||||||
==========
|
==========
|
||||||
|
|
||||||
.. module:: slixmpp.clientxmpp
|
.. module:: sleekxmpp.clientxmpp
|
||||||
|
|
||||||
.. autoclass:: ClientXMPP
|
.. autoclass:: ClientXMPP
|
||||||
:members:
|
:members:
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
ComponentXMPP
|
ComponentXMPP
|
||||||
=============
|
=============
|
||||||
|
|
||||||
.. module:: slixmpp.componentxmpp
|
.. module:: sleekxmpp.componentxmpp
|
||||||
|
|
||||||
.. autoclass:: ComponentXMPP
|
.. autoclass:: ComponentXMPP
|
||||||
:members:
|
:members:
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Exceptions
|
Exceptions
|
||||||
==========
|
==========
|
||||||
|
|
||||||
.. module:: slixmpp.exceptions
|
.. module:: sleekxmpp.exceptions
|
||||||
|
|
||||||
|
|
||||||
.. autoexception:: XMPPError
|
.. autoexception:: XMPPError
|
||||||
|
|||||||
@@ -1,96 +0,0 @@
|
|||||||
Plugin index
|
|
||||||
============
|
|
||||||
|
|
||||||
.. toctree::
|
|
||||||
:maxdepth: 2
|
|
||||||
|
|
||||||
xep_0004
|
|
||||||
xep_0009
|
|
||||||
xep_0012
|
|
||||||
xep_0013
|
|
||||||
xep_0020
|
|
||||||
xep_0027
|
|
||||||
xep_0030
|
|
||||||
xep_0033
|
|
||||||
xep_0045
|
|
||||||
xep_0047
|
|
||||||
xep_0049
|
|
||||||
xep_0050
|
|
||||||
xep_0054
|
|
||||||
xep_0059
|
|
||||||
xep_0060
|
|
||||||
xep_0065
|
|
||||||
xep_0066
|
|
||||||
xep_0070
|
|
||||||
xep_0071
|
|
||||||
xep_0077
|
|
||||||
xep_0079
|
|
||||||
xep_0080
|
|
||||||
xep_0082
|
|
||||||
xep_0084
|
|
||||||
xep_0085
|
|
||||||
xep_0086
|
|
||||||
xep_0092
|
|
||||||
xep_0106
|
|
||||||
xep_0107
|
|
||||||
xep_0108
|
|
||||||
xep_0115
|
|
||||||
xep_0118
|
|
||||||
xep_0122
|
|
||||||
xep_0128
|
|
||||||
xep_0131
|
|
||||||
xep_0133
|
|
||||||
xep_0152
|
|
||||||
xep_0153
|
|
||||||
xep_0163
|
|
||||||
xep_0172
|
|
||||||
xep_0184
|
|
||||||
xep_0186
|
|
||||||
xep_0191
|
|
||||||
xep_0196
|
|
||||||
xep_0198
|
|
||||||
xep_0199
|
|
||||||
xep_0202
|
|
||||||
xep_0203
|
|
||||||
xep_0221
|
|
||||||
xep_0222
|
|
||||||
xep_0223
|
|
||||||
xep_0224
|
|
||||||
xep_0231
|
|
||||||
xep_0235
|
|
||||||
xep_0249
|
|
||||||
xep_0256
|
|
||||||
xep_0257
|
|
||||||
xep_0258
|
|
||||||
xep_0279
|
|
||||||
xep_0280
|
|
||||||
xep_0297
|
|
||||||
xep_0300
|
|
||||||
xep_0308
|
|
||||||
xep_0313
|
|
||||||
xep_0319
|
|
||||||
xep_0332
|
|
||||||
xep_0333
|
|
||||||
xep_0334
|
|
||||||
xep_0335
|
|
||||||
xep_0352
|
|
||||||
xep_0353
|
|
||||||
xep_0359
|
|
||||||
xep_0363
|
|
||||||
xep_0369
|
|
||||||
xep_0377
|
|
||||||
xep_0380
|
|
||||||
xep_0394
|
|
||||||
xep_0403
|
|
||||||
xep_0404
|
|
||||||
xep_0405
|
|
||||||
xep_0421
|
|
||||||
xep_0422
|
|
||||||
xep_0424
|
|
||||||
xep_0425
|
|
||||||
xep_0428
|
|
||||||
xep_0437
|
|
||||||
xep_0439
|
|
||||||
xep_0444
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
|
|
||||||
XEP 0004
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0004
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0004
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0004.stanza.field
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0004.stanza.form
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0009
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0009
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0009
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0009.stanza.RPC
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0012
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0012
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0012
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0012.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0013
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0013
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0013
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0013.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0020
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0020
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0020
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0020.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0027
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0027
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0027
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0027.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
|
|
||||||
XEP 0030
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0030
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0030
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0030.stanza.info
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0030.stanza.items
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0033
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0033
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0033
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0033.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0045
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0045
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0045
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0045.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0047
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0047
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0047
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0047.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0049
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0049
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0049
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0049.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0050
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0050
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0050
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0050.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0054
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0054
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0054
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0054.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0059
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0059
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0059
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0059.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
|
|
||||||
XEP 0060
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0060
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0060
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0060.stanza.base
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0060.stanza.pubsub
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0060.stanza.pubsub_errors
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0060.stanza.pubsub_owner
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0060.stanza.pubsub_event
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0065
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0065
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0065
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0065.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0066
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0066
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0066
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0066.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0070
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0070
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0070
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0070.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0071
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0071
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0071
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0071.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0077
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0077
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0077
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0077.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0079
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0079
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0079
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0079.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0080
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0080
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0080
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0080.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
|
|
||||||
XEP 0082
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0082
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0082
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0084
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0084
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0084
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0084.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0085
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0085
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0085
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0085.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0086
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0086
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0086
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0086.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0092
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0092
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0092
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0092.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
|
|
||||||
XEP 0106
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0106
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0106
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0107
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0107
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0107
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0107.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0108
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0108
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0108
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0108.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0115
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0115
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0115
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0115.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0118
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0118
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0118
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0118.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0122
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0122
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0122
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0122.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
|
|
||||||
XEP 0128
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0128
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0128
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0131
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0131
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0131
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0131.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
|
|
||||||
XEP 0133
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0133
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0133
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0152
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0152
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0152
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0152.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0153
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0153
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0153
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0153.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
|
|
||||||
XEP 0163
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0163
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0163
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0172
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0172
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0172
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0172.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0184
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0184
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0184
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0184.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0186
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0186
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0186
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0186.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0191
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0191
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0191
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0191.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0196
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0196
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0196
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0196.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0198
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0198
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0198
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0198.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0199
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0199
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0199
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0199.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0202
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0202
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0202
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0202.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0203
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0203
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0203
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0203.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0221
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0221
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0221
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0221.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
|
|
||||||
XEP 0222
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0222
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0222
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
|
|
||||||
XEP 0223
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0223
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0223
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0224
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0224
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0224
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0224.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0231
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0231
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0231
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0231.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0235
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0235
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0235
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0235.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0249
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0249
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0249
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0249.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
|
|
||||||
XEP 0256
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0256
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0256
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0257
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0257
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0257
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0257.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0258
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0258
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0258
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0258.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0279
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0279
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0279
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0279.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0280
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0280
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0280
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0280.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0297
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0297
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0297
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0297.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0300
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0300
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0300
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0300.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0308
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0308
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0308
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0308.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0313
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0313
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0313
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0313.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0319
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0319
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0319
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0319.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
|
|
||||||
XEP 0332
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0332
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0332
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0332.stanza.data
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0332.stanza.request
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0332.stanza.response
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0333
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0333
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0333
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0333.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0334
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0334
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0334
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0334.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0335
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0335
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0335
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0335.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0352
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0352
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0352
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0352.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0353
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0353
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0353
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0353.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0359
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0359
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0359
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0359.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0363
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0363
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0363
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0363.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0369
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0369
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0369
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0369.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0377
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0377
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0377
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0377.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0380
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0380
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0380
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0380.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0394
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0394
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0394
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0394.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0403
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0403
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0403
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0403.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0404
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0404
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0404
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0404.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0405
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0405
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0405
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0405.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0421
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0421
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0421
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0421.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
|
|
||||||
XEP 0422
|
|
||||||
========
|
|
||||||
|
|
||||||
.. module:: slixmpp.plugins.xep_0422
|
|
||||||
|
|
||||||
.. autoclass:: XEP_0422
|
|
||||||
:members:
|
|
||||||
:exclude-members: session_bind, plugin_init, plugin_end
|
|
||||||
|
|
||||||
|
|
||||||
Stanza elements
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: slixmpp.plugins.xep_0422.stanza
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user