From 76e07a9089c1edc46fafb66844d1cd4a9660582f Mon Sep 17 00:00:00 2001 From: Eric Hansen Date: Mon, 27 May 2013 06:14:21 -0400 Subject: Add xep_0095 and xep_0096 to setup so they are installed into the egg --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 71e269e6..6abc8efc 100755 --- a/setup.py +++ b/setup.py @@ -86,6 +86,8 @@ packages = [ 'sleekxmpp', 'sleekxmpp/plugins/xep_0086', 'sleekxmpp/plugins/xep_0091', 'sleekxmpp/plugins/xep_0092', + 'sleekxmpp/plugins/xep_0095', + 'sleekxmpp/plugins/xep_0096', 'sleekxmpp/plugins/xep_0107', 'sleekxmpp/plugins/xep_0108', 'sleekxmpp/plugins/xep_0115', -- cgit v1.2.3 From a9e7d489b8834e10b1ec577761016fe7ba31a146 Mon Sep 17 00:00:00 2001 From: Florian Zeitz Date: Fri, 7 Jun 2013 13:20:36 +0200 Subject: Properly set itemID for XEP-0084 metadata --- sleekxmpp/plugins/xep_0084/avatar.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sleekxmpp/plugins/xep_0084/avatar.py b/sleekxmpp/plugins/xep_0084/avatar.py index 2454afc7..677a888d 100644 --- a/sleekxmpp/plugins/xep_0084/avatar.py +++ b/sleekxmpp/plugins/xep_0084/avatar.py @@ -82,6 +82,7 @@ class XEP_0084(BasePlugin): metadata.add_pointer(pointer) return self.xmpp['xep_0163'].publish(metadata, + id=info['id'], ifrom=ifrom, block=block, callback=callback, -- cgit v1.2.3