View | Details | Raw Unified | Return to bug 202733
Collapse All | Expand All

(-)Makefile (-12 / +17 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	validator
4
PORTNAME=	validator
5
PORTVERSION=	1.3
5
PORTVERSION=	1.3
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	www
7
CATEGORIES=	www
8
MASTER_SITES=	http://validator.w3.org/dist/ \
8
MASTER_SITES=	http://validator.w3.org/dist/ \
9
		http://www.cyberbotx.com/w3c-validator/
9
		http://www.cyberbotx.com/w3c-validator/
Lines 32-38 Link Here
32
SHEBANG_FILES=	httpd/cgi-bin/check \
32
SHEBANG_FILES=	httpd/cgi-bin/check \
33
		httpd/cgi-bin/sendfeedback.pl
33
		httpd/cgi-bin/sendfeedback.pl
34
34
35
SUB_FILES=	pkg-message validator.conf.sample
35
SUB_FILES=	pkg-message
36
36
37
OPTIONS_DEFINE=	HTML_TIDY
37
OPTIONS_DEFINE=	HTML_TIDY
38
OPTIONS_DEFAULT=HTML_TIDY
38
OPTIONS_DEFAULT=HTML_TIDY
Lines 46-66 Link Here
46
RUN_DEPENDS+=	p5-CGI.pm>=0:${PORTSDIR}/www/p5-CGI.pm
46
RUN_DEPENDS+=	p5-CGI.pm>=0:${PORTSDIR}/www/p5-CGI.pm
47
.endif
47
.endif
48
48
49
post-extract:
49
post-patch:
50
	@${RM} ${WRKSRC}/README.cvs
50
	@${REINPLACE_CMD} -e 's|%%WWWDIR%%|${WWWDIR}|' \
51
	@${RM} -rf ${WRKSRC}/misc
51
		${WRKSRC}/htdocs/config/validator.conf \
52
	@${RM} -rf ${WRKSRC}/httpd/conf
52
		${WRKSRC}/httpd/cgi-bin/check \
53
	@${RM} ${WRKSRC}/htdocs/config/validator.conf
53
		${WRKSRC}/httpd/cgi-bin/sendfeedback.pl \
54
		${WRKSRC}/httpd/conf/httpd.conf
54
55
55
pre-install:
56
pre-install:
56
	${CP} -f ${WRKDIR}/validator.conf.sample ${WRKSRC}/htdocs/config/
57
	${MV} ${WRKSRC}/htdocs/config/validator.conf \
58
		${WRKSRC}/htdocs/config/validator.conf.sample
59
	${MV} ${WRKSRC}/httpd/conf/httpd.conf \
60
		${WRKSRC}/httpd/conf/httpd.conf.sample
61
	${FIND} ${WRKSRC} \( -name \*.bak -or -name \*.orig \) -delete
57
62
58
do-install:
63
do-install:
59
	${MKDIR} ${STAGEDIR}${PREFIX}/www/validator/htdocs
64
	${MKDIR} ${STAGEDIR}${PREFIX}/www/validator/htdocs
60
	${MKDIR} ${STAGEDIR}${PREFIX}/www/validator/httpd/cgi-bin
65
	${MKDIR} ${STAGEDIR}${PREFIX}/www/validator/httpd
61
	${MKDIR} ${STAGEDIR}${PREFIX}/www/validator/share
66
	${MKDIR} ${STAGEDIR}${PREFIX}/www/validator/share
62
	(cd ${WRKSRC}/htdocs && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/www/validator/htdocs/)
67
	(cd ${WRKSRC}/htdocs && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/htdocs/)
63
	${INSTALL_SCRIPT} ${WRKSRC}/httpd/cgi-bin/* ${STAGEDIR}${PREFIX}/www/validator/httpd/cgi-bin
68
	(cd ${WRKSRC}/httpd && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/httpd/)
64
	(cd ${WRKSRC}/share && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/www/validator/share/)
69
	(cd ${WRKSRC}/share && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/share/)
65
70
66
.include <bsd.port.post.mk>
71
.include <bsd.port.post.mk>
(-)files/patch-htdocs_config_validator.conf (+27 lines)
Line 0 Link Here
1
--- htdocs/config/validator.conf.orig	2012-03-12 15:03:14 UTC
2
+++ htdocs/config/validator.conf
3
@@ -19,7 +19,7 @@
4
   #
5
   # Base path.  Defaults to the value of the W3C_VALIDATOR_HOME environment
6
   # variable or /usr/local/validator if the variable does not exist.
7
-  #Base = /usr/local/validator
8
+  Base = %%WWWDIR%%
9
 
10
   #
11
   # Location of template files
12
@@ -93,13 +93,13 @@ Languages = en
13
 # Main document Type Registry; contains all information on the types
14
 # of documents we support and how they are processed.
15
 <Types>
16
-  Include types.conf
17
+  Include %%WWWDIR%%/htdocs/config/types.conf
18
 </Types>
19
 
20
 #
21
 # Mapping of charset names to their IANA names and how iconv(3) knows them.
22
 <Charsets>
23
-  Include charset.cfg
24
+  Include %%WWWDIR%%/htdocs/config/charset.cfg
25
 </Charsets>
26
 
27
 #
(-)files/patch-httpd_cgi-bin_check (+20 lines)
Line 0 Link Here
1
--- httpd/cgi-bin/check.orig	2012-03-12 15:03:14 UTC
2
+++ httpd/cgi-bin/check
3
@@ -94,7 +94,7 @@ use constant IS_MODPERL2 =>
4
 # (such as mod_perl); so let's do the globals, eg. read config, here.
5
 BEGIN {
6
 
7
-    my $base = $ENV{W3C_VALIDATOR_HOME} || '/usr/local/validator';
8
+    my $base = $ENV{W3C_VALIDATOR_HOME} || '%%WWWDIR%%';
9
 
10
     # Launder data for -T; -AutoLaunder doesn't catch this one.
11
     if ($base =~ /^(.*)$/) {
12
@@ -106,7 +106,7 @@ BEGIN {
13
     eval {
14
         my %config_opts = (
15
             -ConfigFile =>
16
-                ($ENV{W3C_VALIDATOR_CFG} || '/etc/w3c/validator.conf'),
17
+                ($ENV{W3C_VALIDATOR_CFG} || '%%WWWDIR%%/htdocs/config/validator.conf'),
18
             -MergeDuplicateOptions => TRUE,
19
             -MergeDuplicateBlocks  => TRUE,
20
             -SplitPolicy           => 'equalsign',
(-)files/patch-httpd_cgi-bin_sendfeedback.pl (+20 lines)
Line 0 Link Here
1
--- httpd/cgi-bin/sendfeedback.pl.orig	2012-03-12 15:03:14 UTC
2
+++ httpd/cgi-bin/sendfeedback.pl
3
@@ -23,7 +23,7 @@ use constant FALSE => 0;
4
 # environments, such as mod_perl.  So let's do globals, eg. read config here.
5
 BEGIN {
6
 
7
-    my $base = $ENV{W3C_VALIDATOR_HOME} || '/usr/local/validator';
8
+    my $base = $ENV{W3C_VALIDATOR_HOME} || '%%WWWDIR%%';
9
 
10
     # Launder data for -T; -AutoLaunder doesn't catch this one.
11
     if ($base =~ /^(.*)$/) {
12
@@ -35,7 +35,7 @@ BEGIN {
13
     eval {
14
         my %config_opts = (
15
             -ConfigFile =>
16
-                ($ENV{W3C_VALIDATOR_CFG} || '/etc/w3c/validator.conf'),
17
+                ($ENV{W3C_VALIDATOR_CFG} || '%%WWWDIR%%/htdocs/config/validator.conf'),
18
             -MergeDuplicateOptions => TRUE,
19
             -MergeDuplicateBlocks  => TRUE,
20
             -SplitPolicy           => 'equalsign',
(-)files/patch-httpd_conf_httpd.conf (+55 lines)
Line 0 Link Here
1
--- httpd/conf/httpd.conf.orig	2012-03-12 15:03:14 UTC
2
+++ httpd/conf/httpd.conf
3
@@ -6,7 +6,7 @@
4
 # You can use the Include directive for including this in your main httpd.conf.
5
 #
6
 # The values below assume that you have the validator files in
7
-# /usr/local/validator.  If not, tune them according to your setup.
8
+# %%WWWDIR%%.  If not, tune them according to your setup.
9
 #
10
 # To run the validator without mod_perl 2.x even if it is loaded, comment
11
 # out the "IfDefine MODPERL2" sections below.
12
@@ -31,14 +31,16 @@ RewriteRule ^/+w3c-validator/+check$ \
13
 
14
 # Tell httpd that check and sendfeedback.pl are CGI scripts.
15
 
16
-Alias /w3c-validator/check /usr/local/validator/cgi-bin/check
17
+Alias /w3c-validator/check \
18
+	%%WWWDIR%%/httpd/cgi-bin/check
19
 AliasMatch ^/+w3c-validator/+feedback(\.html)?$ \
20
-           /usr/local/validator/cgi-bin/sendfeedback.pl
21
+	%%WWWDIR%%/httpd/cgi-bin/sendfeedback.pl
22
 
23
 <IfDefine MODPERL2>
24
 # Note: this block affects the whole server, not just the validator.
25
 PerlSwitches -T
26
-PerlPostConfigRequire /usr/local/validator/httpd/mod_perl/startup.pl
27
+PerlPostConfigRequire \
28
+	%%WWWDIR%%/httpd/mod_perl/startup.pl
29
 </IfDefine>
30
 
31
 <LocationMatch "^/+w3c-validator/+(check|feedback(\.html)?)$">
32
@@ -60,8 +62,9 @@ PerlPostConfigRequire /usr/local/validat
33
 
34
 # This is the directory where you have the validator's *.html, *.css etc files.
35
 
36
-Alias /w3c-validator/   /usr/local/validator/htdocs/
37
-<Directory /usr/local/validator/htdocs/>
38
+Alias /w3c-validator/ \
39
+	%%WWWDIR%%/htdocs/
40
+<Directory %%WWWDIR%%/htdocs/>
41
   Options               IncludesNOEXEC Indexes MultiViews
42
   AllowOverride         None
43
   AddHandler            server-parsed .html
44
@@ -73,7 +76,10 @@ Alias /w3c-validator/   /usr/local/valid
45
   <Files *.css.gz>
46
     ForceType           text/css
47
   </Files>
48
-
49
+# If you would like to move the location of validator.conf, set the following,
50
+#  making sure to change the path if you don't use this path.
51
+# SetEnv         W3C_VALIDATOR_CFG \
52
+#	%%WWWDIR%%/htdocs/config/validator.conf
53
   <IfModule mod_rewrite.c>
54
   Options +SymLinksIfOwnerMatch
55
   RewriteBase /w3c-validator/
(-)files/pkg-message.in (-49 / +22 lines)
Lines 1-54 Link Here
1
-------------------------------------------------------------------------------
1
-------------------------------------------------------------------------------
2
The W3C Markup Validation Service has been installed.  However, it will not
2
The W3C Markup Validation Service has been installed. However, it will not do
3
do anything until you set up your web server to utilize it.  Below is an
3
anything until you set up your web server to utilize it. An httpd.conf for the
4
Apache configutation snippet that you can put into your httpd.conf to
4
Apache web server can be found at
5
utilize the validator.  If you are using another web server, you will have
5
%%WWWDIR%%/httpd/conf/httpd.conf
6
to configure it yourself.  The W3C only recommends the use of the Apache
6
and included in your Apache web server configuration, typically using:
7
web server, so there are no other web server configuration snippets.
8
7
9
A sample validator.conf has been installed at
8
Include %%WWWDIR%%/httpd/conf/httpd.conf
10
%%PREFIX%%/www/validator/htdocs/config/validator.conf.sample
11
You need to copy this file to /etc/w3c/validator.conf and then edit it to
12
your liking.  If you have used a previous version of the validator, you
13
will need to manually check if anything new has been added to the W3C's
14
validator.conf and edit your own validator.conf accordingly.  If you would
15
prefer not to put the validator.conf file into /etc, you can place
16
it where you would like and set the environment variable W3C_VALIDATOR_CFG
17
to the complete path (including filename) of validator.conf.  See below
18
for an example of how to set this environment variable in Apache.
19
9
20
# Example httpd.conf snippet for W3C Markup Validation Service
10
If you are using another web server, you will have to configure it yourself.
21
# Note that this is not a complete server configuration file, but contains
11
The W3C only recommends the use of the Apache web server, so there are no other
22
# only the validator-specific part.
12
web server configuration snippets.
23
#
24
# You can use the Include directive for including this in your main httpd.conf.
25
#
26
# Note: running the validator under mod_perl is not supported at the moment.
27
#       You are also required to have mod_include active for the validator
28
#       pages to show up as they should.
29
#
30
# The /w3c-validator location can be changed to whatever you want it to be,
31
# but make sure you change it for both of these ScriptAlias commands as well
32
# as the Alias command under them.
33
13
34
# First, tell httpd that check and sendfeedback.pl are CGI scripts.
14
A sample validator.conf has been installed at
35
15
%%WWWDIR%%/htdocs/config/validator.conf.sample
36
ScriptAlias      /w3c-validator/check \
16
You need to copy this file to
37
  %%PREFIX%%/www/validator/httpd/cgi-bin/check
17
%%WWWDIR%%/htdocs/config/validator.conf
38
ScriptAliasMatch /w3c-validator/feedback(\.html)? \
18
and then edit it to your liking. If you have used a previous version of the
39
  %%PREFIX%%/www/validator/httpd/cgi-bin/sendfeedback.pl
19
validator, you will need to manually check if anything new has been added to
40
20
the W3C's validator.conf and edit your own validator.conf accordingly. If you
41
# This is the directory where you have the validator's *.html, *.css etc files.
21
would prefer not to put the validator.conf file into
42
22
%%WWWDIR%%/htdocs/config,
43
Alias /w3c-validator/  %%PREFIX%%/www/validator/htdocs/
23
you can place it where you would like and set the environment variable
44
<Directory %%PREFIX%%/www/validator/htdocs/>
24
W3C_VALIDATOR_CFG to the complete path (including filename) of validator.conf.
45
  Options        IncludesNOEXEC Indexes MultiViews
25
An example of how to set this environment variable in Apache has been included
46
  AllowOverride  None
26
in the above referenced httpd.conf file.
47
  AddHandler     server-parsed .html
48
  AddCharset     utf-8         .html
49
# If you would like to move the location of validator.conf, set the following,
50
#  making sure to change the path if you don't use this path.
51
# SetEnv         W3C_VALIDATOR_CFG \
52
#                %%PREFIX%%/www/validator/htdocs/config/validator.conf
53
</Directory>
54
-------------------------------------------------------------------------------
27
-------------------------------------------------------------------------------
(-)files/validator.conf.sample.in (-138 lines)
Lines 1-138 Link Here
1
2
# Main Configuration File for the W3C Markup Validation Service.
3
#
4
# $Id: validator.conf,v 1.39 2010-03-09 18:46:03 ville Exp $
5
#
6
# See 'perldoc Config::General' for the syntax, and be aware that the
7
# 'SplitPolicy' is 'equalsign', ie. keys and values are separated by '\s*=\s*',
8
# and that 'InterPolateVars' is in effect.
9
#
10
11
#
12
# Base Path for Markup Validator files.
13
#
14
# You MUST set these unless you use the default locations for the files.
15
# e.g. the config files in "/etc/w3c/" and everything else in
16
# "/usr/local/validator/".
17
#
18
# Make sure all file paths below do NOT end with a slash
19
20
<Paths>
21
  #
22
  # Base path.  Defaults to the value of the W3C_VALIDATOR_HOME environment
23
  # variable or /usr/local/validator if the variable does not exist.
24
  Base = %%PREFIX%%/www/validator
25
26
  #
27
  # Location of template files
28
  Templates = $Base/share/templates
29
30
  #
31
  # Directory where to store cached templates.  Relative paths are
32
  # treated as relative to the system temporary directory.  Templates
33
  # are not cached at all if this option is empty or not set, except
34
  # with mod_perl setups where this option has no effect and templates
35
  # are always cached in memory.
36
  #Cache = validator
37
38
  # configuration file for HTML Tidy Module, if available
39
  TidyConf = $Base/htdocs/config/tidy.conf
40
41
  <SGML>
42
    #
43
    # The SGML Library Path.
44
    Library = $Base/htdocs/sgml-lib
45
  </SGML>
46
</Paths>
47
48
#
49
# This controls whether the debugging options are allowed to be enabled.
50
Allow Debug = yes
51
52
#
53
# This lets you permanently enable the debugging options. Can be overridden
54
# with CGI options (unlike "Allow Debug" above).
55
Enable Debug = no
56
57
#
58
# Whether private RFC1918 addresses are allowed.
59
Allow Private IPs = no
60
61
#
62
# Enable (or not) the web service API for this validator
63
# see http://validator.w3.org/docs/api.html
64
Enable SOAP = yes
65
66
67
#
68
# Whether the validator will check its own output.
69
# 0 means it will refuse to check its own output, 1 means it will but it will
70
# refuse to check the results of it checking itself. Etc.
71
Max Recursion = 0
72
73
#
74
# Protocols the validator is allowed to use for retrieving documents.
75
# The default is to allow http and https.
76
<Protocols>
77
  Allow = data,ftp,http,https
78
</Protocols>
79
80
#
81
# Email address of the maintainer of this service.
82
Maintainer = www-validator@w3.org
83
84
#
85
# The "Home Page" for the service.  Make sure this ends with a slash.
86
Home Page = http://validator.w3.org/
87
88
# Localization
89
# only English available for now
90
Languages = en
91
92
93
94
#
95
# Mapping tables etc...
96
#
97
98
#
99
# Main document Type Registry; contains all information on the types
100
# of documents we support and how they are processed.
101
<Types>
102
  Include %%PREFIX%%/www/validator/htdocs/config/types.conf
103
</Types>
104
105
#
106
# Mapping of charset names to their IANA names and how iconv(3) knows them.
107
<Charsets>
108
  Include %%PREFIX%%/www/validator/htdocs/config/charset.cfg
109
</Charsets>
110
111
#
112
# Map MIME Media Type to Parse Mode mapping.
113
<MIME>
114
  text/xml              = XML
115
  image/svg             = XML
116
  image/svg+xml         = XML
117
  application/smil      = XML
118
  application/xml       = XML
119
  text/html             = TBD
120
  text/vnd.wap.wml      = XML
121
  application/xhtml+xml = XML
122
  application/mathml+xml = XML
123
</MIME>
124
125
#
126
# Source for the "Tip of The Day" blurbs.
127
<Tips>
128
  Include %%PREFIX%%/www/validator/htdocs/config/tips.cfg
129
</Tips>
130
131
<External>
132
## Enable checking documents via external services.
133
## The example config below assumes that you have installed the validator.nu
134
## engine on the same machine as the markup validator.
135
## See http://about.validator.nu/ for installation instructions.
136
#HTML5 = http://localhost:8888/html5/
137
#CompoundXML = http://localhost:8888/
138
</External>
(-)pkg-plist (-692 / +695 lines)
Lines 1-692 Link Here
1
www/validator/htdocs/about.html
1
%%WWWDIR%%/htdocs/about.html
2
www/validator/htdocs/accesskeys.html
2
%%WWWDIR%%/htdocs/accesskeys.html
3
www/validator/htdocs/charset-select.html
3
%%WWWDIR%%/htdocs/charset-select.html
4
www/validator/htdocs/config/charset.cfg
4
%%WWWDIR%%/htdocs/config/charset.cfg
5
www/validator/htdocs/config/tidy.conf
5
%%WWWDIR%%/htdocs/config/tidy.conf
6
www/validator/htdocs/config/types.conf
6
%%WWWDIR%%/htdocs/config/types.conf
7
www/validator/htdocs/config/validator.conf.sample
7
@sample %%WWWDIR%%/htdocs/config/validator.conf.sample
8
www/validator/htdocs/contribute.html
8
%%WWWDIR%%/htdocs/contribute.html
9
www/validator/htdocs/detailed-form.html
9
%%WWWDIR%%/htdocs/detailed-form.html
10
www/validator/htdocs/detailed-form_directinput.html
10
%%WWWDIR%%/htdocs/detailed-form_directinput.html
11
www/validator/htdocs/detailed.html
11
%%WWWDIR%%/htdocs/detailed.html
12
www/validator/htdocs/dev/autotest/doctypes.xml
12
%%WWWDIR%%/htdocs/dev/autotest/doctypes.xml
13
www/validator/htdocs/dev/tests/1574-charset_iso_8859_7_greek.html
13
%%WWWDIR%%/htdocs/dev/tests/1574-charset_iso_8859_7_greek.html
14
www/validator/htdocs/dev/tests/197-iso88591_alias.html
14
%%WWWDIR%%/htdocs/dev/tests/197-iso88591_alias.html
15
www/validator/htdocs/dev/tests/2329-html401-strict_iframe.html
15
%%WWWDIR%%/htdocs/dev/tests/2329-html401-strict_iframe.html
16
www/validator/htdocs/dev/tests/2329-html401-transitional_iframe.html
16
%%WWWDIR%%/htdocs/dev/tests/2329-html401-transitional_iframe.html
17
www/validator/htdocs/dev/tests/2342-opensp_type_X.html
17
%%WWWDIR%%/htdocs/dev/tests/2342-opensp_type_X.html
18
www/validator/htdocs/dev/tests/2689-attribute-no-space.xhtml
18
%%WWWDIR%%/htdocs/dev/tests/2689-attribute-no-space.xhtml
19
www/validator/htdocs/dev/tests/3663-svg-10-doctype.svg
19
%%WWWDIR%%/htdocs/dev/tests/3663-svg-10-doctype.svg
20
www/validator/htdocs/dev/tests/3663-svg-10-doctypeless.svg
20
%%WWWDIR%%/htdocs/dev/tests/3663-svg-10-doctypeless.svg
21
www/validator/htdocs/dev/tests/3663-svg-11-doctype.svg
21
%%WWWDIR%%/htdocs/dev/tests/3663-svg-11-doctype.svg
22
www/validator/htdocs/dev/tests/3663-svg-11-doctypeless.svg
22
%%WWWDIR%%/htdocs/dev/tests/3663-svg-11-doctypeless.svg
23
www/validator/htdocs/dev/tests/3663-svg-basic-11-doctype.svg
23
%%WWWDIR%%/htdocs/dev/tests/3663-svg-basic-11-doctype.svg
24
www/validator/htdocs/dev/tests/3663-svg-basic-11-doctypeless.svg
24
%%WWWDIR%%/htdocs/dev/tests/3663-svg-basic-11-doctypeless.svg
25
www/validator/htdocs/dev/tests/3663-svg-noversion-doctype.svg
25
%%WWWDIR%%/htdocs/dev/tests/3663-svg-noversion-doctype.svg
26
www/validator/htdocs/dev/tests/3663-svg-noversion-doctype2.svg
26
%%WWWDIR%%/htdocs/dev/tests/3663-svg-noversion-doctype2.svg
27
www/validator/htdocs/dev/tests/3663-svg-noversion-doctypeless.svg
27
%%WWWDIR%%/htdocs/dev/tests/3663-svg-noversion-doctypeless.svg
28
www/validator/htdocs/dev/tests/3663-svg-tiny-11-doctype.svg
28
%%WWWDIR%%/htdocs/dev/tests/3663-svg-tiny-11-doctype.svg
29
www/validator/htdocs/dev/tests/3663-svg-tiny-11-doctypeless.svg
29
%%WWWDIR%%/htdocs/dev/tests/3663-svg-tiny-11-doctypeless.svg
30
www/validator/htdocs/dev/tests/4412-fuzzymatch.xhtml
30
%%WWWDIR%%/htdocs/dev/tests/4412-fuzzymatch.xhtml
31
www/validator/htdocs/dev/tests/4476-svg_nodoctype.svg
31
%%WWWDIR%%/htdocs/dev/tests/4476-svg_nodoctype.svg
32
www/validator/htdocs/dev/tests/4520-iso88591-meta.html
32
%%WWWDIR%%/htdocs/dev/tests/4520-iso88591-meta.html
33
www/validator/htdocs/dev/tests/4520-iso88591-no_meta.html
33
%%WWWDIR%%/htdocs/dev/tests/4520-iso88591-no_meta.html
34
www/validator/htdocs/dev/tests/4848-html40-transitional_FPI-SI-mismatch.html
34
%%WWWDIR%%/htdocs/dev/tests/4848-html40-transitional_FPI-SI-mismatch.html
35
www/validator/htdocs/dev/tests/4848-xhtml1-strict_FPI-SI-mismatch.xhtml
35
%%WWWDIR%%/htdocs/dev/tests/4848-xhtml1-strict_FPI-SI-mismatch.xhtml
36
www/validator/htdocs/dev/tests/4892-entity.html
36
%%WWWDIR%%/htdocs/dev/tests/4892-entity.html
37
www/validator/htdocs/dev/tests/4917-meta_charset_case.html
37
%%WWWDIR%%/htdocs/dev/tests/4917-meta_charset_case.html
38
www/validator/htdocs/dev/tests/5031-root_dash.xml
38
%%WWWDIR%%/htdocs/dev/tests/5031-root_dash.xml
39
www/validator/htdocs/dev/tests/857-svg_nodoctype.svg
39
%%WWWDIR%%/htdocs/dev/tests/857-svg_nodoctype.svg
40
www/validator/htdocs/dev/tests/REC-SVG-1_0-minimal.html
40
%%WWWDIR%%/htdocs/dev/tests/REC-SVG-1_0-minimal.html
41
www/validator/htdocs/dev/tests/REC-SVG-1_0-minimal.svg
41
%%WWWDIR%%/htdocs/dev/tests/REC-SVG-1_0-minimal.svg
42
www/validator/htdocs/dev/tests/SMIL21.smil
42
%%WWWDIR%%/htdocs/dev/tests/SMIL21.smil
43
www/validator/htdocs/dev/tests/SMIL21_Mobile.smil
43
%%WWWDIR%%/htdocs/dev/tests/SMIL21_Mobile.smil
44
www/validator/htdocs/dev/tests/W11-ht401-namespace.html
44
%%WWWDIR%%/htdocs/dev/tests/W11-ht401-namespace.html
45
www/validator/htdocs/dev/tests/ampersand-as-data.html
45
%%WWWDIR%%/htdocs/dev/tests/ampersand-as-data.html
46
www/validator/htdocs/dev/tests/ampersand-as-data_html401.html
46
%%WWWDIR%%/htdocs/dev/tests/ampersand-as-data_html401.html
47
www/validator/htdocs/dev/tests/application-xhtml_xml.xhtml
47
%%WWWDIR%%/htdocs/dev/tests/application-xhtml_xml.xhtml
48
www/validator/htdocs/dev/tests/bogus-fpi.html
48
%%WWWDIR%%/htdocs/dev/tests/bogus-fpi.html
49
www/validator/htdocs/dev/tests/bogus-fpi2.html
49
%%WWWDIR%%/htdocs/dev/tests/bogus-fpi2.html
50
www/validator/htdocs/dev/tests/bogus-fpi3.html
50
%%WWWDIR%%/htdocs/dev/tests/bogus-fpi3.html
51
www/validator/htdocs/dev/tests/bogus-fpi4.html
51
%%WWWDIR%%/htdocs/dev/tests/bogus-fpi4.html
52
www/validator/htdocs/dev/tests/bogus-fpi5.xhtml
52
%%WWWDIR%%/htdocs/dev/tests/bogus-fpi5.xhtml
53
www/validator/htdocs/dev/tests/bogus-xmlpi.html
53
%%WWWDIR%%/htdocs/dev/tests/bogus-xmlpi.html
54
www/validator/htdocs/dev/tests/bogus-xmlpi.xhtml
54
%%WWWDIR%%/htdocs/dev/tests/bogus-xmlpi.xhtml
55
www/validator/htdocs/dev/tests/charset-xmldecl.xhtml
55
%%WWWDIR%%/htdocs/dev/tests/charset-xmldecl.xhtml
56
www/validator/htdocs/dev/tests/charset_mismatch-http_meta.html.utf8
56
%%WWWDIR%%/htdocs/dev/tests/charset_mismatch-http_meta.html.utf8
57
www/validator/htdocs/dev/tests/charset_mismatch-http_xmldec.xhtml.utf8
57
%%WWWDIR%%/htdocs/dev/tests/charset_mismatch-http_xmldec.xhtml.utf8
58
www/validator/htdocs/dev/tests/colons.html
58
%%WWWDIR%%/htdocs/dev/tests/colons.html
59
www/validator/htdocs/dev/tests/error_pls_warning.html
59
%%WWWDIR%%/htdocs/dev/tests/error_pls_warning.html
60
www/validator/htdocs/dev/tests/errors_sorting.smi
60
%%WWWDIR%%/htdocs/dev/tests/errors_sorting.smi
61
www/validator/htdocs/dev/tests/fpi_mismatch1.html
61
%%WWWDIR%%/htdocs/dev/tests/fpi_mismatch1.html
62
www/validator/htdocs/dev/tests/fpi_mismatch2.html
62
%%WWWDIR%%/htdocs/dev/tests/fpi_mismatch2.html
63
www/validator/htdocs/dev/tests/html20-strict.html
63
%%WWWDIR%%/htdocs/dev/tests/html20-strict.html
64
www/validator/htdocs/dev/tests/html20.html
64
%%WWWDIR%%/htdocs/dev/tests/html20.html
65
www/validator/htdocs/dev/tests/html40-frameset.html
65
%%WWWDIR%%/htdocs/dev/tests/html40-frameset.html
66
www/validator/htdocs/dev/tests/html40-strict.html
66
%%WWWDIR%%/htdocs/dev/tests/html40-strict.html
67
www/validator/htdocs/dev/tests/html40-transitional.html
67
%%WWWDIR%%/htdocs/dev/tests/html40-transitional.html
68
www/validator/htdocs/dev/tests/html401-strict.html
68
%%WWWDIR%%/htdocs/dev/tests/html401-strict.html
69
www/validator/htdocs/dev/tests/html401-strict.xhtml
69
%%WWWDIR%%/htdocs/dev/tests/html401-strict.xhtml
70
www/validator/htdocs/dev/tests/html401_doctypecase.html
70
%%WWWDIR%%/htdocs/dev/tests/html401_doctypecase.html
71
www/validator/htdocs/dev/tests/html401_system.html
71
%%WWWDIR%%/htdocs/dev/tests/html401_system.html
72
www/validator/htdocs/dev/tests/html5-error-explanation.html
72
%%WWWDIR%%/htdocs/dev/tests/html5-error-explanation.html
73
www/validator/htdocs/dev/tests/html5-ok.html
73
%%WWWDIR%%/htdocs/dev/tests/html5-ok.html
74
www/validator/htdocs/dev/tests/html5-precise-error.html
74
%%WWWDIR%%/htdocs/dev/tests/html5-precise-error.html
75
www/validator/htdocs/dev/tests/html5-range-error.html
75
%%WWWDIR%%/htdocs/dev/tests/html5-range-error.html
76
www/validator/htdocs/dev/tests/html5-warning.html
76
%%WWWDIR%%/htdocs/dev/tests/html5-warning.html
77
www/validator/htdocs/dev/tests/html_xmlns.html.utf8
77
%%WWWDIR%%/htdocs/dev/tests/html_xmlns.html.utf8
78
www/validator/htdocs/dev/tests/index.html
78
%%WWWDIR%%/htdocs/dev/tests/index.html
79
www/validator/htdocs/dev/tests/invalid_meta_multibyte.html
79
%%WWWDIR%%/htdocs/dev/tests/invalid_meta_multibyte.html
80
www/validator/htdocs/dev/tests/iso-html.html
80
%%WWWDIR%%/htdocs/dev/tests/iso-html.html
81
www/validator/htdocs/dev/tests/long-lines.html
81
%%WWWDIR%%/htdocs/dev/tests/long-lines.html
82
www/validator/htdocs/dev/tests/mathml2.html
82
%%WWWDIR%%/htdocs/dev/tests/mathml2.html
83
www/validator/htdocs/dev/tests/mathml2.mml
83
%%WWWDIR%%/htdocs/dev/tests/mathml2.mml
84
www/validator/htdocs/dev/tests/no-newlines.html
84
%%WWWDIR%%/htdocs/dev/tests/no-newlines.html
85
www/validator/htdocs/dev/tests/nocharset.html
85
%%WWWDIR%%/htdocs/dev/tests/nocharset.html
86
www/validator/htdocs/dev/tests/nocharset_notutf8.html
86
%%WWWDIR%%/htdocs/dev/tests/nocharset_notutf8.html
87
www/validator/htdocs/dev/tests/nonSGML-chars.html
87
%%WWWDIR%%/htdocs/dev/tests/nonSGML-chars.html
88
www/validator/htdocs/dev/tests/outline.html
88
%%WWWDIR%%/htdocs/dev/tests/outline.html
89
www/validator/htdocs/dev/tests/plane20-char.xml
89
%%WWWDIR%%/htdocs/dev/tests/plane20-char.xml
90
www/validator/htdocs/dev/tests/rddl_fpi.html
90
%%WWWDIR%%/htdocs/dev/tests/rddl_fpi.html
91
www/validator/htdocs/dev/tests/rddl_fpi.xhtml
91
%%WWWDIR%%/htdocs/dev/tests/rddl_fpi.xhtml
92
www/validator/htdocs/dev/tests/rddl_si.xhtml
92
%%WWWDIR%%/htdocs/dev/tests/rddl_si.xhtml
93
www/validator/htdocs/dev/tests/sgml-nodoctype-syntaxnotok.html
93
%%WWWDIR%%/htdocs/dev/tests/sgml-nodoctype-syntaxnotok.html
94
www/validator/htdocs/dev/tests/sgml-nodoctype-syntaxok.html
94
%%WWWDIR%%/htdocs/dev/tests/sgml-nodoctype-syntaxok.html
95
www/validator/htdocs/dev/tests/sgml_customdtd.html
95
%%WWWDIR%%/htdocs/dev/tests/sgml_customdtd.html
96
www/validator/htdocs/dev/tests/shorttags.html
96
%%WWWDIR%%/htdocs/dev/tests/shorttags.html
97
www/validator/htdocs/dev/tests/shorttags2.html
97
%%WWWDIR%%/htdocs/dev/tests/shorttags2.html
98
www/validator/htdocs/dev/tests/smil10-minimal.smi
98
%%WWWDIR%%/htdocs/dev/tests/smil10-minimal.smi
99
www/validator/htdocs/dev/tests/smil20-profile-doctype.smi
99
%%WWWDIR%%/htdocs/dev/tests/smil20-profile-doctype.smi
100
www/validator/htdocs/dev/tests/smil20.smi
100
%%WWWDIR%%/htdocs/dev/tests/smil20.smi
101
www/validator/htdocs/dev/tests/svg11.svg
101
%%WWWDIR%%/htdocs/dev/tests/svg11.svg
102
www/validator/htdocs/dev/tests/svg_tiny_1_1.svg
102
%%WWWDIR%%/htdocs/dev/tests/svg_tiny_1_1.svg
103
www/validator/htdocs/dev/tests/texthtml_nocharset-utf8.html
103
%%WWWDIR%%/htdocs/dev/tests/texthtml_nocharset-utf8.html
104
www/validator/htdocs/dev/tests/texthtml_nocharset.html
104
%%WWWDIR%%/htdocs/dev/tests/texthtml_nocharset.html
105
www/validator/htdocs/dev/tests/texthtml_nodoctype.html.utf8
105
%%WWWDIR%%/htdocs/dev/tests/texthtml_nodoctype.html.utf8
106
www/validator/htdocs/dev/tests/texthtml_unknownparsemode.html.utf8
106
%%WWWDIR%%/htdocs/dev/tests/texthtml_unknownparsemode.html.utf8
107
www/validator/htdocs/dev/tests/textxml_html401.xml
107
%%WWWDIR%%/htdocs/dev/tests/textxml_html401.xml
108
www/validator/htdocs/dev/tests/textxml_nocharset.xml
108
%%WWWDIR%%/htdocs/dev/tests/textxml_nocharset.xml
109
www/validator/htdocs/dev/tests/trailing-nul.html
109
%%WWWDIR%%/htdocs/dev/tests/trailing-nul.html
110
www/validator/htdocs/dev/tests/uppercase_element.xhtml
110
%%WWWDIR%%/htdocs/dev/tests/uppercase_element.xhtml
111
www/validator/htdocs/dev/tests/xhtml-basic10.xhtml
111
%%WWWDIR%%/htdocs/dev/tests/xhtml-basic10.xhtml
112
www/validator/htdocs/dev/tests/xhtml-basic11.xhtml
112
%%WWWDIR%%/htdocs/dev/tests/xhtml-basic11.xhtml
113
www/validator/htdocs/dev/tests/xhtml-mathml2-fpi.html
113
%%WWWDIR%%/htdocs/dev/tests/xhtml-mathml2-fpi.html
114
www/validator/htdocs/dev/tests/xhtml-mathml2.html
114
%%WWWDIR%%/htdocs/dev/tests/xhtml-mathml2.html
115
www/validator/htdocs/dev/tests/xhtml-mp-1_2.xhtml
115
%%WWWDIR%%/htdocs/dev/tests/xhtml-mp-1_2.xhtml
116
www/validator/htdocs/dev/tests/xhtml-print_1_0-invalid.xhtml
116
%%WWWDIR%%/htdocs/dev/tests/xhtml-print_1_0-invalid.xhtml
117
www/validator/htdocs/dev/tests/xhtml-print_1_0.html
117
%%WWWDIR%%/htdocs/dev/tests/xhtml-print_1_0.html
118
www/validator/htdocs/dev/tests/xhtml-print_1_0.xhtml
118
%%WWWDIR%%/htdocs/dev/tests/xhtml-print_1_0.xhtml
119
www/validator/htdocs/dev/tests/xhtml-utf8-bom.xhtml
119
%%WWWDIR%%/htdocs/dev/tests/xhtml-utf8-bom.xhtml
120
www/validator/htdocs/dev/tests/xhtml-windows-1250.xhtml
120
%%WWWDIR%%/htdocs/dev/tests/xhtml-windows-1250.xhtml
121
www/validator/htdocs/dev/tests/xhtml1-appc-empty.html
121
%%WWWDIR%%/htdocs/dev/tests/xhtml1-appc-empty.html
122
www/validator/htdocs/dev/tests/xhtml1-appc-emptycontent.html
122
%%WWWDIR%%/htdocs/dev/tests/xhtml1-appc-emptycontent.html
123
www/validator/htdocs/dev/tests/xhtml1-appc-xmldecl.html
123
%%WWWDIR%%/htdocs/dev/tests/xhtml1-appc-xmldecl.html
124
www/validator/htdocs/dev/tests/xhtml1-blank-1st-line.html
124
%%WWWDIR%%/htdocs/dev/tests/xhtml1-blank-1st-line.html
125
www/validator/htdocs/dev/tests/xhtml1-bogus-attribute.html
125
%%WWWDIR%%/htdocs/dev/tests/xhtml1-bogus-attribute.html
126
www/validator/htdocs/dev/tests/xhtml1-bogus-element.html
126
%%WWWDIR%%/htdocs/dev/tests/xhtml1-bogus-element.html
127
www/validator/htdocs/dev/tests/xhtml1-missing-doctype-and-xmlns.html
127
%%WWWDIR%%/htdocs/dev/tests/xhtml1-missing-doctype-and-xmlns.html
128
www/validator/htdocs/dev/tests/xhtml1-missing-doctype-and-xmlns.xhtml
128
%%WWWDIR%%/htdocs/dev/tests/xhtml1-missing-doctype-and-xmlns.xhtml
129
www/validator/htdocs/dev/tests/xhtml1-missing-doctype-has-xmlns.html
129
%%WWWDIR%%/htdocs/dev/tests/xhtml1-missing-doctype-has-xmlns.html
130
www/validator/htdocs/dev/tests/xhtml1-missing-doctype-has-xmlns.xhtml
130
%%WWWDIR%%/htdocs/dev/tests/xhtml1-missing-doctype-has-xmlns.xhtml
131
www/validator/htdocs/dev/tests/xhtml1-strict-minimal.html
131
%%WWWDIR%%/htdocs/dev/tests/xhtml1-strict-minimal.html
132
www/validator/htdocs/dev/tests/xhtml1-strict-missing-xmlns.html
132
%%WWWDIR%%/htdocs/dev/tests/xhtml1-strict-missing-xmlns.html
133
www/validator/htdocs/dev/tests/xhtml1-strict.html
133
%%WWWDIR%%/htdocs/dev/tests/xhtml1-strict.html
134
www/validator/htdocs/dev/tests/xhtml11-basic-w3c.xhtml
134
%%WWWDIR%%/htdocs/dev/tests/xhtml11-basic-w3c.xhtml
135
www/validator/htdocs/dev/tests/xhtml11-minimal.html
135
%%WWWDIR%%/htdocs/dev/tests/xhtml11-minimal.html
136
www/validator/htdocs/dev/tests/xhtml_mathml_svg_newlines.xhtml
136
%%WWWDIR%%/htdocs/dev/tests/xhtml_mathml_svg_newlines.xhtml
137
www/validator/htdocs/dev/tests/xhtml_rdfa.xhtml
137
%%WWWDIR%%/htdocs/dev/tests/xhtml_rdfa.xhtml
138
www/validator/htdocs/dev/tests/xml-nodoctype-notwf.xml
138
%%WWWDIR%%/htdocs/dev/tests/xml-nodoctype-notwf.xml
139
www/validator/htdocs/dev/tests/xml-nodoctype-wf.xml
139
%%WWWDIR%%/htdocs/dev/tests/xml-nodoctype-wf.xml
140
www/validator/htdocs/docs/api.html
140
%%WWWDIR%%/htdocs/docs/api.html
141
www/validator/htdocs/docs/devel.html
141
%%WWWDIR%%/htdocs/docs/devel.html
142
www/validator/htdocs/docs/errors.html
142
%%WWWDIR%%/htdocs/docs/errors.html
143
www/validator/htdocs/docs/help.html
143
%%WWWDIR%%/htdocs/docs/help.html
144
www/validator/htdocs/docs/index.html
144
%%WWWDIR%%/htdocs/docs/index.html
145
www/validator/htdocs/docs/install.html
145
%%WWWDIR%%/htdocs/docs/install.html
146
www/validator/htdocs/docs/install_win.html
146
%%WWWDIR%%/htdocs/docs/install_win.html
147
www/validator/htdocs/docs/sgml.html
147
%%WWWDIR%%/htdocs/docs/sgml.html
148
www/validator/htdocs/docs/users.html
148
%%WWWDIR%%/htdocs/docs/users.html
149
www/validator/htdocs/docs/why.html
149
%%WWWDIR%%/htdocs/docs/why.html
150
www/validator/htdocs/doctype-select.html
150
%%WWWDIR%%/htdocs/doctype-select.html
151
www/validator/htdocs/favelets.html
151
%%WWWDIR%%/htdocs/favelets.html
152
www/validator/htdocs/file-upload.html
152
%%WWWDIR%%/htdocs/file-upload.html
153
www/validator/htdocs/footer.html
153
%%WWWDIR%%/htdocs/footer.html
154
www/validator/htdocs/fragment-upload.html
154
%%WWWDIR%%/htdocs/fragment-upload.html
155
www/validator/htdocs/header.html
155
%%WWWDIR%%/htdocs/header.html
156
www/validator/htdocs/images/arrow-closed.png
156
%%WWWDIR%%/htdocs/images/arrow-closed.png
157
www/validator/htdocs/images/arrow-down.gif
157
%%WWWDIR%%/htdocs/images/arrow-down.gif
158
www/validator/htdocs/images/arrow-open.png
158
%%WWWDIR%%/htdocs/images/arrow-open.png
159
www/validator/htdocs/images/arrow-right.gif
159
%%WWWDIR%%/htdocs/images/arrow-right.gif
160
www/validator/htdocs/images/arrow_left.gif
160
%%WWWDIR%%/htdocs/images/arrow_left.gif
161
www/validator/htdocs/images/arrow_right.gif
161
%%WWWDIR%%/htdocs/images/arrow_right.gif
162
www/validator/htdocs/images/bg1.gif
162
%%WWWDIR%%/htdocs/images/bg1.gif
163
www/validator/htdocs/images/bg2.gif
163
%%WWWDIR%%/htdocs/images/bg2.gif
164
www/validator/htdocs/images/button-left.png
164
%%WWWDIR%%/htdocs/images/button-left.png
165
www/validator/htdocs/images/button-right.png
165
%%WWWDIR%%/htdocs/images/button-right.png
166
www/validator/htdocs/images/csupporter.gif
166
%%WWWDIR%%/htdocs/images/csupporter.gif
167
www/validator/htdocs/images/csupporter.png
167
%%WWWDIR%%/htdocs/images/csupporter.png
168
www/validator/htdocs/images/double.png
168
%%WWWDIR%%/htdocs/images/double.png
169
www/validator/htdocs/images/ellipsis.gif
169
%%WWWDIR%%/htdocs/images/ellipsis.gif
170
www/validator/htdocs/images/grad.png
170
%%WWWDIR%%/htdocs/images/grad.png
171
www/validator/htdocs/images/head-bl.png
171
%%WWWDIR%%/htdocs/images/head-bl.png
172
www/validator/htdocs/images/head-br.png
172
%%WWWDIR%%/htdocs/images/head-br.png
173
www/validator/htdocs/images/head-tl.png
173
%%WWWDIR%%/htdocs/images/head-tl.png
174
www/validator/htdocs/images/head-tr.png
174
%%WWWDIR%%/htdocs/images/head-tr.png
175
www/validator/htdocs/images/info_icons/README
175
%%WWWDIR%%/htdocs/images/info_icons/README
176
www/validator/htdocs/images/info_icons/eastshores_Warning_Notification.svg
176
%%WWWDIR%%/htdocs/images/info_icons/eastshores_Warning_Notification.svg
177
www/validator/htdocs/images/info_icons/error.png
177
%%WWWDIR%%/htdocs/images/info_icons/error.png
178
www/validator/htdocs/images/info_icons/info.png
178
%%WWWDIR%%/htdocs/images/info_icons/info.png
179
www/validator/htdocs/images/info_icons/kuba_information_icons_set.svg
179
%%WWWDIR%%/htdocs/images/info_icons/kuba_information_icons_set.svg
180
www/validator/htdocs/images/info_icons/warning.png
180
%%WWWDIR%%/htdocs/images/info_icons/warning.png
181
www/validator/htdocs/images/lg_gradient.gif
181
%%WWWDIR%%/htdocs/images/lg_gradient.gif
182
www/validator/htdocs/images/markup_validation_service.png
182
%%WWWDIR%%/htdocs/images/markup_validation_service.png
183
www/validator/htdocs/images/markup_validation_service.psd
183
%%WWWDIR%%/htdocs/images/markup_validation_service.psd
184
www/validator/htdocs/images/no_w3c.png
184
%%WWWDIR%%/htdocs/images/no_w3c.png
185
www/validator/htdocs/images/opensource-55x48.png
185
%%WWWDIR%%/htdocs/images/opensource-55x48.png
186
www/validator/htdocs/images/ppm_1.png
186
%%WWWDIR%%/htdocs/images/ppm_1.png
187
www/validator/htdocs/images/ppm_2.png
187
%%WWWDIR%%/htdocs/images/ppm_2.png
188
www/validator/htdocs/images/ppm_3.png
188
%%WWWDIR%%/htdocs/images/ppm_3.png
189
www/validator/htdocs/images/qa.png
189
%%WWWDIR%%/htdocs/images/qa.png
190
www/validator/htdocs/images/roadmap/validators-chart-small.png
190
%%WWWDIR%%/htdocs/images/roadmap/validators-chart-small.png
191
www/validator/htdocs/images/roadmap/validators-chart.graffle
191
%%WWWDIR%%/htdocs/images/roadmap/validators-chart.graffle
192
www/validator/htdocs/images/roadmap/validators-chart.pdf
192
%%WWWDIR%%/htdocs/images/roadmap/validators-chart.pdf
193
www/validator/htdocs/images/roadmap/validators-chart.png
193
%%WWWDIR%%/htdocs/images/roadmap/validators-chart.png
194
www/validator/htdocs/images/roadmap/validators-chart.svg
194
%%WWWDIR%%/htdocs/images/roadmap/validators-chart.svg
195
www/validator/htdocs/images/round-br.png
195
%%WWWDIR%%/htdocs/images/round-br.png
196
www/validator/htdocs/images/round-tl.png
196
%%WWWDIR%%/htdocs/images/round-tl.png
197
www/validator/htdocs/images/round-tr.png
197
%%WWWDIR%%/htdocs/images/round-tr.png
198
www/validator/htdocs/images/sm_gradient_active.gif
198
%%WWWDIR%%/htdocs/images/sm_gradient_active.gif
199
www/validator/htdocs/images/sm_gradient_hover.gif
199
%%WWWDIR%%/htdocs/images/sm_gradient_hover.gif
200
www/validator/htdocs/images/tab-tl.png
200
%%WWWDIR%%/htdocs/images/tab-tl.png
201
www/validator/htdocs/images/tab-tr.png
201
%%WWWDIR%%/htdocs/images/tab-tr.png
202
www/validator/htdocs/images/textbg.png
202
%%WWWDIR%%/htdocs/images/textbg.png
203
www/validator/htdocs/images/v15445.gif
203
%%WWWDIR%%/htdocs/images/v15445.gif
204
www/validator/htdocs/images/v15445.png
204
%%WWWDIR%%/htdocs/images/v15445.png
205
www/validator/htdocs/images/valid_icons/LICENSE
205
%%WWWDIR%%/htdocs/images/valid_icons/LICENSE
206
www/validator/htdocs/images/valid_icons/valid-css-blue-v.svg
206
%%WWWDIR%%/htdocs/images/valid_icons/valid-css-blue-v.svg
207
www/validator/htdocs/images/valid_icons/valid-css-blue.gif
207
%%WWWDIR%%/htdocs/images/valid_icons/valid-css-blue.gif
208
www/validator/htdocs/images/valid_icons/valid-css-blue.png
208
%%WWWDIR%%/htdocs/images/valid_icons/valid-css-blue.png
209
www/validator/htdocs/images/valid_icons/valid-css-v.svg
209
%%WWWDIR%%/htdocs/images/valid_icons/valid-css-v.svg
210
www/validator/htdocs/images/valid_icons/valid-css.gif
210
%%WWWDIR%%/htdocs/images/valid_icons/valid-css.gif
211
www/validator/htdocs/images/valid_icons/valid-css.png
211
%%WWWDIR%%/htdocs/images/valid_icons/valid-css.png
212
www/validator/htdocs/images/valid_icons/valid-css1-blue-v.svg
212
%%WWWDIR%%/htdocs/images/valid_icons/valid-css1-blue-v.svg
213
www/validator/htdocs/images/valid_icons/valid-css1-blue.gif
213
%%WWWDIR%%/htdocs/images/valid_icons/valid-css1-blue.gif
214
www/validator/htdocs/images/valid_icons/valid-css1-blue.png
214
%%WWWDIR%%/htdocs/images/valid_icons/valid-css1-blue.png
215
www/validator/htdocs/images/valid_icons/valid-css1-v.svg
215
%%WWWDIR%%/htdocs/images/valid_icons/valid-css1-v.svg
216
www/validator/htdocs/images/valid_icons/valid-css1.gif
216
%%WWWDIR%%/htdocs/images/valid_icons/valid-css1.gif
217
www/validator/htdocs/images/valid_icons/valid-css1.png
217
%%WWWDIR%%/htdocs/images/valid_icons/valid-css1.png
218
www/validator/htdocs/images/valid_icons/valid-css2-blue-v.svg
218
%%WWWDIR%%/htdocs/images/valid_icons/valid-css2-blue-v.svg
219
www/validator/htdocs/images/valid_icons/valid-css2-blue.gif
219
%%WWWDIR%%/htdocs/images/valid_icons/valid-css2-blue.gif
220
www/validator/htdocs/images/valid_icons/valid-css2-blue.png
220
%%WWWDIR%%/htdocs/images/valid_icons/valid-css2-blue.png
221
www/validator/htdocs/images/valid_icons/valid-css2-v.svg
221
%%WWWDIR%%/htdocs/images/valid_icons/valid-css2-v.svg
222
www/validator/htdocs/images/valid_icons/valid-css2.gif
222
%%WWWDIR%%/htdocs/images/valid_icons/valid-css2.gif
223
www/validator/htdocs/images/valid_icons/valid-css2.png
223
%%WWWDIR%%/htdocs/images/valid_icons/valid-css2.png
224
www/validator/htdocs/images/valid_icons/valid-html20-blue-v.svg
224
%%WWWDIR%%/htdocs/images/valid_icons/valid-html20-blue-v.svg
225
www/validator/htdocs/images/valid_icons/valid-html20-blue.gif
225
%%WWWDIR%%/htdocs/images/valid_icons/valid-html20-blue.gif
226
www/validator/htdocs/images/valid_icons/valid-html20-blue.png
226
%%WWWDIR%%/htdocs/images/valid_icons/valid-html20-blue.png
227
www/validator/htdocs/images/valid_icons/valid-html20-v.svg
227
%%WWWDIR%%/htdocs/images/valid_icons/valid-html20-v.svg
228
www/validator/htdocs/images/valid_icons/valid-html20.gif
228
%%WWWDIR%%/htdocs/images/valid_icons/valid-html20.gif
229
www/validator/htdocs/images/valid_icons/valid-html20.png
229
%%WWWDIR%%/htdocs/images/valid_icons/valid-html20.png
230
www/validator/htdocs/images/valid_icons/valid-html32-blue-v.svg
230
%%WWWDIR%%/htdocs/images/valid_icons/valid-html32-blue-v.svg
231
www/validator/htdocs/images/valid_icons/valid-html32-blue.gif
231
%%WWWDIR%%/htdocs/images/valid_icons/valid-html32-blue.gif
232
www/validator/htdocs/images/valid_icons/valid-html32-blue.png
232
%%WWWDIR%%/htdocs/images/valid_icons/valid-html32-blue.png
233
www/validator/htdocs/images/valid_icons/valid-html32-v.svg
233
%%WWWDIR%%/htdocs/images/valid_icons/valid-html32-v.svg
234
www/validator/htdocs/images/valid_icons/valid-html32.gif
234
%%WWWDIR%%/htdocs/images/valid_icons/valid-html32.gif
235
www/validator/htdocs/images/valid_icons/valid-html32.png
235
%%WWWDIR%%/htdocs/images/valid_icons/valid-html32.png
236
www/validator/htdocs/images/valid_icons/valid-html40-blue-v.svg
236
%%WWWDIR%%/htdocs/images/valid_icons/valid-html40-blue-v.svg
237
www/validator/htdocs/images/valid_icons/valid-html40-blue.gif
237
%%WWWDIR%%/htdocs/images/valid_icons/valid-html40-blue.gif
238
www/validator/htdocs/images/valid_icons/valid-html40-blue.png
238
%%WWWDIR%%/htdocs/images/valid_icons/valid-html40-blue.png
239
www/validator/htdocs/images/valid_icons/valid-html40-v.svg
239
%%WWWDIR%%/htdocs/images/valid_icons/valid-html40-v.svg
240
www/validator/htdocs/images/valid_icons/valid-html40.gif
240
%%WWWDIR%%/htdocs/images/valid_icons/valid-html40.gif
241
www/validator/htdocs/images/valid_icons/valid-html40.png
241
%%WWWDIR%%/htdocs/images/valid_icons/valid-html40.png
242
www/validator/htdocs/images/valid_icons/valid-html401-blue-v.svg
242
%%WWWDIR%%/htdocs/images/valid_icons/valid-html401-blue-v.svg
243
www/validator/htdocs/images/valid_icons/valid-html401-blue.gif
243
%%WWWDIR%%/htdocs/images/valid_icons/valid-html401-blue.gif
244
www/validator/htdocs/images/valid_icons/valid-html401-blue.png
244
%%WWWDIR%%/htdocs/images/valid_icons/valid-html401-blue.png
245
www/validator/htdocs/images/valid_icons/valid-html401-v.svg
245
%%WWWDIR%%/htdocs/images/valid_icons/valid-html401-v.svg
246
www/validator/htdocs/images/valid_icons/valid-html401.gif
246
%%WWWDIR%%/htdocs/images/valid_icons/valid-html401.gif
247
www/validator/htdocs/images/valid_icons/valid-html401.png
247
%%WWWDIR%%/htdocs/images/valid_icons/valid-html401.png
248
www/validator/htdocs/images/valid_icons/valid-mathml20-blue-v.svg
248
%%WWWDIR%%/htdocs/images/valid_icons/valid-mathml20-blue-v.svg
249
www/validator/htdocs/images/valid_icons/valid-mathml20-blue.gif
249
%%WWWDIR%%/htdocs/images/valid_icons/valid-mathml20-blue.gif
250
www/validator/htdocs/images/valid_icons/valid-mathml20-blue.png
250
%%WWWDIR%%/htdocs/images/valid_icons/valid-mathml20-blue.png
251
www/validator/htdocs/images/valid_icons/valid-mathml20-v.svg
251
%%WWWDIR%%/htdocs/images/valid_icons/valid-mathml20-v.svg
252
www/validator/htdocs/images/valid_icons/valid-mathml20.gif
252
%%WWWDIR%%/htdocs/images/valid_icons/valid-mathml20.gif
253
www/validator/htdocs/images/valid_icons/valid-mathml20.png
253
%%WWWDIR%%/htdocs/images/valid_icons/valid-mathml20.png
254
www/validator/htdocs/images/valid_icons/valid-svg10-blue-v.svg
254
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg10-blue-v.svg
255
www/validator/htdocs/images/valid_icons/valid-svg10-blue.gif
255
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg10-blue.gif
256
www/validator/htdocs/images/valid_icons/valid-svg10-blue.png
256
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg10-blue.png
257
www/validator/htdocs/images/valid_icons/valid-svg10-v.svg
257
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg10-v.svg
258
www/validator/htdocs/images/valid_icons/valid-svg10.gif
258
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg10.gif
259
www/validator/htdocs/images/valid_icons/valid-svg10.png
259
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg10.png
260
www/validator/htdocs/images/valid_icons/valid-svg11-blue-v.svg
260
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg11-blue-v.svg
261
www/validator/htdocs/images/valid_icons/valid-svg11-blue.gif
261
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg11-blue.gif
262
www/validator/htdocs/images/valid_icons/valid-svg11-blue.png
262
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg11-blue.png
263
www/validator/htdocs/images/valid_icons/valid-svg11-v.svg
263
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg11-v.svg
264
www/validator/htdocs/images/valid_icons/valid-svg11.gif
264
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg11.gif
265
www/validator/htdocs/images/valid_icons/valid-svg11.png
265
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg11.png
266
www/validator/htdocs/images/valid_icons/valid-svg12-blue-v.svg
266
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg12-blue-v.svg
267
www/validator/htdocs/images/valid_icons/valid-svg12-blue.gif
267
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg12-blue.gif
268
www/validator/htdocs/images/valid_icons/valid-svg12-blue.png
268
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg12-blue.png
269
www/validator/htdocs/images/valid_icons/valid-svg12-v.svg
269
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg12-v.svg
270
www/validator/htdocs/images/valid_icons/valid-svg12.gif
270
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg12.gif
271
www/validator/htdocs/images/valid_icons/valid-svg12.png
271
%%WWWDIR%%/htdocs/images/valid_icons/valid-svg12.png
272
www/validator/htdocs/images/valid_icons/valid-svgtiny11-blue-v.svg
272
%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny11-blue-v.svg
273
www/validator/htdocs/images/valid_icons/valid-svgtiny11-blue.gif
273
%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny11-blue.gif
274
www/validator/htdocs/images/valid_icons/valid-svgtiny11-blue.png
274
%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny11-blue.png
275
www/validator/htdocs/images/valid_icons/valid-svgtiny11-v.svg
275
%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny11-v.svg
276
www/validator/htdocs/images/valid_icons/valid-svgtiny11.gif
276
%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny11.gif
277
www/validator/htdocs/images/valid_icons/valid-svgtiny11.png
277
%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny11.png
278
www/validator/htdocs/images/valid_icons/valid-svgtiny12-blue-v.svg
278
%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny12-blue-v.svg
279
www/validator/htdocs/images/valid_icons/valid-svgtiny12-blue.gif
279
%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny12-blue.gif
280
www/validator/htdocs/images/valid_icons/valid-svgtiny12-blue.png
280
%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny12-blue.png
281
www/validator/htdocs/images/valid_icons/valid-svgtiny12-v.svg
281
%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny12-v.svg
282
www/validator/htdocs/images/valid_icons/valid-svgtiny12.gif
282
%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny12.gif
283
www/validator/htdocs/images/valid_icons/valid-svgtiny12.png
283
%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny12.png
284
www/validator/htdocs/images/valid_icons/valid-xhtml-rdfa-blue-v.svg
284
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml-rdfa-blue-v.svg
285
www/validator/htdocs/images/valid_icons/valid-xhtml-rdfa-blue.gif
285
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml-rdfa-blue.gif
286
www/validator/htdocs/images/valid_icons/valid-xhtml-rdfa-blue.png
286
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml-rdfa-blue.png
287
www/validator/htdocs/images/valid_icons/valid-xhtml-rdfa-v.svg
287
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml-rdfa-v.svg
288
www/validator/htdocs/images/valid_icons/valid-xhtml-rdfa.gif
288
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml-rdfa.gif
289
www/validator/htdocs/images/valid_icons/valid-xhtml-rdfa.png
289
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml-rdfa.png
290
www/validator/htdocs/images/valid_icons/valid-xhtml10-blue-v.svg
290
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml10-blue-v.svg
291
www/validator/htdocs/images/valid_icons/valid-xhtml10-blue.gif
291
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml10-blue.gif
292
www/validator/htdocs/images/valid_icons/valid-xhtml10-blue.png
292
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml10-blue.png
293
www/validator/htdocs/images/valid_icons/valid-xhtml10-v.svg
293
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml10-v.svg
294
www/validator/htdocs/images/valid_icons/valid-xhtml10.gif
294
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml10.gif
295
www/validator/htdocs/images/valid_icons/valid-xhtml10.png
295
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml10.png
296
www/validator/htdocs/images/valid_icons/valid-xhtml11-blue-v.svg
296
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml11-blue-v.svg
297
www/validator/htdocs/images/valid_icons/valid-xhtml11-blue.gif
297
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml11-blue.gif
298
www/validator/htdocs/images/valid_icons/valid-xhtml11-blue.png
298
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml11-blue.png
299
www/validator/htdocs/images/valid_icons/valid-xhtml11-v.svg
299
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml11-v.svg
300
www/validator/htdocs/images/valid_icons/valid-xhtml11.gif
300
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml11.gif
301
www/validator/htdocs/images/valid_icons/valid-xhtml11.png
301
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml11.png
302
www/validator/htdocs/images/valid_icons/valid-xhtml20-blue-v.svg
302
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml20-blue-v.svg
303
www/validator/htdocs/images/valid_icons/valid-xhtml20-blue.gif
303
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml20-blue.gif
304
www/validator/htdocs/images/valid_icons/valid-xhtml20-blue.png
304
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml20-blue.png
305
www/validator/htdocs/images/valid_icons/valid-xhtml20-v.svg
305
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml20-v.svg
306
www/validator/htdocs/images/valid_icons/valid-xhtml20.gif
306
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml20.gif
307
www/validator/htdocs/images/valid_icons/valid-xhtml20.png
307
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml20.png
308
www/validator/htdocs/images/valid_icons/valid-xhtmlbasic10-blue-v.svg
308
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlbasic10-blue-v.svg
309
www/validator/htdocs/images/valid_icons/valid-xhtmlbasic10-blue.gif
309
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlbasic10-blue.gif
310
www/validator/htdocs/images/valid_icons/valid-xhtmlbasic10-blue.png
310
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlbasic10-blue.png
311
www/validator/htdocs/images/valid_icons/valid-xhtmlbasic10-v.svg
311
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlbasic10-v.svg
312
www/validator/htdocs/images/valid_icons/valid-xhtmlbasic10.gif
312
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlbasic10.gif
313
www/validator/htdocs/images/valid_icons/valid-xhtmlbasic10.png
313
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlbasic10.png
314
www/validator/htdocs/images/valid_icons/valid-xhtmlprint10-blue-v.svg
314
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlprint10-blue-v.svg
315
www/validator/htdocs/images/valid_icons/valid-xhtmlprint10-blue.gif
315
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlprint10-blue.gif
316
www/validator/htdocs/images/valid_icons/valid-xhtmlprint10-blue.png
316
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlprint10-blue.png
317
www/validator/htdocs/images/valid_icons/valid-xhtmlprint10-v.svg
317
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlprint10-v.svg
318
www/validator/htdocs/images/valid_icons/valid-xhtmlprint10.gif
318
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlprint10.gif
319
www/validator/htdocs/images/valid_icons/valid-xhtmlprint10.png
319
%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlprint10.png
320
www/validator/htdocs/images/valid_icons/valid-xml10-blue-v.svg
320
%%WWWDIR%%/htdocs/images/valid_icons/valid-xml10-blue-v.svg
321
www/validator/htdocs/images/valid_icons/valid-xml10-blue.gif
321
%%WWWDIR%%/htdocs/images/valid_icons/valid-xml10-blue.gif
322
www/validator/htdocs/images/valid_icons/valid-xml10-blue.png
322
%%WWWDIR%%/htdocs/images/valid_icons/valid-xml10-blue.png
323
www/validator/htdocs/images/valid_icons/valid-xml10-v.svg
323
%%WWWDIR%%/htdocs/images/valid_icons/valid-xml10-v.svg
324
www/validator/htdocs/images/valid_icons/valid-xml10.gif
324
%%WWWDIR%%/htdocs/images/valid_icons/valid-xml10.gif
325
www/validator/htdocs/images/valid_icons/valid-xml10.png
325
%%WWWDIR%%/htdocs/images/valid_icons/valid-xml10.png
326
www/validator/htdocs/images/valid_icons/valid-xml11-blue-v.svg
326
%%WWWDIR%%/htdocs/images/valid_icons/valid-xml11-blue-v.svg
327
www/validator/htdocs/images/valid_icons/valid-xml11-blue.gif
327
%%WWWDIR%%/htdocs/images/valid_icons/valid-xml11-blue.gif
328
www/validator/htdocs/images/valid_icons/valid-xml11-blue.png
328
%%WWWDIR%%/htdocs/images/valid_icons/valid-xml11-blue.png
329
www/validator/htdocs/images/valid_icons/valid-xml11-v.svg
329
%%WWWDIR%%/htdocs/images/valid_icons/valid-xml11-v.svg
330
www/validator/htdocs/images/valid_icons/valid-xml11.gif
330
%%WWWDIR%%/htdocs/images/valid_icons/valid-xml11.gif
331
www/validator/htdocs/images/valid_icons/valid-xml11.png
331
%%WWWDIR%%/htdocs/images/valid_icons/valid-xml11.png
332
www/validator/htdocs/images/w3c.png
332
%%WWWDIR%%/htdocs/images/w3c.png
333
www/validator/htdocs/index.html
333
%%WWWDIR%%/htdocs/index.html
334
www/validator/htdocs/intro.html
334
%%WWWDIR%%/htdocs/intro.html
335
www/validator/htdocs/misc/compaq-logo.gif
335
%%WWWDIR%%/htdocs/misc/compaq-logo.gif
336
www/validator/htdocs/robots.txt
336
%%WWWDIR%%/htdocs/robots.txt
337
www/validator/htdocs/scripts/combined.js
337
%%WWWDIR%%/htdocs/scripts/combined.js
338
www/validator/htdocs/scripts/combined.js.gz
338
%%WWWDIR%%/htdocs/scripts/combined.js.gz
339
www/validator/htdocs/scripts/mootools-1.2.5-core-nc.js
339
%%WWWDIR%%/htdocs/scripts/mootools-1.2.5-core-nc.js
340
www/validator/htdocs/scripts/mootools-1.2.5.1-more.js
340
%%WWWDIR%%/htdocs/scripts/mootools-1.2.5.1-more.js
341
www/validator/htdocs/scripts/w3c-validator.js
341
%%WWWDIR%%/htdocs/scripts/w3c-validator.js
342
www/validator/htdocs/sgml-lib/CR-wai-aria-20110118/aria-attributes-1.mod
342
%%WWWDIR%%/htdocs/sgml-lib/CR-wai-aria-20110118/aria-attributes-1.mod
343
www/validator/htdocs/sgml-lib/CR-wai-aria-20110118/html4-aria-1.dtd
343
%%WWWDIR%%/htdocs/sgml-lib/CR-wai-aria-20110118/html4-aria-1.dtd
344
www/validator/htdocs/sgml-lib/CR-wai-aria-20110118/xhtml-aria-1.dtd
344
%%WWWDIR%%/htdocs/sgml-lib/CR-wai-aria-20110118/xhtml-aria-1.dtd
345
www/validator/htdocs/sgml-lib/IETF/ISOlat1.ent
345
%%WWWDIR%%/htdocs/sgml-lib/IETF/ISOlat1.ent
346
www/validator/htdocs/sgml-lib/IETF/html-1.dtd
346
%%WWWDIR%%/htdocs/sgml-lib/IETF/html-1.dtd
347
www/validator/htdocs/sgml-lib/IETF/html-1s.dtd
347
%%WWWDIR%%/htdocs/sgml-lib/IETF/html-1s.dtd
348
www/validator/htdocs/sgml-lib/IETF/html-s.dtd
348
%%WWWDIR%%/htdocs/sgml-lib/IETF/html-s.dtd
349
www/validator/htdocs/sgml-lib/IETF/html.dtd
349
%%WWWDIR%%/htdocs/sgml-lib/IETF/html.dtd
350
www/validator/htdocs/sgml-lib/IETF/html2070.dtd
350
%%WWWDIR%%/htdocs/sgml-lib/IETF/html2070.dtd
351
www/validator/htdocs/sgml-lib/ISO-HTML/15445.dcl
351
%%WWWDIR%%/htdocs/sgml-lib/ISO-HTML/15445.dcl
352
www/validator/htdocs/sgml-lib/ISO-HTML/15445.dtd
352
%%WWWDIR%%/htdocs/sgml-lib/ISO-HTML/15445.dtd
353
www/validator/htdocs/sgml-lib/NOTE-xhtml-role-20101216/xhtml-role-qname-1.mod
353
%%WWWDIR%%/htdocs/sgml-lib/NOTE-xhtml-role-20101216/xhtml-role-qname-1.mod
354
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/README.txt
354
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/README.txt
355
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isoamsa.ent
355
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isoamsa.ent
356
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isoamsb.ent
356
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isoamsb.ent
357
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isoamsc.ent
357
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isoamsc.ent
358
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isoamsn.ent
358
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isoamsn.ent
359
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isoamso.ent
359
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isoamso.ent
360
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isoamsr.ent
360
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isoamsr.ent
361
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isobox.ent
361
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isobox.ent
362
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isocyr1.ent
362
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isocyr1.ent
363
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isocyr2.ent
363
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isocyr2.ent
364
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isodia.ent
364
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isodia.ent
365
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isogrk3.ent
365
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isogrk3.ent
366
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isolat1.ent
366
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isolat1.ent
367
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isolat2.ent
367
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isolat2.ent
368
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isomfrk.ent
368
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isomfrk.ent
369
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isomopf.ent
369
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isomopf.ent
370
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isomscr.ent
370
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isomscr.ent
371
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isonum.ent
371
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isonum.ent
372
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isopub.ent
372
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isopub.ent
373
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isotech.ent
373
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isotech.ent
374
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/mathml3-qname.mod
374
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/mathml3-qname.mod
375
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/mathml3.dtd
375
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/mathml3.dtd
376
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/mmlalias.ent
376
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/mmlalias.ent
377
www/validator/htdocs/sgml-lib/REC-MathML3-20101021/mmlextra.ent
377
%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/mmlextra.ent
378
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-anim.mod
378
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-anim.mod
379
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-control.mod
379
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-control.mod
380
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-layout.mod
380
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-layout.mod
381
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-link.mod
381
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-link.mod
382
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-media.mod
382
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-media.mod
383
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-metainformation.mod
383
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-metainformation.mod
384
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-struct.mod
384
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-struct.mod
385
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-timing.mod
385
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-timing.mod
386
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-transition.mod
386
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-transition.mod
387
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL21.dtd
387
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL21.dtd
388
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL21ExtendedMobile.dtd
388
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL21ExtendedMobile.dtd
389
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL21Mobile.dtd
389
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL21Mobile.dtd
390
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-attribs-1.mod
390
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-attribs-1.mod
391
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-datatypes-1.mod
391
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-datatypes-1.mod
392
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-extended-mobile-profile-model-1.mod
392
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-extended-mobile-profile-model-1.mod
393
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-framework-1.mod
393
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-framework-1.mod
394
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-language-profile-model-1.mod
394
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-language-profile-model-1.mod
395
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-mobile-profile-model-1.mod
395
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-mobile-profile-model-1.mod
396
www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-qname-1.mod
396
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-qname-1.mod
397
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-anim.mod
397
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-anim.mod
398
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-control.mod
398
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-control.mod
399
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-layout.mod
399
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-layout.mod
400
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-link.mod
400
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-link.mod
401
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-media.mod
401
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-media.mod
402
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-metainformation.mod
402
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-metainformation.mod
403
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-smiltext.mod
403
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-smiltext.mod
404
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-state.mod
404
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-state.mod
405
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-struct.mod
405
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-struct.mod
406
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-timesheet.mod
406
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-timesheet.mod
407
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-timing.mod
407
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-timing.mod
408
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-transition.mod
408
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-transition.mod
409
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30Daisy.dtd
409
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30Daisy.dtd
410
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30Language.dtd
410
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30Language.dtd
411
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30Tiny.dtd
411
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30Tiny.dtd
412
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30UnifiedMobile.dtd
412
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30UnifiedMobile.dtd
413
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30smilText.dtd
413
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30smilText.dtd
414
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/smil-attribs-1.mod
414
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/smil-attribs-1.mod
415
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/smil-datatypes-1.mod
415
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/smil-datatypes-1.mod
416
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/smil-framework-1.mod
416
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/smil-framework-1.mod
417
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/smil-profile-model-1.mod
417
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/smil-profile-model-1.mod
418
www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/smil-qname-1.mod
418
%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/smil-qname-1.mod
419
www/validator/htdocs/sgml-lib/REC-SVG-20010904/svg10.dtd
419
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG-20010904/svg10.dtd
420
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-animation.mod
420
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-animation.mod
421
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-animevents-attrib.mod
421
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-animevents-attrib.mod
422
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-clip.mod
422
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-clip.mod
423
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-filter.mod
423
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-filter.mod
424
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-font.mod
424
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-font.mod
425
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-graphics-attrib.mod
425
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-graphics-attrib.mod
426
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-paint-attrib.mod
426
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-paint-attrib.mod
427
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-structure.mod
427
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-structure.mod
428
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-text.mod
428
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-text.mod
429
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-clip.mod
429
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-clip.mod
430
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-conditional.mod
430
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-conditional.mod
431
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-container-attrib.mod
431
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-container-attrib.mod
432
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-core-attrib.mod
432
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-core-attrib.mod
433
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-cursor.mod
433
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-cursor.mod
434
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-datatypes.mod
434
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-datatypes.mod
435
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-docevents-attrib.mod
435
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-docevents-attrib.mod
436
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-extensibility.mod
436
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-extensibility.mod
437
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-extresources-attrib.mod
437
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-extresources-attrib.mod
438
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-filter.mod
438
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-filter.mod
439
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-font.mod
439
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-font.mod
440
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-framework.mod
440
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-framework.mod
441
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-gradient.mod
441
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-gradient.mod
442
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-graphevents-attrib.mod
442
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-graphevents-attrib.mod
443
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-graphics-attrib.mod
443
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-graphics-attrib.mod
444
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-hyperlink.mod
444
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-hyperlink.mod
445
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-image.mod
445
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-image.mod
446
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-marker.mod
446
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-marker.mod
447
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-mask.mod
447
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-mask.mod
448
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-opacity-attrib.mod
448
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-opacity-attrib.mod
449
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-paint-attrib.mod
449
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-paint-attrib.mod
450
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-pattern.mod
450
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-pattern.mod
451
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-profile.mod
451
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-profile.mod
452
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-qname.mod
452
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-qname.mod
453
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-script.mod
453
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-script.mod
454
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-shape.mod
454
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-shape.mod
455
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-structure.mod
455
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-structure.mod
456
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-style.mod
456
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-style.mod
457
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-text.mod
457
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-text.mod
458
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-view.mod
458
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-view.mod
459
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-viewport-attrib.mod
459
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-viewport-attrib.mod
460
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-xlink-attrib.mod
460
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-xlink-attrib.mod
461
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-attribs.mod
461
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-attribs.mod
462
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-basic-attribs.mod
462
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-basic-attribs.mod
463
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-basic-model.mod
463
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-basic-model.mod
464
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-basic.dtd
464
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-basic.dtd
465
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-model.mod
465
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-model.mod
466
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-tiny-attribs.mod
466
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-tiny-attribs.mod
467
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-tiny-model.mod
467
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-tiny-model.mod
468
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-tiny.dtd
468
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-tiny.dtd
469
www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11.dtd
469
%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11.dtd
470
www/validator/htdocs/sgml-lib/REC-html32-19970114/HTML32.dtd
470
%%WWWDIR%%/htdocs/sgml-lib/REC-html32-19970114/HTML32.dtd
471
www/validator/htdocs/sgml-lib/REC-html40-19980424/frameset.dtd
471
%%WWWDIR%%/htdocs/sgml-lib/REC-html40-19980424/frameset.dtd
472
www/validator/htdocs/sgml-lib/REC-html40-19980424/loose.dtd
472
%%WWWDIR%%/htdocs/sgml-lib/REC-html40-19980424/loose.dtd
473
www/validator/htdocs/sgml-lib/REC-html40-19980424/strict.dtd
473
%%WWWDIR%%/htdocs/sgml-lib/REC-html40-19980424/strict.dtd
474
www/validator/htdocs/sgml-lib/REC-html401-19991224/HTMLlat1.ent
474
%%WWWDIR%%/htdocs/sgml-lib/REC-html401-19991224/HTMLlat1.ent
475
www/validator/htdocs/sgml-lib/REC-html401-19991224/HTMLspecial.ent
475
%%WWWDIR%%/htdocs/sgml-lib/REC-html401-19991224/HTMLspecial.ent
476
www/validator/htdocs/sgml-lib/REC-html401-19991224/HTMLsymbol.ent
476
%%WWWDIR%%/htdocs/sgml-lib/REC-html401-19991224/HTMLsymbol.ent
477
www/validator/htdocs/sgml-lib/REC-html401-19991224/frameset.dtd
477
%%WWWDIR%%/htdocs/sgml-lib/REC-html401-19991224/frameset.dtd
478
www/validator/htdocs/sgml-lib/REC-html401-19991224/loose.dtd
478
%%WWWDIR%%/htdocs/sgml-lib/REC-html401-19991224/loose.dtd
479
www/validator/htdocs/sgml-lib/REC-html401-19991224/strict.dtd
479
%%WWWDIR%%/htdocs/sgml-lib/REC-html401-19991224/strict.dtd
480
www/validator/htdocs/sgml-lib/REC-rdfa-syntax-20081014/xhtml-metaAttributes-1.mod
480
%%WWWDIR%%/htdocs/sgml-lib/REC-rdfa-syntax-20081014/xhtml-metaAttributes-1.mod
481
www/validator/htdocs/sgml-lib/REC-rdfa-syntax-20081014/xhtml-rdfa-1.dtd
481
%%WWWDIR%%/htdocs/sgml-lib/REC-rdfa-syntax-20081014/xhtml-rdfa-1.dtd
482
www/validator/htdocs/sgml-lib/REC-rdfa-syntax-20081014/xhtml-rdfa-model-1.mod
482
%%WWWDIR%%/htdocs/sgml-lib/REC-rdfa-syntax-20081014/xhtml-rdfa-model-1.mod
483
www/validator/htdocs/sgml-lib/REC-smil-19980615/smil10.dtd
483
%%WWWDIR%%/htdocs/sgml-lib/REC-smil-19980615/smil10.dtd
484
www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-anim.mod
484
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-anim.mod
485
www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-control.mod
485
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-control.mod
486
www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-layout.mod
486
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-layout.mod
487
www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-link.mod
487
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-link.mod
488
www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-media.mod
488
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-media.mod
489
www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-metainformation.mod
489
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-metainformation.mod
490
www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-struct.mod
490
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-struct.mod
491
www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-timing.mod
491
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-timing.mod
492
www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-transition.mod
492
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-transition.mod
493
www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL20.dtd
493
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL20.dtd
494
www/validator/htdocs/sgml-lib/REC-smil20-20050107/smil-attribs-1.mod
494
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/smil-attribs-1.mod
495
www/validator/htdocs/sgml-lib/REC-smil20-20050107/smil-datatypes-1.mod
495
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/smil-datatypes-1.mod
496
www/validator/htdocs/sgml-lib/REC-smil20-20050107/smil-framework-1.mod
496
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/smil-framework-1.mod
497
www/validator/htdocs/sgml-lib/REC-smil20-20050107/smil-model-1.mod
497
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/smil-model-1.mod
498
www/validator/htdocs/sgml-lib/REC-smil20-20050107/smil-qname-1.mod
498
%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/smil-qname-1.mod
499
www/validator/htdocs/sgml-lib/REC-voicexml20-20040316/vxml.dtd
499
%%WWWDIR%%/htdocs/sgml-lib/REC-voicexml20-20040316/vxml.dtd
500
www/validator/htdocs/sgml-lib/REC-voicexml21-20070619/vxml.dtd
500
%%WWWDIR%%/htdocs/sgml-lib/REC-voicexml21-20070619/vxml.dtd
501
www/validator/htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-basic10-model-1.mod
501
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-basic10-model-1.mod
502
www/validator/htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-basic10.dtd
502
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-basic10.dtd
503
www/validator/htdocs/sgml-lib/REC-xhtml-basic-20101123/xhtml-basic11-model-1.mod
503
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-basic-20101123/xhtml-basic11-model-1.mod
504
www/validator/htdocs/sgml-lib/REC-xhtml-basic-20101123/xhtml-basic11.dtd
504
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-basic-20101123/xhtml-basic11.dtd
505
www/validator/htdocs/sgml-lib/REC-xhtml-basic-20101123/xhtml-inputmode-1.mod
505
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-basic-20101123/xhtml-inputmode-1.mod
506
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/README.txt
506
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/README.txt
507
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-applet-1.mod
507
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-applet-1.mod
508
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-arch-1.mod
508
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-arch-1.mod
509
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-attribs-1.mod
509
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-attribs-1.mod
510
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-base-1.mod
510
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-base-1.mod
511
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-basic-form-1.mod
511
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-basic-form-1.mod
512
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-basic-table-1.mod
512
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-basic-table-1.mod
513
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-bdo-1.mod
513
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-bdo-1.mod
514
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-blkphras-1.mod
514
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-blkphras-1.mod
515
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-blkpres-1.mod
515
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-blkpres-1.mod
516
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-blkstruct-1.mod
516
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-blkstruct-1.mod
517
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-charent-1.mod
517
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-charent-1.mod
518
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-csismap-1.mod
518
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-csismap-1.mod
519
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-datatypes-1.mod
519
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-datatypes-1.mod
520
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-edit-1.mod
520
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-edit-1.mod
521
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-events-1.mod
521
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-events-1.mod
522
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-form-1.mod
522
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-form-1.mod
523
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-frames-1.mod
523
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-frames-1.mod
524
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-framework-1.mod
524
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-framework-1.mod
525
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-hypertext-1.mod
525
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-hypertext-1.mod
526
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-iframe-1.mod
526
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-iframe-1.mod
527
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-image-1.mod
527
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-image-1.mod
528
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlphras-1.mod
528
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlphras-1.mod
529
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlpres-1.mod
529
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlpres-1.mod
530
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlstruct-1.mod
530
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlstruct-1.mod
531
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlstyle-1.mod
531
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlstyle-1.mod
532
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-lat1.ent
532
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-lat1.ent
533
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-legacy-1.mod
533
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-legacy-1.mod
534
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-legacy-redecl-1.mod
534
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-legacy-redecl-1.mod
535
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-link-1.mod
535
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-link-1.mod
536
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-list-1.mod
536
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-list-1.mod
537
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-meta-1.mod
537
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-meta-1.mod
538
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-nameident-1.mod
538
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-nameident-1.mod
539
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-notations-1.mod
539
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-notations-1.mod
540
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-object-1.mod
540
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-object-1.mod
541
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-param-1.mod
541
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-param-1.mod
542
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-pres-1.mod
542
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-pres-1.mod
543
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-qname-1.mod
543
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-qname-1.mod
544
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-ruby-1.mod
544
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-ruby-1.mod
545
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-script-1.mod
545
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-script-1.mod
546
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-special.ent
546
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-special.ent
547
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-ssismap-1.mod
547
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-ssismap-1.mod
548
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-struct-1.mod
548
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-struct-1.mod
549
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-style-1.mod
549
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-style-1.mod
550
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-symbol.ent
550
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-symbol.ent
551
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-table-1.mod
551
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-table-1.mod
552
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-target-1.mod
552
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-target-1.mod
553
www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-text-1.mod
553
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-text-1.mod
554
www/validator/htdocs/sgml-lib/REC-xhtml-print-20101123/xhtml-print10-model-1.mod
554
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-print-20101123/xhtml-print10-model-1.mod
555
www/validator/htdocs/sgml-lib/REC-xhtml-print-20101123/xhtml-print10.dtd
555
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-print-20101123/xhtml-print10.dtd
556
www/validator/htdocs/sgml-lib/REC-xhtml1-20020801/xhtml1-frameset.dtd
556
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml1-20020801/xhtml1-frameset.dtd
557
www/validator/htdocs/sgml-lib/REC-xhtml1-20020801/xhtml1-strict.dtd
557
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml1-20020801/xhtml1-strict.dtd
558
www/validator/htdocs/sgml-lib/REC-xhtml1-20020801/xhtml1-transitional.dtd
558
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml1-20020801/xhtml1-transitional.dtd
559
www/validator/htdocs/sgml-lib/REC-xhtml11-20101123/xhtml11-model-1.mod
559
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml11-20101123/xhtml11-model-1.mod
560
www/validator/htdocs/sgml-lib/REC-xhtml11-20101123/xhtml11.dtd
560
%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml11-20101123/xhtml11.dtd
561
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/README.txt
561
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/README.txt
562
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/html5-uppercase.ent
562
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/html5-uppercase.ent
563
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/htmlmathml-f.ent
563
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/htmlmathml-f.ent
564
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/htmlmathml.ent
564
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/htmlmathml.ent
565
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsa.ent
565
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsa.ent
566
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsb.ent
566
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsb.ent
567
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsc.ent
567
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsc.ent
568
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsn.ent
568
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsn.ent
569
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamso.ent
569
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamso.ent
570
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsr.ent
570
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsr.ent
571
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isobox.ent
571
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isobox.ent
572
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isocyr1.ent
572
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isocyr1.ent
573
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isocyr2.ent
573
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isocyr2.ent
574
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isodia.ent
574
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isodia.ent
575
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk1.ent
575
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk1.ent
576
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk2.ent
576
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk2.ent
577
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk3.ent
577
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk3.ent
578
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk4.ent
578
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk4.ent
579
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isolat1.ent
579
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isolat1.ent
580
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isolat2.ent
580
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isolat2.ent
581
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isomfrk.ent
581
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isomfrk.ent
582
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isomopf.ent
582
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isomopf.ent
583
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isomscr.ent
583
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isomscr.ent
584
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isonum.ent
584
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isonum.ent
585
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isopub.ent
585
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isopub.ent
586
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isotech.ent
586
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isotech.ent
587
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/mmlalias.ent
587
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/mmlalias.ent
588
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/mmlextra.ent
588
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/mmlextra.ent
589
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/predefined.ent
589
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/predefined.ent
590
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/w3centities-f.ent
590
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/w3centities-f.ent
591
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/w3centities.ent
591
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/w3centities.ent
592
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/xhtml1-lat1.ent
592
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/xhtml1-lat1.ent
593
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/xhtml1-special.ent
593
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/xhtml1-special.ent
594
www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/xhtml1-symbol.ent
594
%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/xhtml1-symbol.ent
595
www/validator/htdocs/sgml-lib/Specification/xmlspec-v20.dtd
595
%%WWWDIR%%/htdocs/sgml-lib/Specification/xmlspec-v20.dtd
596
www/validator/htdocs/sgml-lib/Specification/xmlspec-v21.dtd
596
%%WWWDIR%%/htdocs/sgml-lib/Specification/xmlspec-v21.dtd
597
www/validator/htdocs/sgml-lib/Specification/xmlspec.dtd
597
%%WWWDIR%%/htdocs/sgml-lib/Specification/xmlspec.dtd
598
www/validator/htdocs/sgml-lib/WD-XHTMLplusMathMLplusSVG-20020809/xhtml-basic-svg-tiny.dtd
598
%%WWWDIR%%/htdocs/sgml-lib/WD-XHTMLplusMathMLplusSVG-20020809/xhtml-basic-svg-tiny.dtd
599
www/validator/htdocs/sgml-lib/WD-XHTMLplusMathMLplusSVG-20020809/xhtml-math-svg.dtd
599
%%WWWDIR%%/htdocs/sgml-lib/WD-XHTMLplusMathMLplusSVG-20020809/xhtml-math-svg.dtd
600
www/validator/htdocs/sgml-lib/WD-rdfa-in-html-20110525/html401-rdfa11-1.dtd
600
%%WWWDIR%%/htdocs/sgml-lib/WD-rdfa-in-html-20110525/html401-rdfa11-1.dtd
601
www/validator/htdocs/sgml-lib/WD-xhtml-rdfa-20120131/xhtml-metaAttributes-2.mod
601
%%WWWDIR%%/htdocs/sgml-lib/WD-xhtml-rdfa-20120131/xhtml-metaAttributes-2.mod
602
www/validator/htdocs/sgml-lib/WD-xhtml-rdfa-20120131/xhtml-rdfa-2.dtd
602
%%WWWDIR%%/htdocs/sgml-lib/WD-xhtml-rdfa-20120131/xhtml-rdfa-2.dtd
603
www/validator/htdocs/sgml-lib/WD-xhtml-rdfa-20120131/xhtml-rdfa-model-2.mod
603
%%WWWDIR%%/htdocs/sgml-lib/WD-xhtml-rdfa-20120131/xhtml-rdfa-model-2.mod
604
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/README.txt
604
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/README.txt
605
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsa.ent
605
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsa.ent
606
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsb.ent
606
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsb.ent
607
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsc.ent
607
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsc.ent
608
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsn.ent
608
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsn.ent
609
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamso.ent
609
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamso.ent
610
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsr.ent
610
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsr.ent
611
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isobox.ent
611
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isobox.ent
612
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isocyr1.ent
612
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isocyr1.ent
613
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isocyr2.ent
613
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isocyr2.ent
614
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isodia.ent
614
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isodia.ent
615
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk1.ent
615
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk1.ent
616
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk2.ent
616
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk2.ent
617
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk3.ent
617
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk3.ent
618
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk4.ent
618
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk4.ent
619
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isolat1.ent
619
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isolat1.ent
620
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isolat2.ent
620
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isolat2.ent
621
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isonum.ent
621
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isonum.ent
622
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isopub.ent
622
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isopub.ent
623
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isotech.ent
623
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isotech.ent
624
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsa.ent
624
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsa.ent
625
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsb.ent
625
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsb.ent
626
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsc.ent
626
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsc.ent
627
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsn.ent
627
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsn.ent
628
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamso.ent
628
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamso.ent
629
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsr.ent
629
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsr.ent
630
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isogrk3.ent
630
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isogrk3.ent
631
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isogrk4.ent
631
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isogrk4.ent
632
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isomfrk.ent
632
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isomfrk.ent
633
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isomopf.ent
633
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isomopf.ent
634
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isomscr.ent
634
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isomscr.ent
635
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isotech.ent
635
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isotech.ent
636
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/mathml/mmlalias.ent
636
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/mathml/mmlalias.ent
637
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/mathml/mmlextra.ent
637
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/mathml/mmlextra.ent
638
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/mathml2-qname-1.mod
638
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/mathml2-qname-1.mod
639
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/mathml2.dtd
639
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/mathml2.dtd
640
www/validator/htdocs/sgml-lib/XX-MathML2-20031104/xhtml-math11-f.dtd
640
%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/xhtml-math11-f.dtd
641
www/validator/htdocs/sgml-lib/catalog.xml
641
%%WWWDIR%%/htdocs/sgml-lib/catalog.xml
642
www/validator/htdocs/sgml-lib/sgml.dcl
642
%%WWWDIR%%/htdocs/sgml-lib/sgml.dcl
643
www/validator/htdocs/sgml-lib/sgml.dtd
643
%%WWWDIR%%/htdocs/sgml-lib/sgml.dtd
644
www/validator/htdocs/sgml-lib/sgml.soc
644
%%WWWDIR%%/htdocs/sgml-lib/sgml.soc
645
www/validator/htdocs/sgml-lib/xml.dcl
645
%%WWWDIR%%/htdocs/sgml-lib/xml.dcl
646
www/validator/htdocs/sgml-lib/xml.dtd
646
%%WWWDIR%%/htdocs/sgml-lib/xml.dtd
647
www/validator/htdocs/sgml-lib/xml.soc
647
%%WWWDIR%%/htdocs/sgml-lib/xml.soc
648
www/validator/htdocs/source/index.html
648
%%WWWDIR%%/htdocs/source/index.html
649
www/validator/htdocs/style/base.css
649
%%WWWDIR%%/htdocs/style/base.css
650
www/validator/htdocs/style/base.css.gz
650
%%WWWDIR%%/htdocs/style/base.css.gz
651
www/validator/htdocs/style/results.css
651
%%WWWDIR%%/htdocs/style/results.css
652
www/validator/htdocs/style/results.css.gz
652
%%WWWDIR%%/htdocs/style/results.css.gz
653
www/validator/htdocs/todo.html
653
%%WWWDIR%%/htdocs/todo.html
654
www/validator/htdocs/validator-news.xsl
654
%%WWWDIR%%/htdocs/validator-news.xsl
655
www/validator/htdocs/whatsnew.html
655
%%WWWDIR%%/htdocs/whatsnew.html
656
www/validator/httpd/cgi-bin/check
656
@(,,0755) %%WWWDIR%%/httpd/cgi-bin/check
657
www/validator/httpd/cgi-bin/sendfeedback.pl
657
@(,,0755) %%WWWDIR%%/httpd/cgi-bin/sendfeedback.pl
658
www/validator/share/templates/en_US/backtop.tmpl
658
@sample %%WWWDIR%%/httpd/conf/httpd.conf.sample
659
www/validator/share/templates/en_US/docs_errors.tmpl
659
%%WWWDIR%%/httpd/conf/mime.types
660
www/validator/share/templates/en_US/doctype_spiel.tmpl
660
%%WWWDIR%%/httpd/mod_perl/startup.pl
661
www/validator/share/templates/en_US/earl_n3.tmpl
661
%%WWWDIR%%/share/templates/en_US/backtop.tmpl
662
www/validator/share/templates/en_US/earl_xml.tmpl
662
%%WWWDIR%%/share/templates/en_US/docs_errors.tmpl
663
www/validator/share/templates/en_US/error_loop.tmpl
663
%%WWWDIR%%/share/templates/en_US/doctype_spiel.tmpl
664
www/validator/share/templates/en_US/error_loop_grouped.tmpl
664
%%WWWDIR%%/share/templates/en_US/earl_n3.tmpl
665
www/validator/share/templates/en_US/error_messages.cfg
665
%%WWWDIR%%/share/templates/en_US/earl_xml.tmpl
666
www/validator/share/templates/en_US/fatal-error.tmpl
666
%%WWWDIR%%/share/templates/en_US/error_loop.tmpl
667
www/validator/share/templates/en_US/feedback.tmpl
667
%%WWWDIR%%/share/templates/en_US/error_loop_grouped.tmpl
668
www/validator/share/templates/en_US/footer.tmpl
668
%%WWWDIR%%/share/templates/en_US/error_messages.cfg
669
www/validator/share/templates/en_US/header.tmpl
669
%%WWWDIR%%/share/templates/en_US/fatal-error.tmpl
670
www/validator/share/templates/en_US/http_401_authrequired.tmpl
670
%%WWWDIR%%/share/templates/en_US/feedback.tmpl
671
www/validator/share/templates/en_US/iana_charset_blurb.tmpl
671
%%WWWDIR%%/share/templates/en_US/footer.tmpl
672
www/validator/share/templates/en_US/invalid.tmpl
672
%%WWWDIR%%/share/templates/en_US/header.tmpl
673
www/validator/share/templates/en_US/json_output.tmpl
673
%%WWWDIR%%/share/templates/en_US/http_401_authrequired.tmpl
674
www/validator/share/templates/en_US/jumpbar.tmpl
674
%%WWWDIR%%/share/templates/en_US/iana_charset_blurb.tmpl
675
www/validator/share/templates/en_US/opt_show_outline.tmpl
675
%%WWWDIR%%/share/templates/en_US/invalid.tmpl
676
www/validator/share/templates/en_US/opt_show_source.tmpl
676
%%WWWDIR%%/share/templates/en_US/json_output.tmpl
677
www/validator/share/templates/en_US/opt_show_tidy.tmpl
677
%%WWWDIR%%/share/templates/en_US/jumpbar.tmpl
678
www/validator/share/templates/en_US/popup_charset.tmpl
678
%%WWWDIR%%/share/templates/en_US/opt_show_outline.tmpl
679
www/validator/share/templates/en_US/popup_doctype.tmpl
679
%%WWWDIR%%/share/templates/en_US/opt_show_source.tmpl
680
www/validator/share/templates/en_US/prefill_html401.tmpl
680
%%WWWDIR%%/share/templates/en_US/opt_show_tidy.tmpl
681
www/validator/share/templates/en_US/prefill_xhtml10.tmpl
681
%%WWWDIR%%/share/templates/en_US/popup_charset.tmpl
682
www/validator/share/templates/en_US/result.tmpl
682
%%WWWDIR%%/share/templates/en_US/popup_doctype.tmpl
683
www/validator/share/templates/en_US/soap_disabled.tmpl
683
%%WWWDIR%%/share/templates/en_US/prefill_html401.tmpl
684
www/validator/share/templates/en_US/soap_fault.tmpl
684
%%WWWDIR%%/share/templates/en_US/prefill_xhtml10.tmpl
685
www/validator/share/templates/en_US/soap_output.tmpl
685
%%WWWDIR%%/share/templates/en_US/result.tmpl
686
www/validator/share/templates/en_US/soap_warnings.tmpl
686
%%WWWDIR%%/share/templates/en_US/soap_disabled.tmpl
687
www/validator/share/templates/en_US/table.tmpl
687
%%WWWDIR%%/share/templates/en_US/soap_fault.tmpl
688
www/validator/share/templates/en_US/ucn_fault.tmpl
688
%%WWWDIR%%/share/templates/en_US/soap_output.tmpl
689
www/validator/share/templates/en_US/ucn_output.tmpl
689
%%WWWDIR%%/share/templates/en_US/soap_warnings.tmpl
690
www/validator/share/templates/en_US/ucn_warnings.tmpl
690
%%WWWDIR%%/share/templates/en_US/table.tmpl
691
www/validator/share/templates/en_US/valid.tmpl
691
%%WWWDIR%%/share/templates/en_US/ucn_fault.tmpl
692
www/validator/share/templates/en_US/warnings.tmpl
692
%%WWWDIR%%/share/templates/en_US/ucn_output.tmpl
693
%%WWWDIR%%/share/templates/en_US/ucn_warnings.tmpl
694
%%WWWDIR%%/share/templates/en_US/valid.tmpl
695
%%WWWDIR%%/share/templates/en_US/warnings.tmpl

Return to bug 202733