From e894bb54a67431f0aba5cd7704365701639af291 Mon Sep 17 00:00:00 2001 From: Tomeu Vizoso Date: Wed, 27 Jun 2007 09:36:05 +0000 Subject: Added mount() and mounts() methods to datastore. --- diff --git a/sugar/datastore/datastore.py b/sugar/datastore/datastore.py index 7f47138..5697940 100644 --- a/sugar/datastore/datastore.py +++ b/sugar/datastore/datastore.py @@ -142,3 +142,8 @@ def find(query, sorting=None, limit=None, offset=None, reply_handler=None, return objects, total_count +def mount(uri, options): + return dbus_helpers.mount(uri, options) + +def mounts(): + return dbus_helpers.mounts() diff --git a/sugar/datastore/dbus_helpers.py b/sugar/datastore/dbus_helpers.py index 2dfccac..d642988 100644 --- a/sugar/datastore/dbus_helpers.py +++ b/sugar/datastore/dbus_helpers.py @@ -59,10 +59,16 @@ def get_filename(uid): return filename def find(query, reply_handler, error_handler): - logging.debug('dbus_helpers.find') + logging.debug('dbus_helpers.find: %r' % query) if reply_handler and error_handler: return _data_store.find(query, reply_handler=reply_handler, error_handler=error_handler) else: return _data_store.find(query) +def mount(uri, options): + return _data_store.mount(uri, options) + +def mounts(): + return _data_store.mounts() + -- cgit v0.9.1