From fc37cb633ccba54ee4d3882249cca3de1ddf38d3 Mon Sep 17 00:00:00 2001 From: Gavin Atkinson Date: Sat, 16 Aug 2014 21:07:09 +0000 Subject: [PATCH] In query-pr.cgi, stop linking to cvsweb.cgi as it no longer exists. --- en_US.ISO8859-1/htdocs/cgi/query-pr.cgi | 5 ----- 1 file changed, 5 deletions(-) diff --git a/en_US.ISO8859-1/htdocs/cgi/query-pr.cgi b/en_US.ISO8859-1/htdocs/cgi/query-pr.cgi index 18dc13fff6..c01e00e295 100755 --- a/en_US.ISO8859-1/htdocs/cgi/query-pr.cgi +++ b/en_US.ISO8859-1/htdocs/cgi/query-pr.cgi @@ -69,7 +69,6 @@ use constant EXIT_NOPATCH => 3; our $valid_category = '[a-z0-9][A-Za-z0-9-_]{1,25}'; our $valid_pr = '\d{1,8}'; -our $cvsweb_url = 'http://www.FreeBSD.org/cgi/cvsweb.cgi/'; our $stylesheet = "$main::hsty_base/layout/css/query-pr.css"; our $iscgi = defined $ENV{'SCRIPT_NAME'}; @@ -609,10 +608,6 @@ sub Linkify $html =~ s/((?:https?|ftps?):\/\/[^\s\/]+\/[][\w=.,\'\(\)\~\?\!\&\/\%\$\{\}:;@#+-]*)/$1<\/a>/g; - # CVS files - $html =~ - s/^RCS file: (\/home\/[A-Za-z0-9]+\/(.*?)),v$/RCS file: $1<\/a>,v/mg; - return $html; }