| Line 59... |
Line 59... |
| 59 |
#$cvs = 'c:/Program Files/GNU/WinCvs 1.3/CVSNT/cvs.exe';
|
59 |
#$cvs = 'c:/Program Files/GNU/WinCvs 1.3/CVSNT/cvs.exe';
|
| 60 |
$cvs = '/usr/bin/cvs';
|
60 |
$cvs = '/usr/bin/cvs';
|
| 61 |
|
61 |
|
| 62 |
# Location of the svn binary.
|
62 |
# Location of the svn binary.
|
| 63 |
#$svn = 'c:/Program Files/SVN/svn.exe';
|
63 |
#$svn = 'c:/Program Files/SVN/svn.exe';
|
| 64 |
$svn = '/usr/bin/svn';
|
64 |
#$svn = '/usr/bin/svn';
|
| - |
|
65 |
$svn = 'C:/Program Files/TortoiseSVN/bin/svn';
|
| 65 |
|
66 |
|
| 66 |
# Location of the ssh binary. This is only required if a CVS :ext
|
67 |
# Location of the ssh binary. This is only required if a CVS :ext
|
| 67 |
# type repository is used.
|
68 |
# type repository is used.
|
| 68 |
$ssh = '/usr/local/bin/ssh';
|
69 |
$ssh = '/usr/local/bin/ssh';
|
| 69 |
|
70 |
|
| Line 80... |
Line 81... |
| 80 |
# For Win32 deployments, these temp directories may not be accessible to
|
81 |
# For Win32 deployments, these temp directories may not be accessible to
|
| 81 |
# the user running IIS or Apache, so explicitly specify an apprioriate
|
82 |
# the user running IIS or Apache, so explicitly specify an apprioriate
|
| 82 |
# directory here that exists on the system. For *NIX platforms, there is
|
83 |
# directory here that exists on the system. For *NIX platforms, there is
|
| 83 |
# usually no need to do anything here.
|
84 |
# usually no need to do anything here.
|
| 84 |
#$tmpdir = '/tmp/codestriker';
|
85 |
#$tmpdir = '/tmp/codestriker';
|
| 85 |
#$tmpdir = 'c:/codestriker temp';
|
86 |
$tmpdir = 'f:/temp';
|
| 86 |
|
87 |
|
| 87 |
# If codestriker is installed differently to that described in the README file
|
88 |
# If codestriker is installed differently to that described in the README file
|
| 88 |
# (for example on the sourceforge servers), it may be necessary to explicitly
|
89 |
# (for example on the sourceforge servers), it may be necessary to explicitly
|
| 89 |
# specify the location of the codestriker_css as a URL.
|
90 |
# specify the location of the codestriker_css as a URL.
|
| 90 |
$codestriker_css = '';
|
91 |
$codestriker_css = '';
|
| Line 190... |
Line 191... |
| 190 |
# 'clearcase:dyn:viewname:/vobs'
|
191 |
# 'clearcase:dyn:viewname:/vobs'
|
| 191 |
#
|
192 |
#
|
| 192 |
# 12-Aug-07 SJK Windows patch: Using a view's drive letter with the
|
193 |
# 12-Aug-07 SJK Windows patch: Using a view's drive letter with the
|
| 193 |
# following syntax works. Don't change the use of colons etc - fragile.
|
194 |
# following syntax works. Don't change the use of colons etc - fragile.
|
| 194 |
#'clearcase:dyn:view_name:O:\\view_name'
|
195 |
#'clearcase:dyn:view_name:O:\\view_name'
|
| 195 |
'clearcase:dyn:auperaweb08_techgp_latest_codestriker_view:O:\\auperaweb08_techgp_latest_codestriker_view'
|
196 |
'clearcase:dyn:auperaweb08_techgp_latest_codestriker_view:O:\\auperaweb08_techgp_latest_codestriker_view',
|
| - |
|
197 |
|
| 196 |
|
198 |
#
|
| - |
|
199 |
# Vix specific syntax
|
| - |
|
200 |
# Embdedded RepoTag as used in RM and elsewhere in []
|
| 197 |
#Don't forget to comma-separate when adding more repositories!
|
201 |
# If present, then Module name are allowed to start with it.
|
| - |
|
202 |
#
|
| - |
|
203 |
'svn:https://auperasvn01.aupera.erggroup.com/svn[AUPERASVN01]',
|
| 198 |
);
|
204 |
);
|
| 199 |
|
205 |
|
| 200 |
# A mapping of repository URLs to names. In any screen where a
|
206 |
# A mapping of repository URLs to names. In any screen where a
|
| 201 |
# repository is displayed, if there is a mapping for the repository
|
207 |
# repository is displayed, if there is a mapping for the repository
|
| 202 |
# defined here, then the symbolic name will be displayed instead of
|
208 |
# defined here, then the symbolic name will be displayed instead of
|
| Line 204... |
Line 210... |
| 204 |
# username/password information, or the symbolic name is more
|
210 |
# username/password information, or the symbolic name is more
|
| 205 |
# meaningful to the end-user. If there is no mapping defined for a
|
211 |
# meaningful to the end-user. If there is no mapping defined for a
|
| 206 |
# specific repository, its URL will be displayed.
|
212 |
# specific repository, its URL will be displayed.
|
| 207 |
$repository_name_map =
|
213 |
$repository_name_map =
|
| 208 |
{
|
214 |
{
|
| 209 |
'clearcase:dyn:auperaweb08_techgp_latest_codestriker_view:O:\\auperaweb08_techgp_latest_codestriker_view' => 'Bangkok Project Codestriker Profile'
|
215 |
'clearcase:dyn:auperaweb08_techgp_latest_codestriker_view:O:\\auperaweb08_techgp_latest_codestriker_view' => 'VIX Perth ClearCase Repositories',
|
| - |
|
216 |
'svn:https://auperasvn01.aupera.erggroup.com/svn[AUPERASVN01]' => 'VIX Perth Subversion Repositories',
|
| 210 |
};
|
217 |
};
|
| 211 |
|
218 |
|
| 212 |
# A mapping of repositories to filename viewers. Examples of such systems
|
219 |
# A mapping of repositories to filename viewers. Examples of such systems
|
| 213 |
# would be CVSweb and ViewCVS, for local repositories. Mappings are
|
220 |
# would be CVSweb and ViewCVS, for local repositories. Mappings are
|
| 214 |
# not required for remote CVSweb and ViewCVS repositories, as they are
|
221 |
# not required for remote CVSweb and ViewCVS repositories, as they are
|
| Line 356... |
Line 363... |
| 356 |
# comments_sent_to_topic_author => 1,
|
363 |
# comments_sent_to_topic_author => 1,
|
| 357 |
# comments_sent_to_commenter => 0,
|
364 |
# comments_sent_to_commenter => 0,
|
| 358 |
# topic_state_change_sent_to_reviewers => 0
|
365 |
# topic_state_change_sent_to_reviewers => 0
|
| 359 |
comments_sent_to_topic_author => 0,
|
366 |
comments_sent_to_topic_author => 0,
|
| 360 |
comments_sent_to_commenter => 0,
|
367 |
comments_sent_to_commenter => 0,
|
| 361 |
topic_state_change_sent_to_reviewers => 1
|
368 |
topic_state_change_sent_to_reviewers => 1,
|
| - |
|
369 |
default_from_domain => 'vixtechnology.com',
|
| 362 |
};
|
370 |
};
|
| 363 |
|
371 |
|
| 364 |
# Default width of tabs. Most developers expect this to be 8, but
|
372 |
# Default width of tabs. Most developers expect this to be 8, but
|
| 365 |
# some expect to see 4. This is also stored in the user's cookie, and
|
373 |
# some expect to see 4. This is also stored in the user's cookie, and
|
| 366 |
# can be changed dynamically on the view topic screen.
|
374 |
# can be changed dynamically on the view topic screen.
|