diff -u -r validator-HEAD/htdocs/config/validator.conf validator-DORWARD/htdocs/config/validator.conf
--- validator-HEAD/htdocs/config/validator.conf	2004-05-09 16:56:49.000000000 +0100
+++ validator-DORWARD/htdocs/config/validator.conf	2004-05-31 11:26:32.400113992 +0100
@@ -74,3 +74,10 @@
 # Comma separated list of protocols the validator is allowed to use for
 # retrieving documents.  The default is to allow http and https.
 #Allowed_Protocols   = data,http,https
+
+#
+# Whether to allow checking resources located at private IP addresses.
+# For example: for validating documents on a LAN
+Allow Private IPs = 0
+
+
diff -u -r validator-HEAD/httpd/cgi-bin/check validator-DORWARD/httpd/cgi-bin/check
--- validator-HEAD/httpd/cgi-bin/check	2004-05-21 16:42:50.000000000 +0100
+++ validator-DORWARD/httpd/cgi-bin/check	2004-05-31 11:28:42.823286656 +0100
@@ -1654,26 +1654,26 @@
     my $TAB = $level + 2;
 
     if ($prevlevel == 0) {
-      print "    <ul>\n";
+      $outline .=  "    <ul>\n";
     } else {
       if ($level < $prevlevel) {
-        print "</li>\n";
+        $outline .=  "</li>\n";
         for (my $i = $prevlevel; $i > $level; $i--) {
-          print "  " x ($i + 2), "</ul>\n";
-          print "  " x (($i + 2) - 1), "</li>\n";
+          $outline .=  ("  " x ($i + 2)) . "</ul>\n";
+          $outline .=  ("  " x (($i + 2) - 1)) . "</li>\n";
         }
       } elsif ($level == $prevlevel) {
-        print "</li>\n";
+        $outline .=  "</li>\n";
       } elsif ($level > $prevlevel) {
         if ($level - $prevlevel > 1) {
           foreach my $i (($prevlevel + 1) .. ($level - 1)) {
-            print "\n", "  " x ($i + 2), "<ul>\n", "  " x ($i + 2);
-            print qq(<li class="warning">A level $i heading is missing!);
+            $outline .=  "\n" . ("  " x ($i + 2)) . "<ul>\n" . ("  " x ($i + 2));
+            $outline .=  qq(<li class="warning">A level $i heading is missing!);
           }
-          print "\n", "  " x $TAB, "<ul>\n";
+          $outline .=  "\n" . ("  " x $TAB) . "<ul>\n";
         } else {
-          print "\n", "  " x $TAB;
-          print "<ul>\n";
+          $outline .=  "\n" . ("  " x $TAB);
+          $outline .=  "<ul>\n";
         }
       }
     }
@@ -1698,10 +1698,9 @@
     $heading =~ s/\s+/ /g;
     $heading = substr($heading, 1); # chop the leading '-' or ' '.
     $heading = &ent($heading);
-    $outline .= "    <li>$heading</li>\n";
+    $outline .= "    <li>$heading\n";
   }
-  $outline .= "    </ul>\n" x $level;
-
+  $outline .= "    </li></ul>\n" x $level;
   return $outline;
 }
 
Only in validator-DORWARD/httpd/cgi-bin: .check.swp
diff -u -r validator-HEAD/share/templates/en_US/footer.tmpl validator-DORWARD/share/templates/en_US/footer.tmpl
--- validator-HEAD/share/templates/en_US/footer.tmpl	2003-02-24 23:33:21.000000000 +0000
+++ validator-DORWARD/share/templates/en_US/footer.tmpl	2004-05-31 11:24:29.676770776 +0100
@@ -7,3 +7,5 @@
       Date: 2002/11/26 22:22:16 
       <!-- SSI Template Version: $Id: footer.tmpl,v 1.2 2003/02/24 23:33:21 ville Exp $ -->
     </address>
+  </body>
+</html>
diff -u -r validator-HEAD/share/templates/en_US/jumpbar.tmpl validator-DORWARD/share/templates/en_US/jumpbar.tmpl
--- validator-HEAD/share/templates/en_US/jumpbar.tmpl	2002-12-05 03:49:17.000000000 +0000
+++ validator-DORWARD/share/templates/en_US/jumpbar.tmpl	2004-05-31 11:24:29.677770624 +0100
@@ -9,7 +9,7 @@
         [<a title="Document Parse Tree" href="#parse">Parse&nbsp;Tree</a>]
   </TMPL_IF>
   <TMPL_IF NAME="opt_show_outline">
-        [<a title="Document Outline" href="#outline">Outline</a>]
+        [<a title="Document Outline" href="#outlineresult">Outline</a>]
   </TMPL_IF>
 </TMPL_IF>
       </p>
diff -u -r validator-HEAD/share/templates/en_US/opt_show_outline.tmpl validator-DORWARD/share/templates/en_US/opt_show_outline.tmpl
--- validator-HEAD/share/templates/en_US/opt_show_outline.tmpl	2002-12-02 01:53:16.000000000 +0000
+++ validator-DORWARD/share/templates/en_US/opt_show_outline.tmpl	2004-05-31 11:24:29.677770624 +0100
@@ -1,4 +1,4 @@
-  <div id="outline">
+  <div id="outlineresult">
     <h2>Outline</h2>
     <p>
       Below is an outline for this document, automatically generated from the
