summaryrefslogtreecommitdiffstats
path: root/tools/h5dump
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2011-08-10 20:51:44 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2011-08-10 20:51:44 (GMT)
commit5f2eebe1b64a77fc747126f0509eaff32249ad40 (patch)
treebbf87a4b402a0e130d8386b37c6ae6bc7c7f3790 /tools/h5dump
parent863e8872cb7fc902029762a149641fd1d66d6631 (diff)
downloadhdf5-5f2eebe1b64a77fc747126f0509eaff32249ad40.zip
hdf5-5f2eebe1b64a77fc747126f0509eaff32249ad40.tar.gz
hdf5-5f2eebe1b64a77fc747126f0509eaff32249ad40.tar.bz2
[svn-r21211] Correct location of xml schema files. JIRA HDFFV-7688
Diffstat (limited to 'tools/h5dump')
-rw-r--r--tools/h5dump/h5dump.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c
index 23ab0a5..17dba83 100644
--- a/tools/h5dump/h5dump.c
+++ b/tools/h5dump/h5dump.c
@@ -113,8 +113,8 @@ static int packed_length[PACKED_BITS_MAX];
**/
/* module-scoped variables for XML option */
-#define DEFAULT_XSD "http://www.hdfgroup.org/DTDs/HDF5-File.xsd"
-#define DEFAULT_DTD "http://www.hdfgroup.org/DTDs/HDF5-File.dtd"
+#define DEFAULT_XSD "http://www.hdfgroup.org/HDF5/XML/schema/HDF5-File.xsd"
+#define DEFAULT_DTD "http://www.hdfgroup.org/HDF5/XML/schema/HDF5-File.dtd"
static int doxml = 0;
static int useschema = 1;
@@ -4776,10 +4776,10 @@ main(int argc, const char *argv[])
indx = strrchr(ns,(int)':');
if (indx) *indx = '\0';
- HDfprintf(stdout, "<%sHDF5-File xmlns:%s=\"http://hdfgroup.org/DTDs/HDF5-File\" "
+ HDfprintf(stdout, "<%sHDF5-File xmlns:%s=\"http://hdfgroup.org/HDF5/XML/schema/HDF5-File\" "
"xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" "
- "xsi:schemaLocation=\"http://hdfgroup.org/DTDs/HDF5-File "
- "http://www.hdfgroup.org/DTDs/HDF5-File.xsd\">\n",xmlnsprefix,ns);
+ "xsi:schemaLocation=\"http://hdfgroup.org/HDF5/XML/schema/HDF5-File "
+ "http://www.hdfgroup.org/HDF5/XML/schema/HDF5-File.xsd\">\n",xmlnsprefix,ns);
HDfree(ns);
}
}