summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhugo <hugo@localhost>2000-02-08 23:11:20 +0000
committerhugo <hugo@localhost>2000-02-08 23:11:20 +0000
commitb4f852d1e7eefbd6f084050a1afb0bfaa1ab293b (patch)
tree3ca15f0b39f4af67e5cd7cb67319c6a30bb34a6b
parent6de9c5e334ec7e8132eedb1741401fd101b01a0f (diff)
downloadmarkup-validator-b4f852d1e7eefbd6f084050a1afb0bfaa1ab293b.zip
markup-validator-b4f852d1e7eefbd6f084050a1afb0bfaa1ab293b.tar.gz
markup-validator-b4f852d1e7eefbd6f084050a1afb0bfaa1ab293b.tar.bz2
Changed the default for HTML version to "Show redirects"
-rwxr-xr-xhttpd/cgi-bin/LinkChecker.pl8
-rwxr-xr-xhttpd/cgi-bin/checklink.pl8
2 files changed, 8 insertions, 8 deletions
diff --git a/httpd/cgi-bin/LinkChecker.pl b/httpd/cgi-bin/LinkChecker.pl
index 5ac439b..2b3db38 100755
--- a/httpd/cgi-bin/LinkChecker.pl
+++ b/httpd/cgi-bin/LinkChecker.pl
@@ -5,7 +5,7 @@
# (c) 1999-2000 World Wide Web Consortium
# based on Renaud Bruyeron's checklink.pl
#
-# $Id: LinkChecker.pl,v 1.28 2000-02-08 21:48:34 hugo Exp $
+# $Id: LinkChecker.pl,v 1.29 2000-02-08 23:11:20 hugo Exp $
#
# This program is licensed under the W3C(r) License.
#
@@ -29,7 +29,7 @@ $| = 1;
# Version info
my $PROGRAM = 'W3C LinkChecker';
-my $VERSION = q$Revision: 1.28 $ . '(c) 1999-2000 W3C';
+my $VERSION = q$Revision: 1.29 $ . '(c) 1999-2000 W3C';
my $REVISION; ($REVISION = $VERSION) =~ s/Revision: (\d+\.\d+) .*/$1/;
# State of the program
@@ -78,7 +78,7 @@ if ($#ARGV >= 0) {
$_summary = 1;
} else {
}
- if (! $query->param('redirects')) {
+ if ($query->param('hide_redirects')) {
$_redirects = 0;
}
$_html = 1;
@@ -1183,7 +1183,7 @@ sub print_form() {
<p>
<input type=\"checkbox\" name=\"summary\"> Summary only
&nbsp;
- <input type=\"checkbox\" name=\"redirects\" checked> Show redirects
+ <input type=\"checkbox\" name=\"hide_redirects\"> Hide redirects
</p>
<p><input type=\"submit\" name=\"submit\" value=\"Check\"></p>
</form>
diff --git a/httpd/cgi-bin/checklink.pl b/httpd/cgi-bin/checklink.pl
index 243444d..a0ec665 100755
--- a/httpd/cgi-bin/checklink.pl
+++ b/httpd/cgi-bin/checklink.pl
@@ -5,7 +5,7 @@
# (c) 1999-2000 World Wide Web Consortium
# based on Renaud Bruyeron's checklink.pl
#
-# $Id: checklink.pl,v 2.28 2000-02-08 21:48:34 hugo Exp $
+# $Id: checklink.pl,v 2.29 2000-02-08 23:11:20 hugo Exp $
#
# This program is licensed under the W3C(r) License.
#
@@ -29,7 +29,7 @@ $| = 1;
# Version info
my $PROGRAM = 'W3C checklink';
-my $VERSION = q$Revision: 2.28 $ . '(c) 1999-2000 W3C';
+my $VERSION = q$Revision: 2.29 $ . '(c) 1999-2000 W3C';
my $REVISION; ($REVISION = $VERSION) =~ s/Revision: (\d+\.\d+) .*/$1/;
# State of the program
@@ -78,7 +78,7 @@ if ($#ARGV >= 0) {
$_summary = 1;
} else {
}
- if (! $query->param('redirects')) {
+ if ($query->param('hide_redirects')) {
$_redirects = 0;
}
$_html = 1;
@@ -1183,7 +1183,7 @@ sub print_form() {
<p>
<input type=\"checkbox\" name=\"summary\"> Summary only
&nbsp;
- <input type=\"checkbox\" name=\"redirects\" checked> Show redirects
+ <input type=\"checkbox\" name=\"hide_redirects\"> Hide redirects
</p>
<p><input type=\"submit\" name=\"submit\" value=\"Check\"></p>
</form>