Mercurial > libervia-backend
comparison frontends/src/bridge/DBus.py @ 365:efbfccfed623
core: local_dir moved to config file
- ~/.sat.conf added to potential config file location
- removed useless profile param from getConfig
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 18 Jun 2011 17:56:59 +0200 |
parents | 312ca6f9d84a |
children | f964dcec1611 |
comparison
equal
deleted
inserted
replaced
364:312ca6f9d84a | 365:efbfccfed623 |
---|---|
79 return self.db_req_iface.deleteProfile(profile) | 79 return self.db_req_iface.deleteProfile(profile) |
80 | 80 |
81 def disconnect(self, profile_key="@DEFAULT@"): | 81 def disconnect(self, profile_key="@DEFAULT@"): |
82 return self.db_comm_iface.disconnect(profile_key) | 82 return self.db_comm_iface.disconnect(profile_key) |
83 | 83 |
84 def getConfig(self, section, name, profile_key='@DEFAULT@'): | 84 def getConfig(self, section, name): |
85 return unicode(self.db_comm_iface.getConfig(section, name, profile_key)) | 85 return unicode(self.db_comm_iface.getConfig(section, name)) |
86 | 86 |
87 def getContacts(self, profile_key="@DEFAULT@"): | 87 def getContacts(self, profile_key="@DEFAULT@"): |
88 return self.db_comm_iface.getContacts(profile_key) | 88 return self.db_comm_iface.getContacts(profile_key) |
89 | 89 |
90 def getHistory(self, from_jid, to_jid, size): | 90 def getHistory(self, from_jid, to_jid, size): |