Skip to content

Commit 410f294

Browse files
authored
Merge pull request #102 from mreishman/1.7
1.7
2 parents ca42398 + 1cd52fb commit 410f294

30 files changed

+2285
-218
lines changed

core/conf/config.php

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,21 @@
1515
'browserStackUsername' => 'userNameExample',
1616
'buffer' => 500,
1717
'cacheTestEnable' => 'true',
18-
'configVersion' => 2,
18+
'configVersion' => 3,
1919
'cssVersion' => 1,
2020
'currentTheme' => 'Default',
2121
'defaultBaseUrl' => '',
2222
'defaultCombinedRate' => 0.075,
2323
'defaultErrorRate' => 0.05,
2424
'defaultFailRate' => 0.05,
25+
'defaultNewAddAlertEnabled' => 'true',
26+
'defaultNewAddAutoDeleteFiles' => '',
27+
'defaultNewAddExcludeTrim' => 'false',
28+
'defaultNewAddPattern' => '.log$',
29+
'defaultNewAddRecursive' => 'false',
30+
'defaultNewPathFile' => '/var/',
31+
'defaultNewPathFolder' => '/var/',
32+
'defaultNewPathOther' => '/var/',
2533
'defaultNumRetry' => 5,
2634
'defaultShowEta' => 'eta',
2735
'defaultShowProgressType' => 'percent',
@@ -37,7 +45,7 @@
3745
'locationForMonitor' => '',
3846
'locationForSearch' => '',
3947
'locationForStatus' => '',
40-
'locationOfTests' => '',
48+
'locationOfTests' => array( 'LocationOfTests1' => array('FileInformation' => '{}','FileType' => 'auto','Location' => '/var/www/html/Tests/Selenium/','Pattern' => '$','Recursive' => 'true')),
4149
'locationOfSelenium' => '',
4250
'logFileLocation' => '',
4351
'logFontColor' => '#FFFFFF',
@@ -60,6 +68,7 @@
6068
'sendCrashInfoJS' => 'true',
6169
'sendCrashInfoPHP' => 'true',
6270
'showSubFolderTests' => 'true',
71+
'sortTypeFileFolderPopup' => 'startsWithAndcontains',
6372
'themeVersion' => 3,
6473
'timeoutViewMain' => 6,
6574
'truncateLog' => 'true',

core/img/fileIconNR.png

4.95 KB
Loading

core/img/fileIconNW.png

25.6 KB
Loading

core/img/folderIconNR.png

4.9 KB
Loading

core/img/folderIconNW.png

4.75 KB
Loading

core/img/info.png

-31.8 KB
Loading

core/js/run.js

Lines changed: 77 additions & 66 deletions
Large diffs are not rendered by default.

core/js/settings.js

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,11 +260,37 @@ function poll()
260260
{
261261
if(checkIfChanges())
262262
{
263-
document.getElementById(titleOfPage+"Link").innerHTML = titleOfPage+"*";
263+
if(titleOfPage === "testList")
264+
{
265+
if(document.getElementById(titleOfPage+"Link").innerHTML !== "Test List"+"*")
266+
{
267+
document.getElementById(titleOfPage+"Link").innerHTML = titleOfPage+"*";
268+
}
269+
}
270+
else
271+
{
272+
if(document.getElementById(titleOfPage+"Link").innerHTML !== titleOfPage+"*")
273+
{
274+
document.getElementById(titleOfPage+"Link").innerHTML = titleOfPage+"*";
275+
}
276+
}
264277
}
265278
else
266279
{
267-
document.getElementById(titleOfPage+"Link").innerHTML = titleOfPage;
280+
if(titleOfPage === "testList")
281+
{
282+
if(document.getElementById(titleOfPage+"Link").innerHTML !== "Test List")
283+
{
284+
document.getElementById(titleOfPage+"Link").innerHTML = titleOfPage;
285+
}
286+
}
287+
else
288+
{
289+
if(document.getElementById(titleOfPage+"Link").innerHTML !== titleOfPage)
290+
{
291+
document.getElementById(titleOfPage+"Link").innerHTML = titleOfPage;
292+
}
293+
}
268294
}
269295
}
270296
catch(e)

0 commit comments

Comments
 (0)