Benjamin Renard commited on 2013-08-21 17:34:26
Showing 1 changed files, with 27 additions and 0 deletions.
... | ... |
@@ -0,0 +1,27 @@ |
1 |
+ProjectInfos plugin for ViewGit |
|
2 |
+=============================== |
|
3 |
+ |
|
4 |
+This plugin display project informations on summary page : |
|
5 |
+ |
|
6 |
+* description |
|
7 |
+* last change |
|
8 |
+* Git repository's URLs (if defined in project declaration) |
|
9 |
+ |
|
10 |
+The Git repository URLs could be define using key 'url' in variable |
|
11 |
+$conf['projects']. |
|
12 |
+ |
|
13 |
+Example : |
|
14 |
+ |
|
15 |
+$conf['projects']['myproject'] = array( |
|
16 |
+ 'repo' => '/path/to/my/repo', |
|
17 |
+ 'url' => array ( |
|
18 |
+ 'git@git.example.com:public_git/myproject', |
|
19 |
+ 'http://git.example.com/git/myproject' |
|
20 |
+ ) |
|
21 |
+); |
|
22 |
+ |
|
23 |
+Install |
|
24 |
+------- |
|
25 |
+ |
|
26 |
+* Put projectinfos directory in plugins directory |
|
27 |
+* (Optionnaly) Define project's Git URL in inc/localconfig.php file |
|
0 | 28 |