comparison frontends/sat_bridge_frontend/DBus.py @ 25:53e921c8a357

new plugin: gateways plugin, and first implementation of findGateways - test menu in Wix - new actionResultExt method, for sending dictionary of dictionaries - new getNextId method, for accessing sat ids from plugins.
author Goffi <goffi@goffi.org>
date Fri, 04 Dec 2009 08:47:44 +0100
parents bb72c29f3432
children d6b613764dd7
comparison
equal deleted inserted replaced
24:61124cb82fb7 25:53e921c8a357
56 return self.db_comm_iface.sendMessage(to, message) 56 return self.db_comm_iface.sendMessage(to, message)
57 57
58 def sendFile(self, to, path): 58 def sendFile(self, to, path):
59 return self.db_comm_iface.sendFile(to, path) 59 return self.db_comm_iface.sendFile(to, path)
60 60
61 def findGateways(self, target):
62 return self.db_comm_iface.findGateways(target)
63
61 def setPresence(self, to="", type="", show="", status="", priority=0): 64 def setPresence(self, to="", type="", show="", status="", priority=0):
62 return self.db_comm_iface.setPresence(to, type, show, status, priority) 65 return self.db_comm_iface.setPresence(to, type, show, status, priority)
63 66
64 def setParam(self, name, value, category): 67 def setParam(self, name, value, category):
65 return self.db_comm_iface.setParam(name, value, category) 68 return self.db_comm_iface.setParam(name, value, category)