Update to 1.104.1.59.

- Put a text field on each directory view that allows users to jump
  directly to an arbitrary module, which can be specified either
  by a full module/file path or by a module alias.
- Don't rely on perl's $ENV{PATH} search.  Search commands for
  itself and specify them by full paths
- Miscellaneous fixes.
This commit is contained in:
naddy 2001-01-06 13:29:24 +00:00
parent c66756107c
commit f6d290a9a9
4 changed files with 21 additions and 21 deletions

View File

@ -1,7 +1,7 @@
# $OpenBSD: Makefile,v 1.7 2001/01/03 00:51:40 naddy Exp $
# $OpenBSD: Makefile,v 1.8 2001/01/06 13:29:24 naddy Exp $
# $FreeBSD: ports/devel/cvsweb/Makefile,v 1.28 2000/09/23 20:48:45 knu Exp $
DISTNAME= cvsweb-1.104.1.55
DISTNAME= cvsweb-1.104.1.59
CATEGORIES= devel www
NEED_VERSION= 1.340
HOMEPAGE= http://stud.fh-heilbronn.de/~zeller/cgi/cvsweb.cgi/

View File

@ -1,3 +1,3 @@
MD5 (cvsweb-1.104.1.55.tar.gz) = 673b28f85d9c69803124331017b91c6a
RMD160 (cvsweb-1.104.1.55.tar.gz) = 68ab1d6c87a498300caad9fb689a801743d20be4
SHA1 (cvsweb-1.104.1.55.tar.gz) = eed08cbf079c034495ecbfbd31328cbbdc5c2e79
MD5 (cvsweb-1.104.1.59.tar.gz) = 3323f28a68b3695587a6bfaa16663a35
RMD160 (cvsweb-1.104.1.59.tar.gz) = 292fc16ab74e10f30d9c6ef3f9df3afdfe6596e0
SHA1 (cvsweb-1.104.1.59.tar.gz) = 697d3397d76e673b5ca453ae44ba391fc10469ec

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-cvsweb_cgi,v 1.5 2001/01/03 00:51:41 naddy Exp $
--- cvsweb.cgi.orig Tue Jan 2 22:59:29 2001
+++ cvsweb.cgi Tue Jan 2 23:08:01 2001
@@ -138,7 +138,7 @@ use File::Basename;
$OpenBSD: patch-cvsweb_cgi,v 1.6 2001/01/06 13:29:25 naddy Exp $
--- cvsweb.cgi.orig Fri Jan 5 01:00:47 2001
+++ cvsweb.cgi Sat Jan 6 00:20:28 2001
@@ -145,7 +145,7 @@ use File::Basename;
# Locations to search for user configuration, in order:
for (
(dirname $0) . '/cvsweb.conf',
- '/usr/local/etc/cvsweb.conf'
"$mydir/cvsweb.conf",
- '/usr/local/etc/cvsweb/cvsweb.conf'
+ '%%SYSCONFDIR%%/cvsweb/cvsweb.conf'
) {
if (defined($_) && -r $_) {
($config) = /(.*)/; # untaint
$config = $_;

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-cvsweb_conf,v 1.3 2001/01/03 00:51:41 naddy Exp $
--- cvsweb.conf.orig Tue Jan 2 23:10:01 2001
+++ cvsweb.conf Wed Jan 3 00:04:41 2001
@@ -200,7 +200,7 @@ EOT
$OpenBSD: patch-cvsweb_conf,v 1.4 2001/01/06 13:29:25 naddy Exp $
--- cvsweb.conf.orig Wed Jan 3 09:57:49 2001
+++ cvsweb.conf Sat Jan 6 00:21:53 2001
@@ -192,7 +192,7 @@ EOT
# These default icons are coming with apache.
# If these icons are too large, check out the miniicons in the
# icons/ directory; they have a width/height of 16/16
@ -10,7 +10,7 @@ $OpenBSD: patch-cvsweb_conf,v 1.3 2001/01/03 00:51:41 naddy Exp $
# format: TEXT ICON-URL width height
%ICONS = (
back => [ ("[BACK]", "$iconsdir/back.gif", 20, 22) ],
@@ -320,7 +320,7 @@ $inputTextSize = 12;
@@ -312,7 +312,7 @@ $inputTextSize = 12;
# cvsweb to guess the correct mime-type on
# checkout; you can use the mime.types from
# apache here:
@ -19,16 +19,16 @@ $OpenBSD: patch-cvsweb_conf,v 1.3 2001/01/03 00:51:41 naddy Exp $
# quick mime-type lookup; maps file-suffices to
# mime-types for displaying checkouts in the browser.
@@ -392,7 +392,7 @@ $edit_option_form = (not $dirtable);
@@ -384,7 +384,7 @@ $edit_option_form = (not $dirtable);
# cvs, rlog, rcsdiff
# gzip (if you enable $allow_compress)
# tar,rm (if you enable $allow_tar)
-$ENV{'PATH'} = '/bin:/usr/bin:/usr/local/bin';
+$ENV{'PATH'} = '/bin:/usr/bin';
-$command_path = '/bin:/usr/bin:/usr/local/bin';
+$command_path = '/bin:/usr/bin';
# If you have files which automatically refers to other files
# (such as HTML) then this allows you to browse the checked
@@ -451,7 +451,7 @@ $allow_tar = '';
@@ -443,7 +443,7 @@ $allow_tar = '';
# GNU tar has some useful options against unexpected errors.
# Options to pass to cvs(1).