Mercurial > libervia-backend
comparison sat/bridge/dbus_bridge.py @ 2894:c7c52c0dc13a
core, quick_frontend(app): fixed connected signal handling
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 07 Apr 2019 20:55:27 +0200 |
parents | 82b781c46841 |
children | ab2696e34d29 |
comparison
equal
deleted
inserted
replaced
2893:7c8773723200 | 2894:c7c52c0dc13a |
---|---|
138 def actionNew(self, action_data, id, security_limit, profile): | 138 def actionNew(self, action_data, id, security_limit, profile): |
139 pass | 139 pass |
140 | 140 |
141 @dbus.service.signal(const_INT_PREFIX+const_CORE_SUFFIX, | 141 @dbus.service.signal(const_INT_PREFIX+const_CORE_SUFFIX, |
142 signature='ss') | 142 signature='ss') |
143 def connected(self, profile, jid_s): | 143 def connected(self, jid_s, profile): |
144 pass | 144 pass |
145 | 145 |
146 @dbus.service.signal(const_INT_PREFIX+const_CORE_SUFFIX, | 146 @dbus.service.signal(const_INT_PREFIX+const_CORE_SUFFIX, |
147 signature='ss') | 147 signature='ss') |
148 def contactDeleted(self, entity_jid, profile): | 148 def contactDeleted(self, entity_jid, profile): |
696 self.dbus_bridge._debug(action, params, profile) | 696 self.dbus_bridge._debug(action, params, profile) |
697 | 697 |
698 def actionNew(self, action_data, id, security_limit, profile): | 698 def actionNew(self, action_data, id, security_limit, profile): |
699 self.dbus_bridge.actionNew(action_data, id, security_limit, profile) | 699 self.dbus_bridge.actionNew(action_data, id, security_limit, profile) |
700 | 700 |
701 def connected(self, profile, jid_s): | 701 def connected(self, jid_s, profile): |
702 self.dbus_bridge.connected(profile, jid_s) | 702 self.dbus_bridge.connected(jid_s, profile) |
703 | 703 |
704 def contactDeleted(self, entity_jid, profile): | 704 def contactDeleted(self, entity_jid, profile): |
705 self.dbus_bridge.contactDeleted(entity_jid, profile) | 705 self.dbus_bridge.contactDeleted(entity_jid, profile) |
706 | 706 |
707 def disconnected(self, profile): | 707 def disconnected(self, profile): |