diff options
Diffstat (limited to 'httpd/cgi-bin/checklink.pl')
-rwxr-xr-x | httpd/cgi-bin/checklink.pl | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/httpd/cgi-bin/checklink.pl b/httpd/cgi-bin/checklink.pl index d65584e..4fd2b3b 100755 --- a/httpd/cgi-bin/checklink.pl +++ b/httpd/cgi-bin/checklink.pl @@ -5,9 +5,15 @@ # (c) 1999-2000 World Wide Web Consortium # based on Renaud Bruyeron's checklink.pl # -# $Id: checklink.pl,v 2.24 2000-01-26 23:04:59 hugo Exp $ +# $Id: checklink.pl,v 2.25 2000-01-28 21:19:17 hugo Exp $ # # This program is licensed under the W3C(r) License. +# +# See the CVSweb interface at: +# http://dev.w3.org/cvsweb/validator/httpd/cgi-bin/checklink.pl +# +# An online version is available at: +# http://validator.w3.org/checklink package W3C::CheckLink; require HTML::Parser; @@ -21,7 +27,7 @@ $| = 1; # Version info my $PROGRAM = 'W3C checklink'; -my $VERSION = q$Revision: 2.24 $ . '(c) 1999-2000 W3C'; +my $VERSION = q$Revision: 2.25 $ . '(c) 1999-2000 W3C'; my $REVISION; ($REVISION = $VERSION) =~ s/Revision: (\d+\.\d+) .*/$1/; # State of the program |