diff options
author | ville <ville@localhost> | 2009-10-25 08:36:54 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2009-10-25 08:36:54 +0000 |
commit | 7559f357355d9eab40ef058a1202023ce20bb201 (patch) | |
tree | a30064fc0b3cb02bb77016a104878c9874a1934d /htdocs | |
parent | 5e460ecffdcc609364784617e3cb6b3a57f1ce40 (diff) | |
download | markup-validator-7559f357355d9eab40ef058a1202023ce20bb201.zip markup-validator-7559f357355d9eab40ef058a1202023ce20bb201.tar.gz markup-validator-7559f357355d9eab40ef058a1202023ce20bb201.tar.bz2 |
Change "preferred" public id for SVG 1.1 Tiny and Basic to "SVG 1.1 XXX"
from "SVG XXX 1.1". REC-SVGMobile-20030114 has both, but:
http://www.w3.org/mid/1802878579.20031205151329%40w3.org
http://www.w3.org/Graphics/SVG/Test/20061213/
http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd
http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd
http://www.w3.org/QA/2002/04/valid-dtd-list.html
http://www.w3.org/mid/E6C04936-0353-476C-B65F-455A1C836045%40w3.org
Diffstat (limited to 'htdocs')
-rw-r--r-- | htdocs/config/types.conf | 8 | ||||
-rw-r--r-- | htdocs/sgml-lib/xml.soc | 8 |
2 files changed, 9 insertions, 7 deletions
diff --git a/htdocs/config/types.conf b/htdocs/config/types.conf index fae0155..0499fad 100644 --- a/htdocs/config/types.conf +++ b/htdocs/config/types.conf @@ -1,7 +1,7 @@ # # Main Document Type Database for the W3C Markup Validation Service. # -# $Id: types.conf,v 1.53 2009-10-25 07:46:40 ville Exp $ +# $Id: types.conf,v 1.54 2009-10-25 08:36:54 ville Exp $ # # Maintains all information for each of the document types we support. # See 'perldoc Config::General' for the syntax, and be aware that the @@ -670,7 +670,8 @@ Name = svg Display = SVG 1.1 Tiny Info URL = http://www.w3.org/TR/2003/REC-SVGMobile-20030114/ - PubID = -//W3C//DTD SVG Tiny 1.1//EN # spec is confused whether it's this or -//W3C//DTD SVG 1.1 Tiny//EN + # Spec is confused whether the pubid is this or -//W3C//DTD SVG Tiny 1.1//EN + PubID = -//W3C//DTD SVG 1.1 Tiny//EN SysID = http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd Namespace = http://www.w3.org/2000/svg Namespace Required = 0 # no mention in http://www.w3.org/TR/2003/REC-SVGMobile-20030114/#sec-structure @@ -694,7 +695,8 @@ Name = svg Display = SVG 1.1 Basic Info URL = http://www.w3.org/TR/2003/REC-SVGMobile-20030114/ - PubID = -//W3C//DTD SVG Basic 1.1//EN # spec is confused whether it's this or -//W3C//DTD SVG 1.1 Basic//EN + # Spec is confused whether the pubid is this or -//W3C//DTD SVG Basic 1.1//EN + PubID = -//W3C//DTD SVG 1.1 Basic//EN SysID = http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd Namespace = http://www.w3.org/2000/svg Namespace Required = 0 # no mention in http://www.w3.org/TR/2003/REC-SVGMobile-20030114/#sec-structure diff --git a/htdocs/sgml-lib/xml.soc b/htdocs/sgml-lib/xml.soc index 6f4d19d..4bbc295 100644 --- a/htdocs/sgml-lib/xml.soc +++ b/htdocs/sgml-lib/xml.soc @@ -29,14 +29,14 @@ PUBLIC "-//W3C//DTD SVG 1.0//EN" PUBLIC "-//W3C//DTD SVG 1.1//EN" "REC-SVG11-20030114/svg11-flat.dtd" -PUBLIC "-//W3C//DTD SVG Basic 1.1//EN" - "REC-SVG11-20030114/svg11-basic-flat.dtd" -PUBLIC "-//W3C//DTD SVG Tiny 1.1//EN" - "REC-SVG11-20030114/svg11-tiny-flat.dtd" PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "REC-SVG11-20030114/svg11-basic-flat.dtd" PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "REC-SVG11-20030114/svg11-tiny-flat.dtd" +PUBLIC "-//W3C//DTD SVG Basic 1.1//EN" + "REC-SVG11-20030114/svg11-basic-flat.dtd" +PUBLIC "-//W3C//DTD SVG Tiny 1.1//EN" + "REC-SVG11-20030114/svg11-tiny-flat.dtd" |