- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 28 Jun 2007 10:54:54 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/share/templates/en_US In directory hutz:/tmp/cvs-serv16517 Modified Files: warnings.tmpl Log Message: completely rewriting the warning for parse mode fallback, taking into account: * whether a mime type was passed to the validator or not * whether the doctype was not recognized, or recognized but unknown Index: warnings.tmpl =================================================================== RCS file: /sources/public/validator/share/templates/en_US/warnings.tmpl,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- warnings.tmpl 28 Jun 2007 02:50:37 -0000 1.26 +++ warnings.tmpl 28 Jun 2007 10:54:52 -0000 1.27 @@ -155,9 +155,14 @@ <TMPL_IF NAME="W06"> <li class="msg_warn" id="W06"><span class="err_type"><img src="images/info_icons/warning.png" alt="Warning" title="Warning" /></span> <span class="msg">Unable to Determine Parse Mode!</span> - <p>Neither the MIME Media Type (<code><TMPL_VAR NAME="W06_mime" ESCAPE="HTML"></code>) - nor the document type for this document are sufficient to reliably choose - a parsing mode. Falling back to SGML mode.</p></li> + <p>It was not possible to reliably choose a parsing mode for this document, because:</p> + <ul> + <TMPL_IF NAME="W06_mime"><li> + the MIME Media Type (<code><TMPL_VAR NAME="W06_mime" ESCAPE="HTML"></code>) can be used for XML or SGML document types</li><TMPL_ELSE><li>in <em>Direct Input</em> mode, no MIME Media Type is served to the validator</li></TMPL_IF> + <TMPL_IF NAME="w06_doctype"><li>the Document Type (<code><TMPL_VAR NAME="w06_doctype" ESCAPE="HTML"></code>) is not in the validator's catalog</li><TMPL_ELSE><li>No known Document Type could be detected</li></TMPL_IF> + <li>No XML declaration (<abbr>e.g</abbr> <code><?xml version="1.0"?></code>) could be found at the beginning of the document.</li> + </ul> + <p>The validator is falling back to SGML mode.</p></li> </TMPL_IF> <TMPL_IF NAME="W07"> <li class="msg_warn" id="W07"><span class="err_type"><img src="images/info_icons/warning.png" alt="Warning" title="Warning" /></span> <span class="msg">Contradictory Parse Modes Detected!</span>
Received on Thursday, 28 June 2007 10:54:58 UTC