mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 00:04:53 +00:00
Fix the grammar that Kevin broke
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@19858 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -128,18 +128,17 @@ just do a Goto based on the result text.
|
|||||||
|
|
||||||
- Grammar: company-directory.gram
|
- Grammar: company-directory.gram
|
||||||
|
|
||||||
#ABNF 1.0;
|
#ABNF 1.0;
|
||||||
language en-US;
|
language en-US;
|
||||||
mode voice;
|
mode voice;
|
||||||
tag-format <lumenvox/1.0>;
|
tag-format <lumenvox/1.0>;
|
||||||
|
root $company_directory;
|
||||||
|
|
||||||
root $company_directory;
|
$josh = ((Joshua | Josh) [Colp]):"6066";
|
||||||
|
$mark = (Mark [Spencer] | Markster):"4569";
|
||||||
|
$kevin = (Kevin [Fleming]):"2567";
|
||||||
|
|
||||||
$josh = (Joshua | Josh) [Colp]:"6066";
|
$company_directory = ($josh | $mark | $kevin) { $ = $$ };
|
||||||
$mark = Mark [Spencer] | Markster:"4569";
|
|
||||||
$kevin = Kevin [Fleming]:"2567";
|
|
||||||
|
|
||||||
$company_directory = ($josh | $mark | $kevin) { $ = parseInt($$) };
|
|
||||||
|
|
||||||
- Dialplan logic
|
- Dialplan logic
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user