diff options
-rw-r--r-- | htdocs/config/types.conf | 8 | ||||
-rw-r--r-- | htdocs/sgml-lib/xml.soc | 8 | ||||
-rwxr-xr-x | httpd/cgi-bin/check | 8 |
3 files changed, 13 insertions, 11 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" diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index a2dd6c2..8af4536 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -14,7 +14,7 @@ # This source code is available under the license at: # http://www.w3.org/Consortium/Legal/copyright-software # -# $Id: check,v 1.717 2009-10-24 16:50:06 ville Exp $ +# $Id: check,v 1.718 2009-10-25 08:36:54 ville Exp $ # # Disable buffering on STDOUT! $| = 1; @@ -209,7 +209,7 @@ Directory not readable (permission denied): @_r # # Strings - $VERSION = q$Revision: 1.717 $; + $VERSION = q$Revision: 1.718 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # @@ -2278,12 +2278,12 @@ sub preparse_doctype { # $File->{Opt}->{DOCTYPE} = "SVG 1.0"; # } # if ((($File->{'Root Version'} eq "1.1") or ($File->{'Root Version'} eq "0")) and ($File->{'Root BaseProfile'} eq "tiny")) { - # $File->{DOCTYPE} = "-//W3C//DTD SVG Tiny 1.1//EN"; + # $File->{DOCTYPE} = "-//W3C//DTD SVG 1.1 Tiny//EN"; # $File->{"DOCTYPEless OK"} = TRUE; # $File->{Opt}->{DOCTYPE} = "SVG 1.1 Tiny"; # } # elsif ((($File->{'Root Version'} eq "1.1") or ($File->{'Root Version'} eq "0")) and ($File->{'Root BaseProfile'} eq "basic")) { - # $File->{DOCTYPE} = "-//W3C//DTD SVG Basic 1.1//EN"; + # $File->{DOCTYPE} = "-//W3C//DTD SVG 1.1 Basic//EN"; # $File->{Opt}->{DOCTYPE} = "SVG 1.1 Basic"; # $File->{"DOCTYPEless OK"} = TRUE; # } |