undeclared namespace in the SCXML document example

Hello,

In section G.1 [1] I can read:
'<xi:include href="SCXMLExamples/Test2Sub1.xml" parse="text"/>'

But you have forgotten the namespace declaration:
'<scxml xmlns="http://www.w3.org/2005/07/scxml"
       version="1.0"
       initial="Main"
       datamodel="ecmascript">'

I suggest to replace the previous line by this:
'<scxml xmlns="http://www.w3.org/2005/07/scxml"
       xmlns:xi="http://www.w3.org/2001/XInclude"
       version="1.0"
       initial="Main"
       datamodel="ecmascript">'

Thank you.
Regards.

[1] http://www.w3.org/TR/2012/WD-scxml-20121206/#N1179B

Received on Tuesday, 12 February 2013 08:22:17 UTC