Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Nov 2015 11:33:45 +0000 (UTC)
From:      Bartek Rutkowski <robak@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r401050 - in head/www/validator: . files
Message-ID:  <201511081133.tA8BXjO5037004@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: robak
Date: Sun Nov  8 11:33:45 2015
New Revision: 401050
URL: https://svnweb.freebsd.org/changeset/ports/401050

Log:
  www/validator: various improvements
  
  - Provide patched validator.conf.sample from original sources
  - Remove httpd.conf sample file from pkg-message
  - Use WWWDIR variable
  
  PR:		202733
  Submitted by:	Naram Qashat <cyberbotx@cyberbotx.com> (maintainer)

Added:
  head/www/validator/files/patch-htdocs_config_validator.conf   (contents, props changed)
  head/www/validator/files/patch-httpd_cgi-bin_check   (contents, props changed)
  head/www/validator/files/patch-httpd_cgi-bin_sendfeedback.pl   (contents, props changed)
  head/www/validator/files/patch-httpd_conf_httpd.conf   (contents, props changed)
Deleted:
  head/www/validator/files/validator.conf.sample.in
Modified:
  head/www/validator/Makefile
  head/www/validator/files/pkg-message.in
  head/www/validator/pkg-plist

Modified: head/www/validator/Makefile
==============================================================================
--- head/www/validator/Makefile	Sun Nov  8 11:28:37 2015	(r401049)
+++ head/www/validator/Makefile	Sun Nov  8 11:33:45 2015	(r401050)
@@ -3,7 +3,7 @@
 
 PORTNAME=	validator
 PORTVERSION=	1.3
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	www
 MASTER_SITES=	http://validator.w3.org/dist/ \
 		http://www.cyberbotx.com/w3c-validator/
@@ -32,7 +32,7 @@ USE_PERL5=	run
 SHEBANG_FILES=	httpd/cgi-bin/check \
 		httpd/cgi-bin/sendfeedback.pl
 
-SUB_FILES=	pkg-message validator.conf.sample
+SUB_FILES=	pkg-message
 
 OPTIONS_DEFINE=	HTML_TIDY
 OPTIONS_DEFAULT=HTML_TIDY
@@ -46,21 +46,26 @@ HTML_TIDY_RUN_DEPENDS=	p5-HTML-Tidy>=0:$
 RUN_DEPENDS+=	p5-CGI.pm>=0:${PORTSDIR}/www/p5-CGI.pm
 .endif
 
-post-extract:
-	@${RM} ${WRKSRC}/README.cvs
-	@${RM} -rf ${WRKSRC}/misc
-	@${RM} -rf ${WRKSRC}/httpd/conf
-	@${RM} ${WRKSRC}/htdocs/config/validator.conf
+post-patch:
+	@${REINPLACE_CMD} -e 's|%%WWWDIR%%|${WWWDIR}|' \
+		${WRKSRC}/htdocs/config/validator.conf \
+		${WRKSRC}/httpd/cgi-bin/check \
+		${WRKSRC}/httpd/cgi-bin/sendfeedback.pl \
+		${WRKSRC}/httpd/conf/httpd.conf
 
 pre-install:
-	${CP} -f ${WRKDIR}/validator.conf.sample ${WRKSRC}/htdocs/config/
+	${MV} ${WRKSRC}/htdocs/config/validator.conf \
+		${WRKSRC}/htdocs/config/validator.conf.sample
+	${MV} ${WRKSRC}/httpd/conf/httpd.conf \
+		${WRKSRC}/httpd/conf/httpd.conf.sample
+	${FIND} ${WRKSRC} \( -name \*.bak -or -name \*.orig \) -delete
 
 do-install:
 	${MKDIR} ${STAGEDIR}${PREFIX}/www/validator/htdocs
-	${MKDIR} ${STAGEDIR}${PREFIX}/www/validator/httpd/cgi-bin
+	${MKDIR} ${STAGEDIR}${PREFIX}/www/validator/httpd
 	${MKDIR} ${STAGEDIR}${PREFIX}/www/validator/share
