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

Diff for /cvsweb/cvsweb.cgi between version 3.10 and 3.11

version 3.10, 2000/08/01 12:42:07 version 3.11, 2000/08/13 18:58:24
Line 80  use vars qw (
Line 80  use vars qw (
 );  );
   
 ##### Start of Configuration Area ########  ##### Start of Configuration Area ########
   use Cwd;
   
 # == EDIT this ==  # == EDIT this ==
 # User configuration is stored in  # User configuration is stored in
 $config = defined($ENV{CVSWEB_CONFIG}) ? $ENV{CVSWEB_CONFIG} : '/usr/local/etc/cvsweb.conf';  $config = undef;
   
   for ($ENV{CVSWEB_CONFIG}, '/usr/local/etc/cvsweb.conf', getcwd . '/cvsweb.conf') {
     $config = $_ if -r $_;
   }
   
 # == Configuration defaults ==  # == Configuration defaults ==
 # Defaults for configuration variables that shouldn't need  # Defaults for configuration variables that shouldn't need

Legend:
Removed from v.3.10  
changed lines
  Added in v.3.11

CVSweb