Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2014-02-19 13:30:13 +0400
committerYann Leboulanger <asterix@lagaule.org>2014-02-19 13:30:13 +0400
commitaf4fec2a87aabb2bcb0a3b73b1abe9ede7cdee17 (patch)
tree027dca8fd20afd9d7e0786dfe665ff321c6fcd73
parent6de9548b3b5b7d08372e216ac09f0579a2edda46 (diff)
add NS_MSG_HINTS
-rw-r--r--nbxmpp/__init__.py2
-rw-r--r--nbxmpp/protocol.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/nbxmpp/__init__.py b/nbxmpp/__init__.py
index 1b5f30a..06d25de 100644
--- a/nbxmpp/__init__.py
+++ b/nbxmpp/__init__.py
@@ -17,4 +17,4 @@ from client_nb import NonBlockingClient
from plugin import PlugIn
from smacks import Smacks
-__version__ = "0.3.1"
+__version__ = "0.3.2"
diff --git a/nbxmpp/protocol.py b/nbxmpp/protocol.py
index 2b4792f..d465c8c 100644
--- a/nbxmpp/protocol.py
+++ b/nbxmpp/protocol.py
@@ -83,6 +83,7 @@ NS_GAMING = 'http://jabber.org/protocol/gaming' # XEP-0196
NS_GATEWAY = 'jabber:iq:gateway' # XEP-0100
NS_GEOLOC = 'http://jabber.org/protocol/geoloc' # XEP-0080
NS_GROUPCHAT = 'gc-1.0'
+NS_MSG_HINTS = 'urn:xmpp:hints' # XEP-0280
NS_HTTP_AUTH = 'http://jabber.org/protocol/http-auth' # XEP-0070
NS_HTTP_BIND = 'http://jabber.org/protocol/httpbind' # XEP-0124
NS_IBB = 'http://jabber.org/protocol/ibb'