- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 24 Oct 2006 06:43:26 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/htdocs
In directory hutz:/tmp/cvs-serv1885
Modified Files:
docs.css index.html whatsnew.html
Log Message:
porting all documentation and style (htdocs/...) changes from 0.7.3 to HEAD
Index: index.html
===================================================================
RCS file: /sources/public/validator/htdocs/index.html,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -d -r1.77 -r1.78
--- index.html 31 Mar 2006 05:48:01 -0000 1.77
+++ index.html 24 Oct 2006 06:43:23 -0000 1.78
@@ -2,7 +2,6 @@
--><!--#set var="date" value="\$Date$"
--><!--#set var="title" value="The W3C Markup Validation Service"
--><!--#set var="relroot" value="./"
---><!--#set var="feeds" value="1"
--><!--#include virtual="header.html" -->
<div id="head">
@@ -94,21 +93,17 @@
<div id="recent">
<h2>Recent Updates</h2>
<dl id="news">
+ <dt><a href="whatsnew.html#t2006-10-23">2006-10-23</a>: Markup Validator v0.7.3 Released</dt>
+ <dd>
+ Maintenance release of the Markup Validator, including fixes, updates, and adding an
+ experimental API to interface the validator with other programs and services.
+ </dd>
<dt><a href="whatsnew.html#t2006-02-20">2006-02-20</a>: Markup Validator v0.7.2 Released</dt>
<dd>
- <p>
- Releasing version 0.7.2 of the Markup Validator, a maintenance release
+ Maintenance release of the Markup Validator,
updating the codebase for compatibility issues with recent versions of the
Config::General perl module, as well as including minor fixes in
document types and character encoding support, and documentation.
- </p>
- </dd>
-
- <dt><a href="whatsnew.html#t2005-10-18">2005-10-18</a>: Markup Validator v0.7.1 Released</dt>
- <dd>
- Released version 0.7.1 of the Markup Validator, a maintenance release
- introducing performance enhancements and including minor fixes
- in the user interface and in the "Direct Input" validation results.
</dd>
</dl>
Index: whatsnew.html
===================================================================
RCS file: /sources/public/validator/htdocs/whatsnew.html,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- whatsnew.html 31 Mar 2006 05:48:02 -0000 1.55
+++ whatsnew.html 24 Oct 2006 06:43:23 -0000 1.56
@@ -2,7 +2,6 @@
--><!--#set var="date" value="\$Date$"
--><!--#set var="title" value="What's New at The W3C Markup Validation Service"
--><!--#set var="relroot" value="./"
---><!--#set var="feeds" value="1"
--><!--#include virtual="header.html" -->
<div class="doc"><a name="skip" id="skip"></a>
<h2>News for the W3C Markup Validator</h2>
@@ -19,6 +18,27 @@
</p>
</div>
<dl id="news">
+ <dt id="t2006-10-23">2006-10-23 — 0.7.3 Release:</dt>
+ <dd>
+ <p>Releasing version 0.7.3 of the W3C Markup Validator,
+ a maintenance release including fixes, updates, and includes an
+ experimental API to interface the validator with other programs and services.</p>
+ <p>Changes include:</p>
+ <ul>
+ <li>A new (experimental) <a href="docs/api.html">Web Services API</a> </li>
+ <li>The proprietary (and experimental) XML output format is deprecated</li>
+ <li>New Document type supported: XHTML-Print</li>
+ <li>New Character Encoding supported ISO-8859-11 (Thai)</li>
+ <li>Usability fix: better error messages for documents with no character encoding
+ declared, and for which the encoding fallback fails</li>
+ <li>HTTP Fix: Be more lenient about whitespace and linefeeds in Content-Type</li>
+ <li>Usability Fix: Adding the possibility of Doctype Override for SVG Document Types</li>
+ <li>Compatibility Fix for OpenSP 1.5.2</li>
+ <li>documentation updates and improvements</li>
+ <li>Improved Feedback mechanisms</li>
+ </ul>
+ </dd>
+
<dt id="t2006-02-20">2006-02-20 — 0.7.2 Release:</dt>
<dd>
<p>
Index: docs.css
===================================================================
RCS file: /sources/public/validator/htdocs/docs.css,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- docs.css 10 Nov 2005 06:59:13 -0000 1.8
+++ docs.css 24 Oct 2006 06:43:23 -0000 1.9
@@ -42,6 +42,10 @@
.doc div#toc ol li ol {
list-style-type: lower-alpha;
}
+.doc div#toc ol li ol li ol{
+ list-style-type: lower-roman;
+}
+
/* documentation - error explanations */
dl#expl dt code { /* headings for an error */
@@ -90,8 +94,21 @@
font-style: italic;
}
+/* reference tables */
-table.refdoc {border: 1px solid #888; }
-table.refdoc tr {}
-table.refdoc th { border: 1px solid #ccc; background-color: #eee; padding: .4em; text-align: left}
-table.refdoc td {border: 1px solid #ccc; text-align: left; padding: .4em;}
+.doc table {
+ border-collapse: collapse;
+ border-right: 1px solid #ccc;
+}
+.doc table td, .doc table th{
+ border-top: 0px solid #ddd;
+ border-bottom: 1px solid #ccc;
+ border-left: 1px solid #eee;
+ padding: 6px;
+ border-collapse: collapse;
+}
+.doc table th {
+ background-color: #eee;
+ color: #11111A;
+ border-right: 1px solid #ccc;
+}
\ No newline at end of file
Received on Tuesday, 24 October 2006 06:43:41 UTC