Skip to content

Commit 4994962

Browse files
committed
Modify DTD and XML Schema URLs for Unidata switch to "schemas" hostname for these URLS, from "www/schemas/".
1 parent ce3298e commit 4994962

21 files changed

Lines changed: 40 additions & 40 deletions

File tree

cdm-test/src/test/data/thredds/cataloggen/config/test1CatGenConfig1.0.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
xmlns="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0"
88
xmlns:catGen="http://www.unidata.ucar.edu/namespaces/thredds/CatalogGenConfig/v0.5"
99
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10-
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 http://www.unidata.ucar.edu/schemas/thredds/InvCatalog.1.0.xsd"
10+
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 https://schemas.unidata.ucar.edu/thredds/InvCatalog.1.0.xsd"
1111
>
1212
<dataset name="THREDDS CatalogGen test config file">
1313
<dataset name="NCEP Eta 80km CONUS model data">

cdm-test/src/test/data/thredds/cataloggen/config/test1CatGenConfigNew1.0.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
xmlns="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0"
88
xmlns:catGen="http://www.unidata.ucar.edu/namespaces/thredds/CatalogGenConfig/v1.0"
99
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10-
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 http://www.unidata.ucar.edu/schemas/thredds/InvCatalog.1.0.xsd
11-
http://www.unidata.ucar.edu/namespaces/thredds/CatalogGenConfig/v1.0 http://www.unidata.ucar.edu/schemas/thredds/CatalogGenConfig.1.0.xsd"
10+
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 https://schemas.unidata.ucar.edu/thredds/InvCatalog.1.0.xsd
11+
http://www.unidata.ucar.edu/namespaces/thredds/CatalogGenConfig/v1.0 https://schemas.unidata.ucar.edu/thredds/CatalogGenConfig.1.0.xsd"
1212
>
1313
<service name="mlode" serviceType="DODS" base="http://localhost:8080/thredds/cataloggen/"/>
1414
<dataset name="THREDDS CatalogGen test config file">

cdm-test/src/test/data/thredds/cataloggen/testCatGen.badAccessPoint.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
xmlns="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0"
44
xmlns:catGen="http://www.unidata.ucar.edu/namespaces/thredds/CatalogGenConfig/v0.5"
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6-
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 http://www.unidata.ucar.edu/schemas/thredds/InvCatalog.1.0.xsd"
6+
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 https://schemas.unidata.ucar.edu/thredds/InvCatalog.1.0.xsd"
77
>
88
<!--?xml version="1.0" encoding="UTF-8"?>
9-
<!DOCTYPE catalog SYSTEM "http://www.unidata.ucar.edu/schemas/thredds/CatalogGenConfig.0.5.dtd"-->
9+
<!DOCTYPE catalog SYSTEM "https://schemas.unidata.ucar.edu/thredds/CatalogGenConfig.0.5.dtd"-->
1010
<dataset name="CatGen Test for Bad Access Points">
1111
<metadata inherited="true">
1212
<serviceName>testServer</serviceName>

cdm-test/src/test/data/thredds/cataloggen/testCatGen.uahRadarLevelII.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
xmlns="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0"
44
xmlns:catGen="http://www.unidata.ucar.edu/namespaces/thredds/CatalogGenConfig/v0.5"
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6-
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 http://www.unidata.ucar.edu/schemas/thredds/InvCatalog.1.0.xsd"
6+
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 https://schemas.unidata.ucar.edu/thredds/InvCatalog.1.0.xsd"
77
>
88
<!--?xml version="1.0" encoding="UTF-8"?>
9-
<!DOCTYPE catalog SYSTEM "http://www.unidata.ucar.edu/schemas/thredds/CatalogGenConfig.0.5.dtd"-->
9+
<!DOCTYPE catalog SYSTEM "https://schemas.unidata.ucar.edu/thredds/CatalogGenConfig.0.5.dtd"-->
1010
<dataset name="UAH/ITSC Data Pool NEXRAD Level 2">
1111
<metadata inherited="true">
1212
<serviceName>Data Pool server</serviceName>

