-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalue.xml
More file actions
74 lines (51 loc) · 1.46 KB
/
Copy pathvalue.xml
File metadata and controls
74 lines (51 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8"?>
<vxml version = "2.1" xmlns="http://www.w3.org/2001/vxml">
<meta name="CSEN903-CSEN904" content="met.guc.edu.eg"/>
<form id="MainMenu">
<block>
Welcome to the foobar system!
</block>
<field name="city">
<prompt>Where do you want to travel to?</prompt>
<!-- Define the grammar. -->
<grammar xml:lang="en-us" root = "myrule">
<rule id="myrule">
<one-of>
<item>Cairo </item>
<item>London </item>
<item>Paris </item>
</one-of>
</rule>
</grammar>
</field>
<!-- another way of getting input for city
<field name="city">
<prompt>Where do you want to travel to?</prompt>
<option>Cairo</option>
<option>London</option>
<option>Paris</option>
</field>
-->
<field name="travellers" type="number">
<prompt count="1">
How many are travelling to <value expr="city"/>?
</prompt>
<prompt count="2">
Please tell me the number of people travelling.
</prompt>
<prompt count="3">
To book a flight, you must tell me the number
of people travelling to <value expr="city"/>.
</prompt>
<nomatch>
<prompt>Please say just a number.</prompt>
<reprompt/>
</nomatch>
</field>
<filled namelist="travellers">
<prompt>
Thanks! You've reserved <value expr="travellers"/> tickets to <value expr="city"/>
</prompt>
</filled>
</form>
</vxml>