validator/share/templates/en_US jumpbar.tmpl,1.13,1.14 result.tmpl,1.15,1.16 warnings.tmpl,1.47,1.48

Update of /sources/public/validator/share/templates/en_US
In directory hutz:/tmp/cvs-serv13094/share/templates/en_US

Modified Files:
	jumpbar.tmpl result.tmpl warnings.tmpl 
Log Message:
Warn about tidy errors, keep tidy checkbox state with valid documents.

Index: result.tmpl
===================================================================
RCS file: /sources/public/validator/share/templates/en_US/result.tmpl,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- result.tmpl	5 Sep 2009 11:45:17 -0000	1.15
+++ result.tmpl	12 Sep 2009 15:57:50 -0000	1.16
@@ -24,9 +24,9 @@
         <TMPL_INCLUDE NAME="opt_show_source.tmpl">
       </TMPL_IF>
 
-      <TMPL_IF NAME="opt_show_tidy">
+      <TMPL_IF NAME="opt_show_tidy"><TMPL_IF NAME="tidy_output">
         <TMPL_INCLUDE NAME="opt_show_tidy.tmpl">
-      </TMPL_IF>
+      </TMPL_IF></TMPL_IF>
 
       <TMPL_IF NAME="opt_show_outline">
         <TMPL_INCLUDE NAME="opt_show_outline.tmpl">

Index: warnings.tmpl
===================================================================
RCS file: /sources/public/validator/share/templates/en_US/warnings.tmpl,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- warnings.tmpl	28 May 2009 20:01:49 -0000	1.47
+++ warnings.tmpl	12 Sep 2009 15:57:51 -0000	1.48
@@ -1,5 +1,5 @@
 <h3 id="preparse_warnings">Notes and Potential Issues</h3>
-<p>The following notes and warnings highlight missing or conflicting information which caused the validator to perform some guesswork prior to validation. If the guess or fallback is incorrect, it could make validation results entirely incoherent. It is <em>highly recommended</em> 
+<p>The following notes and warnings highlight missing or conflicting information which caused the validator to perform some guesswork prior to validation, or other things affecting the output below. If the guess or fallback is incorrect, it could make validation results entirely incoherent. It is <em>highly recommended</em> 
 to check these potential issues, and, if necessary, fix them and re-validate the document.</p>
 <ol id="warnings">
 
@@ -486,6 +486,7 @@
     <p>Validation was performed as if the DOCTYPE for <TMPL_VAR NAME="W25_dtd" ESCAPE="HTML"> was present. If this automatic detection is not correct, <a href="http://www.w3.org/QA/2002/04/valid-dtd-list.html" title="W3C QA - Recommended list of DTDs you can use in your Web document">adding a DOCTYPE declaration</a> will help validate without ambiguity.</p>
   </li>
 </TMPL_IF>
+
 <TMPL_IF NAME="W26">
 <li class="msg_warn" id="W26"><p><span class="err_type"><img src="images/info_icons/warning.png" alt="Warning" title="Warning" /></span> <span class="msg">Mismatch between Public and System identifiers in the DOCTYPE declaration</span></p>
     <p>This document uses an inconsistent DOCTYPE declaration. 
@@ -530,6 +531,20 @@
   </li>
 </TMPL_IF>
 
+<TMPL_IF NAME="W29">
+  <li class="msg_warn" id="W29"><p><span class="err_type"><img src="images/info_icons/warning.png" alt="Warning" title="Warning" /></span> <span class="msg">Error cleaning up markup with HTML Tidy.</span></p>
+    <p>
+      An error occurred while cleaning up markup with HTML Tidy.  The reported
+      error was:<br />
+      <TMPL_VAR NAME="W29_msg" ESCAPE="HTML">
+    </p>
+    <p>
+      It is unlikely that this is a problem with the checked document, but
+      rather a software or configuration issue with the validator.
+    </p>
+  </li>
+</TMPL_IF>
+
 
 
 <TMPL_IF NAME="W@@">

Index: jumpbar.tmpl
===================================================================
RCS file: /sources/public/validator/share/templates/en_US/jumpbar.tmpl,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- jumpbar.tmpl	5 Sep 2009 11:45:17 -0000	1.13
+++ jumpbar.tmpl	12 Sep 2009 15:57:50 -0000	1.14
@@ -17,9 +17,9 @@
   <TMPL_IF NAME="opt_show_source">
           <li><a title="Listing of Source Input" href="#source">Source Listing</a></li>
   </TMPL_IF>
-  <TMPL_IF NAME="opt_show_tidy">
+  <TMPL_IF NAME="opt_show_tidy"><TMPL_IF NAME="tidy_output">
           <li><a title="Listing of cleaned-up Source Input" href="#tidy">Tidy Source</a></li>
-  </TMPL_IF>
+  </TMPL_IF></TMPL_IF>
   <TMPL_IF NAME="opt_show_outline">
           <li><a title="Document Outline" href="#outlineresult">Outline</a></li>
   </TMPL_IF>

Received on Saturday, 12 September 2009 15:58:06 UTC