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

Diff for /cvsweb/Attic/cvsweb.conf between version 4.18 and 4.22

version 4.18, 2019/11/29 14:29:48 version 4.22, 2019/11/29 16:30:06
Line 119  $defaulttitle = "CVS Repository";
Line 119  $defaulttitle = "CVS Repository";
 #  #
 $address = '<span style="font-size: smaller">CVSweb</span>';  $address = '<span style="font-size: smaller">CVSweb</span>';
   
 $long_intro = <<EOT;  # Icons for the web UI.
 <p>  
 This is a WWW interface for CVS repositories.  
 You can browse the file hierarchy by following directory links (which  
 have slashes after them, e.g. <code>src/</code>).  
 If you follow a link to a file, you will see its revision history.  
 Following a link labeled with a revision number will display that  
 revision of the file.  In the revision history view, there is a link  
 near each revision to display diffs between that revision and the  
 previous one, and a form at the bottom of the page that allows you to  
 display diffs between arbitrary revisions.  
 </p><p>  
 This script has been written by Bill Fenner and improved by Henner Zeller,  
 Henrik Nordstr&ouml;m, and Ken Coar, then Akinori MUSHA brought it  
 back to FreeBSD community and made further improvements; it is covered  
 by <a  
 href="http://www.opensource.org/licenses/bsd-license.html">The BSD License</a>.  
 </p><p>  
 If you would like to use this CGI script on your own web server and  
 CVS tree, download the latest version from  
 &lt;<a href="http://cvsweb.bsd.lv/">http://cvsweb.bsd.lv/</a>&gt;.  
 </p>  
 EOT  
   
 $short_instruction = <<EOT;  
 <p>  
 Click on a directory to enter that directory. Click on a file to display  
 its revision history and to get a chance to display diffs between revisions.  
 </p>  
 EOT  
   
 # Icons for the web UI.  If ICON-URL is empty, the TEXT representation is  
 # used.  If you do not want to have a tool tip for an icon, set TEXT empty.  
 # The width and height of the icon allow the browser to correctly display  
 # the table while still loading the icons.  If these icons are too large,  
 # check out the "mini" versions in the icons/ directory; they have a  
 # width/height of 16/16.  
 #  
 my $iconsdir = '/icons';  my $iconsdir = '/icons';
   
 # format:          TEXT       ICON-URL                  width height  
 %ICONS = (  
      back    => [('[BACK]',   "$iconsdir/back.gif",      20,   22)],  
      dir     => [('[DIR]',    "$iconsdir/dir.gif",       20,   22)],  
      file    => [('[TXT]',    "$iconsdir/text.gif",      20,   22)],  
      binfile => [('[BIN]',    "$iconsdir/binary.gif",    20,   22)],  
 );  
 undef $iconsdir;  
   
 # An URL where to find the CSS.  # An URL where to find the CSS.
 #  #
 $cssurl = '/css/cvsweb.css';  $cssurl = '/css/cvsweb.css';
Line 181  $shortLogLen = 80;
Line 135  $shortLogLen = 80;
 #  #
 $show_author = 1;  $show_author = 1;
   
 # Cell padding for directory table.  
 #  
 $tablepadding = 2;  
   
 # Regular expressions for files and directories which should be hidden.  # Regular expressions for files and directories which should be hidden.
 # Each regexp is compared against a path relative to a CVS root, after  # Each regexp is compared against a path relative to a CVS root, after
 # stripping the trailing ",v" if present.  Matching files and directories  # stripping the trailing ",v" if present.  Matching files and directories
Line 425  $allow_tar = 0;
Line 375  $allow_tar = 0;
 # can read and write to CVSROOT/history.  # can read and write to CVSROOT/history.
 # FreeBSD's and OpenBSD's cvs(1) has long since supported -R (read only access  # FreeBSD's and OpenBSD's cvs(1) has long since supported -R (read only access
 # mode) option, which considerably speeds up checkouts over NFS.  For other  # mode) option, which considerably speeds up checkouts over NFS.  For other
 # platforms, the -R option and the CVSREADONLYFS environment variable are  # platforms, the -R option is available in cvs >= 1.12.1.
 # available in cvs >= 1.12.1.  A similar effect is provided by -u on NetBSD.  # A similar effect is provided by -u on NetBSD.
 #  #
 @cvs_options = qw(-f);  @cvs_options = qw(-f);
 push @cvs_options, '-R' if ($^O eq 'freebsd' || $^O eq 'openbsd');  push @cvs_options, '-R' if ($^O eq 'freebsd' || $^O eq 'openbsd');
 push @cvs_options, '-u' if ($^O eq 'netbsd');  push @cvs_options, '-u' if ($^O eq 'netbsd');
 # Only affects cvs >= 1.12.1, but doesn't hurt older ones.  
 $ENV{CVSREADONLYFS} = 1 unless exists($ENV{CVSREADONLYFS});  
   
 # Options to pass to the 'cvs annotate' command, usually the normal  # Options to pass to the 'cvs annotate' command, usually the normal
 # @cvs_options are good enough here.  # @cvs_options are good enough here.

Legend:
Removed from v.4.18  
changed lines
  Added in v.4.22

CVSweb