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

Diff for /cvsweb/Attic/cvsweb.conf between version 3.18 and 3.19

version 3.18, 2001/01/03 08:57:49 version 3.19, 2001/01/11 01:52:56
Line 11 
Line 11 
 #  #
 ###  ###
   
   # Set the path for the following commands:
   #   uname, cvs, rlog, rcsdiff
   #   gzip (if you enable $allow_compress)
   #   tar,rm (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)) {
       $CMD{$_} = search_path($_);
   }
   
   # The name of the operating system implementation
   $uname = `$CMD{$_}`;
   
 ##############  ##############
 # CVS Root  # CVS Root
 ##############  ##############
Line 380  $open_extern_window = 1;
Line 394  $open_extern_window = 1;
 # this allows editing of all your options more intuitive  # this allows editing of all your options more intuitive
 $edit_option_form = (not $dirtable);  $edit_option_form = (not $dirtable);
   
 # Set the path for the following commands:  
 #   cvs, rlog, rcsdiff  
 #   gzip (if you enable $allow_compress)  
 #   tar,rm (if you enable $allow_tar)  
 $command_path = '/bin:/usr/bin:/usr/local/bin';  
   
 # If you have files which automatically refers to other files  # If you have files which automatically refers to other files
 # (such as HTML) then this allows you to browse the checked  # (such as HTML) then this allows you to browse the checked
 # out files as if outside CVS.  # out files as if outside CVS.
Line 442  $allow_tar = '';
Line 450  $allow_tar = '';
 # e.g. @tar_options = qw(--ignore-failed-read);  # e.g. @tar_options = qw(--ignore-failed-read);
 #      GNU tar has some useful options against unexpected errors.  #      GNU tar has some useful options against unexpected errors.
   
   # 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 upper, for higher compression.
   
 # Options to pass to cvs(1).  # Options to pass to cvs(1).
 @cvs_options = qw(-l);  @cvs_options = qw(-l);
 # e.g. @cvs_options = qw(-R -l);  
 #      -R (read only access mode) is implemented only in FreeBSD's and  push @cvs_options, '-R' if ($uname eq 'FreeBSD' || $uname eq 'OpenBSD');
 #      OpenBSD's cvs(1).  #      Only FreeBSD's and OpenBSD's cvs(1) supports -R (read only access
   #      mode) option, which considerably speeds up checkouts over NFS.
   
 1;  1;
 #EOF  #EOF

Legend:
Removed from v.3.18  
changed lines
  Added in v.3.19

CVSweb