[pkg-fso-commits] [SCM] FSO frameworkd Debian packaging branch, master, updated. milestone5.1

Michael 'Mickey' Lauer mickey at vanille-media.de
Sat Jun 6 12:21:47 UTC 2009


The following commit has been merged in the master branch:
commit 13a3069efe96a7e19a0ac2970940aedc3b7813a2
Author: Michael 'Mickey' Lauer <mickey at vanille-media.de>
Date:   Sat Feb 21 01:37:23 2009 +0100

    oeventsd: use QueuedDBusAction only for triggers that really need it; RingTone for now

diff --git a/framework/subsystems/oeventsd/fso_actions.py b/framework/subsystems/oeventsd/fso_actions.py
index a3a2de4..c20e859 100644
--- a/framework/subsystems/oeventsd/fso_actions.py
+++ b/framework/subsystems/oeventsd/fso_actions.py
@@ -13,13 +13,13 @@ Module: fso_actions
 
 """
 
-__VERSION__ = "0.4.2"
+__VERSION__ = "0.4.3"
 MODULE_NAME = "oeventsd"
 
 import framework.patterns.tasklet as tasklet
 
 from action import Action
-from action import QueuedDBusAction as DBusAction
+from action import QueuedDBusAction, DBusAction
 from framework.controller import Controller
 from framework.config import installprefix
 
@@ -75,7 +75,7 @@ class AudioAction(Action):
         self.length = length
 
     def trigger(self, **kargs):
-        DBusAction(
+        QueuedDBusAction(
             dbus.SystemBus(),
             'org.freesmartphone.odeviced',
             '/org/freesmartphone/Device/Audio',
@@ -83,7 +83,7 @@ class AudioAction(Action):
             'PlaySound', self.path, self.loop, self.length).trigger()
 
     def untrigger(self, **kargs):
-        DBusAction(
+        QueuedDBusAction(
             dbus.SystemBus(),
             'org.freesmartphone.odeviced',
             '/org/freesmartphone/Device/Audio',

-- 
FSO frameworkd Debian packaging



More information about the pkg-fso-commits mailing list