Blame SOURCES/gitweb.conf.in

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