diff options
author | ot <ot@localhost> | 2005-05-24 06:12:46 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2005-05-24 06:12:46 +0000 |
commit | 67eed86afe7b55ba93973aea45624c0fbd7b7066 (patch) | |
tree | 9efa49545b3b974dd72e41c65033749d9cc584ce /htdocs/sgml-lib/IETF | |
parent | 5d7d969d91f6483b1cf3942aba818d2e8efe878d (diff) | |
download | markup-validator-67eed86afe7b55ba93973aea45624c0fbd7b7066.zip markup-validator-67eed86afe7b55ba93973aea45624c0fbd7b7066.tar.gz markup-validator-67eed86afe7b55ba93973aea45624c0fbd7b7066.tar.bz2 |
(re?)Adding catalog and types registry entries for some variants of HTML 2:
HTML 2.0 Level 1, HTML 2.0 Strict and HTML 2.0 Strict Level 1
See: http://www.w3.org/Bugs/Public/show_bug.cgi?id=1481
Diffstat (limited to 'htdocs/sgml-lib/IETF')
-rw-r--r-- | htdocs/sgml-lib/IETF/HTML-2_0-Level_1.dtd | 29 | ||||
-rw-r--r-- | htdocs/sgml-lib/IETF/HTML-2_0-Strict-Level_1.dtd | 29 | ||||
-rw-r--r-- | htdocs/sgml-lib/IETF/HTML-2_0-Strict.dtd | 29 |
3 files changed, 87 insertions, 0 deletions
diff --git a/htdocs/sgml-lib/IETF/HTML-2_0-Level_1.dtd b/htdocs/sgml-lib/IETF/HTML-2_0-Level_1.dtd new file mode 100644 index 0000000..77dd8aa --- /dev/null +++ b/htdocs/sgml-lib/IETF/HTML-2_0-Level_1.dtd @@ -0,0 +1,29 @@ +<!-- html-1.dtd + + Document Type Definition for the HyperText Markup Language + with Level 1 Extensions (HTML Level 1 DTD). + + $Id: HTML-2_0-Level_1.dtd,v 1.1 2005-05-24 06:12:46 ot Exp $ + + Author: Daniel W. Connolly <connolly@w3.org> + See Also: http://info.cern.ch/hypertext/WWW/MarkUp/MarkUp.html +--> + +<!ENTITY % HTML.Version + "-//IETF//DTD HTML 2.0 Level 1//EN" + + -- Typical usage: + + <!DOCTYPE HTML PUBLIC + "-//IETF//DTD HTML Level 1//EN"> + <html> + ... + </html> + -- + > + +<!-- Feature Test Entities --> +<!ENTITY % HTML.Forms "IGNORE"> + +<!ENTITY % html PUBLIC "-//IETF//DTD HTML 2.0//EN"> +%html; diff --git a/htdocs/sgml-lib/IETF/HTML-2_0-Strict-Level_1.dtd b/htdocs/sgml-lib/IETF/HTML-2_0-Strict-Level_1.dtd new file mode 100644 index 0000000..8da6130 --- /dev/null +++ b/htdocs/sgml-lib/IETF/HTML-2_0-Strict-Level_1.dtd @@ -0,0 +1,29 @@ +<!-- html-1s.dtd + + Document Type Definition for the HyperText Markup Language + Struct Level 1 + + $Id: HTML-2_0-Strict-Level_1.dtd,v 1.1 2005-05-24 06:12:46 ot Exp $ + + Author: Daniel W. Connolly <connolly@w3.org> + See Also: http://www.w3.org/hypertext/WWW/MarkUp/MarkUp.html +--> + +<!ENTITY % HTML.Version + "-//IETF//DTD HTML 2.0 Strict Level 1//EN" + + -- Typical usage: + + <!DOCTYPE HTML PUBLIC + "-//IETF//DTD HTML Strict Level 1//EN"> + <html> + ... + </html> + -- + > + +<!-- Feature Test Entities --> +<!ENTITY % HTML.Recommended "INCLUDE"> + +<!ENTITY % html-1 PUBLIC "-//IETF//DTD HTML 2.0 Level 1//EN"> +%html-1; diff --git a/htdocs/sgml-lib/IETF/HTML-2_0-Strict.dtd b/htdocs/sgml-lib/IETF/HTML-2_0-Strict.dtd new file mode 100644 index 0000000..89da2b7 --- /dev/null +++ b/htdocs/sgml-lib/IETF/HTML-2_0-Strict.dtd @@ -0,0 +1,29 @@ +<!-- html-s.dtd + + Document Type Definition for the HyperText Markup Language + with strict validation (HTML Strict DTD). + + $Id: HTML-2_0-Strict.dtd,v 1.1 2005-05-24 06:12:46 ot Exp $ + + Author: Daniel W. Connolly <connolly@w3.org> + See Also: http://www.w3.org/hypertext/WWW/MarkUp/MarkUp.html +--> + +<!ENTITY % HTML.Version + "-//IETF//DTD HTML 2.0 Strict//EN" + + -- Typical usage: + + <!DOCTYPE HTML PUBLIC + "-//IETF//DTD HTML Strict//EN"> + <html> + ... + </html> + -- + > + +<!-- Feature Test Entities --> +<!ENTITY % HTML.Recommended "INCLUDE"> + +<!ENTITY % html PUBLIC "-//IETF//DTD HTML 2.0//EN"> +%html; |