[pkg-fso-commits] [SCM] framworkd debian packageing branch, master, updated. milestone2-89-geb27523

Guillaume Chereau (none) charlie at nikopol.
Sat Aug 23 14:06:22 UTC 2008


The following commit has been merged in the master branch:
commit 93e75b66097a93ca5848c848a452e1b84803c052
Author: Guillaume Chereau <charlie at nikopol.(none)>
Date:   Thu Aug 21 15:46:55 2008 +0800

    [oeventsd] Some typo in the parser functions (thanks to Julien Cassignol)

diff --git a/framework/subsystems/oeventsd/parser.py b/framework/subsystems/oeventsd/parser.py
index 37f9d73..e45b8f0 100644
--- a/framework/subsystems/oeventsd/parser.py
+++ b/framework/subsystems/oeventsd/parser.py
@@ -77,12 +77,12 @@ class CallStatus(Function):
 class PlaySound(Function):
     name = 'PlaySound'
     def __call__(self, file):
-        return AudioAction(file, 'Play')
+        return AudioAction(file, 'play')
 
 class StopSound(Function):
     name = 'StopSound'
     def __call__(self, file):
-        return AudioAction(file, 'Stop')
+        return AudioAction(file, 'stop')
 
 class RingTone(Function):
     name = 'RingTone'
@@ -92,12 +92,12 @@ class RingTone(Function):
 class StartVibration(Function):
     name = 'StartVibration'
     def __call__(self):
-        return VibratorAction(action='Start')
+        return VibratorAction(action='start')
 
 class StopVibration(Function):
     name = 'StopVibration'
     def __call__(self):
-        return VibratorAction(action='Stop')
+        return VibratorAction(action='stop')
 
 class Not(Function):
     name = 'Not'

-- 
framworkd debian packageing



More information about the pkg-fso-commits mailing list