statoolinfosweb/src/fr/devinsy/statoolinfos/htmlize/propertyFileCheck.xhtml

94 lines
3.7 KiB
HTML
Raw Normal View History

2020-10-17 17:57:10 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>StatoolInfos</title>
<meta charset="UTF-8" />
<meta name="keywords" content="statoolinfos,devinsy,federation" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="statoolinfos.css" />
<script src="sorttable.js" />
<script src="Chart.bundle.min.js"></script>
</head>
<body>
<div class="row center_table" style="width: 1100px;">
<div class="center">
<h2 id="statsTitle">n/a</h2>
</div>
2021-01-07 17:49:57 +01:00
<div style="margin-left: 0px; margin-bottom: 10px;">
<a id="" href="#all" class="button" onclick="javascript:setView('ALL');">Tout</a>
<a id="" href="#shrinked" class="button" onclick="javascript:setView('SHRINKED');">Réduit</a>
<a id="" href="#alerts" class="button" onclick="javascript:setView('ALERTS');">Alertes</a>
<span style="margin-left: 150px;">Statistiques : </span>
<span id="lineCount" style="padding: 0 10px; background-color: #d5d5d5" title="Nombre de lignes">n/a</span>
<span id="warningCount" class="bg_warning" style="padding: 0 10px;" title="Attendus">n/a</span>
<span id="errorCount" class="bg_error" style="padding: 0 10px;" title="Erreurs">n/a</span>
<span id="voidCount" class="bg_void" style="padding: 0 10px;" title="Inconnus">n/a</span>
2020-10-29 19:41:53 +01:00
</div>
<div id="fullBlock" style="width: 100%;">
2021-01-08 03:15:11 +01:00
<table id="fullBlockTable" class="table_simple">
2020-10-17 17:57:10 +02:00
<tbody>
<tr id="line">
2021-01-07 17:49:57 +01:00
<td id="lineIndex" style="width: 30px; text-align: right; padding-right: 5px;">000</td>
2020-10-17 17:57:10 +02:00
<td id="lineContent" style="padding-left: 10px;">n/a</td>
2021-01-07 17:49:57 +01:00
<td id="lineComment" style="width: 200px; padding-left: 5px;">n/a</td>
2020-10-17 17:57:10 +02:00
</tr>
</tbody>
</table>
</div>
2020-10-29 19:41:53 +01:00
<div id="shrunkBlock" style="width: 100%; display: none;">
2021-01-08 03:15:11 +01:00
<table id="shrunkBlockTable" class="table_simple">
2020-10-29 19:41:53 +01:00
<tbody>
<tr id="shrunkLine">
2021-01-07 17:49:57 +01:00
<td id="shrunkLineIndex" style="width: 30px; text-align: right; right; padding-right: 5px;">000</td>
2020-10-29 19:41:53 +01:00
<td id="shrunkLineContent" style="padding-left: 10px;">n/a</td>
2021-01-07 17:49:57 +01:00
<td id="shrunkLineComment" style="width: 200px; padding-left: 5px;">n/a</td>
</tr>
</tbody>
</table>
</div>
<div id="alertBlock" style="width: 100%; display: none;">
2021-01-08 03:15:11 +01:00
<table id="alertBlockTable" class="table_simple">
2021-01-07 17:49:57 +01:00
<tbody>
<tr id="alertLine">
<td id="alertLineIndex" style="width: 30px; text-align: right; right; padding-right: 5px;">000</td>
<td id="alertLineContent" style="padding-left: 10px;">n/a</td>
<td id="alertLineComment" style="width: 200px; padding-left: 5px;">n/a</td>
2020-10-29 19:41:53 +01:00
</tr>
</tbody>
</table>
</div>
</div>
<script type="text/javascript">
2021-01-07 17:49:57 +01:00
function setView (selection)
2020-10-29 19:41:53 +01:00
{
2021-01-07 17:49:57 +01:00
document.getElementById ('fullBlock').style.display = 'none';
document.getElementById ('shrunkBlock').style.display = 'none';
document.getElementById ('alertBlock').style.display = 'none';
if (selection == 'ALL')
{
document.getElementById ('fullBlock').style.display = 'block';
document.getElementById ('shrunkBlock').style.display = 'none';
document.getElementById ('alertBlock').style.display = 'none';
}
else if (selection == 'SHRINKED')
2020-10-29 19:41:53 +01:00
{
document.getElementById ('fullBlock').style.display = 'none';
document.getElementById ('shrunkBlock').style.display = 'block';
2021-01-07 17:49:57 +01:00
document.getElementById ('alertBlock').style.display = 'none';
2020-10-29 19:41:53 +01:00
}
2021-01-07 17:49:57 +01:00
else if (selection == 'ALERTS')
2020-10-29 19:41:53 +01:00
{
2021-01-07 17:49:57 +01:00
document.getElementById ('fullBlock').style.display = 'none';
2020-10-29 19:41:53 +01:00
document.getElementById ('shrunkBlock').style.display = 'none';
2021-01-07 17:49:57 +01:00
document.getElementById ('alertBlock').style.display = 'block';
2020-10-29 19:41:53 +01:00
}
}
</script>
2020-10-17 17:57:10 +02:00
</body>
</html>