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

Diff for /cvsweb/Attic/cvsweb.conf between version 3.8 and 3.12

version 3.8, 2000/09/03 18:25:47 version 3.12, 2000/12/28 17:49:28
Line 96  $mancgi = "http://www.FreeBSD.org/cgi/man.cgi?apropos=
Line 96  $mancgi = "http://www.FreeBSD.org/cgi/man.cgi?apropos=
       #   u      Unified diff        #   u      Unified diff
       #   c      Context diff        #   c      Context diff
       #   s      Side by side        #   s      Side by side
       "f" => ($is_textbased ? "u" : "h"),        "f" => "u",
   
       # hidecvsroot: Don't show the CVSROOT directory        # hidecvsroot: Don't show the CVSROOT directory
       #   1      Hide CVSROOT directory        #   1      Hide CVSROOT directory
Line 113  $mancgi = "http://www.FreeBSD.org/cgi/man.cgi?apropos=
Line 113  $mancgi = "http://www.FreeBSD.org/cgi/man.cgi?apropos=
 # some layout stuff  # some layout stuff
 ##############  ##############
   
 # color settings in the body-tag  # The body-tag for directory views and logs
 $body_tag = '<body text="#000000" bgcolor="#ffffff">';  $body_tag = '<body text="#000000" bgcolor="#ffffff">';
   
   # The body-tag for diffs and annotations
   $body_tag_for_src = '<body text="#000000" bgcolor="#eeeeee">';
   
 # Wanna have a logo on the page ?  # Wanna have a logo on the page ?
 $logo = '<img src="/icons/apache_pb.gif">';  $logo = '<img src="/icons/apache_pb.gif">';
   
Line 125  $defaulttitle = "CVS Repository";
Line 128  $defaulttitle = "CVS Repository";
 # The address is shown on the footer  # The address is shown on the footer
 $address = "<font size=-1>CVSweb by &lt;knu\@FreeBSD.org&gt;</font>";  $address = "<font size=-1>CVSweb by &lt;knu\@FreeBSD.org&gt;</font>";
   
 # Default page background color for the diffs  
 # and annotations  
 $backcolor = "#eeeeee";  
   
 # color of navigation Header for  # color of navigation Header for
 # diffs and annotations  # diffs and annotations
 $navigationHeaderColor = '#9999ee';  $navigationHeaderColor = '#9999ee';
Line 322  $mime_types = '/usr/local/etc/apache/mime.types';
Line 321  $mime_types = '/usr/local/etc/apache/mime.types';
            "shtml" => "text/html",             "shtml" => "text/html",
            "gif"   => "image/gif",             "gif"   => "image/gif",
            "jpeg"  => "image/jpeg",             "jpeg"  => "image/jpeg",
            "jpg"   => "image/jpeg",             "jpg"   => "image/jpeg",
              "png"   => "image/png",
              "xpm"   => "image/xpm",
            "*"     => "text/plain",             "*"     => "text/plain",
           );            );
   
   # Charset for HTML output
   #$charset = "x-euc-jp";
   
   
 ##############  ##############
 # Misc  # Misc
 ##############  ##############
 # allow annotation of files  # allow annotation of files
 # this requires rw-access to the  # this requires rw-access to the
 # CVSROOT/history - file and rw-access  # CVSROOT/history file (if you have one)
 # to the subdirectory to place the lock  # and rw-access to the subdirectory to
 # so you maybe don't want it  # place the lock so you maybe don't want it
 $allow_annotate = 1;  $allow_annotate = 1;
   
 # allow pretty-printed version of files  # allow pretty-printed version of files
Line 408  $tabstop = 8;
Line 413  $tabstop = 8;
 # server  # server
 $use_moddate = 1;  $use_moddate = 1;
   
   # Allows downloading a tarball of the current directory if set.
   # Bear in mind that this allows downloading a tarball of your entire
   # repository, which can take a lot of time and disk space to create!
   # If you enable this, you may need to make sure that cvsweb can write to
   # CVSROOT/val-tags, due to a bug in cvs.
   $allow_tar = '';
   
   1;
 #EOF  #EOF

Legend:
Removed from v.3.8  
changed lines
  Added in v.3.12

CVSweb