=================================================================== RCS file: /cvs/cvsweb/Attic/cvsweb.conf,v retrieving revision 3.20 retrieving revision 3.25 diff -u -p -r3.20 -r3.25 --- cvsweb/Attic/cvsweb.conf 2001/01/11 02:00:55 3.20 +++ cvsweb/Attic/cvsweb.conf 2001/07/06 09:44:28 3.25 @@ -4,26 +4,26 @@ # # (c) 1998-1999 H. Zeller # 1999 H. Nordstrom -# 2000 A. MUSHA +# 2000-2001 A. MUSHA # based on work by Bill Fenner -# $zId: cvsweb.conf,v 3.27 2000/07/27 10:16:39 kcoar Exp $ -# $Id: cvsweb.conf,v 3.20 2001/01/11 02:00:55 knu Exp $ +# $Id: cvsweb.conf,v 3.25 2001/07/06 09:44:28 knu Exp $ +# $Idaemons: /home/cvs/cvsweb/cvsweb.conf,v 3.24 2001/04/24 15:24:01 knu Exp $ # ### # Set the path for the following commands: # uname, cvs, rlog, rcsdiff # gzip (if you enable $allow_compress) -# tar,rm (if you enable $allow_tar) +# tar, rm, zip (if you enable $allow_tar) $command_path = '/bin:/usr/bin:/usr/local/bin'; # Search the above directories for each command -for (qw(uname cvs rlog rcsdiff gzip tar rm)) { +for (qw(uname cvs rlog rcsdiff gzip tar rm zip)) { $CMD{$_} = search_path($_); } # The name of the operating system implementation -$uname = `$CMD{uname}`; +chomp($uname = `$CMD{uname}`); ############## # CVS Root @@ -160,25 +160,28 @@ a form at the bottom of the page that allows you to display diffs between arbitrary revisions.

-This script has been written by Bill Fenner -<fenner\@FreeBSD.org> -and improved by Henner Zeller -<zeller\@think.de>, -Henrik Nordström -<hno\@hem.passagen.se>, and -Ken Coar -<Ken.Coar\@Golux.Com>, then -Akinori MUSHA <knu\@FreeBSD.org> -brought it back to FreeBSD community and added more facilities; -it is covered by the -BSD-Licence. +This script has been written by Bill Fenner <fenner\@FreeBSD.org> and +improved by Henner Zeller <zeller\@think.de>, Henrik +Nordström <hno\@hem.passagen.se>, and +Ken Coar <Ken.Coar\@Golux.Com>, then +Akinori MUSHA <knu\@FreeBSD.org> brought it +back to FreeBSD community and made further improvements; it is covered +by the BSD-Licence.

If you would like to use this CGI script on your own web server and -CVS tree, see Zeller's -CVSweb distribution site. Bill's original script can be found -here. +CVS tree, download the latest version here, and also check +out Zeller's CVSweb +distribution site. Bill's original script can be found here.

Please send any suggestions, comments, etc. to @@ -454,7 +457,13 @@ $allow_tar = ''; @gzip_options = qw(); # e.g. @gzip_options = qw(-3); # Try lower compression level than 6 (default) if you want faster -# compression, or upper, for higher compression. +# compression, or higher, for better compression. + +# Options to pass to zip(1) when compressing a zip archive to download. +@zip_options = qw(); +# e.g. @zip_options = qw(-3); +# Try lower compression level than 6 (default) if you want faster +# compression, or higher, for better compression. # Options to pass to cvs(1). @cvs_options = qw(-l);