=================================================================== RCS file: /cvs/cvsweb/cvsweb.cgi,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -r1.26 -r1.27 --- cvsweb/cvsweb.cgi 1998/11/10 19:26:16 1.26 +++ cvsweb/cvsweb.cgi 1998/12/30 19:31:43 1.27 @@ -28,7 +28,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $fId: cvsweb.cgi,v 1.25 1998/08/24 16:41:42 wosch Exp $ +# $fId: cvsweb.cgi,v 1.26 1998/11/10 19:26:16 motoyuki Exp $ # @@ -153,7 +153,7 @@ if (!-d $cvsroot) { } } if ($#foo > 1) { - $intro .= "

\nThis script support the following CVS trees:\n"; + $intro .= "

\nThis script supports the following CVS trees:\n"; for($i = 0; $i <= $#foo; $i++) { $intro .= qq{} . ($CVSROOTdescr{$foo[$i]} ? @@ -327,7 +327,9 @@ sub htmlify { $string =~ s/>/>/g; if ($pr) { - $string =~ s|\bpr(\W+[a-z]+/\W*)(\d+)|$&|ig; + $string =~ s|\bpr(\W+[a-z]+/\W*)(\d+)|$&|ig || + $string =~ s|\bpr[:#]?\s*#?(\d+)\b|$&|ig || + $string =~ s!\b(bin|conf|docs|gnu|i386|kern|misc|ports)\/(\d+)\b!$&!ig; } $string;