Mercurial > libervia-backend
diff frontends/src/primitivus/gateways.py @ 546:9dd297c513b4
primitivus: fixed actionResult call (fix gateways management)
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 14 Nov 2012 21:31:38 +0100 |
parents | 2a072735e459 |
children | ca13633d3b6b |
line wrap: on
line diff
--- 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)