Indefero

Indefero Commit Details


Date:2011-04-28 08:43:09 (13 years 7 months ago)
Author:William MARTIN
Branch:develop, feature-issue_links, feature.content-md5, feature.diff-whitespace, feature.download-md5, feature.issue-links, feature.issue-of-others, feature.issue-summary, feature.search-filter, feature.webrepos, feature.wiki-default-page, release-1.2, release-1.3
Commit:3e2f95a1529222ce9639822769895bb02ecc619e
Parents: 92de88ba139483e3fe6c635bdd7e8b859824d19f
Message:Break too long line Add space between section

Changes:

File differences

src/IDF/conf/idf.php-dist
4343
4444
4545
46
47
48
4649
4750
4851
......
6467
6568
6669
70
71
72
73
6774
6875
6976
......
94101
95102
96103
104
105
106
97107
98108
99109
......
103113
104114
105115
106
116
117
107118
108119
109120
121
122
123
110124
111125
112126
......
129143
130144
131145
132
146
147
133148
134149
135150
136151
137152
138
139
140
141
142
143
144
153
154
155
156
157
158
159
160
161
162
163
164
165
166
145167
146168
147
148
169
170
171
172
173
174
175
176
149177
150178
151179
......
180208
181209
182210
211
212
213
183214
184215
185216
......
189220
190221
191222
192
223
224
193225
194226
195227
......
210242
211243
212244
245
246
247
213248
214249
215250
......
227262
228263
229264
265
266
267
230268
231269
232270
......
240278
241279
242280
243
281
282
244283
245284
246285
247
286
287
248288
249289
250290
251291
252
292
293
253294
254
255
295
296
297
298
256299
257300
258301
......
278321
279322
280323
324
325
326
281327
282328
283329
......
314360
315361
316362
363
364
365
317366
318367
319368
......
327376
328377
329378
330
331
332
333
334
335
336
337
338
379
380
381
382
383
384
385
386
387
388
339389
340390
341391
......
352402
353403
354404
405
406
407
355408
356409
357410
......
393446
394447
395448
449
450
451
396452
397453
398454
$cfg['debug_scm'] = false;
#
# Path section
#
# to the issues will be uploaded and we do not restrict the content type.
$cfg['upload_issue_path'] = '/home/www/indefero/attachments';
#
# URL section
#
$cfg['url_upload'] = 'http://localhost/media/upload';
#
# Internationalization section
#
$cfg['time_zone'] = 'Europe/Berlin';
# 'languages' is an array of available languages in your forge
# If you want to enable extra language, add your language files in 'src/IDF/locale' before
# If you want to enable extra language,
# add your language files in 'src/IDF/locale' before
$cfg['languages'] = array('en', 'fr', 'de', 'es_ES');
#
# Email section
# Indefero use the PEAR Mail class to send mails. Available mail backend are:
$cfg['from_email'] = 'sender@example.com';
$cfg['bounce_email'] = 'no-reply@example.com';
# 'admins' will get an email in case of errors when the system is in non debug mode.
# 'admins' will get an email in case of errors
# when the system is in non debug mode.
$cfg['admins'] = array(array('You', 'you@example.com'),
array('Bob', 'bob@example.com'),
);
## Example of SMTP configuration
#$cfg['mail_host'] = 'localhost'; # The server to connect. Default is localhost
#$cfg['mail_port'] = 25; # The port to connect. Default is 25
#$cfg['mail_username'] = ''; # The username to use for SMTP authentication.
#$cfg['mail_password'] = ''; # The password to use for SMTP authentication.
#$cfg['mail_localhost'] = 'localhost'; # The value to give when sending EHLO or HELO. Default is localhost
#$cfg['mail_timeout'] = NULL; # The SMTP connection timeout. Default is NULL (no timeout)
#$cfg['mail_verp'] = FALSE; # Whether to use VERP or not. Default is FALSE
## The server to connect. Default is localhost
#$cfg['mail_host'] = 'localhost';
## The port to connect. Default is 25
#$cfg['mail_port'] = 25;
## The username to use for SMTP authentication.
#$cfg['mail_username'] = '';
## The password to use for SMTP authentication.
#$cfg['mail_password'] = '';
## The value to give when sending EHLO or HELO. Default is localhost
#$cfg['mail_localhost'] = 'localhost';
## The SMTP connection timeout. Default is NULL (no timeout)
#$cfg['mail_timeout'] = NULL;
## Whether to use VERP or not. Default is FALSE
#$cfg['mail_verp'] = FALSE;
## Example of sendmail configuration
#$cfg['mail_sendmail_path'] = '/usr/bin/sendmail'; # The location of the sendmail program on the filesystem. Default is /usr/bin/sendmail
#$cfg['sendmail_args'] = '-i'; # Additional parameters to pass to the sendmail. Default is -i
## The location of the sendmail program on the filesystem.
## Default is /usr/bin/sendmail
#$cfg['mail_sendmail_path'] = '/usr/bin/sendmail';
## Additional parameters to pass to the sendmail. Default is -i
#$cfg['sendmail_args'] = '-i';
#
$cfg['db_table_prefix'] = 'indefero_';
#
# Cache section
# The cache is use to speed up operation on most of scm commands.
# - Alternative PHP Cache (Pluf_Cache_Apc)
# - Memcached (Pluf_Cache_Memcached)
#
# APC and Memcached need extra installation to run, so It's easier to use Files in a first time.
# APC and Memcached need extra installation to run,
# so It's easier to use Files in a first time.
# @see http://www.php.net/manual/en/book.apc.php
# @see http://www.php.net/manual/en/book.memcached.php
#
#$cfg['cache_memcached_compress'] = MEMCACHE_COMPRESSED;
#
# Binary section
#
$cfg['mtn_opts'] = array('--no-workspace', '--no-standard-rcfiles');
#
# GIT Scm section
# Read the file doc/syncgit.mdtext for more information
# For example, adding www to the git group.
$cfg['git_repositories'] = '/home/git/repositories/%s.git/';
# Git url for public access to a repositorie. %s is replaced with the project name
# Git url for public access to a repositorie.
# %s is replaced with the project name
# @see doc/syncgit.mdtext for the git-daemon configuration
$cfg['git_remote_url'] = 'git://137.121.75.54/%s.git';
# Git url for private/write access to a repositorie. %s is replaced with the project name
# Git url for private/write access to a repositorie.
# %s is replaced with the project name
# @see doc/syncgit.mdtext for the SSH authentification
$cfg['git_write_remote_url'] = 'git@137.121.75.54:%s.git';
# The core.quotepath is configured on all new repository created by indefero
# This option disable characters to be escaped when git commands run on a compatible UTF-8 shell
# This option disable characters to be escaped,
# when git commands run on a UTF-8 shell
# - true: All characters upper than 0x80 will be escape (default)
# - false: Characters is print directly, enable accented character in a UTF-8 shell
# If you see malformed filename in the source viewer, try to uncomment the next line
# - false: Characters is print directly,
# enable accented character in a UTF-8 shell
# If you see malformed filename in the source viewer,
# try to uncomment the next line
# $cfg['git_core_quotepath'] = false;
# Path to the gitserve.py script
# $cfg['idf_plugin_syncgit_remove_orphans'] = true;
#
# SVN Scm section
# Read the file doc/syncsvn.mdtext for more information
# $cfg['idf_plugin_syncsvn_remove_orphans'] = true;
#
# Mercurial Scm section
# Read the file doc/syncmercurial.mdtext for more information
$cfg['mercurial_remote_url'] = 'http://example.com/hg/%s';
$cfg['idf_plugin_syncmercurial_hgrc'] = array('web' => array('push_ssl' => 'false',
'allow_push' => '',
'description' => '',
'allow_archive' => 'bz2, zip, gz',
'style' => 'gitweb',
'contact' => ''),
'hooks' => array(),
'extensions' => array(),
);
$cfg['idf_plugin_syncmercurial_hgrc'] = array(
'web' => array('push_ssl' => 'false',
'allow_push' => '',
'description' => '',
'allow_archive' => 'bz2, zip, gz',
'style' => 'gitweb',
'contact' => ''),
'hooks' => array(),
'extensions' => array(),
);
# Based on the paths provided in the Apache configuration,
# you need to setup the following lines
# $cfg['idf_plugin_syncmercurial_passwd_mode'] = 'sha';
#
# Monotone Scm section
# Read the file doc/syncmonotone.mdtext for more information
# $cfg['mtn_confdir_extra'] = array('hooks.d/something.lua')
#
# Hacker section
# Reserved to avanced user

Archive Download the corresponding diff file

Page rendered in 0.08575s using 13 queries.