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

Diff for /cvsweb/Attic/cvsweb.conf between version 4.9 and 4.12

version 4.9, 2019/11/26 10:58:15 version 4.12, 2019/11/26 11:28:43
Line 418  $show_log_in_markup = 1;
Line 418  $show_log_in_markup = 1;
 #  #
 #$tabstop = 4;  #$tabstop = 4;
   
 # If you wish to display absolute times in your local timezone,  
 # then define @mytz and fill in the strings for your standard and  
 # daylight time. Note that you must also make sure the system  
 # timezone is correctly set.  
 #  
 #@mytz=("EST", "EDT");  
   
 # CVSweb is friendly to caches by sending the HTTP Last-Modified  # CVSweb is friendly to caches by sending the HTTP Last-Modified
 # header corresponding to the sent content.  In the case of a  # header corresponding to the sent content.  In the case of a
 # checkout, this may require running rcslog on the file solely for the  # checkout, this may require running rcslog on the file solely for the
Line 441  $use_moddate = 1;
Line 434  $use_moddate = 1;
 #  #
 #$file_list_len = 200;  #$file_list_len = 200;
   
 # URL to the CVSHistory script.  This should be absolute (but does not need  
 # to include the host and port if the script is on the same server as  
 # CVSweb).  
 #$cvshistory_url = "/cgi-bin/cvshistory.cgi";  
   
 # Whether to allow downloading a tarball or a zip of the current directory.  # Whether to allow downloading a tarball or a zip of the current directory.
 # While downloading of the entire repository is disallowed, depending on  # While downloading of the entire repository is disallowed, depending on
 # the directory this may take a lot of time and disk space.  For some CVS  # the directory this may take a lot of time and disk space.  For some CVS
Line 510  $ENV{CVSREADONLYFS} = 1 unless exists($ENV{CVSREADONLY
Line 498  $ENV{CVSREADONLYFS} = 1 unless exists($ENV{CVSREADONLY
 # this should be set to 0 or commented out.  # this should be set to 0 or commented out.
 #  #
 #$DEBUG = 1;  #$DEBUG = 1;
   
 # Enable this to let CVSweb load extra configuration files from the "conf.d"  
 # subdirectory of the directory this file is located in.  This enables site  
 # specific configuration without having to modify this "master" configuration  
 # file (except for enabling this functionality below :)  
 #  
 if (0) {  
   my $confdir = catdir(dirname(__FILE__), 'conf.d');  
   if (opendir(CONFD, $confdir)) {  
     my @files = sort(map(catfile($confdir, $_), readdir(CONFD)));  
     close(CONFD);  
     for my $conffile (grep(-f && -r _, @files)) {  
       ($conffile) = ($conffile =~ /(.+\.conf)$/) or next;  
       do "$conffile" or config_error($conffile, $@);  
     }  
   }  
 }  
   
 1;  1;
   

Legend:
Removed from v.4.9  
changed lines
  Added in v.4.12

CVSweb