ba571ac441
From: Jasper Lievisse Adriaanse * Fix sample URL for NetBSD man pages.
61 lines
1.5 KiB
Plaintext
61 lines
1.5 KiB
Plaintext
$OpenBSD: patch-cvsweb_cgi,v 1.12 2006/02/04 17:01:36 naddy Exp $
|
|
--- cvsweb.cgi.orig Thu Sep 26 22:56:05 2002
|
|
+++ cvsweb.cgi Sat Feb 4 17:33:35 2006
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/perl -wT
|
|
+#!/usr/bin/perl -w
|
|
#
|
|
# cvsweb - a CGI interface to CVS trees.
|
|
#
|
|
@@ -157,7 +157,7 @@ use File::Basename ();
|
|
|
|
# == EDIT this ==
|
|
# Locations to search for user configuration, in order:
|
|
-for ("$mydir/cvsweb.conf", '/usr/local/etc/cvsweb/cvsweb.conf') {
|
|
+for ("$mydir/cvsweb.conf", '%%CONFDIR%%/cvsweb/cvsweb.conf') {
|
|
if (defined($_) && -r $_) {
|
|
$config = $_;
|
|
last;
|
|
@@ -193,7 +193,7 @@ $tmpdir = defined($ENV{TMPDIR}) ? $ENV{T
|
|
$LOG_FILESEPARATOR = q/^={77}$/;
|
|
$LOG_REVSEPARATOR = q/^-{28}$/;
|
|
|
|
-@DIFFTYPES = qw(h H u c s);
|
|
+@DIFFTYPES = qw(h H u c);
|
|
@DIFFTYPES{@DIFFTYPES} = (
|
|
{
|
|
'descr' => 'colored',
|
|
@@ -215,11 +215,6 @@ $LOG_REVSEPARATOR = q/^-{28}$/;
|
|
'opts' => ['-c'],
|
|
'colored' => 0,
|
|
},
|
|
- {
|
|
- 'descr' => 'side by side',
|
|
- 'opts' => ['--side-by-side', '--width=164'],
|
|
- 'colored' => 0,
|
|
- },
|
|
);
|
|
|
|
@LOGSORTKEYS = qw(cvs date rev);
|
|
@@ -2013,20 +2008,6 @@ sub doDiff($$$$$$) {
|
|
|
|
my @difftype = @{$difftype->{'opts'}};
|
|
my $human_readable = $difftype->{'colored'};
|
|
-
|
|
- # apply special options
|
|
- if ($showfunc) {
|
|
- push @difftype, '-p' if $f ne 's';
|
|
-
|
|
- my ($re1, $re2);
|
|
-
|
|
- while (($re1, $re2) = each %funcline_regexp) {
|
|
- if ($fullname =~ /$re1/) {
|
|
- push @difftype, '-F', $re2;
|
|
- last;
|
|
- }
|
|
- }
|
|
- }
|
|
|
|
if ($human_readable) {
|
|
if ($hr_ignwhite) {
|