diff frontends/src/bridge/DBus.py @ 1224:f0c9b149ed99

bridge, memory: add "search" attribute to getHistory (filter the results with a unix globbing pattern)
author souliane <souliane@mailoo.org>
date Sat, 04 Oct 2014 10:25:32 +0200
parents bf2927e6a0f5
children c1e916594e09
line wrap: on
line diff
--- a/frontends/src/bridge/DBus.py	Sat Oct 04 10:23:13 2014 +0200
+++ b/frontends/src/bridge/DBus.py	Sat Oct 04 10:25:32 2014 +0200
@@ -164,8 +164,8 @@
     def getEntityData(self, jid, keys, profile):
         return self.db_core_iface.getEntityData(jid, keys, profile)
 
-    def getHistory(self, from_jid, to_jid, limit, between=True, profile="@NONE@", callback=None, errback=None):
-        return self.db_core_iface.getHistory(from_jid, to_jid, limit, between, profile, timeout=const_TIMEOUT, reply_handler=callback, error_handler=lambda err:errback(dbus_to_bridge_exception(err)))
+    def getHistory(self, from_jid, to_jid, limit, between=True, search='', profile="@NONE@", callback=None, errback=None):
+        return self.db_core_iface.getHistory(from_jid, to_jid, limit, between, search, profile, timeout=const_TIMEOUT, reply_handler=callback, error_handler=lambda err:errback(dbus_to_bridge_exception(err)))
 
     def getLastResource(self, contact_jid, profile_key="@DEFAULT@"):
         return unicode(self.db_core_iface.getLastResource(contact_jid, profile_key))