Skip to content
Snippets Groups Projects
Commit 9c2e63cd authored by Brutzman, Don's avatar Brutzman, Don
Browse files

fix parameter reference, avoid .x3d.x3d reference

parent 814d32b0
No related branches found
No related tags found
No related merge requests found
......@@ -3866,13 +3866,13 @@ app.replica.args=-mode scene -mipmaps -antialias 8 -anisotropicDegree 16 -verbos
<mapper dir="." type="glob" from="*.x3d" to="*.html"/>
<sequential>
<echo message="check well-formedness of original model..."/>
<xmlvalidate file="@{file.path.name}.x3d" failonerror="false" warn="true" lenient="true"/>
<xmlvalidate file="@{file.path.name}" failonerror="false" warn="true" lenient="true"/>
<echo message="check DTD validation of original model..."/>
<xmlvalidate file="@{file.path.name}.x3d" failonerror="false" warn="true">
<xmlvalidate file="@{file.path.name}" failonerror="false" warn="true">
<xmlcatalog refid="X3dCatalog"/>
</xmlvalidate>
<echo message="check schema validation of original model..."/>
<schemavalidate file="@{file.path.name}.x3d" failonerror="false" fullchecking="false" lenient="false" warn="true">
<schemavalidate file="@{file.path.name}" failonerror="false" fullchecking="false" lenient="false" warn="true">
<xmlcatalog refid="X3dCatalog"/>
</schemavalidate>
<echo message="check schematron validation of original model..."/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment