Blame SOURCES/gitweb.conf.in

3d1d64
# The gitweb config file is a fragment of perl code. You can set variables
3d1d64
# using "our $variable = value"; text from "#" character until the end of a
3d1d64
# line is ignored. See perlsyn(1) man page for details.
3d1d64
#
3d1d64
# See /usr/share/doc/gitweb-*/README and /usr/share/doc/gitweb-*/INSTALL for
3d1d64
# more details and available configuration variables.
3d1d64
3d1d64
# Set the path to git projects.  This is an absolute filesystem path which will
3d1d64
# be prepended to the project path.
3d1d64
#our $projectroot = "@PROJECTROOT@";
3d1d64
3d1d64
# Set the list of git base URLs used for URL to where fetch project from, i.e.
3d1d64
# the full URL is "$git_base_url/$project". By default this is empty
3d1d64
#our @git_base_url_list = qw(git://git.example.com
3d1d64
#                            ssh://git.example.com@PROJECTROOT@);
3d1d64
3d1d64
# Enable the 'blame' blob view, showing the last commit that modified
3d1d64
# each line in the file. This can be very CPU-intensive. Disabled by default
3d1d64
#$feature{'blame'}{'default'} = [1];
3d1d64
#
3d1d64
# Allow projects to override the default setting via git config file.
3d1d64
# Example: gitweb.blame = 0|1;
3d1d64
#$feature{'blame'}{'override'} = 1;
3d1d64
3d1d64
# Disable the 'snapshot' link, providing a compressed archive of any tree. This
3d1d64
# can potentially generate high traffic if you have large project. Enabled for
3d1d64
# .tar.gz snapshots by default.
3d1d64
#
3d1d64
# Value is a list of formats defined in %known_snapshot_formats that you wish
3d1d64
# to offer.
3d1d64
#$feature{'snapshot'}{'default'} = [];
3d1d64
#
3d1d64
# Allow projects to override the default setting via git config file.
3d1d64
# Example: gitweb.snapshot = tbz2,zip; (use "none" to disable)
3d1d64
#$feature{'snapshot'}{'override'} = 1;
3d1d64
3d1d64
# Disable grep search, which will list the files in currently selected tree
3d1d64
# containing the given string. This can be potentially CPU-intensive, of
3d1d64
# course. Enabled by default.
3d1d64
#$feature{'grep'}{'default'} = [0];
3d1d64
#
3d1d64
# Allow projects to override the default setting via git config file.
3d1d64
# Example: gitweb.grep = 0|1;
3d1d64
#$feature{'grep'}{'override'} = 1;
3d1d64
3d1d64
# Disable the pickaxe search, which will list the commits that modified a given
3d1d64
# string in a file. This can be practical and quite faster alternative to
3d1d64
# 'blame', but still potentially CPU-intensive. Enabled by default.
3d1d64
#$feature{'pickaxe'}{'default'} = [0];
3d1d64
#
3d1d64
# Allow projects to override the default setting via git config file.
3d1d64
# Example: gitweb.pickaxe = 0|1;
3d1d64
#$feature{'pickaxe'}{'override'} = 1;