diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-01-23 15:39:24 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-01-23 15:39:24 (GMT) |
commit | ac110a86033f8b7a20bba53ea7ddb17b738fce51 (patch) | |
tree | aba665db260f9705b6489b6cf1e8f36c68f513e8 /tools/h5dump | |
parent | 4bc8c3f9240a57ecba8e57d5a88af6f58c25c15c (diff) | |
download | hdf5-ac110a86033f8b7a20bba53ea7ddb17b738fce51.zip hdf5-ac110a86033f8b7a20bba53ea7ddb17b738fce51.tar.gz hdf5-ac110a86033f8b7a20bba53ea7ddb17b738fce51.tar.bz2 |
[svn-r13179]
replaced the path to XML schema from NCSA page to hdfgroup.org
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 6b9f31a..c10bed5 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -76,8 +76,8 @@ static int display_escape = FALSE; /*escape non printable characters **/ /* module-scoped variables for XML option */ -#define DEFAULT_XSD "http://hdf.ncsa.uiuc.edu/DTDs/HDF5-File.xsd" -#define DEFAULT_DTD "http://hdf.ncsa.uiuc.edu/DTDs/HDF5-File.dtd" +#define DEFAULT_XSD "http://hdfgroup.org/DTDs/HDF5-File.xsd" +#define DEFAULT_DTD "http://hdfgroup.org/DTDs/HDF5-File.dtd" static int doxml = 0; static int useschema = 1; @@ -3850,10 +3850,10 @@ main(int argc, const char *argv[]) indx = strrchr(ns,(int)':'); if (indx) *indx = '\0'; - printf("<%sHDF5-File xmlns:%s=\"http://hdf.ncsa.uiuc.edu/DTDs/HDF5-File\" " + printf("<%sHDF5-File xmlns:%s=\"http://hdfgroup.org/DTDs/HDF5-File\" " "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" " - "xsi:schemaLocation=\"http://hdf.ncsa.uiuc.edu/DTDs/HDF5File " - "http://hdf.ncsa.uiuc.edu/DTDs/HDF5-File.xsd\">\n",xmlnsprefix,ns); + "xsi:schemaLocation=\"http://hdfgroup.org/DTDs/HDF5File " + "http://hdfgroup.org/DTDs/HDF5-File.xsd\">\n",xmlnsprefix,ns); } } else { printf("<!DOCTYPE HDF5-File PUBLIC \"HDF5-File.dtd\" \"%s\">\n", |