-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdefault.php
More file actions
24 lines (22 loc) · 855 Bytes
/
default.php
File metadata and controls
24 lines (22 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/**
* Default settings for the gitbacked plugin
*
* @author Wolfgang Gassler <wolfgang@gassler.org>
*/
$conf['pushAfterCommit'] = 0;
$conf['periodicPull'] = 0;
$conf['periodicMinutes'] = 60;
$conf['updateIndexOnPull'] = 0;
$conf['commitPageMsg'] = 'Wiki page %page% changed with summary [%summary%] by %user%';
$conf['commitPageMsgDel'] = 'Wiki page %page% deleted with reason [%summary%] by %user%';
$conf['commitMediaMsg'] = 'Wiki media %media% uploaded by %user%';
$conf['commitMediaMsgDel'] = 'Wiki media %media% deleted by %user%';
$conf['autoDetermineRepos'] = 1;
$conf['repoPath'] = ''; //$GLOBALS['conf']['savedir']
$conf['repoWorkDir'] = '';
$conf['gitPath'] = '';
$conf['addParams'] = '-c user.name="%user%" -c user.email="<%mail%>"';
$conf['ignorePaths'] = '';
$conf['emailAddressOnError'] = '';
$conf['notifyByMailOnSuccess'] = 0;