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

Diff for /cvsweb/Attic/cvsweb.conf between version 4.20 and 4.25

version 4.20, 2019/11/29 15:05:26 version 4.25, 2019/11/29 18:50:15
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>';
   
 # Icons for the web UI.  If ICON-URL is empty, the TEXT representation is  # Icons for the web UI.
 # 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 150  $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 187  $use_descriptions = 0;
Line 168  $use_descriptions = 0;
 #  #
 $hr_breakable = 1;  $hr_breakable = 1;
   
 # Print function names in diffs (unified and context only).  
 # See the -p option in the diff(1) man page.  
 #  
 $showfunc = 1;  
   
 # Ignore whitespace in human readable diffs? ('-w' option to diff)  # Ignore whitespace in human readable diffs? ('-w' option to diff)
 #  #
 $hr_ignwhite = 0;  $hr_ignwhite = 0;
Line 200  $hr_ignwhite = 0;
Line 176  $hr_ignwhite = 0;
 # ('-kk' option to rcsdiff)  # ('-kk' option to rcsdiff)
 #  #
 $hr_ignkeysubst = 1;  $hr_ignkeysubst = 1;
   
 # The width of the textinput of the "request diff" form.  
 #  
 $inputTextSize = 12;  
   
 # Custom per MIME type diff tools, used for comparing binary files such as  
 # spreadsheets, images etc.  Each key is a MIME type in lowercase.  
 # Each value is an array ref of available diff tools for that type, each of  
 # which is a hash ref with values (mandatory where default not listed):  
 #   name: the name to show in the UI for this diff type  
 #   cmd:  full path to executable  
 #   args: arguments as an array ref (not string!, defaults to no arguments)  
 #   type: output MIME type (defaults to text/plain)  
 #  
 %DIFF_COMMANDS = (  
   #'text/xml' => [  
   #  { name => 'XMLdiff',  
   #    cmd  => $CMD{xmldiff},  
   #  },  
   #  { name => 'XMLdiff (XUpdate)',  
   #    cmd  => $CMD{xmldiff},  
   #    args => [ qw(-x) ],  
   #    type => 'text/xml',  
   #  },  
   #],  
 );  
   
 #  #
 # Mime types  # Mime types

Legend:
Removed from v.4.20  
changed lines
  Added in v.4.25

CVSweb