Changeset 8618 for branches/gajim_0.11.1/src/common
- Timestamp:
- 08/30/07 01:38:15 (15 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.1/src/common/connection_handlers.py
r8617 r8618 1182 1182 method = iq_obj.getTagAttr('confirm', 'method') 1183 1183 url = iq_obj.getTagAttr('confirm', 'url') 1184 self.dispatch('HTTP_AUTH', (method, url, id, iq_obj)); 1184 msg = iq_obj.getTagData('body') # In case it's a message with a body 1185 self.dispatch('HTTP_AUTH', (method, url, id, iq_obj, msg)); 1185 1186 raise common.xmpp.NodeProcessed 1186 1187 … … 1385 1386 if msg.getTag('event') is not None: 1386 1387 self._pubsubEventCB(con, msg) 1388 return 1389 # check if the message is a xep70-confirmation-request 1390 if msg.getTag('confirm') and msg.getTag('confirm').namespace == \ 1391 common.xmpp.NS_HTTP_AUTH: 1392 self._HttpAuthCB(con, msg) 1387 1393 return 1388 1394 msgtxt = msg.getBody()
