Skip to content

Commit b944567

Browse files
committed
[fix] use local jetty configure DTDs
jetty configuration DTD was loaded from the internet even though it was listed in the catalog. Added the public identifier and corrected the system identifier (which is now using https).
1 parent 9bb8349 commit b944567

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exist-distribution/src/main/xslt/catalog.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
2323
-->
2424
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
25-
<system systemId="http://www.eclipse.org/jetty/configure_9_3.dtd"
26-
uri="configure_9_3.dtd"/>
27-
<uri name="http://xmlns.jcp.org/xml/ns/javaee" uri="web-app_3_1.xsd"/>
28-
<uri name="http://www.w3.org/XML/1998/namespace" uri="xml.xsd"/>
25+
<public publicId="-//Jetty//Configure//EN" uri="./configure_9_3.dtd"/>
26+
<system systemId="https://www.eclipse.org/jetty/configure_9_3.dtd" uri="./configure_9_3.dtd"/>
27+
<uri name="http://xmlns.jcp.org/xml/ns/javaee" uri="./web-app_3_1.xsd"/>
28+
<uri name="http://www.w3.org/XML/1998/namespace" uri="./xml.xsd"/>
2929
</catalog>

0 commit comments

Comments
 (0)