diff options
author | link <link@localhost> | 2002-08-20 01:51:31 +0000 |
---|---|---|
committer | link <link@localhost> | 2002-08-20 01:51:31 +0000 |
commit | 68888af368a57b04686cde3a230c168157a8ec89 (patch) | |
tree | e5eb3bec6befac28cd9ec8779750a257fdf8d95b /htdocs/docs | |
parent | aa56a2d0812a367de272abe2c1e9890fc4af2090 (diff) | |
download | markup-validator-68888af368a57b04686cde3a230c168157a8ec89.zip markup-validator-68888af368a57b04686cde3a230c168157a8ec89.tar.gz markup-validator-68888af368a57b04686cde3a230c168157a8ec89.tar.bz2 |
Merging to HEAD from validator-0_6_0 branch.
This will be validator-0_6_0b1c1 (Beta 1, Candidate 1).
Diffstat (limited to 'htdocs/docs')
-rwxr-xr-x | htdocs/docs/devel.html | 22 | ||||
-rwxr-xr-x | htdocs/docs/errors.html | 121 | ||||
-rwxr-xr-x | htdocs/docs/help.html | 11 | ||||
-rwxr-xr-x | htdocs/docs/index.html | 11 | ||||
-rwxr-xr-x | htdocs/docs/sgml.html | 13 | ||||
-rwxr-xr-x | htdocs/docs/users.html | 11 | ||||
-rwxr-xr-x | htdocs/docs/why.html | 9 |
7 files changed, 103 insertions, 95 deletions
diff --git a/htdocs/docs/devel.html b/htdocs/docs/devel.html index b28c1f7..b52aa04 100755 --- a/htdocs/docs/devel.html +++ b/htdocs/docs/devel.html @@ -1,9 +1,10 @@ -<!--#set var="revision" value="\$Id: devel.html,v 1.5 2002-02-11 22:09:10 link Exp $" ---><!--#set var="date" value="\$Date: 2002-02-11 22:09:10 $" +<!--#set var="revision" value="\$Id: devel.html,v 1.6 2002-08-20 01:51:24 link Exp $" +--><!--#set var="date" value="\$Date: 2002-08-20 01:51:24 $" --><!--#set var="title" value="Developer Documentation for The W3C HTML Validation Service" ---><!--#include virtual="/header.html" --> +--><!--#set var="relroot" value="../" +--><!--#include virtual="../header.html" --> - <p> + <p id="skip"> The W3C HTML Validation Service consists of an SGML Parser, an SGML catalog, a CGI program and it's configuration files. In addition it relies on a moderately large set of Perl modules for it's operation. @@ -39,7 +40,7 @@ for the "check" CGI script. There is a bunch of lines that of the form "use Foo::Bar" where each "Foo::Bar" represents a module. Most modules can be found on <a href="http://www.cpan.org/">CPAN</a>. The following - list was complete when CVS spit out: <code>$Date: 2002-02-11 22:09:10 $</code>. <tt>:-)</tt> + list was complete when CVS spit out: <code>$Date: 2002-08-20 01:51:24 $</code>. <tt>:-)</tt> </p> <dl> <dt><code>LWP::UserAgent</code></dt> @@ -103,10 +104,11 @@ Maps MIME/HTTP Content-Types to an internal "document type" which is used for treating HTML, XML, and XHTML in different ways. </dd> - <dt>"check.cfg"</dt> + <dt>check.cfg</dt> <dd> - We don't have one yet, but we intend to. Maybe you'll write the - support for us? <tt>:-)</tt> + Main configuration file. Gives various parameters (such as the + address of the maintainer and the URL for the "Home Page") and + the locations of the other configuration files and mapping tables. </dd> </dl> </div> @@ -114,7 +116,7 @@ <h2>TODO</h2> <p> The TODO list for the Validator is online at - <URL:<a href="/todo.html">http://validator.w3.org/todo.html</a>>. + <URL:<a href="../todo.html">http://validator.w3.org/todo.html</a>>. This is probably the best place to start. </p> <p> @@ -131,6 +133,6 @@ </p> </div> -<!--#include virtual="/footer.html" --> +<!--#include virtual="../footer.html" --> </body> </html> diff --git a/htdocs/docs/errors.html b/htdocs/docs/errors.html index de2fcb5..5a47355 100755 --- a/htdocs/docs/errors.html +++ b/htdocs/docs/errors.html @@ -1,18 +1,19 @@ -<!--#set var="revision" value="\$Id: errors.html,v 1.17 2002-02-11 22:09:10 link Exp $" ---><!--#set var="date" value="\$Date: 2002-02-11 22:09:10 $" +<!--#set var="revision" value="\$Id: errors.html,v 1.18 2002-08-20 01:51:24 link Exp $" +--><!--#set var="date" value="\$Date: 2002-08-20 01:51:24 $" --><!--#set var="title" value="Error Explanations for The W3C HTML Validation Service" ---><!--#include virtual="/header.html" --> +--><!--#set var="relroot" value="../" +--><!--#include virtual="../header.html" --> - <p> + <p id="skip"> These error explanations were originally written by Scott Bigham, they are used here with his permission. </p> <dl> - <dt><a id="undef-id" name="dup-id">"ID "FOO" already defined"</a></dt> + <dt><a id="undef-id" name="dup-id">“<code>ID ‘<var>FOO</var>’ already defined</code>”</a></dt> <dd> <p> - You have defined the id/name "FOO" more then once. You will also get + You have defined the id/name ‘<var>FOO</var>’ more then once. You will also get a message telling you where it was first defined. Be aware that this message may be the result of an ambiguity in the specification. While user-agents must treat values of the id attribute @@ -23,7 +24,7 @@ for further information. </p> </dd> - <dt><a id="unterm-comment-1" name="unterm-comment-1">"entity end not allowed in comment"</a></dt> + <dt><a id="unterm-comment-1" name="unterm-comment-1">“<code>entity end not allowed in comment</code>”</a></dt> <dd> <p> Unterminated comment. The position indicator points to the very end of @@ -32,7 +33,7 @@ `<code><!--</code>' in the document. </p> </dd> - <dt><a id="unterm-comment-2" name="unterm-comment-2">"name start character invalid: only s and comment allowed in comment declaration"</a></dt> + <dt><a id="unterm-comment-2" name="unterm-comment-2">“<code>name start character invalid: only s and comment allowed in comment declaration</code>”</a></dt> <dd> <p> Unterminated comments again. This time, you have a case like: @@ -48,7 +49,7 @@ allowed. </p> </dd> - <dt><a id="bad-comment" name="bad-comment">"unknown declaration type `FOO'"</a></dt> + <dt><a id="bad-comment" name="bad-comment">“<code>unknown declaration type ‘<var>FOO</var>’</code>”</a></dt> <dd> <p> Most likely an invalid comment of the form <code><!invalid @@ -57,7 +58,7 @@ declaration. </p> </dd> - <dt><a id="attr-quoted" name="attr-quoted">"an attribute value must be a literal unless it contains only name characters"</a></dt> + <dt><a id="attr-quoted" name="attr-quoted">“<code>an attribute value must be a literal unless it contains only name characters</code>”</a></dt> <dd> <p> You have an attribute whose value needs to be in quotes. If an @@ -67,7 +68,7 @@ standpoint, but some browsers don't recognize them). </p> </dd> - <dt><a id="attr-char" name="attr-char">"character `X' not allowed in attribute specification list"</a></dt> + <dt><a id="attr-char" name="attr-char">“<code>character `X' not allowed in attribute specification list</code>”</a></dt> <dd> <p> The validator has found a character inside an HTML tag that isn't @@ -93,7 +94,7 @@ quote. </p> </dd> - <dt><a id="name-length" name="name-length">"length of attribute value must not exceed LITLEN less NORMSEP (1022)"</a></dt> + <dt><a id="name-length" name="name-length">“<code>length of attribute value must not exceed LITLEN less NORMSEP (1022)</code>”</a></dt> <dd> <p> This usually occurs in conjunction with the @@ -115,10 +116,10 @@ this case, the <code>"joe.gif"</code> line. </p> </dd> - <dt><a id="undef-tag" name="undef-tag">"element `FOO' undefined"</a></dt> + <dt><a id="undef-tag" name="undef-tag">“<code>element ‘<var>FOO</var>’ undefined</code>”</a></dt> <dd> <p> - You've used an unknown tag (represented here by FOO). Make sure the + You've used an unknown tag (represented here by ‘<var>FOO</var>’). Make sure the DTD indicated by your DOCTYPE actually includes this element. </p> <p> @@ -127,7 +128,7 @@ and friends) you must use the "Transitional" DTD. </p> </dd> - <dt><a id="not-allowed" name="not-allowed">"document type does not allow element "FOO" here"</a></dt> + <dt><a id="not-allowed" name="not-allowed">“<code>document type does not allow element ‘<var>FOO</var>’ here</code>”</a></dt> <dd> <p> Straightforward, but not terribly informative. There are a @@ -137,7 +138,7 @@ <ul> <li> Using an unknown tag. In this case, the next error will be - <a href="#undef-tag">"element `FOO' undefined"</a>. + <a href="#undef-tag">“element ‘<var>FOO</var>’ undefined"</a>. </li> <li> Using a tag in the wrong place. For instance, @@ -150,12 +151,12 @@ </li> </ul> </dd> - <dt><a id="not-contained" name="not-contained">document type does not allow element "FOO" here; assuming missing "BAR" start-tag</a></dt> + <dt><a id="not-contained" name="not-contained">“document type does not allow element ‘<var>FOO</var>’ here; assuming missing ‘<var>BAR</var>’ start-tag</a>’</dt> <dd> <p> Similar to the <a href="#not-allowed">previous error</a>, but more - specific: in this case, you have a FOO element that is not contained - in a BAR element when FOO is not allowed outside of BAR. Some of the + specific: in this case, you have a ‘<var>FOO</var>’ element that is not contained + in a ‘<var>BAR</var>’ element when ‘<var>FOO</var>’ is not allowed outside of ‘<var>BAR</var>’. Some of the most common causes of this error are: </p> <ul> @@ -195,12 +196,12 @@ </li> </ul> <p> - The validator has inserted a BAR start tag where it thinks there needs + The validator has inserted a ‘<var>BAR</var>’ start tag where it thinks there needs to be one; it will probably complain later on that <a href="#no-end-tag">the corresponding end tag is also missing</a>. </p> </dd> - <dt><a id="attr-undef" name="attr-undef">"there is no attribute `FOO' for this element (in this HTML version)"</a></dt> + <dt><a id="attr-undef" name="attr-undef">“<code>there is no attribute ‘<var>FOO</var>’ for this element (in this HTML version)</code>”</a></dt> <dd> <p> You have used an attribute with an element that is defined not to have @@ -209,7 +210,7 @@ appropriately. </p> </dd> - <dt><a id="undef-attr-val" name="undef-attr-val">"`FOO' is not a member of the group specified in the declared value of this attribute"</a></dt> + <dt><a id="undef-attr-val" name="undef-attr-val">“<code>‘<var>FOO</var>’ is not a member of the group specified in the declared value of this attribute</code>”</a></dt> <dd> <p> Similar to the <a href="#attr-undef">previous error</a>; this time, @@ -237,7 +238,7 @@ JOE.GIF as an attribute of <code><IMG></code>. </p> </dd> - <dt><a id="bad-attr-char" name="bad-attr-char">"syntax of attribute value does not conform to declared value"</a></dt> + <dt><a id="bad-attr-char" name="bad-attr-char">“<code>syntax of attribute value does not conform to declared value</code>”</a></dt> <dd> <p> Yet another attribute error; this time, the attribute in question was @@ -252,7 +253,7 @@ which means that <code><TD WIDTH="50%"></code> is not allowed. </p> </dd> - <dt><a id="attr-bad-name" name="attr-bad-name">"value of attribute "FOO" invalid: "#" cannot start a name"</a></dt> + <dt><a id="attr-bad-name" name="attr-bad-name">“<code>value of attribute ‘<var>FOO</var>’ invalid: "#" cannot start a name</code>”</a></dt> <dd> <p> A special case of <a href="#bad-attr-char">the previous error</a>; the @@ -260,7 +261,7 @@ which must begin with a letter. </p> </dd> - <dt><a id="bad-abbrev-attr" name="bad-abbrev-attr">"`FOO' is not a member of a group specified for any attribute"</a></dt> + <dt><a id="bad-abbrev-attr" name="bad-abbrev-attr">“<code>‘<var>FOO</var>’ is not a member of a group specified for any attribute</code>”</a></dt> <dd> <p> Another attribute error, this time referring to an "abbreviated" @@ -283,7 +284,7 @@ error, referring to the "attribute value" <code>JOE.GIF</code>. </p> </dd> - <dt><a id="attr-missing" name="attr-missing">"required attribute `FOO' not specified"</a></dt> + <dt><a id="attr-missing" name="attr-missing">“<code>required attribute ‘<var>FOO</var>’ not specified</code>”</a></dt> <dd> <p> You left off a required attribute of the indicated element. The most @@ -294,18 +295,18 @@ meaningful value here. </p> </dd> - <dt><a id="no-end-tag" name="no-end-tag">"end tag for `FOO' omitted, but its declaration does not permit this"</a></dt> + <dt><a id="no-end-tag" name="no-end-tag">“<code>end tag for ‘<var>FOO</var>’ omitted, but its declaration does not permit this</code>”</a></dt> <dd> <p> - You forgot to close something. FOO is the element you forgot to close + You forgot to close something. ‘<var>FOO</var>’ is the element you forgot to close (and the next message, `start tag was here' points to the particular - instance of FOO in question); the positional indicator points to where + instance of ‘<var>FOO</var>’ in question); the positional indicator points to where the validator expected you to close the element. There are a few common ways that this can happen: </p> <ul> <li> - You've put something inside the FOO element that isn't allowed + You've put something inside the ‘<var>FOO</var>’ element that isn't allowed there. For instance, <code><UL><LI><H4>fake font change</H4></UL></code> will cause this error, since headers aren't allowed inside <code><UL></code>'s; the @@ -315,8 +316,8 @@ <li> Interlocked elements. For instance, <code><B><I>nope</B></I></code> will cause - this error. HTML requires that you close elements ``inside-out'' --- - that is, the last element you opened is the first element you should + this error. HTML requires that you close elements “inside-out” + — that is, the last element you opened is the first element you should close. In this example, you'd have to close the <code><I></code> before the <code><B></code>. </li> @@ -330,7 +331,7 @@ </li> <li> Having unadorned text where the validator was expecting a - sub-element of FOO. For instance, <code><DL>fake + sub-element of ‘<var>FOO</var>’. For instance, <code><DL>fake indent</DL></code> will produce this error, since inside a <code><DL></code>, the validator only expects to see <code><DT></code>'s and <code><DD></code>'s. @@ -355,10 +356,10 @@ quote all attribute values. </p> </dd> - <dt><a id="floating-close" name="floating-close">"end tag for element "FOO" which is not open"</a></dt> + <dt><a id="floating-close" name="floating-close">“<code>end tag for element ‘<var>FOO</var>’ which is not open</code>”</a></dt> <dd> <p> - The validator found an end tag, represented here by FOO, without a + The validator found an end tag, represented here by ‘<var>FOO</var>’, without a corresponding start tag. This frequently occurs in conjunction with the <a href="#no-end-tag">previous error</a>. For instance, given <code><B><I>nope</B></I></code>, the validator @@ -382,24 +383,24 @@ or <code><IMG></code>. </p> </dd> - <dt><a id="omitted-content" name="omitted-content">"end tag for `FOO' which is not finished"</a></dt> + <dt><a id="omitted-content" name="omitted-content">“<code>end tag for ‘<var>FOO</var>’ which is not finished</code>”</a></dt> <dd> <p> - You have a FOO element, but you have omitted some required sub-element + You have a ‘<var>FOO</var>’ element, but you have omitted some required sub-element of it. For instance, a <code>TABLE</code> with no <code>TR</code>'s would cause this error. </p> </dd> - <dt><a id="no-start-tag" name="no-start-tag">"start tag for `FOO' omitted, but its declaration does not permit this"</a></dt> + <dt><a id="no-start-tag" name="no-start-tag">“<code>start tag for ‘<var>FOO</var>’ omitted, but its declaration does not permit this</code>”</a></dt> <dd> <p> - The validator expected you to start a FOO element at the indicated + The validator expected you to start a ‘<var>FOO</var>’ element at the indicated point. This probably means you've put unadorned text somewhere it isn't allowed; for instance, <code><UL>fake indent</UL></code> will cause this error. </p> </dd> - <dt><a id="bad-entity" name="bad-entity">"unknown entity `FOO'"</a></dt> + <dt><a id="bad-entity" name="bad-entity">“<code>unknown entity ‘<var>FOO</var>’</code>”</a></dt> <dd> <p> The validator has found an entity (something like @@ -445,7 +446,7 @@ </li> </ul> </dd> - <dt><a id="bad-char" name="bad-char">"non SGML character number ###"</a></dt> + <dt><a id="bad-char" name="bad-char">“<code>non SGML character number ###</code>”</a></dt> <dd> <p> You've used an illegal character in your text. HTML uses the standard @@ -474,7 +475,7 @@ command to save the document without formatting information. </p> </dd> - <dt><a id="unicode-char" name="unicode-char">"`####' is not a valid character number"</a></dt> + <dt><a id="unicode-char" name="unicode-char">“<code>`####' is not a valid character number</code>”</a></dt> <dd> <p> You'll get several occurrences of this error if you use the Cougar @@ -493,7 +494,7 @@ pretty much ignore them. </p> </dd> - <dt><a id="bad-pub-id" name="bad-pub-id">"cannot generate system identifier for entity `HTML'"</a></dt> + <dt><a id="bad-pub-id" name="bad-pub-id">“<code>cannot generate system identifier for entity `HTML'</code>”</a></dt> <dd> <p> Your <code>DOCTYPE</code> declaration contains a public identifier @@ -508,22 +509,22 @@ work from, and thus could not validate your document. </p> </dd> - <dt><a id="missing-subel" name="missing-subel">"missing a required sub-element of `FOO'"</a></dt> + <dt><a id="missing-subel" name="missing-subel">“<code>missing a required sub-element of ‘<var>FOO</var>’</code>”</a></dt> <dd> <p> - The element "FOO" is defined to <em>require</em> one or more + The element ‘<var>FOO</var>’ is defined to <em>require</em> one or more sub-elements. One example is TR which requires one or more TD or TH elements. </p> </dd> - <dt><a id="start-tag" name="start-tag">"start tag was here"</a></dt> + <dt><a id="start-tag" name="start-tag">“<code>start tag was here</code>”</a></dt> <dd> <p> Not an error, but rather a pointer to the start tag of the element the previous error referred to. </p> </dd> - <dt><a id="utf8-bom" name="utf8-bom">"UTF-8 'BOM' detected and removed"</a></dt> + <dt><a id="utf8-bom" name="utf8-bom">“<code>UTF-8 'BOM' detected and removed</code>”</a></dt> <dd> <p> The document contained an UTF-8 encoded Unicode Byte Order Mark (BOM) @@ -537,7 +538,7 @@ is required and handled by all conforming XML Processors. </p> </dd> - <dt><a id="text-not-allowed" name="text-not-allowed">" text is not allowed here; try wrapping the text in a more descriptive container"</a></dt> + <dt><a id="text-not-allowed" name="text-not-allowed">“<code> text is not allowed here; try wrapping the text in a more descriptive container</code>”</a></dt> <dd> <p> The document contained bare text where an element was expected. @@ -551,7 +552,7 @@ appears to be plain text, outside any element, to an SGML parser. </p> </dd> - <dt><a id="unkn-att-val" name="unkn-att-val">" value of attribute "FOO" cannot be "BAR"; must be one of "FOO", "BAR", "BAZ""</a></dt> + <dt><a id="unkn-att-val" name="unkn-att-val">“<code> value of attribute ‘<var>FOO</var>’ cannot be ‘<var>BAR</var>’; must be one of ‘<var>FOO</var>’, ‘<var>BAR</var>’, ‘<var>BAZ</var>’</code>”</a></dt> <dd> <p> An attribute was specified to contain one of a set of predefined @@ -560,7 +561,7 @@ legal values for this attribute. </p> </dd> - <dt><a id="no-attr-end" name="no-attr-end">"character FOO not allowed in attribute specification list possibly caused by a missing quotation mark ending a previous attribute value"</a></dt> + <dt><a id="no-attr-end" name="no-attr-end">“<code>character ‘<var>FOO</var>’ not allowed in attribute specification list possibly caused by a missing quotation mark ending a previous attribute value</code>”</a></dt> <dd> <p> A character that is illegal in the attribute list for a particular @@ -568,7 +569,7 @@ a missing quote character on a previous attribute value. </p> </dd> - <dt><a id="dup-attr" name="dup-attr">"duplicate specification of attribute "FOO""</a></dt> + <dt><a id="dup-attr" name="dup-attr">“<code>duplicate specification of attribute ‘<var>FOO</var>’</code>”</a></dt> <dd> <p> You have specified an attribute more than once. For instance, you've @@ -576,7 +577,7 @@ "img" tag. </p> </dd> - <dt><a id="invalid-attr-val" name="invalid-attr-val">"invalid attribute value"</a></dt> + <dt><a id="invalid-attr-val" name="invalid-attr-val">“<code>invalid attribute value</code>”</a></dt> <dd> <p> The value of this attribute is not a legal value for attributes. For @@ -584,7 +585,7 @@ from errors related to illegal values for a specific attribute. </p> </dd> - <dt><a id="attr-spec-nmtoken" name="attr-spec-nmtoken">"an attribute specification must start with a name or name token"</a></dt> + <dt><a id="attr-spec-nmtoken" name="attr-spec-nmtoken">“<code>an attribute specification must start with a name or name token</code>”</a></dt> <dd> <p> An attribute name (and some attribute values) must start with one of @@ -595,7 +596,7 @@ (usually a typo in a common attribute name). </p> </dd> - <dt><a id="inval-comment" name="inval-comment">"invalid comment declaration; check your comment syntax"</a></dt> + <dt><a id="inval-comment" name="inval-comment">“<code>invalid comment declaration; check your comment syntax</code>”</a></dt> <dd> <p> There is a syntax error in an SGML Comment Declaration. This may be @@ -604,12 +605,12 @@ "comment declaration started here". </p> </dd> - <dt><a id="assuming-missing-starttag" name="assuming-missing-starttag">"element "FOO" not allowed here; assuming missing "BAR" start-tag"</a></dt> + <dt><a id="assuming-missing-starttag" name="assuming-missing-starttag">“<code>element ‘<var>FOO</var>’ not allowed here; assuming missing ‘<var>BAR</var>’ start-tag</code>”</a></dt> <dd> <p> - The referenced element "FOO" isn't allowed in the context it occurs - in, but it would be if it was wrapped in a "BAR" element. The - Validator has assumed that you have forgotten to add a "BAR" + The referenced element ‘<var>FOO</var>’ isn't allowed in the context it occurs + in, but it would be if it was wrapped in a ‘<var>BAR</var>’ element. The + Validator has assumed that you have forgotten to add a ‘<var>BAR</var>’ starttag and continued validation as if it was there. You should check if this is the case and insert the proper tag. </p> @@ -620,9 +621,9 @@ <p> </p> </dd> - </dl> --> + </dl> -<!--#include virtual="/footer.html" --> +<!--#include virtual="../footer.html" --> </body> </html> diff --git a/htdocs/docs/help.html b/htdocs/docs/help.html index 45da9f5..681d6bf 100755 --- a/htdocs/docs/help.html +++ b/htdocs/docs/help.html @@ -1,9 +1,10 @@ -<!--#set var="revision" value="\$Id: help.html,v 1.5 2002-02-11 22:09:10 link Exp $" ---><!--#set var="date" value="\$Date: 2002-02-11 22:09:10 $" +<!--#set var="revision" value="\$Id: help.html,v 1.6 2002-08-20 01:51:24 link Exp $" +--><!--#set var="date" value="\$Date: 2002-08-20 01:51:24 $" --><!--#set var="title" value="Help for The W3C HTML Validation Service" ---><!--#include virtual="/header.html" --> +--><!--#set var="relroot" value="../" +--><!--#include virtual="../header.html" --> - <div> + <div id="skip"> <h2 id="what-is-it">What does The Validator do?</h2> The Validator is sort of like <code>lint</code> for C. It compares your HTML document to the defined syntax of HTML and reports any @@ -72,6 +73,6 @@ </p> </div> -<!--#include virtual="/footer.html" --> +<!--#include virtual="../footer.html" --> </body> </html> diff --git a/htdocs/docs/index.html b/htdocs/docs/index.html index fa2b522..bafb755 100755 --- a/htdocs/docs/index.html +++ b/htdocs/docs/index.html @@ -1,9 +1,10 @@ -<!--#set var="revision" value="\$Id: index.html,v 1.5 2002-02-11 22:09:10 link Exp $" ---><!--#set var="date" value="\$Date: 2002-02-11 22:09:10 $" +<!--#set var="revision" value="\$Id: index.html,v 1.6 2002-08-20 01:51:24 link Exp $" +--><!--#set var="date" value="\$Date: 2002-08-20 01:51:24 $" --><!--#set var="title" value="Documentation Index for The W3C HTML Validation Service" ---><!--#include virtual="/header.html" --> +--><!--#set var="relroot" value="../" +--><!--#include virtual="../header.html" --> - <p> + <p id="skip"> Here you'll find the documentation for The W3C HTML Validation Service. What little there is of it; additions eagerly accepted! <tt>:-)</tt> </p> @@ -25,6 +26,6 @@ <dd><p>Information about the Validator for programmers.</p></dd> </dl> -<!--#include virtual="/footer.html" --> +<!--#include virtual="../footer.html" --> </body> </html> diff --git a/htdocs/docs/sgml.html b/htdocs/docs/sgml.html index 22b4dc3..fa85ee1 100755 --- a/htdocs/docs/sgml.html +++ b/htdocs/docs/sgml.html @@ -1,8 +1,9 @@ -<!--#set var="revision" value="\$Id: sgml.html,v 1.8 2002-02-11 22:09:10 link Exp $" ---><!--#set var="date" value="\$Date: 2002-02-11 22:09:10 $" +<!--#set var="revision" value="\$Id: sgml.html,v 1.9 2002-08-20 01:51:24 link Exp $" +--><!--#set var="date" value="\$Date: 2002-08-20 01:51:24 $" --><!--#set var="title" value="Introduction To SGML for The W3C HTML Validation Service" ---><!--#include virtual="/header.html" --> - <div> +--><!--#set var="relroot" value="../" +--><!--#include virtual="../header.html" --> + <div id="skip"> <h2 id="sgml">What is SGML?</h2> <p> SGML stands for Standard Generalized Markup Language. This is @@ -72,7 +73,7 @@ correct public identifier; otherwise, The Validator will use the wrong DTD, or will be unable to find a DTD at all, and will produce a huge list of absolutely meaningless errors. The Validator's - <a href="/sgml-lib/catalog">public identifier catalog</a> lists all the public + <a href="../sgml-lib/catalog">public identifier catalog</a> lists all the public identifiers The Validator recognizes for various types of HTML; of those, the following public identifiers are most likely to be widely recognized: @@ -95,7 +96,7 @@ The Validator. </p> </div> -<!--#include virtual="/footer.html" --> +<!--#include virtual="../footer.html" --> </body> </html> diff --git a/htdocs/docs/users.html b/htdocs/docs/users.html index 31d5c2a..0479887 100755 --- a/htdocs/docs/users.html +++ b/htdocs/docs/users.html @@ -1,10 +1,11 @@ -<!--#set var="revision" value="\$Id: users.html,v 1.5 2002-02-11 22:09:10 link Exp $" ---><!--#set var="date" value="\$Date: 2002-02-11 22:09:10 $" +<!--#set var="revision" value="\$Id: users.html,v 1.6 2002-08-20 01:51:24 link Exp $" +--><!--#set var="date" value="\$Date: 2002-08-20 01:51:24 $" --><!--#set var="title" value="User Documentation for The W3C HTML Validation Service" ---><!--#include virtual="/header.html" --> +--><!--#set var="relroot" value="../" +--><!--#include virtual="../header.html" --> <div id="Quickstart"> - <h2>QuickStart</h2> + <h2 id="skip">QuickStart</h2> <p> Just type (or Cut&Paste) the URL for the page you want to validate into the text field on the form and press the "Validate this page" @@ -142,6 +143,6 @@ </p> </div> -<!--#include virtual="/footer.html" --> +<!--#include virtual="../footer.html" --> </body> </html> diff --git a/htdocs/docs/why.html b/htdocs/docs/why.html index d1973a0..672aeaf 100755 --- a/htdocs/docs/why.html +++ b/htdocs/docs/why.html @@ -1,7 +1,8 @@ -<!--#set var="revision" value="\$Id: why.html,v 1.3 2002-02-11 22:09:10 link Exp $" ---><!--#set var="date" value="\$Date: 2002-02-11 22:09:10 $" +<!--#set var="revision" value="\$Id: why.html,v 1.4 2002-08-20 01:51:24 link Exp $" +--><!--#set var="date" value="\$Date: 2002-08-20 01:51:24 $" --><!--#set var="title" value="Why Validate?" ---><!--#include virtual="/header.html" --> +--><!--#set var="relroot" value="../" +--><!--#include virtual="../header.html" --> <div id="skip" class="colophon"> <h2>Why Validate?</h2> <p> @@ -132,6 +133,6 @@ </dd> </dl> </div> -<!--#include virtual="/footer.html" --> +<!--#include virtual="../footer.html" --> </body> </html> |