Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorBenjamin Saller <bcsaller@objectrealms.net>2007-06-25 09:46:15 (GMT)
committer Benjamin Saller <bcsaller@objectrealms.net>2007-06-25 09:46:15 (GMT)
commit495ab21d0613adca7c373b2040a042f6ffcf510c (patch)
treec0b59510186ecab2c3aba2b3319a3a9358bcf0e9 /bin
parent117a52f340e3a1a26e2658364e1a2123acff2867 (diff)
obsolete file
Diffstat (limited to 'bin')
-rwxr-xr-xbin/datastore-native15
1 files changed, 0 insertions, 15 deletions
diff --git a/bin/datastore-native b/bin/datastore-native
deleted file mode 100755
index 9396129..0000000
--- a/bin/datastore-native
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env python
-from olpc.datastore import DataStore
-
-# native dbus loop
-import gobject
-import dbus.service
-import dbus.mainloop.glib
-
-dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
-
-ds = DataStore("/tmp", "sqlite://")
-
-mainloop = gobject.MainLoop()
-mainloop.run()
-