config: prefer core.compression=5
[girocco.git] / gitweb / gitweb_config.perl
blobf09451428e113fa2a07ae404b3fda33180b18d59
1 # Pull Girocco config
2 use lib ".";
3 use Girocco::Config;
4 use Girocco::Util qw(url_path);
5 use Digest::MD5 qw(md5_hex);
6 BEGIN {
7 eval { require HTML::Email::Obfuscate; 1 } or
8 eval {
9 require Girocco::Email::Obfuscate;
10 $INC{'HTML/Email/Obfuscate.pm'} = $INC{'Girocco/Email/Obfuscate.pm'}; # mwahaha
14 ## For the complete overview of available configuration options,
15 ## see git.git/gitweb/gitweb.perl file beginning (git.git/gitweb/README
16 ## may miss some custom patches, in theory).
18 # rename detection options for git-diff and git-diff-tree (default is '-M')
19 our @diff_opts = ('-B', '-C');
21 # Whether to include project list on the gitweb front page; 0 means yes,
22 # 1 means no list but show tag cloud if enabled (all projects still need
23 # to be scanned, unless the info is cached), 2 means no list and no tag cloud
24 # (very fast)
25 our $frontpage_no_project_list = 1;
27 ## projects list cache for busy sites with many projects;
28 ## if you set this to non-zero, it will be used as the cached
29 ## index lifetime in minutes
30 our $projlist_cache_lifetime = 10;
32 ## default charset for text/plain blob
33 our $default_text_plain_charset = 'utf-8';
35 # Comment out to disable ctags
36 $feature{'ctags'}{'default'}=["@{[url_path($Girocco::Config::webadmurl)]}/tagproj.cgi"];
38 $feature{'blame'}{'default'}=[1];
39 $feature{'blame_incremental'}{'default'}=[1];
41 $feature{'snapshot'}{'default'} = ['tgz', 'zip'];
43 # Enable override to turn off snapshots on a per-repository basis with config gitweb.snapshot=none
44 #$feature{'snapshot'}{'override'} = 1;
46 # Change this from 1 to 0 to disable all searching
47 # (it's enabled by default so commenting this out will still leave it enabled)
48 $feature{'search'}{'default'}=[1];
50 # Change this from 0 to 1 to enable grep searches (they can be CPU intensive)
51 # (it's enabled by default so commenting this out will leave it enabled)
52 # Note that it will be automatically disabled if 'search' is disabled.
53 $feature{'grep'}{'default'}=[0];
55 # Change this from 0 to 1 to enable pickaxe searches (they can be CPU intensive)
56 # (it's enabled by default so commenting this out will leave it enabled)
57 # Note that it will be automatically disabled if 'search' is disabled.
58 $feature{'pickaxe'}{'default'}=[0];
60 # Enable this to highlight sources if highlight is available
61 #$feature{'highlight'}{'default'} = [1];
63 # Set this if highlight is enabled and not available as 'highlight' in $PATH
64 # You should set this to the full absolute path to highlight whenever highlight
65 # cannot be found in any of the `getconf PATH` directories.
66 #our $highlight_bin = "highlight";
68 # the width (in characters) of the projects list "Description" column
69 # (the default is only 25 if this is not set)
70 our $projects_list_description_width = 40;
72 ###
73 ### You probably don't really want to tweak anything below.
74 ###
76 # Base web full url
77 our $my_url = $Girocco::Config::gitweburl;
79 # Base web path absolute url except "/" should be ""
80 our $my_uri = url_path($Girocco::Config::gitweburl);
82 # Base web path absolute url
83 our $base_url = url_path($Girocco::Config::gitweburl,1);
85 ## git base URL used for URL to fetch bundle information page
86 ## i.e. full URL is "$git_base_bundles_url/$project/bundles"
87 our $git_base_bundles_url = url_path($Girocco::Config::bundlesurl);
89 # https hint html inserted right after any https push URL (undef for none)
90 # e.g. "<a href="https_push_instructions.html">https push instructions</a>"
91 our $https_hint_html = undef;
92 $https_hint_html = substr(<<HINT,0,-1) if $Girocco::Config::httpspushurl;
93 <sup class="sup"><span><a href="@{[url_path($Girocco::Config::htmlurl)]}/httpspush.html">(learn&#160;more)</a></span></sup>
94 HINT
96 # owner link hook given owner name (full and NOT obfuscated)
97 # should return full URL-escaped link to attach to owner, for example:
98 # sub { return "/showowner.cgi?owner=".CGI::Util::escape($_[0]); }
99 our $owner_link_hook = undef;
100 $owner_link_hook = sub { url_path($Girocco::Config::webadmurl)."/projlist.cgi?name=".md5_hex(lc($_[0])); };
102 # Path to a POSIX shell. Needed to run $highlight_bin and a snapshot compressor.
103 # Only used when highlight is enabled or snapshots with compressors are enabled.
104 our $posix_shell_bin;
105 $posix_shell_bin = $Girocco::Config::posix_sh_bin if $Girocco::Config::posix_sh_bin;
107 ## core git executable to use
108 ## this can just be "git" if your webserver has a sensible PATH
109 our $GIT = $Girocco::Config::git_bin;
111 ## path to automatic README.html utility
112 our $git_automatic_readme_html = $Girocco::Config::basedir . '/bin/run-format-readme.sh';
114 ## absolute fs-path which will be prepended to the project path
115 our $projectroot = $Girocco::Config::reporoot;
117 # source of projects list
118 our $projects_list = $Girocco::Config::projlist_cache_dir."/gitweb.list";
120 ## target of the home link on top of all pages (absolute url)
121 our $home_link = url_path($Girocco::Config::gitweburl,1);
123 ## string of the home link on top of all pages
124 our $home_link_str = $Girocco::Config::name;
126 ## name of your site or organization to appear in page titles
127 ## replace this with something more descriptive for clearer bookmarks
128 our $site_name = $Girocco::Config::title;
130 ## html text to include at home page
131 our $home_text = "$Girocco::Config::basedir/gitweb/indextext.html";
133 ## URI of stylesheets
134 our @stylesheets = ("@{[url_path($Girocco::Config::gitwebfiles)]}/gitweb.css");
136 ## URI of GIT logo (72x27 size)
137 our $logo = "@{[url_path($Girocco::Config::gitwebfiles)]}/git-logo.png";
139 ## URI of GIT favicon, assumed to be image/png type
140 our $favicon = "@{[url_path($Girocco::Config::gitwebfiles)]}/git-favicon.png";
142 ## URI of gitweb.js
143 our $javascript = "@{[url_path($Girocco::Config::gitwebfiles)]}/gitweb.js";
145 ## URL Hints
147 ## Any of the urls in @git_base_url_list, @git_base_mirror_urls or
148 ## @git_base_push_urls may be an array ref instead of a scalar in which
149 ## case ${}[0] is the url and ${}[1] is an html fragment "hint" to display
150 ## right after the URL.
152 ## list of git base URLs used for URL for where to fetch project from,
153 ## i.e. full URL is "$git_base_url/$project"
154 our @git_base_url_list = ();
155 $Girocco::Config::gitpullurl and push @git_base_url_list, $Girocco::Config::gitpullurl;
156 $Girocco::Config::httppullurl and push @git_base_url_list, $Girocco::Config::httppullurl;
158 ## For push projects (a .nofetch file exists OR gitweb.showpush is true)
159 ## @git_base_url_list entries are shown as "mirror URL" and @git_base_push_urls
160 ## are shown as "push URL" and @git_base_mirror_urls are ignored.
161 ## For non-push projects, @git_base_url_list and @git_base_mirror_urls are shown
162 ## as "mirror URL" and @git_base_push_urls are ignored.
164 ## list of extra git base URLs used for mirrors for where to fetch project from,
165 ## i.e. full URL is "$git_base_mirror_url/$project"
166 our @git_base_mirror_urls = ();
167 $Girocco::Config::httpspushurl && $Girocco::Config::httpspushurl ne ($Girocco::Config::httppullurl||'') and
168 push @git_base_mirror_urls, [$Girocco::Config::httpspushurl,
169 "<sup class=\"sup\"><span><a href=\"@{[url_path($Girocco::Config::htmlurl)]}/rootcert.html\">(learn&#160;more)</a></span></sup>"];
170 $Girocco::Config::pushurl && $Girocco::Config::pushurl =~ m|^ssh://|i and
171 push @git_base_mirror_urls, substr($Girocco::Config::pushurl, 0, 6) .
172 'git@' . substr($Girocco::Config::pushurl, 6);
174 ## list of git base URLs used for URL to push project to,
175 ## i.e. full URL is "$git_base_push_url/$project"
176 our @git_base_push_urls = ();
177 $Girocco::Config::pushurl and push @git_base_push_urls, $Girocco::Config::pushurl;
178 $Girocco::Config::httpspushurl and push @git_base_push_urls, $Girocco::Config::httpspushurl;
180 our $cache_grpshared = 1;
181 our $cache_dir = $Girocco::Config::projlist_cache_dir;
183 our $lastactivity_file = "info/lastactivity";
185 $html_cache_actions{'summary'} = 1;
187 our $per_request_config = 0;
189 our $auto_fcgi = 1;
191 $feature{'pathinfo'}{'default'}=[1];
193 $feature{'forks'}{'default'}=[1];
195 $feature{'actions'}{'default'}=[
196 ('graphiclog', "@{[url_path($Girocco::Config::gitwebfiles)]}/git-browser/by-commit.html?r=%n", 'log'),
197 ('edit', "@{[url_path($Girocco::Config::webadmurl)]}/editproj.cgi?name=%e", 'refs'),
198 ('fork', "@{[url_path($Girocco::Config::webadmurl)]}/regproj.cgi?fork=%e", 'edit')
201 # Prevent any fast CGI instance from holding on to a possibly now-invalid
202 # current working directory. The "root" directory will always be valid (or you
203 # have bigger problems) even if it's the "root" of a chroot or other kind of
204 # jail. gitweb.cgi does not need or require any particular cwd to function and
205 # as all "use"s and "require"s that depend on the 'use lib "."' have already
206 # been completed by now it's safe to "cd /" at this point.
207 chdir "/";