# HG changeset patch # User Goffi # Date 1256572819 -3600 # Node ID 4b05308d45f9fcd1ba57757eec3c54be4662cf46 # Parent c14a3a7018a57153e89a51c605cfddaa7bc46de8 fixed bad namespace diff -r c14a3a7018a5 -r 4b05308d45f9 plugins/plugin_xep_0065.py --- a/plugins/plugin_xep_0065.py Sat Oct 24 01:05:17 2009 +0200 +++ b/plugins/plugin_xep_0065.py Mon Oct 26 17:00:19 2009 +0100 @@ -453,6 +453,7 @@ def sendFile(self, id, filepath, size): #lauching socks5 initiator + debug("Launching socks5 initiator") self.server_factory.protocol.mode = "initiator" self.server_factory.protocol.filepath = filepath self.server_factory.protocol.filesize = size diff -r c14a3a7018a5 -r 4b05308d45f9 plugins/plugin_xep_0096.py --- a/plugins/plugin_xep_0096.py Sat Oct 24 01:05:17 2009 +0200 +++ b/plugins/plugin_xep_0096.py Mon Oct 26 17:00:19 2009 +0100 @@ -145,7 +145,7 @@ si=offer.addElement('si','http://jabber.org/protocol/si') si["mime-type"]='text/plain' si["profile"]='http://jabber.org/protocol/si/profile/file-transfer' - file = si.addElement('file', 'http://jabber.org/protocol/si') + file = si.addElement('file', 'http://jabber.org/protocol/si/profile/file-transfer') file['name']=os.path.basename(filepath) file['size']=str(statinfo.st_size)