summaryrefslogtreecommitdiffstats
path: root/test/uscxml/test-mmi-im.scxml
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-05-12 13:12:33 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-05-12 13:12:33 (GMT)
commitb62e7979600feee23dc7cdb61042a8fc7673122b (patch)
treef7351372f37979dd2d048e0b68a16a4cd3b2aadb /test/uscxml/test-mmi-im.scxml
parent1b11b310be61e51b3ac5ebb83f7c8a33aef3d6e8 (diff)
downloaduscxml-b62e7979600feee23dc7cdb61042a8fc7673122b.zip
uscxml-b62e7979600feee23dc7cdb61042a8fc7673122b.tar.gz
uscxml-b62e7979600feee23dc7cdb61042a8fc7673122b.tar.bz2
Major Refactoring v2.0
Diffstat (limited to 'test/uscxml/test-mmi-im.scxml')
-rw-r--r--test/uscxml/test-mmi-im.scxml76
1 files changed, 0 insertions, 76 deletions
diff --git a/test/uscxml/test-mmi-im.scxml b/test/uscxml/test-mmi-im.scxml
deleted file mode 100644
index 70cb3b8..0000000
--- a/test/uscxml/test-mmi-im.scxml
+++ /dev/null
@@ -1,76 +0,0 @@
-<scxml datamodel="ecmascript" name="mmi-test"
- xmlns:mmi="http://www.w3.org/2008/04/mmi-arch"
- xmlns:html="http://www.w3.org/1999/xhtml"
- xmlns="http://www.w3.org/2005/07/scxml">
-
- <script>
-<![CDATA[
-
- function dump(object, level) {
- if (!level) level = 0;
-
- var padding = "";
- for (var j=0;j < level+1;j++) padding += " ";
-
- if (typeof(object) == 'object') {
- for (var item in object) {
- if (item === "lastChild") continue;
- if (item === "firstChild") continue;
- if (item === "ownerDocument") continue;
- var value = object[item];
-
- if(typeof(value) == 'object') {
- print (padding + "'" + item + "' ...\n");
- dump (value, level+1);
- } else {
- print (padding + "'" + item + "' => \"" + value + "\"\n");
- }
- }
- } else {
- print("===> " + object + " <===(" + typeof(object) + ")");
- }
- }
-]]>
- </script>
-
- <state id="startmc">
- <!-- invoke type="vxml" id="mc.vxml" / -->
- <!-- invoke type="xhtml" id="mc.xhtml" / -->
-
- <!-- Idle here and wait for events -->
- <state id="idle">
-
- <!-- setup session -->
- <transition event="mmi.newcontextrequest" target="idle">
-
- <send type="mmi.event">
- <content>
- <mmi:NewContextResponse mmi:Status="success" />
- </content>
- </send>
-
- <send type="mmi.event">
- <content>
- <mmi:StartRequest>
- <mmi:Content>
- <html:form onmouseover ="mmiSession.send({ Name: 'onmouseover', Data: arguments[0] })">
- First name: <html:input type="text" name="firstname" /><html:br />
- Last name: <html:input type="text" name="lastname" />
- <html:input
- onclick="mmiSession.send({ Name: 'onsubmit', Data: arguments[0] })"
- type="button" value="Submit" />
- </html:form>
- </mmi:Content>
- </mmi:StartRequest>
- </content>
- </send>
- </transition>
-
- <transition event="mmi.extensionnotification" target="idle">
- <!--script>dump(_event)</script -->
- </transition>
-
- </state>
- </state>
- <final id="terminate" />
-</scxml> \ No newline at end of file