[BACK]Return to cvsweb.conf CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / cvsweb

Diff for /cvsweb/Attic/cvsweb.conf between version 3.23 and 3.25

version 3.23, 2001/01/14 09:04:04 version 3.25, 2001/07/06 09:44:28
Line 7 
Line 7 
 #     2000-2001 A. MUSHA     <knu@FreeBSD.org>  #     2000-2001 A. MUSHA     <knu@FreeBSD.org>
 #          based on work by Bill Fenner  <fenner@FreeBSD.org>  #          based on work by Bill Fenner  <fenner@FreeBSD.org>
 # $Id$  # $Id$
 # $Idaemons: /home/cvs/cvsweb/cvsweb.conf,v 3.22 2001/01/13 07:48:09 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:  # Set the path for the following commands:
 #   uname, cvs, rlog, rcsdiff  #   uname, cvs, rlog, rcsdiff
 #   gzip (if you enable $allow_compress)  #   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';  $command_path = '/bin:/usr/bin:/usr/local/bin';
   
 # Search the above directories for each command  # 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($_);      $CMD{$_} = search_path($_);
 }  }
   
Line 177  href="http://www.opensource.org/licenses/bsd-license.h
Line 177  href="http://www.opensource.org/licenses/bsd-license.h
 <p>  <p>
 If you would like to use this CGI script on your own web server and  If you would like to use this CGI script on your own web server and
 CVS tree, download the latest version <a  CVS tree, download the latest version <a
 href="ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/knu/">here</a>,  href="http://www.idaemons.org/~knu/cvsweb/">here</a>, and also check
 and also check out Zeller's <a  out Zeller's <a
 href="http://linux.fh-heilbronn.de/~zeller/cgi/cvsweb.cgi" >CVSweb  href="http://linux.fh-heilbronn.de/~zeller/cgi/cvsweb.cgi" >CVSweb
 distribution site</a>.  Bill's original script can be found <a  distribution site</a>.  Bill's original script can be found <a
 href="http://www.FreeBSD.org/~fenner/cvsweb/">here</a>.  href="http://www.FreeBSD.org/~fenner/cvsweb/">here</a>.
Line 456  $allow_tar = '';
Line 456  $allow_tar = '';
 # Options to pass to gzip(1) when compressing a tarball to download.  # Options to pass to gzip(1) when compressing a tarball to download.
 @gzip_options = qw();  @gzip_options = qw();
 # e.g. @gzip_options = qw(-3);  # 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  #      Try lower compression level than 6 (default) if you want faster
 #      compression, or higher, for better compression.  #      compression, or higher, for better compression.
   

Legend:
Removed from v.3.23  
changed lines
  Added in v.3.25

CVSweb