| Line 57... |
Line 57... |
| 57 |
#$cvs = 'c:/Program Files/GNU/WinCvs 1.3/CVSNT/cvs.exe';
|
57 |
#$cvs = 'c:/Program Files/GNU/WinCvs 1.3/CVSNT/cvs.exe';
|
| 58 |
$cvs = '/usr/bin/cvs';
|
58 |
$cvs = '/usr/bin/cvs';
|
| 59 |
|
59 |
|
| 60 |
# Location of the svn binary.
|
60 |
# Location of the svn binary.
|
| 61 |
#$svn = 'c:/Program Files/SVN/svn.exe';
|
61 |
#$svn = 'c:/Program Files/SVN/svn.exe';
|
| 62 |
$svn = '/usr/bin/svn';
|
62 |
#$svn = '/usr/bin/svn';
|
| - |
|
63 |
$svn = 'C:/Program Files/TortoiseSVN/bin/svn';
|
| 63 |
|
64 |
|
| 64 |
# Location of the ssh binary. This is only required if a CVS :ext
|
65 |
# Location of the ssh binary. This is only required if a CVS :ext
|
| 65 |
# type repository is used.
|
66 |
# type repository is used.
|
| 66 |
$ssh = '/usr/local/bin/ssh';
|
67 |
$ssh = '/usr/local/bin/ssh';
|
| 67 |
|
68 |
|
| Line 184... |
Line 185... |
| 184 |
# The next example is a repository based off a ClearCase dynamic view.
|
185 |
# The next example is a repository based off a ClearCase dynamic view.
|
| 185 |
# The clearcase identifier is followed by the dyn indicator,
|
186 |
# The clearcase identifier is followed by the dyn indicator,
|
| 186 |
# followed by the view name, followed by the location where the
|
187 |
# followed by the view name, followed by the location where the
|
| 187 |
# view is loaded.
|
188 |
# view is loaded.
|
| 188 |
# 'clearcase:dyn:viewname:/vobs'
|
189 |
# 'clearcase:dyn:viewname:/vobs'
|
| 189 |
'clearcase:dyn:auperaweb08_techgp_latest_codestriker_view:O:\\auperaweb08_techgp_latest_codestriker_view'
|
190 |
'clearcase:dyn:auperaweb08_techgp_latest_codestriker_view:O:\\auperaweb08_techgp_latest_codestriker_view',
|
| - |
|
191 |
|
| - |
|
192 |
#
|
| - |
|
193 |
# Vix specific syntax
|
| - |
|
194 |
# Embdedded RepoTag as used in RM and elsewhere in []
|
| - |
|
195 |
# If present, then Module name are allowed to start with it.
|
| - |
|
196 |
#
|
| - |
|
197 |
'svn:https://auperasvn01.aupera.erggroup.com/svn[AUPERASVN01]',
|
| 190 |
);
|
198 |
);
|
| 191 |
|
199 |
|
| 192 |
# A mapping of repository URLs to names. In any screen where a
|
200 |
# A mapping of repository URLs to names. In any screen where a
|
| 193 |
# repository is displayed, if there is a mapping for the repository
|
201 |
# repository is displayed, if there is a mapping for the repository
|
| 194 |
# defined here, then the symbolic name will be displayed instead of
|
202 |
# defined here, then the symbolic name will be displayed instead of
|
| Line 196... |
Line 204... |
| 196 |
# username/password information, or the symbolic name is more
|
204 |
# username/password information, or the symbolic name is more
|
| 197 |
# meaningful to the end-user. If there is no mapping defined for a
|
205 |
# meaningful to the end-user. If there is no mapping defined for a
|
| 198 |
# specific repository, its URL will be displayed.
|
206 |
# specific repository, its URL will be displayed.
|
| 199 |
$repository_name_map =
|
207 |
$repository_name_map =
|
| 200 |
{
|
208 |
{
|
| 201 |
'clearcase:dyn:auperaweb08_techgp_latest_codestriker_view:O:\\auperaweb08_techgp_latest_codestriker_view' => 'Technology Group Latest Codestriker ClearCase view profile'
|
209 |
'clearcase:dyn:auperaweb08_techgp_latest_codestriker_view:O:\\auperaweb08_techgp_latest_codestriker_view' => 'VIX Perth ClearCase Repositories',
|
| - |
|
210 |
'svn:https://auperasvn01.aupera.erggroup.com/svn[AUPERASVN01]' => 'VIX Perth Subversion Repositories',
|
| 202 |
};
|
211 |
};
|
| 203 |
|
212 |
|
| 204 |
# A mapping of repositories to filename viewers. Examples of such systems
|
213 |
# A mapping of repositories to filename viewers. Examples of such systems
|
| 205 |
# would be CVSweb and ViewCVS, for local repositories. Mappings are
|
214 |
# would be CVSweb and ViewCVS, for local repositories. Mappings are
|
| 206 |
# not required for remote CVSweb and ViewCVS repositories, as they are
|
215 |
# not required for remote CVSweb and ViewCVS repositories, as they are
|
| Line 338... |
Line 347... |
| 338 |
# settings.
|
347 |
# settings.
|
| 339 |
$email_send_options =
|
348 |
$email_send_options =
|
| 340 |
{
|
349 |
{
|
| 341 |
comments_sent_to_topic_author => 1,
|
350 |
comments_sent_to_topic_author => 1,
|
| 342 |
comments_sent_to_commenter => 0,
|
351 |
comments_sent_to_commenter => 0,
|
| 343 |
topic_state_change_sent_to_reviewers => 1
|
352 |
topic_state_change_sent_to_reviewers => 1,
|
| - |
|
353 |
default_from_domain => 'vixtechnology.com',
|
| 344 |
};
|
354 |
};
|
| 345 |
|
355 |
|
| 346 |
# Default width of tabs. Most developers expect this to be 8, but
|
356 |
# Default width of tabs. Most developers expect this to be 8, but
|
| 347 |
# some expect to see 4. This is also stored in the user's cookie, and
|
357 |
# some expect to see 4. This is also stored in the user's cookie, and
|
| 348 |
# can be changed dynamically on the view topic screen.
|
358 |
# can be changed dynamically on the view topic screen.
|