diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2011-08-10 20:48:05 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2011-08-10 20:48:05 (GMT) |
commit | 14f8f4d4370a70afc4c354d0d4b2c6358fa4acf4 (patch) | |
tree | 148b790276bbf8e9b3a7101d29a15548b01a7777 /tools/h5dump | |
parent | fb3d6c22d0343675e1e0b9ecf054e1a4e126b266 (diff) | |
download | hdf5-14f8f4d4370a70afc4c354d0d4b2c6358fa4acf4.zip hdf5-14f8f4d4370a70afc4c354d0d4b2c6358fa4acf4.tar.gz hdf5-14f8f4d4370a70afc4c354d0d4b2c6358fa4acf4.tar.bz2 |
[svn-r21210] Correct location of xml schema files. JIRA HDFFV-7688
Tested: local linux
Diffstat (limited to 'tools/h5dump')
-rw-r--r-- | tools/h5dump/h5dump.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c index fcb7bd3..968656a 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; @@ -4769,10 +4769,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); } } |