phoneapp/silenceactionplugin/data/silence.rul
branchRCL_3
changeset 34 b68fcd923911
parent 31 ba54057fe027
child 35 4853f386dec0
child 39 b8d67d6176f5
--- a/phoneapp/silenceactionplugin/data/silence.rul	Tue May 11 16:13:03 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,45 +0,0 @@
-<script xmlns="http://www.nokia.com/ns/cep/script/1.0/"
-xmlns:cep="http://www.nokia.com/ns/cep/1.0/">
-
-    <!-- Check if we have incoming call and we receive display down orientation event -->
-    <if>
-        <and>
-            <!-- Must have a ringin call and receive orientation event from sensor -->
-            <equals>
-                <contextRef source='Call' type='State'/>
-                <string>Ringing</string>
-            </equals>
-            <equals>
-                <contextRef source='Sensor' type='Setting.Active'/>
-                <string>On</string>
-            </equals>
-            <!-- Check that turning interaction is set -->
-            <equals>
-                <contextRef source='Sensor' type='Setting.TurningInteraction.SilenceCalls'/>
-                <string>On</string>
-            </equals>
-            <!-- ...and previous orientation is not 'Undefined' ... -->
-            <notEqual>
-                <contextRef source='Sensor' type='Event.Orientation.Previous'/>
-                <string>Undefined</string>
-            </notEqual>
-            <contextChanged>
-                <contextRef source='Sensor' type='Event.Orientation'/>
-            </contextChanged>
-            <equals>
-                <contextRef source='Sensor' type='Event.Orientation'/>
-                <string>DisplayDownwards</string>
-            </equals>
-        </and>
-        <actions>
-            <!-- DEBUG -->
-            <!-- <publishContext><contextRef source="Test" type="Log" value="silence.rul - 01 silence call only"/></publishContext> -->
-
-            <!-- Silence ringing tone -->
-            <Phone Command='Silence'/>
-            <!-- Vibra feedback -->
-            <Vibra Mode='Start' Delay='0' Repeats='2' RepeatInterval='200' Duration='50' Intensity='50'/>
-        </actions>
-    </if>
-
-</script>
\ No newline at end of file