Break too long line

Add space between section
feature-issue_links
William MARTIN 2011-04-28 15:43:09 +02:00
parent 92de88ba13
commit 3e2f95a152
1 changed files with 82 additions and 26 deletions

View File

@ -43,6 +43,9 @@ $cfg['debug'] = true;
$cfg['debug_scm'] = false; $cfg['debug_scm'] = false;
# #
# Path section # Path section
# #
@ -64,6 +67,10 @@ $cfg['upload_path'] = '/home/www/indefero/www/media/upload';
# to the issues will be uploaded and we do not restrict the content type. # to the issues will be uploaded and we do not restrict the content type.
$cfg['upload_issue_path'] = '/home/www/indefero/attachments'; $cfg['upload_issue_path'] = '/home/www/indefero/attachments';
# #
# URL section # URL section
# #
@ -94,6 +101,9 @@ $cfg['url_media'] = 'http://localhost/media';
$cfg['url_upload'] = 'http://localhost/media/upload'; $cfg['url_upload'] = 'http://localhost/media/upload';
# #
# Internationalization section # Internationalization section
# #
@ -103,10 +113,14 @@ $cfg['url_upload'] = 'http://localhost/media/upload';
$cfg['time_zone'] = 'Europe/Berlin'; $cfg['time_zone'] = 'Europe/Berlin';
# 'languages' is an array of available languages in your forge # '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'); $cfg['languages'] = array('en', 'fr', 'de', 'es_ES');
# #
# Email section # Email section
# Indefero use the PEAR Mail class to send mails. Available mail backend are: # Indefero use the PEAR Mail class to send mails. Available mail backend are:
@ -129,23 +143,37 @@ $cfg['mail_backend'] = 'mail';
$cfg['from_email'] = 'sender@example.com'; $cfg['from_email'] = 'sender@example.com';
$cfg['bounce_email'] = 'no-reply@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'), $cfg['admins'] = array(array('You', 'you@example.com'),
array('Bob', 'bob@example.com'), array('Bob', 'bob@example.com'),
); );
## Example of SMTP configuration ## Example of SMTP configuration
#$cfg['mail_host'] = 'localhost'; # The server to connect. Default is localhost ## The server to connect. Default is localhost
#$cfg['mail_port'] = 25; # The port to connect. Default is 25 #$cfg['mail_host'] = 'localhost';
#$cfg['mail_username'] = ''; # The username to use for SMTP authentication. ## The port to connect. Default is 25
#$cfg['mail_password'] = ''; # The password to use for SMTP authentication. #$cfg['mail_port'] = 25;
#$cfg['mail_localhost'] = 'localhost'; # The value to give when sending EHLO or HELO. Default is localhost ## The username to use for SMTP authentication.
#$cfg['mail_timeout'] = NULL; # The SMTP connection timeout. Default is NULL (no timeout) #$cfg['mail_username'] = '';
#$cfg['mail_verp'] = FALSE; # Whether to use VERP or not. Default is FALSE ## 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 ## 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 ## The location of the sendmail program on the filesystem.
#$cfg['sendmail_args'] = '-i'; # Additional parameters to pass to the sendmail. Default is -i ## 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';
# #
@ -180,6 +208,9 @@ $cfg['db_password'] = 'bar';
$cfg['db_table_prefix'] = 'indefero_'; $cfg['db_table_prefix'] = 'indefero_';
# #
# Cache section # Cache section
# The cache is use to speed up operation on most of scm commands. # The cache is use to speed up operation on most of scm commands.
@ -189,7 +220,8 @@ $cfg['db_table_prefix'] = 'indefero_';
# - Alternative PHP Cache (Pluf_Cache_Apc) # - Alternative PHP Cache (Pluf_Cache_Apc)
# - Memcached (Pluf_Cache_Memcached) # - 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.apc.php
# @see http://www.php.net/manual/en/book.memcached.php # @see http://www.php.net/manual/en/book.memcached.php
# #
@ -210,6 +242,9 @@ $cfg['cache_file_folder'] = $cfg['tmp_folder'].'/cache';
#$cfg['cache_memcached_compress'] = MEMCACHE_COMPRESSED; #$cfg['cache_memcached_compress'] = MEMCACHE_COMPRESSED;
# #
# Binary section # Binary section
# #
@ -227,6 +262,9 @@ $cfg['mtn_path'] = 'mtn';
$cfg['mtn_opts'] = array('--no-workspace', '--no-standard-rcfiles'); $cfg['mtn_opts'] = array('--no-workspace', '--no-standard-rcfiles');
# #
# GIT Scm section # GIT Scm section
# Read the file doc/syncgit.mdtext for more information # Read the file doc/syncgit.mdtext for more information
@ -240,19 +278,24 @@ $cfg['mtn_opts'] = array('--no-workspace', '--no-standard-rcfiles');
# For example, adding www to the git group. # For example, adding www to the git group.
$cfg['git_repositories'] = '/home/git/repositories/%s.git/'; $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 # @see doc/syncgit.mdtext for the git-daemon configuration
$cfg['git_remote_url'] = 'git://137.121.75.54/%s.git'; $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 # @see doc/syncgit.mdtext for the SSH authentification
$cfg['git_write_remote_url'] = 'git@137.121.75.54:%s.git'; $cfg['git_write_remote_url'] = 'git@137.121.75.54:%s.git';
# The core.quotepath is configured on all new repository created by indefero # 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) # - true: All characters upper than 0x80 will be escape (default)
# - false: Characters is print directly, enable accented character in a UTF-8 shell # - false: Characters is print directly,
# If you see malformed filename in the source viewer, try to uncomment the next line # 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; # $cfg['git_core_quotepath'] = false;
# Path to the gitserve.py script # Path to the gitserve.py script
@ -278,6 +321,9 @@ $cfg['idf_plugin_syncgit_base_repositories'] = '/home/git/repositories';
# $cfg['idf_plugin_syncgit_remove_orphans'] = true; # $cfg['idf_plugin_syncgit_remove_orphans'] = true;
# #
# SVN Scm section # SVN Scm section
# Read the file doc/syncsvn.mdtext for more information # Read the file doc/syncsvn.mdtext for more information
@ -314,6 +360,9 @@ $cfg['idf_plugin_syncsvn_svn_path'] = '/home/svn/repositories';
# $cfg['idf_plugin_syncsvn_remove_orphans'] = true; # $cfg['idf_plugin_syncsvn_remove_orphans'] = true;
# #
# Mercurial Scm section # Mercurial Scm section
# Read the file doc/syncmercurial.mdtext for more information # Read the file doc/syncmercurial.mdtext for more information
@ -327,15 +376,16 @@ $cfg['mercurial_repositories'] = '/home/mercurial/repositories/%s';
$cfg['mercurial_remote_url'] = 'http://example.com/hg/%s'; $cfg['mercurial_remote_url'] = 'http://example.com/hg/%s';
$cfg['idf_plugin_syncmercurial_hgrc'] = array('web' => array('push_ssl' => 'false', $cfg['idf_plugin_syncmercurial_hgrc'] = array(
'allow_push' => '', 'web' => array('push_ssl' => 'false',
'description' => '', 'allow_push' => '',
'allow_archive' => 'bz2, zip, gz', 'description' => '',
'style' => 'gitweb', 'allow_archive' => 'bz2, zip, gz',
'contact' => ''), 'style' => 'gitweb',
'hooks' => array(), 'contact' => ''),
'extensions' => array(), 'hooks' => array(),
); 'extensions' => array(),
);
# Based on the paths provided in the Apache configuration, # Based on the paths provided in the Apache configuration,
# you need to setup the following lines # you need to setup the following lines
@ -352,6 +402,9 @@ $cfg['idf_plugin_syncmercurial_private_include'] = '/home/mercurial/scripts/priv
# $cfg['idf_plugin_syncmercurial_passwd_mode'] = 'sha'; # $cfg['idf_plugin_syncmercurial_passwd_mode'] = 'sha';
# #
# Monotone Scm section # Monotone Scm section
# Read the file doc/syncmonotone.mdtext for more information # Read the file doc/syncmonotone.mdtext for more information
@ -393,6 +446,9 @@ $cfg['mtn_db_access'] = 'local';
# $cfg['mtn_confdir_extra'] = array('hooks.d/something.lua') # $cfg['mtn_confdir_extra'] = array('hooks.d/something.lua')
# #
# Hacker section # Hacker section
# Reserved to avanced user # Reserved to avanced user