Skip to content

Commit 923a152

Browse files
handrewsRelequestual
authored andcommitted
Fix a lot of build warnings
This gets rid of all of the build warnings except the ones for the lines being too long, which aren't worth trying to fix as we're changing formats anyway. But these are simple fixes to remove everything else. As of RFC 7749 (xml2rfc v2 vocabulary), the RFC 2629 DTD is no longer needed. The submissionType was also added then. It is supposed to default to "IETF" but apparently newer versions of xml2rfc no longer do this. I don't know why xml2rfc did not like the no-breaking space in the xref, but it's happier with it gone.
1 parent 4468327 commit 923a152

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

jsonschema-core.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="US-ASCII"?>
2-
<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
2+
<!DOCTYPE rfc [
33
<!ENTITY RFC2119 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2119.xml">
44
<!ENTITY RFC3986 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.3986.xml">
55
<!ENTITY RFC3987 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.3987.xml">
@@ -22,7 +22,7 @@
2222
<?rfc rfcedstyle="yes"?>
2323
<?rfc comments="yes"?>
2424
<?rfc inline="yes" ?>
25-
<rfc category="info" docName="draft-bhutton-json-schema-01" ipr="trust200902">
25+
<rfc category="info" docName="draft-bhutton-json-schema-01" ipr="trust200902" submissionType="IETF">
2626
<front>
2727
<title abbrev="JSON Schema">JSON Schema: A Media Type for Describing JSON Documents</title>
2828

jsonschema-validation.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="US-ASCII"?>
2-
<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
2+
<!DOCTYPE rfc [
33
<!ENTITY RFC1123 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.1123.xml">
44
<!ENTITY RFC2045 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2045.xml">
55
<!ENTITY RFC2046 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2046.xml">
@@ -28,7 +28,7 @@
2828
<?rfc rfcedstyle="yes"?>
2929
<?rfc comments="yes"?>
3030
<?rfc inline="yes" ?>
31-
<rfc category="info" docName="draft-bhutton-json-schema-validation-01" ipr="trust200902">
31+
<rfc category="info" docName="draft-bhutton-json-schema-validation-01" ipr="trust200902" submissionType="IETF">
3232
<front>
3333
<title abbrev="JSON Schema Validation">
3434
JSON Schema Validation: A Vocabulary for Structural Validation of JSON

relative-json-pointer.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="US-ASCII"?>
2-
<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
2+
<!DOCTYPE rfc [
33
<!ENTITY RFC2119 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2119.xml">
44
<!ENTITY RFC6901 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.6901.xml">
55
<!ENTITY RFC8259 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.8259.xml">
@@ -12,7 +12,7 @@
1212
<?rfc rfcedstyle="yes"?>
1313
<?rfc comments="yes"?>
1414
<?rfc inline="yes" ?>
15-
<rfc category="info" docName="draft-bhutton-relative-json-pointer-00" ipr="trust200902">
15+
<rfc category="info" docName="draft-bhutton-relative-json-pointer-00" ipr="trust200902" submissionType="IETF">
1616
<front>
1717
<title abbrev="Relative JSON Pointers">Relative JSON Pointers</title>
1818

@@ -107,7 +107,7 @@
107107
</artwork>
108108
<postamble>
109109
where &lt;json-pointer&gt; follows the production defined in
110-
<xref target="RFC6901">RFC 6901, Section&nbsp;3</xref> ("Syntax").
110+
<xref target="RFC6901">RFC 6901, Section 3</xref> ("Syntax").
111111
</postamble>
112112
</figure>
113113
<t>

0 commit comments

Comments
 (0)