Index: head/www/validator/Makefile =================================================================== --- head/www/validator/Makefile (revision 401049) +++ head/www/validator/Makefile (revision 401050) @@ -1,66 +1,71 @@ # Created by: Naram Qashat # $FreeBSD$ PORTNAME= validator PORTVERSION= 1.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://validator.w3.org/dist/ \ http://www.cyberbotx.com/w3c-validator/ DISTFILES= validator-${PORTVERSION:S/./_/g}.tar.gz sgml-lib-${PORTVERSION:S/./_/g}.tar.gz MAINTAINER= cyberbotx@cyberbotx.com COMMENT= Markup Validation Service from the World Wide Web Consortium (W3C) RUN_DEPENDS= onsgmls:${PORTSDIR}/textproc/opensp \ p5-Config-General>=0:${PORTSDIR}/devel/p5-Config-General \ p5-Encode-HanExtra>=0:${PORTSDIR}/chinese/p5-Encode-HanExtra \ p5-Encode-JIS2K>=0:${PORTSDIR}/converters/p5-Encode-JIS2K \ p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser \ p5-HTML-Encoding>=0:${PORTSDIR}/www/p5-HTML-Encoding \ p5-HTML-Template>=0:${PORTSDIR}/www/p5-HTML-Template \ p5-libwww>=5.817:${PORTSDIR}/www/p5-libwww \ p5-JSON>=0:${PORTSDIR}/converters/p5-JSON \ p5-Net-IP>=0:${PORTSDIR}/net-mgmt/p5-Net-IP \ p5-SGML-Parser-OpenSP>=0:${PORTSDIR}/textproc/p5-SGML-Parser-OpenSP \ p5-URI>=0:${PORTSDIR}/net/p5-URI \ p5-XML-LibXML>=0:${PORTSDIR}/textproc/p5-XML-LibXML USES= perl5 shebangfix NO_BUILD= yes 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 HTML_TIDY_DESC= Enable HTML Markup Cleaning HTML_TIDY_RUN_DEPENDS= p5-HTML-Tidy>=0:${PORTSDIR}/textproc/p5-HTML-Tidy .include .if ${PERL_LEVEL} >= 502200 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 Index: head/www/validator/files/validator.conf.sample.in =================================================================== --- head/www/validator/files/validator.conf.sample.in (revision 401049) +++ head/www/validator/files/validator.conf.sample.in (nonexistent) @@ -1,138 +0,0 @@ - -# Main Configuration File for the W3C Markup Validation Service. -# -# $Id: validator.conf,v 1.39 2010-03-09 18:46:03 ville Exp $ -# -# See 'perldoc Config::General' for the syntax, and be aware that the -# 'SplitPolicy' is 'equalsign', ie. keys and values are separated by '\s*=\s*', -# and that 'InterPolateVars' is in effect. -# - -# -# Base Path for Markup Validator files. -# -# You MUST set these unless you use the default locations for the files. -# e.g. the config files in "/etc/w3c/" and everything else in -# "/usr/local/validator/". -# -# Make sure all file paths below do NOT end with a slash - - - # - # Base path. Defaults to the value of the W3C_VALIDATOR_HOME environment - # variable or /usr/local/validator if the variable does not exist. - Base = %%PREFIX%%/www/validator - - # - # Location of template files - Templates = $Base/share/templates - - # - # Directory where to store cached templates. Relative paths are - # treated as relative to the system temporary directory. Templates - # are not cached at all if this option is empty or not set, except - # with mod_perl setups where this option has no effect and templates - # are always cached in memory. - #Cache = validator - - # configuration file for HTML Tidy Module, if available - TidyConf = $Base/htdocs/config/tidy.conf - - - # - # The SGML Library Path. - Library = $Base/htdocs/sgml-lib - - - -# -# This controls whether the debugging options are allowed to be enabled. -Allow Debug = yes - -# -# This lets you permanently enable the debugging options. Can be overridden -# with CGI options (unlike "Allow Debug" above). -Enable Debug = no - -# -# Whether private RFC1918 addresses are allowed. -Allow Private IPs = no - -# -# Enable (or not) the web service API for this validator -# see http://validator.w3.org/docs/api.html -Enable SOAP = yes - - -# -# Whether the validator will check its own output. -# 0 means it will refuse to check its own output, 1 means it will but it will -# refuse to check the results of it checking itself. Etc. -Max Recursion = 0 - -# -# Protocols the validator is allowed to use for retrieving documents. -# The default is to allow http and https. - - Allow = data,ftp,http,https - - -# -# Email address of the maintainer of this service. -Maintainer = www-validator@w3.org - -# -# The "Home Page" for the service. Make sure this ends with a slash. -Home Page = http://validator.w3.org/ - -# Localization -# only English available for now -Languages = en - - - -# -# Mapping tables etc... -# - -# -# Main document Type Registry; contains all information on the types -# of documents we support and how they are processed. - - Include %%PREFIX%%/www/validator/htdocs/config/types.conf - - -# -# Mapping of charset names to their IANA names and how iconv(3) knows them. - - Include %%PREFIX%%/www/validator/htdocs/config/charset.cfg - - -# -# Map MIME Media Type to Parse Mode mapping. - - text/xml = XML - image/svg = XML - image/svg+xml = XML - application/smil = XML - application/xml = XML - text/html = TBD - text/vnd.wap.wml = XML - application/xhtml+xml = XML - application/mathml+xml = XML - - -# -# Source for the "Tip of The Day" blurbs. - - Include %%PREFIX%%/www/validator/htdocs/config/tips.cfg - - - -## Enable checking documents via external services. -## The example config below assumes that you have installed the validator.nu -## engine on the same machine as the markup validator. -## See http://about.validator.nu/ for installation instructions. -#HTML5 = http://localhost:8888/html5/ -#CompoundXML = http://localhost:8888/ - Property changes on: head/www/validator/files/validator.conf.sample.in ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/www/validator/files/patch-htdocs_config_validator.conf =================================================================== --- head/www/validator/files/patch-htdocs_config_validator.conf (nonexistent) +++ head/www/validator/files/patch-htdocs_config_validator.conf (revision 401050) @@ -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. + +- Include types.conf ++ Include %%WWWDIR%%/htdocs/config/types.conf + + + # + # Mapping of charset names to their IANA names and how iconv(3) knows them. + +- Include charset.cfg ++ Include %%WWWDIR%%/htdocs/config/charset.cfg + + + # Property changes on: head/www/validator/files/patch-htdocs_config_validator.conf ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/validator/files/patch-httpd_cgi-bin_check =================================================================== --- head/www/validator/files/patch-httpd_cgi-bin_check (nonexistent) +++ head/www/validator/files/patch-httpd_cgi-bin_check (revision 401050) @@ -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', Property changes on: head/www/validator/files/patch-httpd_cgi-bin_check ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/validator/files/patch-httpd_cgi-bin_sendfeedback.pl =================================================================== --- head/www/validator/files/patch-httpd_cgi-bin_sendfeedback.pl (nonexistent) +++ head/www/validator/files/patch-httpd_cgi-bin_sendfeedback.pl (revision 401050) @@ -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', Property changes on: head/www/validator/files/patch-httpd_cgi-bin_sendfeedback.pl ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/validator/files/patch-httpd_conf_httpd.conf =================================================================== --- head/www/validator/files/patch-httpd_conf_httpd.conf (nonexistent) +++ head/www/validator/files/patch-httpd_conf_httpd.conf (revision 401050) @@ -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 + + + # 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 + + + +@@ -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/ +- ++Alias /w3c-validator/ \ ++ %%WWWDIR%%/htdocs/ ++ + Options IncludesNOEXEC Indexes MultiViews + AllowOverride None + AddHandler server-parsed .html +@@ -73,7 +76,10 @@ Alias /w3c-validator/ /usr/local/valid + + ForceType text/css + +- ++# 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 + + Options +SymLinksIfOwnerMatch + RewriteBase /w3c-validator/ Property changes on: head/www/validator/files/patch-httpd_conf_httpd.conf ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/validator/files/pkg-message.in =================================================================== --- head/www/validator/files/pkg-message.in (revision 401049) +++ head/www/validator/files/pkg-message.in (revision 401050) @@ -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: -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. +Include %%WWWDIR%%/httpd/conf/httpd.conf -# 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. +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. -# 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/ - - 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 - +A sample validator.conf has been installed at +%%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. ------------------------------------------------------------------------------- Index: head/www/validator/pkg-plist =================================================================== --- head/www/validator/pkg-plist (revision 401049) +++ head/www/validator/pkg-plist (revision 401050) @@ -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 +%%WWWDIR%%/htdocs/dev/tests/4848-xhtml1-strict_FPI-SI-mismatch.xhtml +%%WWWDIR%%/htdocs/dev/tests/4892-entity.html +%%WWWDIR%%/htdocs/dev/tests/4917-meta_charset_case.html +%%WWWDIR%%/htdocs/dev/tests/5031-root_dash.xml +%%WWWDIR%%/htdocs/dev/tests/857-svg_nodoctype.svg +%%WWWDIR%%/htdocs/dev/tests/REC-SVG-1_0-minimal.html +%%WWWDIR%%/htdocs/dev/tests/REC-SVG-1_0-minimal.svg +%%WWWDIR%%/htdocs/dev/tests/SMIL21.smil +%%WWWDIR%%/htdocs/dev/tests/SMIL21_Mobile.smil +%%WWWDIR%%/htdocs/dev/tests/W11-ht401-namespace.html +%%WWWDIR%%/htdocs/dev/tests/ampersand-as-data.html +%%WWWDIR%%/htdocs/dev/tests/ampersand-as-data_html401.html +%%WWWDIR%%/htdocs/dev/tests/application-xhtml_xml.xhtml +%%WWWDIR%%/htdocs/dev/tests/bogus-fpi.html +%%WWWDIR%%/htdocs/dev/tests/bogus-fpi2.html +%%WWWDIR%%/htdocs/dev/tests/bogus-fpi3.html +%%WWWDIR%%/htdocs/dev/tests/bogus-fpi4.html +%%WWWDIR%%/htdocs/dev/tests/bogus-fpi5.xhtml +%%WWWDIR%%/htdocs/dev/tests/bogus-xmlpi.html +%%WWWDIR%%/htdocs/dev/tests/bogus-xmlpi.xhtml +%%WWWDIR%%/htdocs/dev/tests/charset-xmldecl.xhtml +%%WWWDIR%%/htdocs/dev/tests/charset_mismatch-http_meta.html.utf8 +%%WWWDIR%%/htdocs/dev/tests/charset_mismatch-http_xmldec.xhtml.utf8 +%%WWWDIR%%/htdocs/dev/tests/colons.html +%%WWWDIR%%/htdocs/dev/tests/error_pls_warning.html +%%WWWDIR%%/htdocs/dev/tests/errors_sorting.smi +%%WWWDIR%%/htdocs/dev/tests/fpi_mismatch1.html +%%WWWDIR%%/htdocs/dev/tests/fpi_mismatch2.html +%%WWWDIR%%/htdocs/dev/tests/html20-strict.html +%%WWWDIR%%/htdocs/dev/tests/html20.html +%%WWWDIR%%/htdocs/dev/tests/html40-frameset.html +%%WWWDIR%%/htdocs/dev/tests/html40-strict.html +%%WWWDIR%%/htdocs/dev/tests/html40-transitional.html +%%WWWDIR%%/htdocs/dev/tests/html401-strict.html +%%WWWDIR%%/htdocs/dev/tests/html401-strict.xhtml +%%WWWDIR%%/htdocs/dev/tests/html401_doctypecase.html +%%WWWDIR%%/htdocs/dev/tests/html401_system.html +%%WWWDIR%%/htdocs/dev/tests/html5-error-explanation.html +%%WWWDIR%%/htdocs/dev/tests/html5-ok.html +%%WWWDIR%%/htdocs/dev/tests/html5-precise-error.html +%%WWWDIR%%/htdocs/dev/tests/html5-range-error.html +%%WWWDIR%%/htdocs/dev/tests/html5-warning.html +%%WWWDIR%%/htdocs/dev/tests/html_xmlns.html.utf8 +%%WWWDIR%%/htdocs/dev/tests/index.html +%%WWWDIR%%/htdocs/dev/tests/invalid_meta_multibyte.html +%%WWWDIR%%/htdocs/dev/tests/iso-html.html +%%WWWDIR%%/htdocs/dev/tests/long-lines.html +%%WWWDIR%%/htdocs/dev/tests/mathml2.html +%%WWWDIR%%/htdocs/dev/tests/mathml2.mml +%%WWWDIR%%/htdocs/dev/tests/no-newlines.html +%%WWWDIR%%/htdocs/dev/tests/nocharset.html +%%WWWDIR%%/htdocs/dev/tests/nocharset_notutf8.html +%%WWWDIR%%/htdocs/dev/tests/nonSGML-chars.html +%%WWWDIR%%/htdocs/dev/tests/outline.html +%%WWWDIR%%/htdocs/dev/tests/plane20-char.xml +%%WWWDIR%%/htdocs/dev/tests/rddl_fpi.html +%%WWWDIR%%/htdocs/dev/tests/rddl_fpi.xhtml +%%WWWDIR%%/htdocs/dev/tests/rddl_si.xhtml +%%WWWDIR%%/htdocs/dev/tests/sgml-nodoctype-syntaxnotok.html +%%WWWDIR%%/htdocs/dev/tests/sgml-nodoctype-syntaxok.html +%%WWWDIR%%/htdocs/dev/tests/sgml_customdtd.html +%%WWWDIR%%/htdocs/dev/tests/shorttags.html +%%WWWDIR%%/htdocs/dev/tests/shorttags2.html +%%WWWDIR%%/htdocs/dev/tests/smil10-minimal.smi +%%WWWDIR%%/htdocs/dev/tests/smil20-profile-doctype.smi +%%WWWDIR%%/htdocs/dev/tests/smil20.smi +%%WWWDIR%%/htdocs/dev/tests/svg11.svg +%%WWWDIR%%/htdocs/dev/tests/svg_tiny_1_1.svg +%%WWWDIR%%/htdocs/dev/tests/texthtml_nocharset-utf8.html +%%WWWDIR%%/htdocs/dev/tests/texthtml_nocharset.html +%%WWWDIR%%/htdocs/dev/tests/texthtml_nodoctype.html.utf8 +%%WWWDIR%%/htdocs/dev/tests/texthtml_unknownparsemode.html.utf8 +%%WWWDIR%%/htdocs/dev/tests/textxml_html401.xml +%%WWWDIR%%/htdocs/dev/tests/textxml_nocharset.xml +%%WWWDIR%%/htdocs/dev/tests/trailing-nul.html +%%WWWDIR%%/htdocs/dev/tests/uppercase_element.xhtml +%%WWWDIR%%/htdocs/dev/tests/xhtml-basic10.xhtml +%%WWWDIR%%/htdocs/dev/tests/xhtml-basic11.xhtml +%%WWWDIR%%/htdocs/dev/tests/xhtml-mathml2-fpi.html +%%WWWDIR%%/htdocs/dev/tests/xhtml-mathml2.html +%%WWWDIR%%/htdocs/dev/tests/xhtml-mp-1_2.xhtml +%%WWWDIR%%/htdocs/dev/tests/xhtml-print_1_0-invalid.xhtml +%%WWWDIR%%/htdocs/dev/tests/xhtml-print_1_0.html +%%WWWDIR%%/htdocs/dev/tests/xhtml-print_1_0.xhtml +%%WWWDIR%%/htdocs/dev/tests/xhtml-utf8-bom.xhtml +%%WWWDIR%%/htdocs/dev/tests/xhtml-windows-1250.xhtml +%%WWWDIR%%/htdocs/dev/tests/xhtml1-appc-empty.html +%%WWWDIR%%/htdocs/dev/tests/xhtml1-appc-emptycontent.html +%%WWWDIR%%/htdocs/dev/tests/xhtml1-appc-xmldecl.html +%%WWWDIR%%/htdocs/dev/tests/xhtml1-blank-1st-line.html +%%WWWDIR%%/htdocs/dev/tests/xhtml1-bogus-attribute.html +%%WWWDIR%%/htdocs/dev/tests/xhtml1-bogus-element.html +%%WWWDIR%%/htdocs/dev/tests/xhtml1-missing-doctype-and-xmlns.html +%%WWWDIR%%/htdocs/dev/tests/xhtml1-missing-doctype-and-xmlns.xhtml +%%WWWDIR%%/htdocs/dev/tests/xhtml1-missing-doctype-has-xmlns.html +%%WWWDIR%%/htdocs/dev/tests/xhtml1-missing-doctype-has-xmlns.xhtml +%%WWWDIR%%/htdocs/dev/tests/xhtml1-strict-minimal.html +%%WWWDIR%%/htdocs/dev/tests/xhtml1-strict-missing-xmlns.html +%%WWWDIR%%/htdocs/dev/tests/xhtml1-strict.html +%%WWWDIR%%/htdocs/dev/tests/xhtml11-basic-w3c.xhtml +%%WWWDIR%%/htdocs/dev/tests/xhtml11-minimal.html +%%WWWDIR%%/htdocs/dev/tests/xhtml_mathml_svg_newlines.xhtml +%%WWWDIR%%/htdocs/dev/tests/xhtml_rdfa.xhtml +%%WWWDIR%%/htdocs/dev/tests/xml-nodoctype-notwf.xml +%%WWWDIR%%/htdocs/dev/tests/xml-nodoctype-wf.xml +%%WWWDIR%%/htdocs/docs/api.html +%%WWWDIR%%/htdocs/docs/devel.html +%%WWWDIR%%/htdocs/docs/errors.html +%%WWWDIR%%/htdocs/docs/help.html +%%WWWDIR%%/htdocs/docs/index.html +%%WWWDIR%%/htdocs/docs/install.html +%%WWWDIR%%/htdocs/docs/install_win.html +%%WWWDIR%%/htdocs/docs/sgml.html +%%WWWDIR%%/htdocs/docs/users.html +%%WWWDIR%%/htdocs/docs/why.html +%%WWWDIR%%/htdocs/doctype-select.html +%%WWWDIR%%/htdocs/favelets.html +%%WWWDIR%%/htdocs/file-upload.html +%%WWWDIR%%/htdocs/footer.html +%%WWWDIR%%/htdocs/fragment-upload.html +%%WWWDIR%%/htdocs/header.html +%%WWWDIR%%/htdocs/images/arrow-closed.png +%%WWWDIR%%/htdocs/images/arrow-down.gif +%%WWWDIR%%/htdocs/images/arrow-open.png +%%WWWDIR%%/htdocs/images/arrow-right.gif +%%WWWDIR%%/htdocs/images/arrow_left.gif +%%WWWDIR%%/htdocs/images/arrow_right.gif +%%WWWDIR%%/htdocs/images/bg1.gif +%%WWWDIR%%/htdocs/images/bg2.gif +%%WWWDIR%%/htdocs/images/button-left.png +%%WWWDIR%%/htdocs/images/button-right.png +%%WWWDIR%%/htdocs/images/csupporter.gif +%%WWWDIR%%/htdocs/images/csupporter.png +%%WWWDIR%%/htdocs/images/double.png +%%WWWDIR%%/htdocs/images/ellipsis.gif +%%WWWDIR%%/htdocs/images/grad.png +%%WWWDIR%%/htdocs/images/head-bl.png +%%WWWDIR%%/htdocs/images/head-br.png +%%WWWDIR%%/htdocs/images/head-tl.png +%%WWWDIR%%/htdocs/images/head-tr.png +%%WWWDIR%%/htdocs/images/info_icons/README +%%WWWDIR%%/htdocs/images/info_icons/eastshores_Warning_Notification.svg +%%WWWDIR%%/htdocs/images/info_icons/error.png +%%WWWDIR%%/htdocs/images/info_icons/info.png +%%WWWDIR%%/htdocs/images/info_icons/kuba_information_icons_set.svg +%%WWWDIR%%/htdocs/images/info_icons/warning.png +%%WWWDIR%%/htdocs/images/lg_gradient.gif +%%WWWDIR%%/htdocs/images/markup_validation_service.png +%%WWWDIR%%/htdocs/images/markup_validation_service.psd +%%WWWDIR%%/htdocs/images/no_w3c.png +%%WWWDIR%%/htdocs/images/opensource-55x48.png +%%WWWDIR%%/htdocs/images/ppm_1.png +%%WWWDIR%%/htdocs/images/ppm_2.png +%%WWWDIR%%/htdocs/images/ppm_3.png +%%WWWDIR%%/htdocs/images/qa.png +%%WWWDIR%%/htdocs/images/roadmap/validators-chart-small.png +%%WWWDIR%%/htdocs/images/roadmap/validators-chart.graffle +%%WWWDIR%%/htdocs/images/roadmap/validators-chart.pdf +%%WWWDIR%%/htdocs/images/roadmap/validators-chart.png +%%WWWDIR%%/htdocs/images/roadmap/validators-chart.svg +%%WWWDIR%%/htdocs/images/round-br.png +%%WWWDIR%%/htdocs/images/round-tl.png +%%WWWDIR%%/htdocs/images/round-tr.png +%%WWWDIR%%/htdocs/images/sm_gradient_active.gif +%%WWWDIR%%/htdocs/images/sm_gradient_hover.gif +%%WWWDIR%%/htdocs/images/tab-tl.png +%%WWWDIR%%/htdocs/images/tab-tr.png +%%WWWDIR%%/htdocs/images/textbg.png +%%WWWDIR%%/htdocs/images/v15445.gif +%%WWWDIR%%/htdocs/images/v15445.png +%%WWWDIR%%/htdocs/images/valid_icons/LICENSE +%%WWWDIR%%/htdocs/images/valid_icons/valid-css-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-css-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-css-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-css-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-css.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-css.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-css1-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-css1-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-css1-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-css1-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-css1.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-css1.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-css2-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-css2-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-css2-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-css2-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-css2.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-css2.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-html20-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-html20-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-html20-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-html20-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-html20.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-html20.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-html32-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-html32-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-html32-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-html32-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-html32.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-html32.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-html40-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-html40-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-html40-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-html40-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-html40.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-html40.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-html401-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-html401-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-html401-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-html401-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-html401.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-html401.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-mathml20-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-mathml20-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-mathml20-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-mathml20-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-mathml20.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-mathml20.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg10-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg10-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg10-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg10-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg10.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg10.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg11-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg11-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg11-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg11-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg11.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg11.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg12-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg12-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg12-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg12-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg12.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-svg12.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny11-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny11-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny11-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny11-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny11.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny11.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny12-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny12-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny12-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny12-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny12.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-svgtiny12.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml-rdfa-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml-rdfa-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml-rdfa-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml-rdfa-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml-rdfa.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml-rdfa.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml10-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml10-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml10-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml10-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml10.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml10.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml11-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml11-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml11-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml11-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml11.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml11.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml20-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml20-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml20-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml20-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml20.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtml20.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlbasic10-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlbasic10-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlbasic10-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlbasic10-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlbasic10.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlbasic10.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlprint10-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlprint10-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlprint10-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlprint10-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlprint10.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xhtmlprint10.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xml10-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xml10-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xml10-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xml10-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xml10.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xml10.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xml11-blue-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xml11-blue.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xml11-blue.png +%%WWWDIR%%/htdocs/images/valid_icons/valid-xml11-v.svg +%%WWWDIR%%/htdocs/images/valid_icons/valid-xml11.gif +%%WWWDIR%%/htdocs/images/valid_icons/valid-xml11.png +%%WWWDIR%%/htdocs/images/w3c.png +%%WWWDIR%%/htdocs/index.html +%%WWWDIR%%/htdocs/intro.html +%%WWWDIR%%/htdocs/misc/compaq-logo.gif +%%WWWDIR%%/htdocs/robots.txt +%%WWWDIR%%/htdocs/scripts/combined.js +%%WWWDIR%%/htdocs/scripts/combined.js.gz +%%WWWDIR%%/htdocs/scripts/mootools-1.2.5-core-nc.js +%%WWWDIR%%/htdocs/scripts/mootools-1.2.5.1-more.js +%%WWWDIR%%/htdocs/scripts/w3c-validator.js +%%WWWDIR%%/htdocs/sgml-lib/CR-wai-aria-20110118/aria-attributes-1.mod +%%WWWDIR%%/htdocs/sgml-lib/CR-wai-aria-20110118/html4-aria-1.dtd +%%WWWDIR%%/htdocs/sgml-lib/CR-wai-aria-20110118/xhtml-aria-1.dtd +%%WWWDIR%%/htdocs/sgml-lib/IETF/ISOlat1.ent +%%WWWDIR%%/htdocs/sgml-lib/IETF/html-1.dtd +%%WWWDIR%%/htdocs/sgml-lib/IETF/html-1s.dtd +%%WWWDIR%%/htdocs/sgml-lib/IETF/html-s.dtd +%%WWWDIR%%/htdocs/sgml-lib/IETF/html.dtd +%%WWWDIR%%/htdocs/sgml-lib/IETF/html2070.dtd +%%WWWDIR%%/htdocs/sgml-lib/ISO-HTML/15445.dcl +%%WWWDIR%%/htdocs/sgml-lib/ISO-HTML/15445.dtd +%%WWWDIR%%/htdocs/sgml-lib/NOTE-xhtml-role-20101216/xhtml-role-qname-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/README.txt +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isoamsa.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isoamsb.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isoamsc.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isoamsn.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isoamso.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isoamsr.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isobox.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isocyr1.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isocyr2.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isodia.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isogrk3.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isolat1.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isolat2.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isomfrk.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isomopf.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isomscr.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isonum.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isopub.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/isotech.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/mathml3-qname.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/mathml3.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/mmlalias.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-MathML3-20101021/mmlextra.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-anim.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-control.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-layout.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-link.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-media.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-metainformation.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-struct.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-timing.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL-transition.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL21.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL21ExtendedMobile.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/SMIL21Mobile.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-attribs-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-datatypes-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-extended-mobile-profile-model-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-framework-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-language-profile-model-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-mobile-profile-model-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL2-20051213/smil-qname-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-anim.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-control.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-layout.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-link.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-media.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-metainformation.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-smiltext.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-state.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-struct.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-timesheet.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-timing.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL-transition.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30Daisy.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30Language.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30Tiny.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30UnifiedMobile.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/SMIL30smilText.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/smil-attribs-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/smil-datatypes-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/smil-framework-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/smil-profile-model-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SMIL3-20081201/smil-qname-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG-20010904/svg10.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-animation.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-animevents-attrib.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-clip.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-filter.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-font.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-graphics-attrib.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-paint-attrib.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-structure.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-basic-text.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-clip.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-conditional.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-container-attrib.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-core-attrib.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-cursor.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-datatypes.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-docevents-attrib.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-extensibility.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-extresources-attrib.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-filter.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-font.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-framework.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-gradient.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-graphevents-attrib.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-graphics-attrib.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-hyperlink.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-image.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-marker.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-mask.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-opacity-attrib.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-paint-attrib.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-pattern.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-profile.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-qname.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-script.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-shape.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-structure.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-style.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-text.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-view.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-viewport-attrib.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg-xlink-attrib.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-attribs.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-basic-attribs.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-basic-model.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-basic.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-model.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-tiny-attribs.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-tiny-model.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11-tiny.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-SVG11-20110816/svg11.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-html32-19970114/HTML32.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-html40-19980424/frameset.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-html40-19980424/loose.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-html40-19980424/strict.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-html401-19991224/HTMLlat1.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-html401-19991224/HTMLspecial.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-html401-19991224/HTMLsymbol.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-html401-19991224/frameset.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-html401-19991224/loose.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-html401-19991224/strict.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-rdfa-syntax-20081014/xhtml-metaAttributes-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-rdfa-syntax-20081014/xhtml-rdfa-1.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-rdfa-syntax-20081014/xhtml-rdfa-model-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil-19980615/smil10.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-anim.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-control.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-layout.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-link.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-media.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-metainformation.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-struct.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-timing.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL-transition.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/SMIL20.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/smil-attribs-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/smil-datatypes-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/smil-framework-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/smil-model-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-smil20-20050107/smil-qname-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-voicexml20-20040316/vxml.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-voicexml21-20070619/vxml.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-basic10-model-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-basic-20001219/xhtml-basic10.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-basic-20101123/xhtml-basic11-model-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-basic-20101123/xhtml-basic11.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-basic-20101123/xhtml-inputmode-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/README.txt +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-applet-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-arch-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-attribs-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-base-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-basic-form-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-basic-table-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-bdo-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-blkphras-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-blkpres-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-blkstruct-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-charent-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-csismap-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-datatypes-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-edit-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-events-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-form-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-frames-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-framework-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-hypertext-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-iframe-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-image-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlphras-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlpres-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlstruct-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-inlstyle-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-lat1.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-legacy-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-legacy-redecl-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-link-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-list-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-meta-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-nameident-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-notations-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-object-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-param-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-pres-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-qname-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-ruby-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-script-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-special.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-ssismap-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-struct-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-style-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-symbol.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-table-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-target-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-modularization-20100729/xhtml-text-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-print-20101123/xhtml-print10-model-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml-print-20101123/xhtml-print10.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml1-20020801/xhtml1-frameset.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml1-20020801/xhtml1-strict.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml1-20020801/xhtml1-transitional.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml11-20101123/xhtml11-model-1.mod +%%WWWDIR%%/htdocs/sgml-lib/REC-xhtml11-20101123/xhtml11.dtd +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/README.txt +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/html5-uppercase.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/htmlmathml-f.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/htmlmathml.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsa.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsb.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsc.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsn.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamso.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isoamsr.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isobox.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isocyr1.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isocyr2.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isodia.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk1.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk2.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk3.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isogrk4.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isolat1.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isolat2.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isomfrk.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isomopf.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isomscr.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isonum.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isopub.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/isotech.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/mmlalias.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/mmlextra.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/predefined.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/w3centities-f.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/w3centities.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/xhtml1-lat1.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/xhtml1-special.ent +%%WWWDIR%%/htdocs/sgml-lib/REC-xml-entity-names-20100401/xhtml1-symbol.ent +%%WWWDIR%%/htdocs/sgml-lib/Specification/xmlspec-v20.dtd +%%WWWDIR%%/htdocs/sgml-lib/Specification/xmlspec-v21.dtd +%%WWWDIR%%/htdocs/sgml-lib/Specification/xmlspec.dtd +%%WWWDIR%%/htdocs/sgml-lib/WD-XHTMLplusMathMLplusSVG-20020809/xhtml-basic-svg-tiny.dtd +%%WWWDIR%%/htdocs/sgml-lib/WD-XHTMLplusMathMLplusSVG-20020809/xhtml-math-svg.dtd +%%WWWDIR%%/htdocs/sgml-lib/WD-rdfa-in-html-20110525/html401-rdfa11-1.dtd +%%WWWDIR%%/htdocs/sgml-lib/WD-xhtml-rdfa-20120131/xhtml-metaAttributes-2.mod +%%WWWDIR%%/htdocs/sgml-lib/WD-xhtml-rdfa-20120131/xhtml-rdfa-2.dtd +%%WWWDIR%%/htdocs/sgml-lib/WD-xhtml-rdfa-20120131/xhtml-rdfa-model-2.mod +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/README.txt +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsa.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsb.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsc.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsn.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamso.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isoamsr.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isobox.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isocyr1.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isocyr2.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isodia.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk1.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk2.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk3.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isogrk4.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isolat1.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isolat2.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isonum.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isopub.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso8879/isotech.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsa.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsb.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsc.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsn.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamso.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isoamsr.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isogrk3.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isogrk4.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isomfrk.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isomopf.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isomscr.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/iso9573-13/isotech.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/mathml/mmlalias.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/mathml/mmlextra.ent +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/mathml2-qname-1.mod +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/mathml2.dtd +%%WWWDIR%%/htdocs/sgml-lib/XX-MathML2-20031104/xhtml-math11-f.dtd +%%WWWDIR%%/htdocs/sgml-lib/catalog.xml +%%WWWDIR%%/htdocs/sgml-lib/sgml.dcl +%%WWWDIR%%/htdocs/sgml-lib/sgml.dtd +%%WWWDIR%%/htdocs/sgml-lib/sgml.soc +%%WWWDIR%%/htdocs/sgml-lib/xml.dcl +%%WWWDIR%%/htdocs/sgml-lib/xml.dtd +%%WWWDIR%%/htdocs/sgml-lib/xml.soc +%%WWWDIR%%/htdocs/source/index.html +%%WWWDIR%%/htdocs/style/base.css +%%WWWDIR%%/htdocs/style/base.css.gz +%%WWWDIR%%/htdocs/style/results.css +%%WWWDIR%%/htdocs/style/results.css.gz +%%WWWDIR%%/htdocs/todo.html +%%WWWDIR%%/htdocs/validator-news.xsl +%%WWWDIR%%/htdocs/whatsnew.html +@(,,0755) %%WWWDIR%%/httpd/cgi-bin/check +@(,,0755) %%WWWDIR%%/httpd/cgi-bin/sendfeedback.pl +@sample %%WWWDIR%%/httpd/conf/httpd.conf.sample +%%WWWDIR%%/httpd/conf/mime.types +%%WWWDIR%%/httpd/mod_perl/startup.pl +%%WWWDIR%%/share/templates/en_US/backtop.tmpl +%%WWWDIR%%/share/templates/en_US/docs_errors.tmpl +%%WWWDIR%%/share/templates/en_US/doctype_spiel.tmpl +%%WWWDIR%%/share/templates/en_US/earl_n3.tmpl +%%WWWDIR%%/share/templates/en_US/earl_xml.tmpl +%%WWWDIR%%/share/templates/en_US/error_loop.tmpl +%%WWWDIR%%/share/templates/en_US/error_loop_grouped.tmpl +%%WWWDIR%%/share/templates/en_US/error_messages.cfg +%%WWWDIR%%/share/templates/en_US/fatal-error.tmpl +%%WWWDIR%%/share/templates/en_US/feedback.tmpl +%%WWWDIR%%/share/templates/en_US/footer.tmpl +%%WWWDIR%%/share/templates/en_US/header.tmpl +%%WWWDIR%%/share/templates/en_US/http_401_authrequired.tmpl +%%WWWDIR%%/share/templates/en_US/iana_charset_blurb.tmpl +%%WWWDIR%%/share/templates/en_US/invalid.tmpl +%%WWWDIR%%/share/templates/en_US/json_output.tmpl +%%WWWDIR%%/share/templates/en_US/jumpbar.tmpl +%%WWWDIR%%/share/templates/en_US/opt_show_outline.tmpl +%%WWWDIR%%/share/templates/en_US/opt_show_source.tmpl +%%WWWDIR%%/share/templates/en_US/opt_show_tidy.tmpl +%%WWWDIR%%/share/templates/en_US/popup_charset.tmpl +%%WWWDIR%%/share/templates/en_US/popup_doctype.tmpl +%%WWWDIR%%/share/templates/en_US/prefill_html401.tmpl +%%WWWDIR%%/share/templates/en_US/prefill_xhtml10.tmpl +%%WWWDIR%%/share/templates/en_US/result.tmpl +%%WWWDIR%%/share/templates/en_US/soap_disabled.tmpl +%%WWWDIR%%/share/templates/en_US/soap_fault.tmpl +%%WWWDIR%%/share/templates/en_US/soap_output.tmpl +%%WWWDIR%%/share/templates/en_US/soap_warnings.tmpl +%%WWWDIR%%/share/templates/en_US/table.tmpl +%%WWWDIR%%/share/templates/en_US/ucn_fault.tmpl +%%WWWDIR%%/share/templates/en_US/ucn_output.tmpl +%%WWWDIR%%/share/templates/en_US/ucn_warnings.tmpl +%%WWWDIR%%/share/templates/en_US/valid.tmpl +%%WWWDIR%%/share/templates/en_US/warnings.tmpl