- From: Ville Skytta via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 16 Sep 2009 19:15:21 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/htdocs/docs
In directory hutz:/tmp/cvs-serv12235/htdocs/docs
Modified Files:
install.html install_win.html
Log Message:
Remove fuzzy matching/"Did you mean ..." implementation due to too many
incorrect suggestions emitted. We'd need to be aware of which attributes
and/or elements are valid in the checked document in the particular position;
flat lists of all HTML elements and attributes results in too many false
positives. String::Approx usage would have probably needed some work as
well, or perhaps it wasn't the best choice for the task to begin with.
Index: install.html
===================================================================
RCS file: /sources/public/validator/htdocs/docs/install.html,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -d -r1.54 -r1.55
--- install.html 5 Sep 2009 11:45:16 -0000 1.54
+++ install.html 16 Sep 2009 19:15:19 -0000 1.55
@@ -184,10 +184,6 @@
<dd>
The Perl binding for libxml2, used to check the syntax of XML-based document types.
</dd>
- <dt><a href="http://search.cpan.org/dist/String-Approx/">String-Approx</a></dt>
- <dd>
- A library for fuzzy matching of text used to make the validator suggest automated corrections.
- </dd>
</dl>
<h6>For reference: List of optional Perl module distributions</h6>
@@ -317,11 +313,6 @@
Maps character sets to conversion parameters for validator's
internal UTF-8 conversion.
</dd>
- <dt>eref.cfg</dt>
- <dd>
- Contains the mappings from element names to a URL path
- (relative to a configurable URL) for their definitions.
- </dd>
<dt>types.conf</dt>
<dd>
Maps MIME/HTTP Content-Types to an internal "document type" which
Index: install_win.html
===================================================================
RCS file: /sources/public/validator/htdocs/docs/install_win.html,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- install_win.html 5 Sep 2009 11:45:16 -0000 1.21
+++ install_win.html 16 Sep 2009 19:15:19 -0000 1.22
@@ -71,7 +71,6 @@
<li>XML-NamespaceSupport</li>
<li>XML-SAX</li>
<li>XML-LibXML-Common</li>
- <li>String-Approx</li>
</ul>
<p>...and the following are optional:</p>
<ul>
@@ -357,12 +356,6 @@
#
#
-# Maps element names to URLs.
-<Elements>
- Include eref.cfg
-</Elements>
-
-#
# Main document Type Registry; contains all information on the types
# of documents we support and how they are processed.
<Types>
Received on Wednesday, 16 September 2009 19:15:31 UTC