| Line 267... |
Line 267... |
| 267 |
window.attachEvent && window.attachEvent("onload",InitShow);
|
267 |
window.attachEvent && window.attachEvent("onload",InitShow);
|
| 268 |
|
268 |
|
| 269 |
function InitShow(e)
|
269 |
function InitShow(e)
|
| 270 |
{
|
270 |
{
|
| 271 |
toggleDispClass('rootCause',0);
|
271 |
toggleDispClass('rootCause',0);
|
| - |
|
272 |
toggleDispClass('rootNoEnv',0);
|
| 272 |
toggleDispClass('rootFile',0);
|
273 |
toggleDispClass('rootFile',0);
|
| 273 |
toggleDispClass('rootIndirect',0);
|
274 |
toggleDispClass('rootIndirect',0);
|
| 274 |
toggleDispClass('manualCause',0);
|
275 |
toggleDispClass('manualCause',0);
|
| 275 |
}
|
276 |
}
|
| 276 |
|
277 |
|
| Line 392... |
Line 393... |
| 392 |
<td colspan=3 class="body_row">
|
393 |
<td colspan=3 class="body_row">
|
| 393 |
<fieldset class="fset" align="right" style=" border: 1px groove; ">
|
394 |
<fieldset class="fset" align="right" style=" border: 1px groove; ">
|
| 394 |
Show
|
395 |
Show
|
| 395 |
<input type="checkbox" checked value=0 name="showManual" id="manualCause" onClick="toggleDispClass('manualCause',1);">Manual Exclusions
|
396 |
<input type="checkbox" checked value=0 name="showManual" id="manualCause" onClick="toggleDispClass('manualCause',1);">Manual Exclusions
|
| 396 |
<input type="checkbox" checked value=0 name="showCause" id="rootCause" onClick="toggleDispClass('rootCause',1);">Config Errors
|
397 |
<input type="checkbox" checked value=0 name="showCause" id="rootCause" onClick="toggleDispClass('rootCause',1);">Config Errors
|
| - |
|
398 |
<input type="checkbox" checked value=0 name="showNoEnv" id="rootNoEnv" onClick="toggleDispClass('rootNoEnv',1);">Env Errors
|
| 397 |
<input type="checkbox" checked value=0 name="showFile" id="rootFile" onClick="toggleDispClass('rootFile',1);">Build Errors
|
399 |
<input type="checkbox" checked value=0 name="showFile" id="rootFile" onClick="toggleDispClass('rootFile',1);">Build Errors
|
| 398 |
<input type="checkbox" checked value=0 name="showIndirect" id="rootIndirect" onClick="toggleDispClass('rootIndirect',1);">Indirect Exclusions
|
400 |
<input type="checkbox" checked value=0 name="showIndirect" id="rootIndirect" onClick="toggleDispClass('rootIndirect',1);">Indirect Exclusions
|
| 399 |
</fieldset>
|
401 |
</fieldset>
|
| 400 |
</td>
|
402 |
</td>
|
| 401 |
</tr>
|
403 |
</tr>
|
| Line 429... |
Line 431... |
| 429 |
If (IsNull(rsQry("root_file")) AND IsNull(rsQry("root_cause"))) Then
|
431 |
If (IsNull(rsQry("root_file")) AND IsNull(rsQry("root_cause"))) Then
|
| 430 |
rowData = "Manually Excluded"
|
432 |
rowData = "Manually Excluded"
|
| 431 |
rowClass = "manualCause"
|
433 |
rowClass = "manualCause"
|
| 432 |
|
434 |
|
| 433 |
ElseIf IsNull(rsQry("root_file")) Then
|
435 |
ElseIf IsNull(rsQry("root_file")) Then
|
| 434 |
rowClass = "rootCause"
|
- |
|
| 435 |
rowData = rsQry("root_cause")
|
436 |
rowData = rsQry("root_cause")
|
| - |
|
437 |
If InStr(rowData, "no build env") Then
|
| - |
|
438 |
rowClass = "rootNoEnv"
|
| - |
|
439 |
Else
|
| - |
|
440 |
rowClass = "rootCause"
|
| - |
|
441 |
End If
|
| 436 |
|
442 |
|
| 437 |
Else
|
443 |
Else
|
| 438 |
rowClass = "rootFile"
|
444 |
rowClass = "rootFile"
|
| 439 |
rowData = "<a class=""txt_linked"" title=""" & rsQry("root_file") &_
|
445 |
rowData = "<a class=""txt_linked"" title=""" & rsQry("root_file") &_
|
| 440 |
" Log file may have expired."" " &_
|
446 |
" Log file may have expired."" " &_
|