April CCXML: problem found in test document 6_1.txml

Hello www-voice,

There are some missing + symbols in the javascript of 6_1.txml of 
http://www.w3.org/Voice/2009/ccxml-irp/ccxml10-irp-20100331.zip

line 477 reads:
<conf:fail reason="'expr of ccxml.exit : '   event$.expr + ' does not 
match the expr of exit tag (oops!) '"/>
but should be
<conf:fail reason="'expr of ccxml.exit : '   + event$.expr + ' does not 
match the expr of exit tag (oops!) '"/>

Same type of error on line 489:
<conf:fail reason="'reason of ccxml.exit : ' event$.reason + ' does not 
match the real exit reason (must be exit) '"/>
needs to be
<conf:fail reason="'reason of ccxml.exit : ' + event$.reason + ' does 
not match the real exit reason (must be exit) '"/>

The missing + symbols cause the javascript to explode.

Thanks

-- 
Chris Davis
Interact Incorporated R&D
512-502-9969x117

Received on Thursday, 15 April 2010 15:47:57 UTC