# HG changeset patch # User Goffi # Date 1352925098 -3600 # Node ID 9dd297c513b4e091fb892b407b85c13599f694e9 # Parent 8f88ae7ed886e6fac29a96550a107451ab180ad1 primitivus: fixed actionResult call (fix gateways management) diff -r 8f88ae7ed886 -r 9dd297c513b4 frontends/src/primitivus/gateways.py --- a/frontends/src/primitivus/gateways.py Wed Nov 14 21:30:21 2012 +0100 +++ b/frontends/src/primitivus/gateways.py Wed Nov 14 21:31:38 2012 +0100 @@ -52,9 +52,9 @@ popup = sat_widgets.Alert(_("Error"), _("You must enter an external server JID"), ok_cb=self.host.removePopUp) self.host.showPopUp(popup) return - id = self.host.bridge.findGateways(server, self.host.profile) - self.host.current_action_ids.add(id) - self.host.current_action_ids_cb[id] = self.host.onGatewaysFound + action_id = self.host.bridge.findGateways(server, self.host.profile) + self.host.current_action_ids.add(action_id) + self.host.current_action_ids_cb[action_id] = self.host.onGatewaysFound self.host.removeWindow() def addGateway(self, widget_list, gateway, param): @@ -78,11 +78,11 @@ def onRegister(self, button): """Called when register button is clicked""" gateway_jid = button.gateway_jid - id = self.host.bridge.in_band_register(gateway_jid, self.host.profile) - self.host.current_action_ids.add(id) + action_id = self.host.bridge.in_band_register(gateway_jid, self.host.profile) + self.host.current_action_ids.add(action_id) def onUnregister(self, button): """Called when unregister button is clicked""" gateway_jid = button.gateway_jid - id = self.host.bridge.gatewayRegister("CANCEL",gateway_jid, None, self.host.profile) - self.host.current_action_ids.add(id) + action_id = self.host.bridge.gatewayRegister("CANCEL",gateway_jid, None, self.host.profile) + self.host.current_action_ids.add(action_id) diff -r 8f88ae7ed886 -r 9dd297c513b4 frontends/src/primitivus/primitivus --- a/frontends/src/primitivus/primitivus Wed Nov 14 21:30:21 2012 +0100 +++ b/frontends/src/primitivus/primitivus Wed Nov 14 21:31:38 2012 +0100 @@ -429,7 +429,10 @@ pop_up_widget = sat_widgets.ConfirmDialog(data["message"], no_cb=refuse_cb, yes_cb=accept_cb) self.showPopUp(pop_up_widget) - def actionResult(self, type, id, data): + def actionResult(self, type, id, data, profile): + if not self.check_profile(profile): + return + if not id in self.current_action_ids: debug (_('unknown id, ignoring')) return