=================================================================== RCS file: /cvs/cvsweb/Attic/cvsweb.conf,v retrieving revision 3.12 retrieving revision 3.13 diff -u -p -r3.12 -r3.13 --- cvsweb/Attic/cvsweb.conf 2000/12/28 17:49:28 3.12 +++ cvsweb/Attic/cvsweb.conf 2000/12/29 23:35:09 3.13 @@ -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.12 2000/12/28 17:49:28 knu Exp $ +# $Id: cvsweb.conf,v 3.13 2000/12/29 23:35:09 knu Exp $ # ### @@ -328,9 +328,14 @@ $mime_types = '/usr/local/etc/apache/mime.types'; ); # Charset for HTML output -#$charset = "x-euc-jp"; +$charset = ''; +# e.g. +#$charset = $where =~ m,/ru[/_-], ? 'koi8-r' +# : $where =~ m,/zh[/_-], ? 'big5' +# : $where =~ m,/ja[/_-], ? 'x-euc-jp' +# : $where =~ m,/ko[/_-], ? 'x-euc-kr' +# : 'iso-8859-1'; - ############## # Misc ############## @@ -397,6 +402,13 @@ $markupLogColor = "#ffffff"; # Show CVS log when viewing file contents $show_log_in_markup = 1; +# Preformat when viewing file contents. This should be turned off +# when you have files in the repository that are in a multibyte +# encoding which uses HTML special characters ([<>&"]) as part of a +# multi-byte character. (such as iso-2022-jp, ShiftJIS, etc.) +# Otherwise those files will get screwed up in markup. +$preformat_in_markup = ''; + # Tabstop used to expand tabs in colored diffs. If undefined then # tabs are always expanded to 8 spaces. $tabstop = 8; @@ -419,6 +431,17 @@ $use_moddate = 1; # 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 = ''; + +# Options to pass to tar(1). +@tar_options = (); +# e.g. @tar_options = qw(--ignore-failed-read); +# GNU tar has some useful options against unexpected errors. + +# Options to pass to cvs(1). +@cvs_options = qw(-l); +# e.g. @cvs_options = qw(-R -l); +# -R (read only access mode) is implemented only in FreeBSD's and +# OpenBSD's cvs(1). 1; #EOF