1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
<?php
/**
* GitPHP Project config file
*
* Copy this example file to config/projects.conf.php
*
* @author Christopher Han <xiphux@gmail.com>
* @copyright Copyright (c) 2010 Christopher Han
* @package GitPHP
* @subpackage Config
*/
/*
* git_projects
* List of projects
*
* There are three ways to list projects:
*
* 1. Array of projects
*/
//$git_projects = array(
// 'gentoo.git'
// 'core/fbx.git',
// 'php/gitphp.git',
// 'php/mdb.git',
// 'php/xxcache.git',
// 'websites/bth.git',
//);
/*
* 2. Path to file with list of projects
* Points to a flat file with a list of projects,
* one on each line. Can also read Gitosis project lists.
*/
//$git_projects = '/git/projectlist.txt';
/*
* 3. Leave commented to read all projects in the project root
*/
/*
* git_projects_settings
*
* This is used to specify override settings for individual projects.
* This is an array, where each key is the project, and the value is an
* array of settings. This can be used with any of the project list
* methods above.
*
* The settings array can have the following key/value settings:
* 'category': the category for the project.
* 'owner': the owner of the project. This overrides the actual owner
* 'description': the description of the project. This overrides the
* description in the project's description file
* 'cloneurl': the full clone url of the project. This overrides the
* clone URL setting in the config for this project.
* This can also be an empty string to override the global
* clone url to say that only this project has no clone url.
* 'pushurl': the full push url of the project. This overrides the
* push URL setting in the config for this project.
* This can also be an empty string to override the global
* push url to say that only this project has no push url.
*/
//$git_projects_settings['php/gitphp.git'] = array(
// 'category' => 'PHP',
// 'description' => 'GitPHP, a web-based git repository browser in PHP',
// 'owner' => 'Christopher Han',
// 'cloneurl' => 'http://git.xiphux.com/php/gitphp.git',
// 'pushurl' => ''
//);
//$git_projects_settings['gentoo.git'] = array(
// 'description' => 'Gentoo portage overlay'
//);
//$git_projects_settings['core/fbx.git'] = array(
// 'description' => 'FBX music player',
// 'category' => 'Core'
//);
//$git_projects_settings['php/mdb.git'] = array(
// 'category' => 'PHP',
// 'description' => 'MDB: Media Database',
// 'cloneurl' => '',
// 'pushurl' => ''
//);
|