diff options
author | ot <ot@localhost> | 2008-11-20 14:10:58 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2008-11-20 14:10:58 +0000 |
commit | f5dbf3d29fecc2de03d20e51f75b7d2b40760906 (patch) | |
tree | 7d0d15fca92faaf792848f4367ea6db8a8239ab5 /htdocs | |
parent | 954d167266fba00c8d4b80550b2ad839b23d3d45 (diff) | |
download | markup-validator-f5dbf3d29fecc2de03d20e51f75b7d2b40760906.zip markup-validator-f5dbf3d29fecc2de03d20e51f75b7d2b40760906.tar.gz markup-validator-f5dbf3d29fecc2de03d20e51f75b7d2b40760906.tar.bz2 |
explaining the sample config for html5 engine integration, and adding a note in the installation documentation about it, too
Diffstat (limited to 'htdocs')
-rw-r--r-- | htdocs/config/validator.conf | 7 | ||||
-rwxr-xr-x | htdocs/docs/install.html | 13 |
2 files changed, 16 insertions, 4 deletions
diff --git a/htdocs/config/validator.conf b/htdocs/config/validator.conf index e48f344..6788c04 100644 --- a/htdocs/config/validator.conf +++ b/htdocs/config/validator.conf @@ -1,7 +1,7 @@ # # Main Configuration File for the W3C Markup Validation Service. # -# $Id: validator.conf,v 1.30 2008-10-11 10:17:17 emiret Exp $ +# $Id: validator.conf,v 1.31 2008-11-20 14:10:58 ot 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*', @@ -131,6 +131,9 @@ Languages = en </Tips> <External> -# Enable checking documents via external services +## 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/ </External> diff --git a/htdocs/docs/install.html b/htdocs/docs/install.html index 4d8bdfe..3b360f5 100755 --- a/htdocs/docs/install.html +++ b/htdocs/docs/install.html @@ -1,5 +1,5 @@ -<!--#set var="revision" value="\$Id: install.html,v 1.39 2008-11-18 21:16:24 ot Exp $" ---><!--#set var="date" value="\$Date: 2008-11-18 21:16:24 $" +<!--#set var="revision" value="\$Id: install.html,v 1.40 2008-11-20 14:10:58 ot Exp $" +--><!--#set var="date" value="\$Date: 2008-11-20 14:10:58 $" --><!--#set var="title" value="Installation Documentation for The W3C Markup Validation Service" --><!--#set var="relroot" value="../" --><!--#include virtual="../header.html" --> @@ -264,6 +264,15 @@ Allow Private IPs = yes </pre> </li> + <li><p>If you want to check documents with the (external and experimental) HTML5 conformance + checker, you may want to <a href="http://about.validator.nu/">install the validator.nu</a> + engine and enable it with the following in your validator.conf file:</p> +<pre> +<External> +## Enable checking documents via external services +HTML5 = http://localhost:8888/html5/ +</External> +</pre> <li><p>You may now test the validator script, before plugging it into the Web Server:</p> <pre> # cd /usr/local/validator/ |