1d0761b97a
^8{4}$ e.g. 85115 which seems to be the default. Thus 80000 thru 89999.
101 lines
3.1 KiB
XML
101 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<include><!--This line will be ignored it's here to validate the xml and is optional -->
|
|
|
|
<macro name="saymoney">
|
|
<input pattern="(.*)">
|
|
<match>
|
|
<action function="say" data="$1" method="pronounced" type="currency"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
<macro name="msgcount">
|
|
<input pattern="(.*)">
|
|
<match>
|
|
<action function="execute" data="sleep(1000)"/>
|
|
<action function="play-file" data="voicemail/vm-you_have.wav"/>
|
|
<action function="say" data="$1" method="pronounced" type="items"/>
|
|
<action function="play-file" data="voicemail/vm-messages.wav"/>
|
|
<!-- or -->
|
|
<!--<action function="speak-text" data="you have $1 messages"/>-->
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
<macro name="saydate">
|
|
<input pattern="(.*)">
|
|
<match>
|
|
<action function="say" data="$1" method="pronounced" type="current_date_time"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
<macro name="saydatetime">
|
|
<input pattern="(.*)">
|
|
<match>
|
|
<action function="say" data="$1" method="pronounced" type="current_date_time"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
<macro name="timespec">
|
|
<input pattern="(.*)">
|
|
<match>
|
|
<action function="say" data="$1" method="pronounced" type="time_measurement"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
<macro name="timespec2">
|
|
<input pattern="(.*)">
|
|
<match>
|
|
<action function="say" data="$1" method="pronounced" type="CURRENT_DATE_TIME"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
<macro name="ip-addr-interated">
|
|
<input pattern="(.*)">
|
|
<match>
|
|
<action function="say" data="$1" method="iterated" type="ip_address"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
<macro name="ip-addr">
|
|
<input pattern="(.*)">
|
|
<match>
|
|
<action function="say" data="$1" method="pronounced" type="ip_address"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
<macro name="spell">
|
|
<input pattern="(.*)">
|
|
<match>
|
|
<action function="say" data="$1" method="pronounced" type="name_spelled"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
<macro name="spell-phonetic">
|
|
<input pattern="(.*)">
|
|
<match>
|
|
<action function="say" data="$1" method="pronounced" type="name_phonetic"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
<macro name="tts-timeleft">
|
|
<!-- The parser will visit each <input> tag and execute the actions in <match> or <nomatch> depending on the pattern param -->
|
|
<!-- If the function "break" is encountered all parsing will cease -->
|
|
<input pattern="(\d+):(\d+)">
|
|
<match>
|
|
<action function="speak-text" data="You have $1 minutes, $2 seconds remaining $strftime(%Y-%m-%d)"/>
|
|
<action function="break"/>
|
|
</match>
|
|
<nomatch>
|
|
<action function="speak-text" data="That input was invalid."/>
|
|
</nomatch>
|
|
</input>
|
|
<input pattern="(\d+) min (\d+) sec">
|
|
<match>
|
|
<action function="speak-text" data="You have $1 minutes, $2 seconds remaining $strftime(%Y-%m-%d)"/>
|
|
</match>
|
|
<nomatch>
|
|
<action function="speak-text" data="That input was invalid."/>
|
|
</nomatch>
|
|
</input>
|
|
</macro>
|
|
</include><!--This line will be ignored it's here to validate the xml and is optional -->
|