File tree 3 files changed +10
-8
lines changed
3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1248
1248
* Artifact type prefix regexes to match in commit messages.
1249
1249
*/
1250
1250
artifactRegexes : [
1251
- / ( \s + ) ( D E \d + ) / ,
1252
- / ( \s + ) ( U S \d + ) / ,
1253
- / ( \s + ) ( T A \d + ) /
1251
+ / ( D E \d + ) / ,
1252
+ / ( U S \d + ) / ,
1253
+ / ( T A \d + ) /
1254
1254
] ,
1255
1255
1256
1256
columnCfgs : [ {
1261
1261
renderer : function ( value ) {
1262
1262
value = Ext . String . htmlEncode ( value ) ;
1263
1263
Ext . each ( this . artifactRegexes , function ( artifactRegex ) {
1264
- value = value . replace ( artifactRegex , '<a href="#" class="artifact-link">$1$2 </a>' ) ;
1264
+ value = value . replace ( artifactRegex , '<a href="#" class="artifact-link">$1</a>' ) ;
1265
1265
} ) ;
1266
1266
return value ;
1267
1267
}
Original file line number Diff line number Diff line change 2
2
3
3
RallyGithub is an integration between Rally and Github, written using the Rally App SDK 2.0.
4
4
5
+ [ View a screencast demo of the app] ( http://www.screencast.com/t/Nr9vXXvCz )
6
+
5
7
## License
6
8
7
9
RallyGithub is released under the MIT license. See the file LICENSE for the full text.
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ Ext.define('changeset.ui.ChangesetGrid', {
14
14
* Artifact type prefix regexes to match in commit messages.
15
15
*/
16
16
artifactRegexes : [
17
- / ( \s + ) ( D E \d + ) / ,
18
- / ( \s + ) ( U S \d + ) / ,
19
- / ( \s + ) ( T A \d + ) /
17
+ / ( D E \d + ) / ,
18
+ / ( U S \d + ) / ,
19
+ / ( T A \d + ) /
20
20
] ,
21
21
22
22
columnCfgs : [ {
@@ -27,7 +27,7 @@ Ext.define('changeset.ui.ChangesetGrid', {
27
27
renderer : function ( value ) {
28
28
value = Ext . String . htmlEncode ( value ) ;
29
29
Ext . each ( this . artifactRegexes , function ( artifactRegex ) {
30
- value = value . replace ( artifactRegex , '<a href="#" class="artifact-link">$1$2 </a>' ) ;
30
+ value = value . replace ( artifactRegex , '<a href="#" class="artifact-link">$1</a>' ) ;
31
31
} ) ;
32
32
return value ;
33
33
}
You can’t perform that action at this time.
0 commit comments