=================================================================== RCS file: /cvs/cvsweb/Attic/cvsweb.conf,v retrieving revision 3.9 retrieving revision 3.12 diff -u -p -r3.9 -r3.12 --- cvsweb/Attic/cvsweb.conf 2000/09/22 11:13:18 3.9 +++ cvsweb/Attic/cvsweb.conf 2000/12/28 17:49:28 3.12 @@ -7,7 +7,7 @@ # 2000 A. MUSHA # based on work by Bill Fenner # $zId: cvsweb.conf,v 3.27 2000/07/27 10:16:39 kcoar Exp $ -# $Id: cvsweb.conf,v 3.9 2000/09/22 11:13:18 knu Exp $ +# $Id: cvsweb.conf,v 3.12 2000/12/28 17:49:28 knu Exp $ # ### @@ -96,7 +96,7 @@ $mancgi = "http://www.FreeBSD.org/cgi/man.cgi?apropos= # u Unified diff # c Context diff # s Side by side - "f" => ($is_textbased ? "u" : "h"), + "f" => "u", # hidecvsroot: Don't show the CVSROOT directory # 1 Hide CVSROOT directory @@ -321,18 +321,24 @@ $mime_types = '/usr/local/etc/apache/mime.types'; "shtml" => "text/html", "gif" => "image/gif", "jpeg" => "image/jpeg", - "jpg" => "image/jpeg", + "jpg" => "image/jpeg", + "png" => "image/png", + "xpm" => "image/xpm", "*" => "text/plain", ); +# Charset for HTML output +#$charset = "x-euc-jp"; + + ############## # Misc ############## # allow annotation of files # this requires rw-access to the -# CVSROOT/history - file and rw-access -# to the subdirectory to place the lock -# so you maybe don't want it +# CVSROOT/history file (if you have one) +# and rw-access to the subdirectory to +# place the lock so you maybe don't want it $allow_annotate = 1; # allow pretty-printed version of files @@ -407,4 +413,12 @@ $tabstop = 8; # server $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