Add a nickname configuration variable
[girocco.git] / gitweb / gitweb_config.perl
blob54a750350827d74a509332afc9a51eb09e2bef42
1 # Pull Girocco config
2 use lib ".";
3 use Girocco::Config;
5 ## For the complete overview of available configuration options,
6 ## see git.git/gitweb/gitweb.perl file beginning (git.git/gitweb/README
7 ## may miss some custom patches, in theory).
9 # Whether to include project list on the gitweb front page; 0 means yes,
10 # 1 means no list but show tag cloud if enabled (all projects still need
11 # to be scanned, unless the info is cached), 2 means no list and no tag cloud
12 # (very fast)
13 our $frontpage_no_project_list = 1;
15 ## projects list cache for busy sites with many projects;
16 ## if you set this to non-zero, it will be used as the cached
17 ## index lifetime in minutes
18 our $projlist_cache_lifetime = 10;
20 ## default charset for text/plain blob
21 our $default_text_plain_charset = 'utf-8';
23 # Comment out to disable ctags
24 $feature{ctags}{default}=["$Girocco::Config::webadmurl/tagproj.cgi"];
26 $feature{blame}{default}=[1];
28 $feature{'snapshot'}{'default'} = ['tgz', 'zip'];
31 ### You probably don't really want to tweak anything below.
33 # Base web path
34 our $my_uri = $Girocco::Config::gitweburl;
36 # https hint html inserted right after any https push URL (undef for none)
37 # e.g. "<a href="https_push_instructions.html">https push instructions</a>"
38 our $https_hint_html = undef;
40 ## core git executable to use
41 ## this can just be "git" if your webserver has a sensible PATH
42 our $GIT = $Girocco::Config::git_bin;
44 ## absolute fs-path which will be prepended to the project path
45 our $projectroot = $Girocco::Config::reporoot;
46 # source of projects list
47 our $projects_list = $Girocco::Config::chroot."/etc/gitweb.list";
49 ## target of the home link on top of all pages
50 our $home_link = $Girocco::Config::gitweburl;
52 ## string of the home link on top of all pages
53 our $home_link_str = $Girocco::Config::name;
55 ## name of your site or organization to appear in page titles
56 ## replace this with something more descriptive for clearer bookmarks
57 our $site_name = $Girocco::Config::title;
58 ## html text to include at home page
59 our $home_text = "$Girocco::Config::webroot/indextext.html";
61 ## URI of stylesheets
62 our @stylesheets = ("$Girocco::Config::gitwebfiles/gitweb.css");
63 ## URI of GIT logo (72x27 size)
64 our $logo = "$Girocco::Config::gitwebfiles/git-logo.png";
65 ## URI of GIT favicon, assumed to be image/png type
66 our $favicon = "$Girocco::Config::gitwebfiles/git-favicon.png";
67 ## URI of blame.js
68 our $blamejs = "$Girocco::Config::gitwebfiles/blame.js";
69 ## URI of gitweb.js
70 our $gitwebjs = "$Girocco::Config::gitwebfiles/gitweb.js";
72 ## list of git base URLs used for URL to fetch project from,
73 ## i.e. full URL is "$git_base_url/$project"
74 our @git_base_url_list = ();
75 $Girocco::Config::gitpullurl and push @git_base_url_list, $Girocco::Config::gitpullurl;
76 $Girocco::Config::httppullurl and push @git_base_url_list, $Girocco::Config::httppullurl;
78 ## list of git base URLs used for URL to push project to,
79 ## i.e. full URL is "$git_base_push_url/$project"
80 our @git_base_push_urls = ();
81 $Girocco::Config::pushurl and push @git_base_push_urls, $Girocco::Config::pushurl;
82 $Girocco::Config::httpspushurl and push @git_base_push_urls, $Girocco::Config::httpspushurl;
84 our $cache_grpshared = 1;
86 $feature{pathinfo}{default}=[1];
88 $feature{forks}{default}=[1];
90 $feature{actions}{default}=[
91 ('graphiclog', "$Girocco::Config::gitwebfiles/git-browser/by-commit.html?r=%n", 'log'),
92 ('edit', "$Girocco::Config::webadmurl/editproj.cgi?name=%n", 'tree'),
93 ('fork', "$Girocco::Config::webadmurl/regproj.cgi?fork=%n", 'edit')