=================================================================== RCS file: /cvs/cvsweb/Attic/cvsweb.conf,v retrieving revision 3.24 retrieving revision 3.25 diff -u -p -r3.24 -r3.25 --- cvsweb/Attic/cvsweb.conf 2001/04/24 15:24:01 3.24 +++ cvsweb/Attic/cvsweb.conf 2001/07/06 09:44:28 3.25 @@ -6,19 +6,19 @@ # 1999 H. Nordstrom # 2000-2001 A. MUSHA # based on work by Bill Fenner -# $Id: cvsweb.conf,v 3.24 2001/04/24 15:24:01 knu Exp $ -# $Idaemons: /home/cvs/cvsweb/cvsweb.conf,v 3.23 2001/01/14 09:04:04 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($_); } @@ -456,6 +456,12 @@ $allow_tar = ''; # Options to pass to gzip(1) when compressing a tarball to download. @gzip_options = qw(); # e.g. @gzip_options = qw(-3); +# Try lower compression level than 6 (default) if you want faster +# 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.