- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 18 Oct 2006 09:47:05 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/htdocs/docs
In directory hutz:/tmp/cvs-serv17823/htdocs/docs
Modified Files:
Tag: validator-0_7-branch
api.html index.html
Log Message:
Changes in documentation and stylesheet to accommodate for API doc.
Index: index.html
===================================================================
RCS file: /sources/public/validator/htdocs/docs/index.html,v
retrieving revision 1.13
retrieving revision 1.13.2.1
diff -u -d -r1.13 -r1.13.2.1
--- index.html 12 Jul 2005 06:07:09 -0000 1.13
+++ index.html 18 Oct 2006 09:47:02 -0000 1.13.2.1
@@ -49,20 +49,22 @@
<h3 id="docs_experts">Experts only</h3>
<dl>
- <dt id="doc_sgml"><a href="sgml.html">SGML (basics) and the Markup Validator</a></dt>
- <dd>
- <p>
- A quick introduction to SGML concepts as they apply to the
- Validator with links to further information.
- </p>
- </dd>
<dt id="doc_source"><a href="../source/">Download / Source</a></dt>
<dd><p>Information on source code availability and download instructions for the Markup Validator.</p></dd>
<dt id="doc_install"><a href="install.html">Installation Guide</a></dt>
<dd><p>Step-by step guide for the installation of the Markup Validator
on <em>your</em> server.</p></dd>
+ <dt id="api"><a href="api.html">Markup Validator Web Service API</a></dt>
+ <dd><p>Use the validator from your applications with the <em>experimental</em> Markup Validator Web service, and its open API.</p></dd>
<dt id="doc_devel"><a href="devel.html">Developer Information</a></dt>
<dd><p>Information for programmers wanting to play with the validator's code, and/or contribute to its development.</p></dd>
+ <dt id="doc_sgml"><a href="sgml.html">SGML, Validation and the Markup Validator</a></dt>
+ <dd>
+ <p>
+ An introduction to concepts of SGML, DTDs and formal validation, and how they apply to the
+ Validator, with links to further information.
+ </p>
+ </dd>
</dl>
</div>
Index: api.html
===================================================================
RCS file: /sources/public/validator/htdocs/docs/api.html,v
retrieving revision 1.3.2.2
retrieving revision 1.3.2.3
diff -u -d -r1.3.2.2 -r1.3.2.3
--- api.html 13 Oct 2006 07:16:19 -0000 1.3.2.2
+++ api.html 18 Oct 2006 09:47:02 -0000 1.3.2.3
@@ -8,6 +8,13 @@
<h2>Markup Validator Web Service API<br />
SOAP 1.2 validation interface documentation</h2>
+<p>Interface applications with the Markup Validator through its <strong>experimental</strong> API. </p>
+<p><strong>Note</strong>: Please be considerate in using this shared, free resource.
+ Consider <a href="install.html">Installing your own instance of the validator</a>
+ for smooth and fast operation. Excessive use of the W3C Validation Service
+ will be blocked.</p>
+
+
<h3 id="TableOfContents">Table of Contents</h3>
<div id="toc">
@@ -31,7 +38,7 @@
<p>If you want to use W3c's public validation server, use the parameters below
in conjunction with the following base URI:<br />
<kbd>http://validator.w3.org/check</kbd> <br />
-(replace with the address of your own server if you want to call a private instance of the validator.</p>
+(replace with the address of your own server if you want to call a private instance of the validator)</p>
<p><strong>Note</strong>: If you wish to call the validator programmatically for a batch of documents,
please make sure that your script will <code>sleep</code> for <strong>at least 1 second</strong>
@@ -208,9 +215,9 @@
<p><strong>Note</strong>: <code>warnings</code>, <code>warningcount</code>,
<code>warninglist</code> and <code>warning</code> are similar to, respectively,
<code><a href="#soap12_errors">errors</a></code>,
-<code><a href="soap12_errorcount">errorcount</a></code>,
-<code><a href="soap12_errorlist">errorlist</a></code> and
-<code><a href="soap12_error">error</a></code>.
+<code><a href="#soap12_errorcount">errorcount</a></code>,
+<code><a href="#soap12_errorlist">errorlist</a></code> and
+<code><a href="#soap12_error">error</a></code>.
</p>
<h4 id="soap12message">SOAP1.2 atomic message (error or warning) format reference</h4>
<p>As seen as the example above, the children of the <code><a href="soap12_error">error</a></code>
Received on Wednesday, 18 October 2006 09:49:47 UTC