blob: 36056e06cd17b267812a3c5aa8163dae69d81aaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
$git_temp = "/tmp";
# The directories where your projects are. Must not end with a slash.
$projectroot = "/srv/scm";
# Base URLs for links displayed in the web interface.
our @git_base_url_list = qw(git://jausoft.com/srv/scm http://jausoft.com/srv/scm);
$feature{'blame'}{'default'} = [1];
$feature{'blame'}{'override'} = 1;
$feature{'pickaxe'}{'default'} = [1];
$feature{'pickaxe'}{'override'} = 1;
$feature{'snapshot'}{'default'} = [''];
#$feature{'snapshot'}{'default'} = ['tbz2'];
#$feature{'snapshot'}{'default'} = ['tbz2', 'tgz', 'zip', 't7z'];
#$feature{'snapshot'}{'override'} = 2;
|