Blame SPECS/gitweb.conf.in

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