cdm/core/src/main/java/ucar/nc2/ncml/NcMLGWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
@Deprecated
3232
public class NcMLGWriter {
3333
private static Logger logger = LoggerFactory.getLogger(NcMLGWriter.class);
34-
protected static final String schemaLocation = "http://www.unidata.ucar.edu/schemas/netcdf-cs.xsd";
34+
protected static final String schemaLocation = "https://schemas.unidata.ucar.edu/netcdf-cs.xsd";
3535

3636
/**
3737
* Write a NetcdfDataset as an NcML-G document to the specified stream.

cdm/core/src/main/resources/resources/thredds/schemas/InvCatalog.1.0.7.xsd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
version="1.0.7">
1111

1212
<!-- import other namespaces -->
13-
<xsd:import namespace="http://www.w3.org/1999/xlink" schemaLocation="http://www.unidata.ucar.edu/schemas/other/xlink.xsd"/>
14-
<xsd:import namespace="http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2" schemaLocation="http://www.unidata.ucar.edu/schemas/netcdf/ncml-2.2.xsd"/>
13+
<xsd:import namespace="http://www.w3.org/1999/xlink" schemaLocation="https://schemas.unidata.ucar.edu/other/xlink.xsd"/>
14+
<xsd:import namespace="http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2" schemaLocation="https://schemas.unidata.ucar.edu/netcdf/ncml-2.2.xsd"/>
1515

1616
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
1717
<!-- Catalog element -->

cdm/core/src/main/resources/resources/thredds/schemas/InvCatalog.1.2.xsd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
version="1.2">
1111

1212
<!-- import other namespaces -->
13-
<xsd:import namespace="http://www.w3.org/1999/xlink" schemaLocation="http://www.unidata.ucar.edu/schemas/other/xlink.xsd"/>
14-
<xsd:import namespace="http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2" schemaLocation="http://www.unidata.ucar.edu/schemas/netcdf/ncml-2.2.xsd"/>
13+
<xsd:import namespace="http://www.w3.org/1999/xlink" schemaLocation="https://schemas.unidata.ucar.edu/other/xlink.xsd"/>
14+
<xsd:import namespace="http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2" schemaLocation="https://schemas.unidata.ucar.edu/netcdf/ncml-2.2.xsd"/>
1515

1616
<!-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -->
1717
<!-- Catalog element -->

cdm/core/src/test/data/thredds/catalog/DifTest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<metadata xmlns="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0"
33
xmlns:xlink="http://www.w3.org/1999/xlink"
44
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 http://www.unidata.ucar.edu/schemas/thredds/InvCatalog.1.0.xsd">
5+
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 https://schemas.unidata.ucar.edu/thredds/InvCatalog.1.0.xsd">
66

77
<contributor role="Investigator">Mashor Mashnor</contributor>
88

cdm/core/src/test/data/thredds/catalog/MetadataLink.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0"
44
xmlns:xlink="http://www.w3.org/1999/xlink"
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6-
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 http://www.unidata.ucar.edu/schemas/thredds/InvCatalog.1.0.xsd"
6+
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 https://schemas.unidata.ucar.edu/thredds/InvCatalog.1.0.xsd"
77
>
88

99
<documentation type="summary"> The SAGE III Ozone Loss and Validation Experiment (SOLVE) was a measurement campaign designed to examine the processes controlling ozone levels at mid- to high latitudes. Measurements were made in the Arctic high-latitude region in winter using the NASA DC-8 and ER-2 aircraft, as well as balloon platforms and ground-based instruments. The mission also acquired correlative data needed to validate the Stratospheric Aerosol and Gas Experiment (SAGE) III satellite measurements that will be used to quantitatively assess high-latitude ozone loss. SOLVE is co-sponsored by the Upper Atmosphere Research Program (UARP), Atmospheric Effects of Aviation Project (AEAP), Atmospheric Chemistry Modeling and Analysis Program (ACMAP), and Earth Observing System (EOS) of NASA's Earth Science Enterprise (ESE) as part of the validation program for the SAGE III instrument.

cdm/core/src/test/data/thredds/catalog/MissingGCProblem.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xmlns="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0"
44
xmlns:xlink="http://www.w3.org/1999/xlink"
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6-
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 http://www.unidata.ucar.edu/schemas/thredds/InvCatalog.1.0.xsd">
6+
xsi:schemaLocation="http://www.unidata.ucar.edu/namespaces/thredds/InvCatalog/v1.0 https://schemas.unidata.ucar.edu/thredds/InvCatalog.1.0.xsd">
77

88
<service name="this" serviceType="OpenDAP" base=""/>
99

0 commit comments

Comments
 (0)