=================================================================== RCS file: /cvs/cvsweb/Attic/cvsweb.conf,v retrieving revision 3.8 retrieving revision 3.13 diff -u -p -r3.8 -r3.13 --- cvsweb/Attic/cvsweb.conf 2000/09/03 18:25:47 3.8 +++ 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.8 2000/09/03 18:25:47 knu Exp $ +# $Id: cvsweb.conf,v 3.13 2000/12/29 23:35:09 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 @@ -113,9 +113,12 @@ $mancgi = "http://www.FreeBSD.org/cgi/man.cgi?apropos= # some layout stuff ############## -# color settings in the body-tag +# The body-tag for directory views and logs $body_tag = ''; +# The body-tag for diffs and annotations +$body_tag_for_src = ''; + # Wanna have a logo on the page ? $logo = ''; @@ -125,10 +128,6 @@ $defaulttitle = "CVS Repository"; # The address is shown on the footer $address = "CVSweb by <knu\@FreeBSD.org>"; -# Default page background color for the diffs -# and annotations -$backcolor = "#eeeeee"; - # color of navigation Header for # diffs and annotations $navigationHeaderColor = '#9999ee'; @@ -322,18 +321,29 @@ $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 = ''; +# 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 ############## # 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 @@ -392,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; @@ -408,4 +425,23 @@ $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 = ''; + +# 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