validator/httpd/cgi-bin check,1.305.2.94,1.305.2.95

Update of /sources/public/validator/httpd/cgi-bin
In directory hutz:/tmp/cvs-serv29815

Modified Files:
      Tag: validator-0_6_0-branch
	check 
Log Message:
adding links to explanation of re-validation options

Index: check
===================================================================
RCS file: /sources/public/validator/httpd/cgi-bin/check,v
retrieving revision 1.305.2.94
retrieving revision 1.305.2.95
diff -u -d -r1.305.2.94 -r1.305.2.95
--- check	5 May 2004 22:27:42 -0000	1.305.2.94
+++ check	6 May 2004 04:21:27 -0000	1.305.2.95
@@ -346,7 +346,7 @@
   $size = 50 if $size > 50;
 
   if (URI::eq("$File->{Opt}->{URI}", $File->{URI})) {
-    &add_table($File, qq(<label title="Address of Page to Validate (accesskey: 1)" for="uri">Address</label>),
+    &add_table($File, qq(<label title="Address of Page to Validate (accesskey: 1)" for="uri"><a class="formoptions" href="docs/users.html#QuickStart" title="How to use this form">Address</a></label>),
                [1, 2, '<input accesskey="1" type="text" id="uri" name="uri" size="' . $size
              . '" value="' . &ent($File->{Opt}->{URI}) . '" />']);
   } else {
@@ -588,7 +588,7 @@
   &add_table($File, 'Encoding', &ent($File->{Charset}->{Use}));
 } else {
   &add_table($File,
-             qq(<label accesskey="2" title="Character Encoding (accesskey: 2)" for="charset">Encoding</label>),
+             qq(<label accesskey="2" title="Character Encoding (accesskey: 2)" for="charset"><a class="formoptions" href="docs/users.html#option-charset" title="Explanation of the Encoding options">Encoding</a></label>),
              &ent($File->{Charset}->{Use}), &popup_charset);
 }
 
@@ -784,7 +784,7 @@
 if ($File->{'Is Upload'}) {
   &add_table($File, 'Doctype', $File->{Version});
 } else {
-  &add_table($File, qq(<label accesskey="3" for="doctype" title="Document Type (accesskey: 3)">Doctype</label>),
+  &add_table($File, qq(<label accesskey="3" for="doctype" title="Document Type (accesskey: 3)"><a class="formoptions" href="docs/users.html#option-doctype" title="Explanation for the Doctype options">Doctype</a></label>),
              $File->{Version}, &popup_doctype);
 }
 
@@ -975,36 +975,36 @@
             q(<label title="Show Page Source (accesskey: 5)" for="ss"><input type="checkbox" value="1" id="ss" name="ss" ) .
             q(accesskey="5" ) .
             ($File->{Opt}->{'Show Source'}    ? q(checked="checked" ) : '') .
-            q(/>Show&nbsp;Source</label>),
+            q(/><a class="formoptions" href="docs/users.html#option-ss" title="Explanation for the 'Show source' option">Show&nbsp;Source</a></label>),
             # Outline?
             q(<label title="Show an Outline of the document (accesskey: 6)" for="soutline"><input type="checkbox" value="1" id="soutline" name="outline" ) .
             q(accesskey="6" ) .
             ($File->{Opt}->{'Outline'}        ? q(checked="checked" ) : '') .
-            q(/>Outline</label>)
+            q(/><a class="formoptions" href="docs/users.html#option-outline" title="explanation for the 'Show outline' option">Show Outline</a></label>)
            );
   add_table($Options, '',
             # Parse tree?
             q(<label title="Show Parse Tree (accesskey: 7)" for="sp"><input type="checkbox" value="1" id="sp" name="sp" ) .
             q(accesskey="7" ) .
             ($File->{Opt}->{'Show Parsetree'} ? q(checked="checked" ) : '') .
-            q(/>Parse&nbsp;Tree</label>),
+            q(/><a class="formoptions" href="docs/users.html#option-sp" title="Explanation for the 'Show parse tree' option">Parse&nbsp;Tree</a></label>),
             # No attributes?
             q(<label title="Exclude Attributes from Parse Tree (accesskey: 8)" for="noatt"><input type="checkbox" value="1" id="noatt" name="noatt" ) .
             q(accesskey="8" ) .
             ($File->{Opt}->{'No Attributes'}  ? q(checked="checked" ) : '') .
-            q(/>...no&nbsp;attributes</label>)
+            q(/><a class="formoptions" href="docs/users.html#option-noatt" title="Explanation for the 'exclude attributes' option">...no&nbsp;attributes</a></label>)
            );
   add_table($Options, '',
             # Validate error pages?
              q(<label title="Validate also pages for which the HTTP status code indicates an error" for="No200"><input type="checkbox" value="1" id="No200" name="No200" ) .
              # @@@ accesskey missing
              ($File->{Opt}->{'No200'}         ? q(checked="checked" ) : '') .
-             q(/>Validate&nbsp;error&nbsp;pages</label>),
+             q(/><a class="formoptions" href="docs/users.html#option-no200" title="Explanation for the 'Validate error pages' option">Validate&nbsp;error&nbsp;pages</a></label>),
             # Verbose output?
              q(<label title="Show Verbose Output" for="verbose"><input type="checkbox" value="1" id="verbose" name="verbose" ) .
              # @@@ accesskey missing
              ($File->{Opt}->{'Verbose'}         ? q(checked="checked" ) : '') .
-             q(/>Verbose&nbsp;Output</label>)
+             q(/><a class="formoptions" href="docs/users.html#option-verbose" title="Explanation for the 'Verbose output' option">Verbose&nbsp;Output</a></label>)
            );
 #  add_table($Options, '',
 #            # Fussy Parse Mode?

Received on Thursday, 6 May 2004 00:21:42 UTC