conduit r1387 - in trunk: . conduit/modules
- From: thomasvm svn gnome org
- To: svn-commits-list gnome org
- Subject: conduit r1387 - in trunk: . conduit/modules
- Date: Sat, 22 Mar 2008 17:36:53 +0000 (GMT)
Author: thomasvm
Date: Sat Mar 22 17:36:53 2008
New Revision: 1387
URL: http://svn.gnome.org/viewvc/conduit?rev=1387&view=rev
Log:
2008-03-22 Thomas Van Machelen <thomas vanmachelen gmail com>
* conduit/modules/TomboyModule.py: Use tuples instead of strings for
checking the Tomboy version. Fixes #523692
Modified:
trunk/ChangeLog
trunk/conduit/modules/TomboyModule.py
Modified: trunk/conduit/modules/TomboyModule.py
==============================================================================
--- trunk/conduit/modules/TomboyModule.py (original)
+++ trunk/conduit/modules/TomboyModule.py Sat Mar 22 17:36:53 2008
@@ -97,8 +97,8 @@
TOMBOY_DBUS_PATH = "/org/gnome/Tomboy/RemoteControl"
TOMBOY_DBUS_IFACE = "org.gnome.Tomboy"
- TOMBOY_MIN_VERSION = "0.5.10"
- TOMBOY_COMPLETE_XML_VERSION = "0.9.0"
+ TOMBOY_MIN_VERSION = (0, 5, 10)
+ TOMBOY_COMPLETE_XML_VERSION = (0 ,9 ,0)
def __init__(self, *args):
DataProvider.TwoWay.__init__(self)
@@ -117,14 +117,14 @@
if Utils.dbus_service_available(TomboyNoteTwoWay.TOMBOY_DBUS_IFACE, bus):
obj = bus.get_object(TomboyNoteTwoWay.TOMBOY_DBUS_IFACE, TomboyNoteTwoWay.TOMBOY_DBUS_PATH)
app = dbus.Interface(obj, "org.gnome.Tomboy.RemoteControl")
- version = str(app.Version())
+ version = tuple(int(item) for item in str(app.Version()).split('.'))
if version >= TomboyNoteTwoWay.TOMBOY_MIN_VERSION:
self.remoteTomboy = app
self.remoteTomboy.connect_to_signal("NoteAdded", lambda uid: self.handle_added(str(uid)))
self.remoteTomboy.connect_to_signal("NoteSaved", lambda uid: self.handle_modified(str(uid)))
self.remoteTomboy.connect_to_signal("NoteDeleted", lambda uid, x: self.handle_deleted(str(uid)))
self.supportsCompleteXML = version >= TomboyNoteTwoWay.TOMBOY_COMPLETE_XML_VERSION
- log.info("Using Tomboy Version %s" % version)
+ log.info("Using Tomboy Version %s" % str(version))
return True
return False
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]