1<?php
2
3/**
4 * Default settings for the gitbacked plugin
5 *
6 * @author Wolfgang Gassler <wolfgang@gassler.org>
7 */
8
9$conf['pushAfterCommit'] = 0;
10$conf['periodicPull'] = 0;
11$conf['periodicMinutes'] = 60;
12$conf['updateIndexOnPull'] = 0;
13$conf['commitPageMsg'] = 'Wiki page %page% changed with summary [%summary%] by %user%';
14$conf['commitPageMsgDel'] = 'Wiki page %page% deleted with reason [%summary%] by %user%';
15$conf['commitMediaMsg'] = 'Wiki media %media% uploaded by %user%';
16$conf['commitMediaMsgDel'] = 'Wiki media %media% deleted by %user%';
17$conf['repoPath'] = $GLOBALS['conf']['savedir'];
18$conf['repoWorkDir'] = '';
19$conf['gitPath'] = '';
20$conf['addParams'] = '-c user.name="%user%" -c user.email="<%mail%>"';
21$conf['ignorePaths'] = '';
22$conf['emailAddressOnError'] = '';
23$conf['notifyByMailOnSuccess'] = 0;
24