diff options
author | hugo <hugo@localhost> | 2000-01-20 23:00:35 +0000 |
---|---|---|
committer | hugo <hugo@localhost> | 2000-01-20 23:00:35 +0000 |
commit | be48d9e91b7f8998e8e1ee911236179deb9ff00e (patch) | |
tree | 2199a8e9bb5e18e15e0ec7afc4649e9be14babee | |
parent | 33a90a2e56da5aabe7541f5a4994ae349b3ede49 (diff) | |
download | markup-validator-be48d9e91b7f8998e8e1ee911236179deb9ff00e.zip markup-validator-be48d9e91b7f8998e8e1ee911236179deb9ff00e.tar.gz markup-validator-be48d9e91b7f8998e8e1ee911236179deb9ff00e.tar.bz2 |
Some more explanation
-rwxr-xr-x | httpd/cgi-bin/LinkChecker.pl | 6 | ||||
-rwxr-xr-x | httpd/cgi-bin/checklink.pl | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/httpd/cgi-bin/LinkChecker.pl b/httpd/cgi-bin/LinkChecker.pl index e9e3fe9..b226f0e 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.19 2000-01-20 22:48:52 hugo Exp $ +# $Id: LinkChecker.pl,v 1.20 2000-01-20 23:00:35 hugo Exp $ # # This program is licensed under the W3C License. @@ -21,7 +21,7 @@ $| = 1; # Version info my $PROGRAM = 'W3C LinkChecker'; -my $VERSION = q$Revision: 1.19 $ . '(c) 1999-2000 W3C'; +my $VERSION = q$Revision: 1.20 $ . '(c) 1999-2000 W3C'; my $REVISION; ($REVISION = $VERSION) =~ s/Revision: (\d+\.\d+) .*/$1/; # State of the program @@ -885,7 +885,7 @@ sub links_summary(\%,\%,\%) { if ($_html) { print('<p>'); } - printf('List of broken %slinks:', $_redirects ? 'and redirected ' : ''); + printf('<p>List of broken %slinks:<br>(Broken fragments appear in red)</p>', $_redirects ? 'and redirected ' : ''); if ($_html) { print("</p>\n<table border=\"1\">\n<tr><td><b>Location</b></td><td><b>Code</b></td><td><b>Fragment</b></td><td><b>Lines</b></td></tr>"); } diff --git a/httpd/cgi-bin/checklink.pl b/httpd/cgi-bin/checklink.pl index 2bb5545..e500bee 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.19 2000-01-20 22:48:52 hugo Exp $ +# $Id: checklink.pl,v 2.20 2000-01-20 23:00:35 hugo Exp $ # # This program is licensed under the W3C License. @@ -21,7 +21,7 @@ $| = 1; # Version info my $PROGRAM = 'W3C checklink'; -my $VERSION = q$Revision: 2.19 $ . '(c) 1999-2000 W3C'; +my $VERSION = q$Revision: 2.20 $ . '(c) 1999-2000 W3C'; my $REVISION; ($REVISION = $VERSION) =~ s/Revision: (\d+\.\d+) .*/$1/; # State of the program @@ -885,7 +885,7 @@ sub links_summary(\%,\%,\%) { if ($_html) { print('<p>'); } - printf('List of broken %slinks:', $_redirects ? 'and redirected ' : ''); + printf('<p>List of broken %slinks:<br>(Broken fragments appear in red)</p>', $_redirects ? 'and redirected ' : ''); if ($_html) { print("</p>\n<table border=\"1\">\n<tr><td><b>Location</b></td><td><b>Code</b></td><td><b>Fragment</b></td><td><b>Lines</b></td></tr>"); } |