-	(cd ${WRKSRC}/htdocs && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/www/validator/htdocs/)
-	${INSTALL_SCRIPT} ${WRKSRC}/httpd/cgi-bin/* ${STAGEDIR}${PREFIX}/www/validator/httpd/cgi-bin
-	(cd ${WRKSRC}/share && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/www/validator/share/)
+	(cd ${WRKSRC}/htdocs && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/htdocs/)
+	(cd ${WRKSRC}/httpd && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/httpd/)
+	(cd ${WRKSRC}/share && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/share/)
 
 .include <bsd.port.post.mk>

Added: head/www/validator/files/patch-htdocs_config_validator.conf
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/validator/files/patch-htdocs_config_validator.conf	Sun Nov  8 11:33:45 2015	(r401050)
@@ -0,0 +1,27 @@
+--- htdocs/config/validator.conf.orig	2012-03-12 15:03:14 UTC
++++ htdocs/config/validator.conf
+@@ -19,7 +19,7 @@
+   #
+   # Base path.  Defaults to the value of the W3C_VALIDATOR_HOME environment
+   # variable or /usr/local/validator if the variable does not exist.
+-  #Base = /usr/local/validator
++  Base = %%WWWDIR%%
+ 
+   #
+   # Location of template files
+@@ -93,13 +93,13 @@ Languages = en
+ # Main document Type Registry; contains all information on the types
+ # of documents we support and how they are processed.
+ <Types>
+-  Include types.conf
++  Include %%WWWDIR%%/htdocs/config/types.conf
+ </Types>
+ 
+ #
+ # Mapping of charset names to their IANA names and how iconv(3) knows them.
+ <Charsets>
+-  Include charset.cfg
++  Include %%WWWDIR%%/htdocs/config/charset.cfg
+ </Charsets>
+ 
+ #

Added: head/www/validator/files/patch-httpd_cgi-bin_check
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/validator/files/patch-httpd_cgi-bin_check	Sun Nov  8 11:33:45 2015	(r401050)
@@ -0,0 +1,20 @@
+--- httpd/cgi-bin/check.orig	2012-03-12 15:03:14 UTC
++++ httpd/cgi-bin/check
+@@ -94,7 +94,7 @@ use constant IS_MODPERL2 =>
+ # (such as mod_perl); so let's do the globals, eg. read config, here.
+ BEGIN {
+ 
+-    my $base = $ENV{W3C_VALIDATOR_HOME} || '/usr/local/validator';
++    my $base = $ENV{W3C_VALIDATOR_HOME} || '%%WWWDIR%%';
+ 
+     # Launder data for -T; -AutoLaunder doesn't catch this one.
+     if ($base =~ /^(.*)$/) {
+@@ -106,7 +106,7 @@ BEGIN {
+     eval {
+         my %config_opts = (
+             -ConfigFile =>
+-                ($ENV{W3C_VALIDATOR_CFG} || '/etc/w3c/validator.conf'),
++                ($ENV{W3C_VALIDATOR_CFG} || '%%WWWDIR%%/htdocs/config/validator.conf'),
+             -MergeDuplicateOptions => TRUE,
+             -MergeDuplicateBlocks  => TRUE,
+             -SplitPolicy           => 'equalsign',

Added: head/www/validator/files/patch-httpd_cgi-bin_sendfeedback.pl
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/validator/files/patch-httpd_cgi-bin_sendfeedback.pl	Sun Nov  8 11:33:45 2015	(r401050)
@@ -0,0 +1,20 @@
+--- httpd/cgi-bin/sendfeedback.pl.orig	2012-03-12 15:03:14 UTC
++++ httpd/cgi-bin/sendfeedback.pl
+@@ -23,7 +23,7 @@ use constant FALSE => 0;
+ # environments, such as mod_perl.  So let's do globals, eg. read config here.
+ BEGIN {
+ 
+-    my $base = $ENV{W3C_VALIDATOR_HOME} || '/usr/local/validator';
++    my $base = $ENV{W3C_VALIDATOR_HOME} || '%%WWWDIR%%';
+ 
+     # Launder data for -T; -AutoLaunder doesn't catch this one.
+     if ($base =~ /^(.*)$/) {
+@@ -35,7 +35,7 @@ BEGIN {
+     eval {
+         my %config_opts = (
+             -ConfigFile =>
+-                ($ENV{W3C_VALIDATOR_CFG} || '/etc/w3c/validator.conf'),
++                ($ENV{W3C_VALIDATOR_CFG} || '%%WWWDIR%%/htdocs/config/validator.conf'),
+             -MergeDuplicateOptions => TRUE,
+             -MergeDuplicateBlocks  => TRUE,
+             -SplitPolicy           => 'equalsign',

Added: head/www/validator/files/patch-httpd_conf_httpd.conf
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/validator/files/patch-httpd_conf_httpd.conf	Sun Nov  8 11:33:45 2015	(r401050)
@@ -0,0 +1,55 @@
+--- httpd/conf/httpd.conf.orig	2012-03-12 15:03:14 UTC
++++ httpd/conf/httpd.conf
+@@ -6,7 +6,7 @@
+ # You can use the Include directive for including this in your main httpd.conf.
+ #
+ # The values below assume that you have the validator files in
+-# /usr/local/validator.  If not, tune them according to your setup.
++# %%WWWDIR%%.  If not, tune them according to your setup.
+ #
+ # To run the validator without mod_perl 2.x even if it is loaded, comment
+ # out the "IfDefine MODPERL2" sections below.
+@@ -31,14 +31,16 @@ RewriteRule ^/+w3c-validator/+check$ \
+ 
+ # Tell httpd that check and sendfeedback.pl are CGI scripts.
+ 
+-Alias /w3c-validator/check /usr/local/validator/cgi-bin/check
++Alias /w3c-validator/check \
++	%%WWWDIR%%/httpd/cgi-bin/check
+ AliasMatch ^/+w3c-validator/+feedback(\.html)?$ \
+-           /usr/local/validator/cgi-bin/sendfeedback.pl
++	%%WWWDIR%%/httpd/cgi-bin/sendfeedback.pl
+ 
+ <IfDefine MODPERL2>
+ # Note: this block affects the whole server, not just the validator.
+ PerlSwitches -T
+-PerlPostConfigRequire /usr/local/validator/httpd/mod_perl/startup.pl
++PerlPostConfigRequire \
++	%%WWWDIR%%/httpd/mod_perl/startup.pl
+ </IfDefine>
+ 
+ <LocationMatch "^/+w3c-validator/+(check|feedback(\.html)?)$">
+@@ -60,8 +62,9 @@ PerlPostConfigRequire /usr/local/validat
+ 
+ # This is the directory where you have the validator's *.html, *.css etc files.
+ 
+-Alias /w3c-validator/   /usr/local/validator/htdocs/
+-<Directory /usr/local/validator/htdocs/>
++Alias /w3c-validator/ \
++	%%WWWDIR%%/htdocs/
++<Directory %%WWWDIR%%/htdocs/>
+   Options               IncludesNOEXEC Indexes MultiViews
+   AllowOverride         None
+   AddHandler            server-parsed .html
+@@ -73,7 +76,10 @@ Alias /w3c-validator/   /usr/local/valid
+   <Files *.css.gz>
+     ForceType           text/css
+   </Files>
+-
++# If you would like to move the location of validator.conf, set the following,
++#  making sure to change the path if you don't use this path.
++# SetEnv         W3C_VALIDATOR_CFG \
++#	%%WWWDIR%%/htdocs/config/validator.conf
+   <IfModule mod_rewrite.c>
+   Options +SymLinksIfOwnerMatch
+   RewriteBase /w3c-validator/

Modified: head/www/validator/files/pkg-message.in
==============================================================================
--- head/www/validator/files/pkg-message.in	Sun Nov  8 11:28:37 2015	(r401049)
+++ head/www/validator/files/pkg-message.in	Sun Nov  8 11:33:45 2015	(r401050)
@@ -1,54 +1,27 @@
 -------------------------------------------------------------------------------
-The W3C Markup Validation Service has been installed.  However, it will not
-do anything until you set up your web server to utilize it.  Below is an
-Apache configutation snippet that you can put into your httpd.conf to
-utilize the validator.  If you are using another web server, you will have
-to configure it yourself.  The W3C only recommends the use of the Apache
-web server, so there are no other web server configuration snippets.
+The W3C Markup Validation Service has been installed. However, it will not do
+anything until you set up your web server to utilize it. An httpd.conf for the
+Apache web server can be found at
+%%WWWDIR%%/httpd/conf/httpd.conf
+and included in your Apache web server configuration, typically using:
+
+Include %%WWWDIR%%/httpd/conf/httpd.conf
+
+If you are using another web server, you will have to configure it yourself.
+The W3C only recommends the use of the Apache web server, so there are no other
+web server configuration snippets.
 
 A sample validator.conf has been installed at
-%%PREFIX%%/www/validator/htdocs/config/validator.conf.sample
-You need to copy this file to /etc/w3c/validator.conf and then edit it to
-your liking.  If you have used a previous version of the validator, you
-will need to manually check if anything new has been added to the W3C's
-validator.conf and edit your own validator.conf accordingly.  If you would
-prefer not to put the validator.conf file into /etc, you can place
-it where you would like and set the environment variable W3C_VALIDATOR_CFG
-to the complete path (including filename) of validator.conf.  See below
-for an example of how to set this environment variable in Apache.
-
-# Example httpd.conf snippet for W3C Markup Validation Service
-# Note that this is not a complete server configuration file, but contains
-# only the validator-specific part.
-#
-# You can use the Include directive for including this in your main httpd.conf.
-#
-# Note: running the validator under mod_perl is not supported at the moment.
-#       You are also required to have mod_include active for the validator
-#       pages to show up as they should.
-#
-# The /w3c-validator location can be changed to whatever you want it to be,
-# but make sure you change it for both of these ScriptAlias commands as well
-# as the Alias command under them.
-
-# First, tell httpd that check and sendfeedback.pl are CGI scripts.
-
-ScriptAlias      /w3c-validator/check \
-  %%PREFIX%%/www/validator/httpd/cgi-bin/check
-ScriptAliasMatch /w3c-validator/feedback(\.html)? \
-  %%PREFIX%%/www/validator/httpd/cgi-bin/sendfeedback.pl
-
-# This is the directory where you have the validator's *.html, *.css etc files.
-
-Alias /w3c-validator/  %%PREFIX%%/www/validator/htdocs/
-<Directory %%PREFIX%%/www/validator/htdocs/>
-  Options        IncludesNOEXEC Indexes MultiViews
-  AllowOverride  None
-  AddHandler     server-parsed .html
-  AddCharset     utf-8         .html
-# If you would like to move the location of validator.conf, set the following,
-#  making sure to change the path if you don't use this path.
-# SetEnv         W3C_VALIDATOR_CFG \
-#                %%PREFIX%%/www/validator/htdocs/config/validator.conf
-</Directory>
+%%WWWDIR%%/htdocs/config/validator.conf.sample
+You need to copy this file to
+%%WWWDIR%%/htdocs/config/validator.conf
+and then edit it to your liking. If you have used a previous version of the
+validator, you will need to manually check if anything new has been added to
+the W3C's validator.conf and edit your own validator.conf accordingly. If you
+would prefer not to put the validator.conf file into
+%%WWWDIR%%/htdocs/config,
+you can place it where you would like and set the environment variable
+W3C_VALIDATOR_CFG to the complete path (including filename) of validator.conf.
+An example of how to set this environment variable in Apache has been included
+in the above referenced httpd.conf file.
 -------------------------------------------------------------------------------

Modified: head/www/validator/pkg-plist
==============================================================================
--- head/www/validator/pkg-plist	Sun Nov  8 11:28:37 2015	(r401049)
+++ head/www/validator/pkg-plist	Sun Nov  8 11:33:45 2015	(r401050)
@@ -1,692 +1,695 @@
-www/validator/htdocs/about.html
-www/validator/htdocs/accesskeys.html
-www/validator/htdocs/charset-select.html
-www/validator/htdocs/config/charset.cfg
-www/validator/htdocs/config/tidy.conf
-www/validator/htdocs/config/types.conf
-www/validator/htdocs/config/validator.conf.sample
-www/validator/htdocs/contribute.html
-www/validator/htdocs/detailed-form.html
-www/validator/htdocs/detailed-form_directinput.html
-www/validator/htdocs/detailed.html
-www/validator/htdocs/dev/autotest/doctypes.xml
-www/validator/htdocs/dev/tests/1574-charset_iso_8859_7_greek.html
-www/validator/htdocs/dev/tests/197-iso88591_alias.html
-www/validator/htdocs/dev/tests/2329-html401-strict_iframe.html
-www/validator/htdocs/dev/tests/2329-html401-transitional_iframe.html
-www/validator/htdocs/dev/tests/2342-opensp_type_X.html
-www/validator/htdocs/dev/tests/2689-attribute-no-space.xhtml
-www/validator/htdocs/dev/tests/3663-svg-10-doctype.svg
-www/validator/htdocs/dev/tests/3663-svg-10-doctypeless.svg
-www/validator/htdocs/dev/tests/3663-svg-11-doctype.svg
-www/validator/htdocs/dev/tests/3663-svg-11-doctypeless.svg
-www/validator/htdocs/dev/tests/3663-svg-basic-11-doctype.svg
-www/validator/htdocs/dev/tests/3663-svg-basic-11-doctypeless.svg
-www/validator/htdocs/dev/tests/3663-svg-noversion-doctype.svg
-www/validator/htdocs/dev/tests/3663-svg-noversion-doctype2.svg
-www/validator/htdocs/dev/tests/3663-svg-noversion-doctypeless.svg
-www/validator/htdocs/dev/tests/3663-svg-tiny-11-doctype.svg
-www/validator/htdocs/dev/tests/3663-svg-tiny-11-doctypeless.svg
-www/validator/htdocs/dev/tests/4412-fuzzymatch.xhtml
-www/validator/htdocs/dev/tests/4476-svg_nodoctype.svg
-www/validator/htdocs/dev/tests/4520-iso88591-meta.html
-www/validator/htdocs/dev/tests/4520-iso88591-no_meta.html
-www/validator/htdocs/dev/tests/4848-html40-transitional_FPI-SI-mismatch.html
-www/validator/htdocs/dev/tests/4848-xhtml1-strict_FPI-SI-mismatch.xhtml
-www/validator/htdocs/dev/tests/4892-entity.html
-www/validator/htdocs/dev/tests/4917-meta_charset_case.html
-www/validator/htdocs/dev/tests/5031-root_dash.xml
-www/validator/htdocs/dev/tests/857-svg_nodoctype.svg
-www/validator/htdocs/dev/tests/REC-SVG-1_0-minimal.html
-www/validator/htdocs/dev/tests/REC-SVG-1_0-minimal.svg
-www/validator/htdocs/dev/tests/SMIL21.smil
-www/validator/htdocs/dev/tests/SMIL21_Mobile.smil
-www/validator/htdocs/dev/tests/W11-ht401-namespace.html
-www/validator/htdocs/dev/tests/ampersand-as-data.html
-www/validator/htdocs/dev/tests/ampersand-as-data_html401.html
-www/validator/htdocs/dev/tests/application-xhtml_xml.xhtml
-www/validator/htdocs/dev/tests/bogus-fpi.html
-www/validator/htdocs/dev/tests/bogus-fpi2.html
-www/validator/htdocs/dev/tests/bogus-fpi3.html
-www/validator/htdocs/dev/tests/bogus-fpi4.html
-www/validator/htdocs/dev/tests/bogus-fpi5.xhtml
-www/validator/htdocs/dev/tests/bogus-xmlpi.html
-www/validator/htdocs/dev/tests/bogus-xmlpi.xhtml
-www/validator/htdocs/dev/tests/charset-xmldecl.xhtml
-www/validator/htdocs/dev/tests/charset_mismatch-http_meta.html.utf8
-www/validator/htdocs/dev/tests/charset_mismatch-http_xmldec.xhtml.utf8
-www/validator/htdocs/dev/tests/colons.html
-www/validator/htdocs/dev/tests/error_pls_warning.html
-www/validator/htdocs/dev/tests/errors_sorting.smi
-www/validator/htdocs/dev/tests/fpi_mismatch1.html
-www/validator/htdocs/dev/tests/fpi_mismatch2.html
-www/validator/htdocs/dev/tests/html20-strict.html
-www/validator/htdocs/dev/tests/html20.html
-www/validator/htdocs/dev/tests/html40-frameset.html
-www/validator/htdocs/dev/tests/html40-strict.html
-www/validator/htdocs/dev/tests/html40-transitional.html
-www/validator/htdocs/dev/tests/html401-strict.html
-www/validator/htdocs/dev/tests/html401-strict.xhtml
-www/validator/htdocs/dev/tests/html401_doctypecase.html
-www/validator/htdocs/dev/tests/html401_system.html
-www/validator/htdocs/dev/tests/html5-error-explanation.html
-www/validator/htdocs/dev/tests/html5-ok.html
-www/validator/htdocs/dev/tests/html5-precise-error.html
-www/validator/htdocs/dev/tests/html5-range-error.html
-www/validator/htdocs/dev/tests/html5-warning.html
-www/validator/htdocs/dev/tests/html_xmlns.html.utf8
-www/validator/htdocs/dev/tests/index.html
-www/validator/htdocs/dev/tests/invalid_meta_multibyte.html
-www/validator/htdocs/dev/tests/iso-html.html
-www/validator/htdocs/dev/tests/long-lines.html
-www/validator/htdocs/dev/tests/mathml2.html
-www/validator/htdocs/dev/tests/mathml2.mml
-www/validator/htdocs/dev/tests/no-newlines.html
-www/validator/htdocs/dev/tests/nocharset.html
-www/validator/htdocs/dev/tests/nocharset_notutf8.html
-www/validator/htdocs/dev/tests/nonSGML-chars.html
-www/validator/htdocs/dev/tests/outline.html
-www/validator/htdocs/dev/tests/plane20-char.xml
-www/validator/htdocs/dev/tests/rddl_fpi.html
-www/validator/htdocs/dev/tests/rddl_fpi.xhtml
-www/validator/htdocs/dev/tests/rddl_si.xhtml
-www/validator/htdocs/dev/tests/sgml-nodoctype-syntaxnotok.html
-www/validator/htdocs/dev/tests/sgml-nodoctype-syntaxok.html
-www/validator/htdocs/dev/tests/sgml_customdtd.html
-www/validator/htdocs/dev/tests/shorttags.html
-www/validator/htdocs/dev/tests/shorttags2.html
-www/validator/htdocs/dev/tests/smil10-minimal.smi
-www/validator/htdocs/dev/tests/smil20-profile-doctype.smi
-www/validator/htdocs/dev/tests/smil20.smi
-www/validator/htdocs/dev/tests/svg11.svg
-www/validator/htdocs/dev/tests/svg_tiny_1_1.svg
-www/validator/htdocs/dev/tests/texthtml_nocharset-utf8.html
-www/validator/htdocs/dev/tests/texthtml_nocharset.html
-www/validator/htdocs/dev/tests/texthtml_nodoctype.html.utf8
-www/validator/htdocs/dev/tests/texthtml_unknownparsemode.html.utf8
-www/validator/htdocs/dev/tests/textxml_html401.xml
-www/validator/htdocs/dev/tests/textxml_nocharset.xml
-www/validator/htdocs/dev/tests/trailing-nul.html
-www/validator/htdocs/dev/tests/uppercase_element.xhtml
-www/validator/htdocs/dev/tests/xhtml-basic10.xhtml
-www/validator/htdocs/dev/tests/xhtml-basic11.xhtml
-www/validator/htdocs/dev/tests/xhtml-mathml2-fpi.html
-www/validator/htdocs/dev/tests/xhtml-mathml2.html
-www/validator/htdocs/dev/tests/xhtml-mp-1_2.xhtml
-www/validator/htdocs/dev/tests/xhtml-print_1_0-invalid.xhtml
-www/validator/htdocs/dev/tests/xhtml-print_1_0.html
-www/validator/htdocs/dev/tests/xhtml-print_1_0.xhtml
-www/validator/htdocs/dev/tests/xhtml-utf8-bom.xhtml
-www/validator/htdocs/dev/tests/xhtml-windows-1250.xhtml
-www/validator/htdocs/dev/tests/xhtml1-appc-empty.html
-www/validator/htdocs/dev/tests/xhtml1-appc-emptycontent.html
-www/validator/htdocs/dev/tests/xhtml1-appc-xmldecl.html
-www/validator/htdocs/dev/tests/xhtml1-blank-1st-line.html
-www/validator/htdocs/dev/tests/xhtml1-bogus-attribute.html
-www/validator/htdocs/dev/tests/xhtml1-bogus-element.html
-www/validator/htdocs/dev/tests/xhtml1-missing-doctype-and-xmlns.html
-www/validator/htdocs/dev/tests/xhtml1-missing-doctype-and-xmlns.xhtml
-www/validator/htdocs/dev/tests/xhtml1-missing-doctype-has-xmlns.html
-www/validator/htdocs/dev/tests/xhtml1-missing-doctype-has-xmlns.xhtml
-www/validator/htdocs/dev/tests/xhtml1-strict-minimal.html
-www/validator/htdocs/dev/tests/xhtml1-strict-missing-xmlns.html
-www/validator/htdocs/dev/tests/xhtml1-strict.html
-www/validator/htdocs/dev/tests/xhtml11-basic-w3c.xhtml
-www/validator/htdocs/dev/tests/xhtml11-minimal.html
-www/validator/htdocs/dev/tests/xhtml_mathml_svg_newlines.xhtml
-www/validator/htdocs/dev/tests/xhtml_rdfa.xhtml
-www/validator/htdocs/dev/tests/xml-nodoctype-notwf.xml
-www/validator/htdocs/dev/tests/xml-nodoctype-wf.xml
-www/validator/htdocs/docs/api.html
-www/validator/htdocs/docs/devel.html
-www/validator/htdocs/docs/errors.html
-www/validator/htdocs/docs/help.html
-www/validator/htdocs/docs/index.html
-www/validator/htdocs/docs/install.html
-www/validator/htdocs/docs/install_win.html
-www/validator/htdocs/docs/sgml.html
-www/validator/htdocs/docs/users.html
-www/validator/htdocs/docs/why.html
-www/validator/htdocs/doctype-select.html
-www/validator/htdocs/favelets.html
-www/validator/htdocs/file-upload.html
-www/validator/htdocs/footer.html
-www/validator/htdocs/fragment-upload.html
-www/validator/htdocs/header.html
-www/validator/htdocs/images/arrow-closed.png
-www/validator/htdocs/images/arrow-down.gif
-www/validator/htdocs/images/arrow-open.png
-www/validator/htdocs/images/arrow-right.gif
-www/validator/htdocs/images/arrow_left.gif
-www/validator/htdocs/images/arrow_right.gif
-www/validator/htdocs/images/bg1.gif
-www/validator/htdocs/images/bg2.gif
-www/validator/htdocs/images/button-left.png
-www/validator/htdocs/images/button-right.png
-www/validator/htdocs/images/csupporter.gif
-www/validator/htdocs/images/csupporter.png
-www/validator/htdocs/images/double.png
-www/validator/htdocs/images/ellipsis.gif
-www/validator/htdocs/images/grad.png
-www/validator/htdocs/images/head-bl.png
-www/validator/htdocs/images/head-br.png
-www/validator/htdocs/images/head-tl.png
-www/validator/htdocs/images/head-tr.png
-www/validator/htdocs/images/info_icons/README
-www/validator/htdocs/images/info_icons/eastshores_Warning_Notification.svg
-www/validator/htdocs/images/info_icons/error.png
-www/validator/htdocs/images/info_icons/info.png
-www/validator/htdocs/images/info_icons/kuba_information_icons_set.svg
-www/validator/htdocs/images/info_icons/warning.png
-www/validator/htdocs/images/lg_gradient.gif
-www/validator/htdocs/images/markup_validation_service.png
-www/validator/htdocs/images/markup_validation_service.psd
-www/validator/htdocs/images/no_w3c.png
-www/validator/htdocs/images/opensource-55x48.png
-www/validator/htdocs/images/ppm_1.png
-www/validator/htdocs/images/ppm_2.png
-www/validator/htdocs/images/ppm_3.png
-www/validator/htdocs/images/qa.png
-www/validator/htdocs/images/roadmap/validators-chart-small.png
-www/validator/htdocs/images/roadmap/validators-chart.graffle
-www/validator/htdocs/images/roadmap/validators-chart.pdf
-www/validator/htdocs/images/roadmap/validators-chart.png
-www/validator/htdocs/images/roadmap/validators-chart.svg
-www/validator/htdocs/images/round-br.png
-www/validator/htdocs/images/round-tl.png
-www/validator/htdocs/images/round-tr.png
-www/validator/htdocs/images/sm_gradient_active.gif
-www/validator/htdocs/images/sm_gradient_hover.gif
-www/validator/htdocs/images/tab-tl.png
-www/validator/htdocs/images/tab-tr.png
-www/validator/htdocs/images/textbg.png
-www/validator/htdocs/images/v15445.gif
-www/validator/htdocs/images/v15445.png
-www/validator/htdocs/images/valid_icons/LICENSE
-www/validator/htdocs/images/valid_icons/valid-css-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-css-blue.gif
-www/validator/htdocs/images/valid_icons/valid-css-blue.png
-www/validator/htdocs/images/valid_icons/valid-css-v.svg
-www/validator/htdocs/images/valid_icons/valid-css.gif
-www/validator/htdocs/images/valid_icons/valid-css.png
-www/validator/htdocs/images/valid_icons/valid-css1-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-css1-blue.gif
-www/validator/htdocs/images/valid_icons/valid-css1-blue.png
-www/validator/htdocs/images/valid_icons/valid-css1-v.svg
-www/validator/htdocs/images/valid_icons/valid-css1.gif
-www/validator/htdocs/images/valid_icons/valid-css1.png
-www/validator/htdocs/images/valid_icons/valid-css2-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-css2-blue.gif
-www/validator/htdocs/images/valid_icons/valid-css2-blue.png
-www/validator/htdocs/images/valid_icons/valid-css2-v.svg
-www/validator/htdocs/images/valid_icons/valid-css2.gif
-www/validator/htdocs/images/valid_icons/valid-css2.png
-www/validator/htdocs/images/valid_icons/valid-html20-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-html20-blue.gif
-www/validator/htdocs/images/valid_icons/valid-html20-blue.png
-www/validator/htdocs/images/valid_icons/valid-html20-v.svg
-www/validator/htdocs/images/valid_icons/valid-html20.gif
-www/validator/htdocs/images/valid_icons/valid-html20.png
-www/validator/htdocs/images/valid_icons/valid-html32-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-html32-blue.gif
-www/validator/htdocs/images/valid_icons/valid-html32-blue.png
-www/validator/htdocs/images/valid_icons/valid-html32-v.svg
-www/validator/htdocs/images/valid_icons/valid-html32.gif
-www/validator/htdocs/images/valid_icons/valid-html32.png
-www/validator/htdocs/images/valid_icons/valid-html40-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-html40-blue.gif
-www/validator/htdocs/images/valid_icons/valid-html40-blue.png
-www/validator/htdocs/images/valid_icons/valid-html40-v.svg
-www/validator/htdocs/images/valid_icons/valid-html40.gif
-www/validator/htdocs/images/valid_icons/valid-html40.png
-www/validator/htdocs/images/valid_icons/valid-html401-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-html401-blue.gif
-www/validator/htdocs/images/valid_icons/valid-html401-blue.png
-www/validator/htdocs/images/valid_icons/valid-html401-v.svg
-www/validator/htdocs/images/valid_icons/valid-html401.gif
-www/validator/htdocs/images/valid_icons/valid-html401.png
-www/validator/htdocs/images/valid_icons/valid-mathml20-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-mathml20-blue.gif
-www/validator/htdocs/images/valid_icons/valid-mathml20-blue.png
-www/validator/htdocs/images/valid_icons/valid-mathml20-v.svg
-www/validator/htdocs/images/valid_icons/valid-mathml20.gif
-www/validator/htdocs/images/valid_icons/valid-mathml20.png
-www/validator/htdocs/images/valid_icons/valid-svg10-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-svg10-blue.gif
-www/validator/htdocs/images/valid_icons/valid-svg10-blue.png
-www/validator/htdocs/images/valid_icons/valid-svg10-v.svg
-www/validator/htdocs/images/valid_icons/valid-svg10.gif
-www/validator/htdocs/images/valid_icons/valid-svg10.png
-www/validator/htdocs/images/valid_icons/valid-svg11-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-svg11-blue.gif
-www/validator/htdocs/images/valid_icons/valid-svg11-blue.png
-www/validator/htdocs/images/valid_icons/valid-svg11-v.svg
-www/validator/htdocs/images/valid_icons/valid-svg11.gif
-www/validator/htdocs/images/valid_icons/valid-svg11.png
-www/validator/htdocs/images/valid_icons/valid-svg12-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-svg12-blue.gif
-www/validator/htdocs/images/valid_icons/valid-svg12-blue.png
-www/validator/htdocs/images/valid_icons/valid-svg12-v.svg
-www/validator/htdocs/images/valid_icons/valid-svg12.gif
-www/validator/htdocs/images/valid_icons/valid-svg12.png
-www/validator/htdocs/images/valid_icons/valid-svgtiny11-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-svgtiny11-blue.gif
-www/validator/htdocs/images/valid_icons/valid-svgtiny11-blue.png
-www/validator/htdocs/images/valid_icons/valid-svgtiny11-v.svg
-www/validator/htdocs/images/valid_icons/valid-svgtiny11.gif
-www/validator/htdocs/images/valid_icons/valid-svgtiny11.png
-www/validator/htdocs/images/valid_icons/valid-svgtiny12-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-svgtiny12-blue.gif
-www/validator/htdocs/images/valid_icons/valid-svgtiny12-blue.png
-www/validator/htdocs/images/valid_icons/valid-svgtiny12-v.svg
-www/validator/htdocs/images/valid_icons/valid-svgtiny12.gif
-www/validator/htdocs/images/valid_icons/valid-svgtiny12.png
-www/validator/htdocs/images/valid_icons/valid-xhtml-rdfa-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-xhtml-rdfa-blue.gif
-www/validator/htdocs/images/valid_icons/valid-xhtml-rdfa-blue.png
-www/validator/htdocs/images/valid_icons/valid-xhtml-rdfa-v.svg
-www/validator/htdocs/images/valid_icons/valid-xhtml-rdfa.gif
-www/validator/htdocs/images/valid_icons/valid-xhtml-rdfa.png
-www/validator/htdocs/images/valid_icons/valid-xhtml10-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-xhtml10-blue.gif
-www/validator/htdocs/images/valid_icons/valid-xhtml10-blue.png
-www/validator/htdocs/images/valid_icons/valid-xhtml10-v.svg
-www/validator/htdocs/images/valid_icons/valid-xhtml10.gif
-www/validator/htdocs/images/valid_icons/valid-xhtml10.png
-www/validator/htdocs/images/valid_icons/valid-xhtml11-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-xhtml11-blue.gif
-www/validator/htdocs/images/valid_icons/valid-xhtml11-blue.png
-www/validator/htdocs/images/valid_icons/valid-xhtml11-v.svg
-www/validator/htdocs/images/valid_icons/valid-xhtml11.gif
-www/validator/htdocs/images/valid_icons/valid-xhtml11.png
-www/validator/htdocs/images/valid_icons/valid-xhtml20-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-xhtml20-blue.gif
-www/validator/htdocs/images/valid_icons/valid-xhtml20-blue.png
-www/validator/htdocs/images/valid_icons/valid-xhtml20-v.svg
-www/validator/htdocs/images/valid_icons/valid-xhtml20.gif
-www/validator/htdocs/images/valid_icons/valid-xhtml20.png
-www/validator/htdocs/images/valid_icons/valid-xhtmlbasic10-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-xhtmlbasic10-blue.gif
-www/validator/htdocs/images/valid_icons/valid-xhtmlbasic10-blue.png
-www/validator/htdocs/images/valid_icons/valid-xhtmlbasic10-v.svg
-www/validator/htdocs/images/valid_icons/valid-xhtmlbasic10.gif
-www/validator/htdocs/images/valid_icons/valid-xhtmlbasic10.png
-www/validator/htdocs/images/valid_icons/valid-xhtmlprint10-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-xhtmlprint10-blue.gif
-www/validator/htdocs/images/valid_icons/valid-xhtmlprint10-blue.png
-www/validator/htdocs/images/valid_icons/valid-xhtmlprint10-v.svg
-www/validator/htdocs/images/valid_icons/valid-xhtmlprint10.gif
-www/validator/htdocs/images/valid_icons/valid-xhtmlprint10.png
-www/validator/htdocs/images/valid_icons/valid-xml10-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-xml10-blue.gif
-www/validator/htdocs/images/valid_icons/valid-xml10-blue.png
-www/validator/htdocs/images/valid_icons/valid-xml10-v.svg
-www/validator/htdocs/images/valid_icons/valid-xml10.gif
-www/validator/htdocs/images/valid_icons/valid-xml10.png
-www/validator/htdocs/images/valid_icons/valid-xml11-blue-v.svg
-www/validator/htdocs/images/valid_icons/valid-xml11-blue.gif
-www/validator/htdocs/images/valid_icons/valid-xml11-blue.png
-www/validator/htdocs/images/valid_icons/valid-xml11-v.svg
-www/validator/htdocs/images/valid_icons/valid-xml11.gif
-www/validator/htdocs/images/valid_icons/valid-xml11.png
-www/validator/htdocs/images/w3c.png
-www/validator/htdocs/index.html
-www/validator/htdocs/intro.html
-www/validator/htdocs/misc/compaq-logo.gif
-www/validator/htdocs/robots.txt
-www/validator/htdocs/scripts/combined.js
-www/validator/htdocs/scripts/combined.js.gz
-www/validator/htdocs/scripts/mootools-1.2.5-core-nc.js
-www/validator/htdocs/scripts/mootools-1.2.5.1-more.js
-www/validator/htdocs/scripts/w3c-validator.js
-www/validator/htdocs/sgml-lib/CR-wai-aria-20110118/aria-attributes-1.mod
-www/validator/htdocs/sgml-lib/CR-wai-aria-20110118/html4-aria-1.dtd
-www/validator/htdocs/sgml-lib/CR-wai-aria-20110118/xhtml-aria-1.dtd
-www/validator/htdocs/sgml-lib/IETF/ISOlat1.ent
-www/validator/htdocs/sgml-lib/IETF/html-1.dtd
-www/validator/htdocs/sgml-lib/IETF/html-1s.dtd
-www/validator/htdocs/sgml-lib/IETF/html-s.dtd
-www/validator/htdocs/sgml-lib/IETF/html.dtd
-www/validator/htdocs/sgml-lib/IETF/html2070.dtd
-www/validator/htdocs/sgml-lib/ISO-HTML/15445.dcl
-www/validator/htdocs/sgml-lib/ISO-HTML/15445.dtd
-www/validator/htdocs/sgml-lib/NOTE-xhtml-role-20101216/xhtml-role-qname-1.mod
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/README.txt
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isoamsa.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isoamsb.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isoamsc.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isoamsn.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isoamso.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isoamsr.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isobox.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isocyr1.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isocyr2.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isodia.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isogrk3.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isolat1.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isolat2.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isomfrk.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isomopf.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isomscr.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isonum.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isopub.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/isotech.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/mathml3-qname.mod
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/mathml3.dtd
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/mmlalias.ent
-www/validator/htdocs/sgml-lib/REC-MathML3-20101021/mmlextra.ent
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-anim.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-control.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-layout.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-link.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-media.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-metainformation.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-struct.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-timing.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-transition.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL21.dtd
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL21ExtendedMobile.dtd
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL21Mobile.dtd
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-attribs-1.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-datatypes-1.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-extended-mobile-profile-model-1.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-framework-1.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-language-profile-model-1.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-mobile-profile-model-1.mod
-www/validator/htdocs/sgml-lib/REC-SMIL2-20051213/smil-qname-1.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-anim.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-control.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-layout.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-link.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-media.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-metainformation.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-smiltext.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-state.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-struct.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-timesheet.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-timing.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-transition.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30Daisy.dtd
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30Language.dtd
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30Tiny.dtd
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30UnifiedMobile.dtd
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30smilText.dtd
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/smil-attribs-1.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/smil-datatypes-1.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/smil-framework-1.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/smil-profile-model-1.mod
-www/validator/htdocs/sgml-lib/REC-SMIL3-20081201/smil-qname-1.mod
-www/validator/htdocs/sgml-lib/REC-SVG-20010904/svg10.dtd
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-animation.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-animevents-attrib.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-clip.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-filter.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-font.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-graphics-attrib.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-paint-attrib.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-structure.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-text.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-clip.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-conditional.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-container-attrib.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-core-attrib.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-cursor.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-datatypes.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-docevents-attrib.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-extensibility.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-extresources-attrib.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-filter.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-font.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-framework.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-gradient.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-graphevents-attrib.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-graphics-attrib.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-hyperlink.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-image.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-marker.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-mask.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-opacity-attrib.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-paint-attrib.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-pattern.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-profile.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-qname.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-script.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-shape.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-structure.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-style.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-text.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-view.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-viewport-attrib.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg-xlink-attrib.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-attribs.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-basic-attribs.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-basic-model.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-basic.dtd
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-model.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-tiny-attribs.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-tiny-model.mod
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11-tiny.dtd
-www/validator/htdocs/sgml-lib/REC-SVG11-20110816/svg11.dtd
-www/validator/htdocs/sgml-lib/REC-html32-19970114/HTML32.dtd
-www/validator/htdocs/sgml-lib/REC-html40-19980424/frameset.dtd
-www/validator/htdocs/sgml-lib/REC-html40-19980424/loose.dtd
-www/validator/htdocs/sgml-lib/REC-html40-19980424/strict.dtd
-www/validator/htdocs/sgml-lib/REC-html401-19991224/HTMLlat1.ent
-www/validator/htdocs/sgml-lib/REC-html401-19991224/HTMLspecial.ent
-www/validator/htdocs/sgml-lib/REC-html401-19991224/HTMLsymbol.ent
-www/validator/htdocs/sgml-lib/REC-html401-19991224/frameset.dtd
-www/validator/htdocs/sgml-lib/REC-html401-19991224/loose.dtd
-www/validator/htdocs/sgml-lib/REC-html401-19991224/strict.dtd
-www/validator/htdocs/sgml-lib/REC-rdfa-syntax-20081014/xhtml-metaAttributes-1.mod
-www/validator/htdocs/sgml-lib/REC-rdfa-syntax-20081014/xhtml-rdfa-1.dtd
-www/validator/htdocs/sgml-lib/REC-rdfa-syntax-20081014/xhtml-rdfa-model-1.mod
-www/validator/htdocs/sgml-lib/REC-smil-19980615/smil10.dtd
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-anim.mod
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-control.mod
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-layout.mod
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-link.mod
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-media.mod
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-metainformation.mod
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-struct.mod
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-timing.mod
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL-transition.mod
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/SMIL20.dtd
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/smil-attribs-1.mod
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/smil-datatypes-1.mod
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/smil-framework-1.mod
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/smil-model-1.mod
-www/validator/htdocs/sgml-lib/REC-smil20-20050107/smil-qname-1.mod
-www/validator/htdocs/sgml-lib/REC-voicexml20-20040316/vxml.dtd
-www/validator/htdocs/sgml-lib/REC-voicexml21-20070619/vxml.dtd
-www/validator/htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-basic10-model-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-basic10.dtd
-www/validator/htdocs/sgml-lib/REC-xhtml-basic-20101123/xhtml-basic11-model-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-basic-20101123/xhtml-basic11.dtd
-www/validator/htdocs/sgml-lib/REC-xhtml-basic-20101123/xhtml-inputmode-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/README.txt
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-applet-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-arch-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-attribs-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-base-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-basic-form-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-basic-table-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-bdo-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-blkphras-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-blkpres-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-blkstruct-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-charent-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-csismap-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-datatypes-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-edit-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-events-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-form-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-frames-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-framework-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-hypertext-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-iframe-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-image-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlphras-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlpres-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlstruct-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlstyle-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-lat1.ent
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-legacy-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-legacy-redecl-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-link-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-list-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-meta-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-nameident-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-notations-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-object-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-param-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-pres-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-qname-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-ruby-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-script-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-special.ent
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-ssismap-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-struct-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-style-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-symbol.ent
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-table-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-target-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-text-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-print-20101123/xhtml-print10-model-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml-print-20101123/xhtml-print10.dtd
-www/validator/htdocs/sgml-lib/REC-xhtml1-20020801/xhtml1-frameset.dtd
-www/validator/htdocs/sgml-lib/REC-xhtml1-20020801/xhtml1-strict.dtd
-www/validator/htdocs/sgml-lib/REC-xhtml1-20020801/xhtml1-transitional.dtd
-www/validator/htdocs/sgml-lib/REC-xhtml11-20101123/xhtml11-model-1.mod
-www/validator/htdocs/sgml-lib/REC-xhtml11-20101123/xhtml11.dtd
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/README.txt
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/html5-uppercase.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/htmlmathml-f.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/htmlmathml.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsa.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsb.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsc.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsn.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamso.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsr.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isobox.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isocyr1.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isocyr2.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isodia.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk1.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk2.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk3.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk4.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isolat1.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isolat2.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isomfrk.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isomopf.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isomscr.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isonum.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isopub.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/isotech.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/mmlalias.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/mmlextra.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/predefined.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/w3centities-f.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/w3centities.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/xhtml1-lat1.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/xhtml1-special.ent
-www/validator/htdocs/sgml-lib/REC-xml-entity-names-20100401/xhtml1-symbol.ent
-www/validator/htdocs/sgml-lib/Specification/xmlspec-v20.dtd
-www/validator/htdocs/sgml-lib/Specification/xmlspec-v21.dtd
-www/validator/htdocs/sgml-lib/Specification/xmlspec.dtd
-www/validator/htdocs/sgml-lib/WD-XHTMLplusMathMLplusSVG-20020809/xhtml-basic-svg-tiny.dtd
-www/validator/htdocs/sgml-lib/WD-XHTMLplusMathMLplusSVG-20020809/xhtml-math-svg.dtd
-www/validator/htdocs/sgml-lib/WD-rdfa-in-html-20110525/html401-rdfa11-1.dtd
-www/validator/htdocs/sgml-lib/WD-xhtml-rdfa-20120131/xhtml-metaAttributes-2.mod
-www/validator/htdocs/sgml-lib/WD-xhtml-rdfa-20120131/xhtml-rdfa-2.dtd
-www/validator/htdocs/sgml-lib/WD-xhtml-rdfa-20120131/xhtml-rdfa-model-2.mod
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/README.txt
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsa.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsb.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsc.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsn.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamso.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsr.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isobox.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isocyr1.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isocyr2.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isodia.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk1.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk2.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk3.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk4.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isolat1.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isolat2.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isonum.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isopub.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isotech.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsa.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsb.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsc.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsn.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamso.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsr.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isogrk3.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isogrk4.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isomfrk.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isomopf.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isomscr.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isotech.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/mathml/mmlalias.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/mathml/mmlextra.ent
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/mathml2-qname-1.mod
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/mathml2.dtd
-www/validator/htdocs/sgml-lib/XX-MathML2-20031104/xhtml-math11-f.dtd
-www/validator/htdocs/sgml-lib/catalog.xml
-www/validator/htdocs/sgml-lib/sgml.dcl
-www/validator/htdocs/sgml-lib/sgml.dtd
-www/validator/htdocs/sgml-lib/sgml.soc
-www/validator/htdocs/sgml-lib/xml.dcl
-www/validator/htdocs/sgml-lib/xml.dtd
-www/validator/htdocs/sgml-lib/xml.soc
-www/validator/htdocs/source/index.html
-www/validator/htdocs/style/base.css
-www/validator/htdocs/style/base.css.gz
-www/validator/htdocs/style/results.css
-www/validator/htdocs/style/results.css.gz
-www/validator/htdocs/todo.html
-www/validator/htdocs/validator-news.xsl
-www/validator/htdocs/whatsnew.html
-www/validator/httpd/cgi-bin/check
-www/validator/httpd/cgi-bin/sendfeedback.pl
-www/validator/share/templates/en_US/backtop.tmpl
-www/validator/share/templates/en_US/docs_errors.tmpl
-www/validator/share/templates/en_US/doctype_spiel.tmpl
-www/validator/share/templates/en_US/earl_n3.tmpl
-www/validator/share/templates/en_US/earl_xml.tmpl
-www/validator/share/templates/en_US/error_loop.tmpl
-www/validator/share/templates/en_US/error_loop_grouped.tmpl
-www/validator/share/templates/en_US/error_messages.cfg
-www/validator/share/templates/en_US/fatal-error.tmpl
-www/validator/share/templates/en_US/feedback.tmpl
-www/validator/share/templates/en_US/footer.tmpl
-www/validator/share/templates/en_US/header.tmpl
-www/validator/share/templates/en_US/http_401_authrequired.tmpl
-www/validator/share/templates/en_US/iana_charset_blurb.tmpl
-www/validator/share/templates/en_US/invalid.tmpl
-www/validator/share/templates/en_US/json_output.tmpl
-www/validator/share/templates/en_US/jumpbar.tmpl
-www/validator/share/templates/en_US/opt_show_outline.tmpl
-www/validator/share/templates/en_US/opt_show_source.tmpl
-www/validator/share/templates/en_US/opt_show_tidy.tmpl
-www/validator/share/templates/en_US/popup_charset.tmpl
-www/validator/share/templates/en_US/popup_doctype.tmpl
-www/validator/share/templates/en_US/prefill_html401.tmpl
-www/validator/share/templates/en_US/prefill_xhtml10.tmpl
-www/validator/share/templates/en_US/result.tmpl
-www/validator/share/templates/en_US/soap_disabled.tmpl
-www/validator/share/templates/en_US/soap_fault.tmpl
-www/validator/share/templates/en_US/soap_output.tmpl
-www/validator/share/templates/en_US/soap_warnings.tmpl
-www/validator/share/templates/en_US/table.tmpl
-www/validator/share/templates/en_US/ucn_fault.tmpl
-www/validator/share/templates/en_US/ucn_output.tmpl
-www/validator/share/templates/en_US/ucn_warnings.tmpl
-www/validator/share/templates/en_US/valid.tmpl
-www/validator/share/templates/en_US/warnings.tmpl
+%%WWWDIR%%/htdocs/about.html
+%%WWWDIR%%/htdocs/accesskeys.html
+%%WWWDIR%%/htdocs/charset-select.html
+%%WWWDIR%%/htdocs/config/charset.cfg
+%%WWWDIR%%/htdocs/config/tidy.conf
+%%WWWDIR%%/htdocs/config/types.conf
+@sample %%WWWDIR%%/htdocs/config/validator.conf.sample
+%%WWWDIR%%/htdocs/contribute.html
+%%WWWDIR%%/htdocs/detailed-form.html
+%%WWWDIR%%/htdocs/detailed-form_directinput.html
+%%WWWDIR%%/htdocs/detailed.html
+%%WWWDIR%%/htdocs/dev/autotest/doctypes.xml
+%%WWWDIR%%/htdocs/dev/tests/1574-charset_iso_8859_7_greek.html
+%%WWWDIR%%/htdocs/dev/tests/197-iso88591_alias.html
+%%WWWDIR%%/htdocs/dev/tests/2329-html401-strict_iframe.html
+%%WWWDIR%%/htdocs/dev/tests/2329-html401-transitional_iframe.html
+%%WWWDIR%%/htdocs/dev/tests/2342-opensp_type_X.html
+%%WWWDIR%%/htdocs/dev/tests/2689-attribute-no-space.xhtml
+%%WWWDIR%%/htdocs/dev/tests/3663-svg-10-doctype.svg
+%%WWWDIR%%/htdocs/dev/tests/3663-svg-10-doctypeless.svg
+%%WWWDIR%%/htdocs/dev/tests/3663-svg-11-doctype.svg
+%%WWWDIR%%/htdocs/dev/tests/3663-svg-11-doctypeless.svg
+%%WWWDIR%%/htdocs/dev/tests/3663-svg-basic-11-doctype.svg
+%%WWWDIR%%/htdocs/dev/tests/3663-svg-basic-11-doctypeless.svg
+%%WWWDIR%%/htdocs/dev/tests/3663-svg-noversion-doctype.svg
+%%WWWDIR%%/htdocs/dev/tests/3663-svg-noversion-doctype2.svg
+%%WWWDIR%%/htdocs/dev/tests/3663-svg-noversion-doctypeless.svg
+%%WWWDIR%%/htdocs/dev/tests/3663-svg-tiny-11-doctype.svg
+%%WWWDIR%%/htdocs/dev/tests/3663-svg-tiny-11-doctypeless.svg
+%%WWWDIR%%/htdocs/dev/tests/4412-fuzzymatch.xhtml
+%%WWWDIR%%/htdocs/dev/tests/4476-svg_nodoctype.svg
+%%WWWDIR%%/htdocs/dev/tests/4520-iso88591-meta.html
+%%WWWDIR%%/htdocs/dev/tests/4520-iso88591-no_meta.html
+%%WWWDIR%%/htdocs/dev/tests/4848-html40-transitional_FPI-SI-mismatch.html

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511081133.tA8BXjO5037004>