Optimism is an occupational hazard of programming: feedback is the treament.
- Kent Beck
# For open source projects it is expected that the notes be public, however,
# for non-open source it will probably be VS_PRIVATE.
$g_source_control_notes_view_status = VS_PUBLIC;
# Account to be used by the source control script. The account must be enabled
# and must have the appropriate access level to add notes to all issues even
# private ones (DEVELOPER access recommended).
$g_source_control_account = 'administrator';
# If set to a status, then after a checkin with a log message that matches the regular expression in
# $g_source_control_fixed_regexp, the issue status is set to the specified status. If set to OFF, the
# issue status is not changed.
$g_source_control_set_status_to = RESOLVED;
# Whenever an issue status is set to $g_source_control_set_status_to, the issue resolution is set to
# the value specified for this configuration.
$g_source_control_set_resolution_to = FIXED;
# Regular expression used to detect issue ids within checkin comments.
# see preg_match_all() documentation at
$g_source_control_regexp = "/bissue [#]{0,1}(d+)b/i";
# Regular expression used to detect the fact that an issue is fixed and extracts
# its issue id. If there is a match to this regular expression, then the issue
# will be marked as resolved and the resolution will be set to fixed.
$g_source_control_fixed_regexp = "/bfixed bissue [#]{0,1}(d+)b/i";
REPOS="$1" REV="$2" SVNLOOK=/usr/bin/svnlook PHP=/usr/bin/php MANTIS=/var/www/html/mantis/core/checkin.php COMMIT_MSG=`$SVNLOOK log -r $REV "$REPOS"` $PHP -f $MANTIS <<zzzMantiszzz Revision $REV: $COMMIT_MSG http://dp8/websvn/listing.php?repname=$REPOS&path=%2F&rev=$REV&sc=1 zzzMantiszzz