git-svn-id: https://subversion.xor.aps.anl.gov/synApps/areaDetector/trunk@13176 dc6c5ff5-0b8b-c028-a01f-ffb33f00fc8b
30 lines
1.1 KiB
Bash
Executable File
30 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
########### SVN repository information ###################
|
|
# $Date$
|
|
# $Author$
|
|
# $Revision$
|
|
# $HeadURL$
|
|
# $Id$
|
|
########### SVN repository information ###################
|
|
|
|
# Validate the XML Attribute and Template files
|
|
|
|
|
|
# NDArray Attribute declaration files
|
|
xmllint --noout --schema ./attributes.xsd iocPerkinElmer/nexus_templates/PerkinElmerParams.xml
|
|
xmllint --noout --schema ./attributes.xsd iocPilatus/pilatusAttributes.xml
|
|
xmllint --noout --schema ./attributes.xsd iocProsilica/prosilicaAttributes.xml
|
|
xmllint --noout --schema ./attributes.xsd iocSimDetector/ROIAttributes.xml
|
|
xmllint --noout --schema ./attributes.xsd iocSimDetector/netCDFAttributes.xml
|
|
xmllint --noout --schema ./attributes.xsd iocSimDetector/simDetectorAttributes.xml
|
|
|
|
# template files
|
|
#
|
|
# cannot validate, no XML Schema developed yet
|
|
#
|
|
#iocPerkinElmer/nexus_templates/example.xml fails to validate
|
|
#iocSimDetector/NexusTemplate.xml fails to validate
|
|
xmllint --noout --schema ./NeXus_templates.xsd iocPerkinElmer/nexus_templates/example.xml
|
|
xmllint --noout --schema ./NeXus_templates.xsd iocSimDetector/NexusTemplate.xml
|