link-checker commit: HTML-escape given URI in the "you cannot check such a URI" message.

changeset:   72:df41ab93d73a
user:        ville
date:        Sun May 16 21:58:40 2004 +0000
files:       bin/checklink
description:
HTML-escape given URI in the "you cannot check such a URI" message.


diff -r 01fe78ed6125 -r df41ab93d73a bin/checklink
--- a/bin/checklink	Fri May 14 01:37:16 2004 +0000
+++ b/bin/checklink	Sun May 16 21:58:40 2004 +0000
@@ -5,7 +5,7 @@
 # (c) 1999-2004 World Wide Web Consortium
 # based on Renaud Bruyeron's checklink.pl
 #
-# $Id: checklink,v 3.43 2004-05-10 18:41:28 ville Exp $
+# $Id: checklink,v 3.44 2004-05-16 21:58:40 ville Exp $
 #
 # This program is licensed under the W3C(r) Software License:
 #       http://www.w3.org/Consortium/Legal/copyright-software
@@ -112,7 +112,7 @@
   $PACKAGE       = 'W3C Link Checker';
   $PROGRAM       = 'W3C-checklink';
   $VERSION       = '3.9.3-dev';
-  my ($cvsver)   = q$Revision: 3.43 $ =~ /(\d+[\d\.]*\.\d+)/;
+  my ($cvsver)   = q$Revision: 3.44 $ =~ /(\d+[\d\.]*\.\d+)/;
   $REVISION      = sprintf('version %s [%s] (c) 1999-2004 W3C',
                            $VERSION, $cvsver);
   $AGENT         = sprintf('%s/%s [%s] %s',
@@ -2131,9 +2131,10 @@
 {
   my ($uri) = @_;
   &html_header($uri);
-  print "<h2>Forbidden</h2>
-<p>You cannot check such a URI (<code>$uri</code>).</p>
-";
+  printf(<<'EOF', &encode($uri));
+<h2>Forbidden</h2>
+<p>You cannot check such a URI (<code>%s</code>).</p>
+EOF
   &html_footer();
   exit;
 }

Received on Thursday, 5 August 2010 14:47:07 UTC