Static Site
@ -1,79 +0,0 @@
|
|||||||
using Microsoft.AspNetCore.Mvc;
|
|
||||||
using Microsoft.AspNetCore.Mvc.Filters;
|
|
||||||
using OI.Metrology.Server.Models;
|
|
||||||
using OI.Metrology.Shared.Models.Stateless;
|
|
||||||
using OI.Metrology.Shared.ViewModels;
|
|
||||||
|
|
||||||
namespace OI.Metrology.Server.Controllers;
|
|
||||||
|
|
||||||
public class PagesController : Controller
|
|
||||||
{
|
|
||||||
|
|
||||||
private readonly bool _IsTestDatabase;
|
|
||||||
private readonly AppSettings _AppSettings;
|
|
||||||
private readonly IMetrologyRepository _MetrologyRepository;
|
|
||||||
|
|
||||||
public PagesController(AppSettings appSettings, IMetrologyRepository metrologyRepository)
|
|
||||||
{
|
|
||||||
_AppSettings = appSettings;
|
|
||||||
_MetrologyRepository = metrologyRepository;
|
|
||||||
_IsTestDatabase = appSettings.ConnectionString.Contains("test", StringComparison.InvariantCultureIgnoreCase);
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void OnActionExecuted(ActionExecutedContext context)
|
|
||||||
{
|
|
||||||
base.OnActionExecuted(context);
|
|
||||||
ViewBag.IsTestDatabase = _IsTestDatabase;
|
|
||||||
}
|
|
||||||
|
|
||||||
private string GetApiUrl() => string.IsNullOrEmpty(_AppSettings.ApiUrl) ? Url.Content("~/") : _AppSettings.ApiUrl[0] == '~' ? Url.Content(_AppSettings.ApiUrl) : _AppSettings.ApiUrl;
|
|
||||||
|
|
||||||
[HttpGet]
|
|
||||||
[Route("/")]
|
|
||||||
public IActionResult Index()
|
|
||||||
{
|
|
||||||
ViewBag.ApiUrl = GetApiUrl();
|
|
||||||
return View("AwaitingDispo");
|
|
||||||
}
|
|
||||||
|
|
||||||
[HttpGet]
|
|
||||||
[Route("/AwaitingDispo")]
|
|
||||||
[Route("/Metrology/AwaitingDispo")]
|
|
||||||
public IActionResult AwaitingDispo()
|
|
||||||
{
|
|
||||||
ViewBag.ApiUrl = GetApiUrl();
|
|
||||||
return View();
|
|
||||||
}
|
|
||||||
|
|
||||||
[HttpGet]
|
|
||||||
[Route("/RunInfo")]
|
|
||||||
[Route("/Metrology/RunInfo")]
|
|
||||||
public IActionResult RunInfo([FromQuery] int tooltypeid = 1, [FromQuery] int headerid = 0)
|
|
||||||
{
|
|
||||||
RunInfo m = new()
|
|
||||||
{
|
|
||||||
ToolTypeID = tooltypeid,
|
|
||||||
HeaderID = headerid,
|
|
||||||
HeaderAttachmentID = Guid.Empty,
|
|
||||||
};
|
|
||||||
if (headerid > 0)
|
|
||||||
{
|
|
||||||
m.HeaderAttachmentID = _MetrologyRepository.GetHeaderAttachmentID(tooltypeid, headerid);
|
|
||||||
}
|
|
||||||
ViewBag.ApiUrl = GetApiUrl();
|
|
||||||
return View(m);
|
|
||||||
}
|
|
||||||
|
|
||||||
[HttpGet]
|
|
||||||
[Route("/RunHeaders")]
|
|
||||||
[Route("/Metrology/RunHeaders")]
|
|
||||||
public IActionResult RunHeaders()
|
|
||||||
{
|
|
||||||
ViewBag.ApiUrl = GetApiUrl();
|
|
||||||
return View();
|
|
||||||
}
|
|
||||||
|
|
||||||
[HttpGet]
|
|
||||||
[Route("/Crash")]
|
|
||||||
public IActionResult Crash() => throw new Exception("Test unhandled exception");
|
|
||||||
}
|
|
@ -1,28 +0,0 @@
|
|||||||
@{
|
|
||||||
ViewData["Title"] = "Awaiting Disposition";
|
|
||||||
}
|
|
||||||
|
|
||||||
<h4>Awaiting Disposition</h4>
|
|
||||||
|
|
||||||
<div style="height: 450px;">
|
|
||||||
<table id="grid"></table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row" style="margin-top: 10px; margin-bottom: 20px;">
|
|
||||||
<div class="col-xs-1">
|
|
||||||
<input type="button" id="OpenButton" value="Open" />
|
|
||||||
</div>
|
|
||||||
<div class="col-xs-1">
|
|
||||||
<input type="button" id="RefreshButton" value="Refresh" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
$(document).ready(function () {
|
|
||||||
|
|
||||||
initAwaitingDisposition("@ViewBag.ApiUrl");
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
</script>
|
|
@ -1,3 +0,0 @@
|
|||||||
@{
|
|
||||||
ViewData["Title"] = "Metrology Home Page";
|
|
||||||
}
|
|
@ -1,57 +0,0 @@
|
|||||||
@{
|
|
||||||
ViewData["Title"] = "Run Headers";
|
|
||||||
}
|
|
||||||
|
|
||||||
<style>
|
|
||||||
html,
|
|
||||||
body {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.container-fluid {
|
|
||||||
height: 90%;
|
|
||||||
}
|
|
||||||
|
|
||||||
#HeaderGrid,
|
|
||||||
#FieldsGrid {
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.FieldTitle {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<h4>Run Headers</h4>
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<label for="ToolType">Tool Type:</label>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<div id="ToolType"></div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<table width="100%" height="80%">
|
|
||||||
<tr>
|
|
||||||
<td width="50%">
|
|
||||||
<table id="HeaderGrid"></table>
|
|
||||||
</td>
|
|
||||||
<td width="50%">
|
|
||||||
<table id="FieldsGrid"></table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
$(document).ready(function () {
|
|
||||||
|
|
||||||
initRunHeaders("@ViewBag.ApiUrl");
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
</script>
|
|
@ -1,104 +0,0 @@
|
|||||||
@model OI.Metrology.Shared.ViewModels.RunInfo
|
|
||||||
@{
|
|
||||||
ViewData["Title"] = "Run Information";
|
|
||||||
}
|
|
||||||
<style>
|
|
||||||
#HeaderGridDiv,
|
|
||||||
#DetailsGridDiv {
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<h4>Run Information</h4>
|
|
||||||
|
|
||||||
<form class="form-inline mb-4">
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="ToolType">Tool Type</label>
|
|
||||||
<div class="form-control" id="ToolType"></div>
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="StartDate">Start Time</label>
|
|
||||||
<div class="form-control mb-2 mr-sm-2" id="StartDate"></div>
|
|
||||||
<div class="form-control mb-2 mr-sm-2" id="StartTime"></div>
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="EndDate">End Time</label>
|
|
||||||
<div class="form-control mb-2 mr-sm-2" id="EndDate"></div>
|
|
||||||
<div class="form-control mb-2 mr-sm-2" id="EndTime"></div>
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<input class="btn btn-primary" type="button" value="Load Headers" id="LoadHeadersButton" />
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-check-label" for="chkAutoRefresh">
|
|
||||||
Auto-Refresh
|
|
||||||
</label>
|
|
||||||
<input class="form-check-input" type="checkbox" id="chkAutoRefresh">
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-check-label" for="chkCopyOnGet">
|
|
||||||
Copy-On-Get
|
|
||||||
</label>
|
|
||||||
<input class="form-check-input" type="checkbox" id="chkCopyOnGet">
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<div style="height: 300px;" id="HeaderGridDiv">
|
|
||||||
<span id="ToolTypeID" hidden></span>
|
|
||||||
<table id="HeaderGrid"></table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row" style="margin-top: 10px; margin-bottom: 20px;">
|
|
||||||
<div class="col-xs-1">
|
|
||||||
<input type="button" class="btn" id="GetDataButton" value="Get Data" disabled />
|
|
||||||
</div>
|
|
||||||
<div class="col-xs-1">
|
|
||||||
<input type="button" class="btn" id="ReviewButton" value="Review" disabled />
|
|
||||||
</div>
|
|
||||||
<div class="col-xs-1">
|
|
||||||
<input type="button" class="btn" id="RecipeParametersButton" value="Parameters" disabled />
|
|
||||||
</div>
|
|
||||||
<div class="col-xs-1">
|
|
||||||
<input type="button" class="btn" id="ViewButton" value="View" disabled />
|
|
||||||
</div>
|
|
||||||
<div class="col-xs-1">
|
|
||||||
<input type="button" class="btn" id="PinButton" value="Pin" disabled />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="DetailsDiv" hidden>
|
|
||||||
|
|
||||||
<span id="HeaderId" hidden></span>
|
|
||||||
<span id="HeaderAttachmentId" hidden></span>
|
|
||||||
<div style="padding-bottom: 20px;" id="DetailsGridDiv">
|
|
||||||
<table id="DetailsGrid"></table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="ExportDiv" style="margin-top: 10px;" hidden>
|
|
||||||
<input type="button" value="Send to OpenInsight" id="OIExportButton" />
|
|
||||||
<span id="OIExportResult" style="margin-left: 10px; font-weight: bold; color: #366b02;"></span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p style="margin-top: 20px;">
|
|
||||||
<iframe id="DataAttachmentFrame" style="height:900px; border-width:thin; margin-right: 10px;" hidden></iframe>
|
|
||||||
<iframe id="HeaderAttachmentFrame" style="height:900px; border-width:thin;" hidden></iframe>
|
|
||||||
|
|
||||||
<div id="DataAttachmentDiv" hidden>
|
|
||||||
<canvas id="DataAttachmentCanvas"></canvas>
|
|
||||||
</div>
|
|
||||||
<div id="HeaderAttachmentDiv" hidden>
|
|
||||||
<canvas id="HeaderAttachmentCanvas"></canvas>
|
|
||||||
</div>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
$(document).ready(function () {
|
|
||||||
|
|
||||||
initRunInfo("@ViewBag.ApiUrl", "@Model.ToolTypeID", "@Model.HeaderID", "@Model.HeaderAttachmentID");
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
</script>
|
|
@ -103,6 +103,6 @@
|
|||||||
$("#runDataSheet5").click(function () { runDataSheet(5, $(this).val()) });
|
$("#runDataSheet5").click(function () { runDataSheet(5, $(this).val()) });
|
||||||
$("#runDataSheet6").click(function () { runDataSheet(6, $(this).val()) });
|
$("#runDataSheet6").click(function () { runDataSheet(6, $(this).val()) });
|
||||||
$("#restartButton").click(function () { restartButton() });
|
$("#restartButton").click(function () { restartButton() });
|
||||||
initWorkMaterial("@ViewBag.ApiUrl");
|
initWorkMaterial("@ViewBag.ApiUrl", "");
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
@ -6,36 +6,42 @@
|
|||||||
<meta name="viewport" content="width=device-width" />
|
<meta name="viewport" content="width=device-width" />
|
||||||
<title>@ViewBag.Title</title>
|
<title>@ViewBag.Title</title>
|
||||||
|
|
||||||
<script src="~/js/modernizr-3.6.0-custom.js" type="text/javascript" asp-append-version="true"></script>
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/modernizr-3.6.0-custom.js?no-cache=2024-06-14-16-48"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
|
||||||
<link href="~/styles/bootstrap.min.css" rel="stylesheet" asp-append-version="true" />
|
<link href="https://metrology-viewer-prod.mes.infineon.com/styles/bootstrap.min.css?no-cache=2024-06-14-16-48"
|
||||||
<link href="~/igniteui/css/themes/bootstrap3/default/infragistics.theme.css" rel="stylesheet"
|
rel="stylesheet" />
|
||||||
asp-append-version="true" />
|
<link
|
||||||
<link href="~/igniteui/css/structure/infragistics.css" rel="stylesheet" asp-append-version="true" />
|
href="https://metrology-viewer-prod.mes.infineon.com/igniteui/css/themes/bootstrap3/default/infragistics.theme.css?no-cache=2024-06-14-16-48"
|
||||||
<link href="~/styles/site-server.css" rel="stylesheet" asp-append-version="true" />
|
rel="stylesheet" />
|
||||||
|
<link
|
||||||
|
href="https://metrology-viewer-prod.mes.infineon.com/igniteui/css/structure/infragistics.css?no-cache=2024-06-14-16-48"
|
||||||
|
rel="stylesheet" />
|
||||||
|
<link href="https://metrology-viewer-prod.mes.infineon.com/styles/site-server.css?no-cache=2024-06-14-16-48"
|
||||||
|
rel="stylesheet" />
|
||||||
|
<link href="https://metrology-viewer-prod.mes.infineon.com/styles/index.css?no-cache=2024-06-14-16-48"
|
||||||
|
rel="stylesheet" />
|
||||||
|
|
||||||
<script src="~/js/jquery-3.6.0.min.js" type="text/javascript" asp-append-version="true"></script>
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/jquery-3.6.0.min.js?no-cache=2024-06-14-16-48"
|
||||||
<script src="~/js/jquery-ui.min.js" type="text/javascript" asp-append-version="true"></script>
|
type="text/javascript"></script>
|
||||||
<script src="~/igniteui/js/infragistics.core.js" type="text/javascript" asp-append-version="true"></script>
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/jquery-ui.min.js?no-cache=2024-06-14-16-48"
|
||||||
<script src="~/igniteui/js/infragistics.lob.js" type="text/javascript" asp-append-version="true"></script>
|
type="text/javascript"></script>
|
||||||
<script src="~/igniteui/js/infragistics.dv.js" type="text/javascript" asp-append-version="true"></script>
|
<script
|
||||||
|
src="https://metrology-viewer-prod.mes.infineon.com/igniteui/js/infragistics.core.js?no-cache=2024-06-14-16-48"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
<script
|
||||||
|
src="https://metrology-viewer-prod.mes.infineon.com/igniteui/js/infragistics.lob.js?no-cache=2024-06-14-16-48"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
<script
|
||||||
|
src="https://metrology-viewer-prod.mes.infineon.com/igniteui/js/infragistics.dv.js?no-cache=2024-06-14-16-48"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
|
||||||
<script src="~/js/chart-4.3.0.min.js" type="module"></script>
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/chart-4.3.0.min.js" type="module"></script>
|
||||||
|
|
||||||
<script src="~/js/common.js" type="text/javascript" asp-append-version="true"></script>
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/common.js?no-cache=2024-06-14-16-48"
|
||||||
<script src="~/js/site-server.js" type="text/javascript" asp-append-version="true"></script>
|
type="text/javascript"></script>
|
||||||
<script>
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/site-server.js?no-cache=2024-06-14-16-48"
|
||||||
$(document).ready(function () {
|
type="text/javascript"></script>
|
||||||
if (location.pathname == "/") {
|
|
||||||
route = "/AwaitingDispo";
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
route = location.pathname;
|
|
||||||
}
|
|
||||||
$('ul.nav.navbar-nav').find('a[href="' + route + '"]')
|
|
||||||
.closest('li').addClass('alert-info');
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@ -57,7 +63,9 @@
|
|||||||
<span class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
</button>
|
</button>
|
||||||
<div class="navbar-brand">
|
<div class="navbar-brand">
|
||||||
<a href="/"><img src="~/images/IFX_LOGO_RGB.png" height="20" /></a>
|
<a href="https://metrology-viewer-prod.mes.infineon.com"><img
|
||||||
|
src="https://metrology-viewer-prod.mes.infineon.com/images/IFX_LOGO_RGB.png"
|
||||||
|
height="20" /></a>
|
||||||
OI Metrology Viewer
|
OI Metrology Viewer
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -91,8 +99,10 @@
|
|||||||
|
|
||||||
<div id="MessageModal"></div>
|
<div id="MessageModal"></div>
|
||||||
|
|
||||||
<script src="~/js/bootstrap.min.js" type="text/javascript" asp-append-version="true"></script>
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/bootstrap.min.js?no-cache=2024-06-14-16-48"
|
||||||
<script src="~/js/respond.min.js" type="text/javascript" asp-append-version="true"></script>
|
type="text/javascript"></script>
|
||||||
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/respond.min.js?no-cache=2024-06-14-16-48"
|
||||||
|
type="text/javascript"></script>
|
||||||
@RenderSection("scripts", required: false)
|
@RenderSection("scripts", required: false)
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
182
Server/wwwroot/index.html
Normal file
@ -0,0 +1,182 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width" />
|
||||||
|
<title>Run Information</title>
|
||||||
|
|
||||||
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/modernizr-3.6.0-custom.js?no-cache=2024-06-14-15-53"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
|
||||||
|
<link href="https://metrology-viewer-prod.mes.infineon.com/styles/bootstrap.min.css?no-cache=2024-06-14-15-53"
|
||||||
|
rel="stylesheet" />
|
||||||
|
<link
|
||||||
|
href="https://metrology-viewer-prod.mes.infineon.com/igniteui/css/themes/bootstrap3/default/infragistics.theme.css?no-cache=2024-06-14-15-53"
|
||||||
|
rel="stylesheet" />
|
||||||
|
<link
|
||||||
|
href="https://metrology-viewer-prod.mes.infineon.com/igniteui/css/structure/infragistics.css?no-cache=2024-06-14-15-53"
|
||||||
|
rel="stylesheet" />
|
||||||
|
<link href="https://metrology-viewer-prod.mes.infineon.com/styles/site-server.css?no-cache=2024-06-14-15-53"
|
||||||
|
rel="stylesheet" />
|
||||||
|
<link href="https://metrology-viewer-prod.mes.infineon.com/styles/index.css?no-cache=2024-06-14-15-53"
|
||||||
|
rel="stylesheet" />
|
||||||
|
|
||||||
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/jquery-3.6.0.min.js?no-cache=2024-06-14-15-53"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/jquery-ui.min.js?no-cache=2024-06-14-15-53"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
<script
|
||||||
|
src="https://metrology-viewer-prod.mes.infineon.com/igniteui/js/infragistics.core.js?no-cache=2024-06-14-15-53"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
<script
|
||||||
|
src="https://metrology-viewer-prod.mes.infineon.com/igniteui/js/infragistics.lob.js?no-cache=2024-06-14-15-53"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
<script
|
||||||
|
src="https://metrology-viewer-prod.mes.infineon.com/igniteui/js/infragistics.dv.js?no-cache=2024-06-14-15-53"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
|
||||||
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/chart-4.3.0.min.js" type="module"></script>
|
||||||
|
|
||||||
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/common.js?no-cache=2024-06-14-15-53"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/site-server.js?no-cache=2024-06-14-15-53"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="navbar navbar-fixed-top">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="navbar-header">
|
||||||
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
</button>
|
||||||
|
<div class="navbar-brand">
|
||||||
|
<a href="https://metrology-viewer-prod.mes.infineon.com"><img src="images/IFX_LOGO_RGB.png"
|
||||||
|
height="20" /></a>
|
||||||
|
OI Metrology Viewer
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navbar-collapse collapse">
|
||||||
|
<ul class="nav navbar-nav">
|
||||||
|
<li><a href="https://metrology-viewer-prod.mes.infineon.com/awaiting-disposition.html">Awaiting
|
||||||
|
Disposition</a></li>
|
||||||
|
<li><a href="https://metrology-viewer-prod.mes.infineon.com/index.html" class="alert-info">Run
|
||||||
|
Information</a></li>
|
||||||
|
<li><a href="https://metrology-viewer-prod.mes.infineon.com/run-headers.html">Run Headers</a></li>
|
||||||
|
<li><a href="https://oi-metrology-viewer-prod.mes.infineon.com/Export" target="_blank">Export</a>
|
||||||
|
</li>
|
||||||
|
<li><a href="https://oi-metrology-viewer-archive.mes.infineon.com/" target="_blank">Archive</a></li>
|
||||||
|
</ul>
|
||||||
|
<p class="navbar-text navbar-right">
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="container-fluid body-content">
|
||||||
|
|
||||||
|
<h4>Run Information</h4>
|
||||||
|
|
||||||
|
<form class="form-inline mb-4">
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="ToolType">Tool Type</label>
|
||||||
|
<div class="form-control" id="ToolType"></div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="StartDate">Start Time</label>
|
||||||
|
<div class="form-control mb-2 mr-sm-2" id="StartDate"></div>
|
||||||
|
<div class="form-control mb-2 mr-sm-2" id="StartTime"></div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="EndDate">End Time</label>
|
||||||
|
<div class="form-control mb-2 mr-sm-2" id="EndDate"></div>
|
||||||
|
<div class="form-control mb-2 mr-sm-2" id="EndTime"></div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<input class="btn btn-primary" type="button" value="Load Headers" id="LoadHeadersButton" />
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="form-check-label" for="chkAutoRefresh">
|
||||||
|
Auto-Refresh
|
||||||
|
</label>
|
||||||
|
<input class="form-check-input" type="checkbox" id="chkAutoRefresh">
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="form-check-label" for="chkCopyOnGet">
|
||||||
|
Copy-On-Get
|
||||||
|
</label>
|
||||||
|
<input class="form-check-input" type="checkbox" id="chkCopyOnGet">
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<div style="height: 300px;" id="HeaderGridDiv">
|
||||||
|
<span id="ToolTypeID" hidden></span>
|
||||||
|
<table id="HeaderGrid"></table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row" style="margin-top: 10px; margin-bottom: 20px;">
|
||||||
|
<div class="col-xs-1">
|
||||||
|
<input type="button" class="btn" id="GetDataButton" value="Get Data" disabled />
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-1">
|
||||||
|
<input type="button" class="btn" id="ReviewButton" value="Review" disabled />
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-1">
|
||||||
|
<input type="button" class="btn" id="RecipeParametersButton" value="Parameters" disabled />
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-1">
|
||||||
|
<input type="button" class="btn" id="ViewButton" value="View" disabled />
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-1">
|
||||||
|
<input type="button" class="btn" id="PinButton" value="Pin" disabled />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="DetailsDiv" hidden>
|
||||||
|
|
||||||
|
<span id="HeaderId" hidden></span>
|
||||||
|
<span id="HeaderAttachmentId" hidden></span>
|
||||||
|
<div style="padding-bottom: 20px;" id="DetailsGridDiv">
|
||||||
|
<table id="DetailsGrid"></table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="ExportDiv" style="margin-top: 10px;" hidden>
|
||||||
|
<input type="button" value="Send to OpenInsight" id="OIExportButton" />
|
||||||
|
<span id="OIExportResult" style="margin-left: 10px; font-weight: bold; color: #366b02;"></span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p style="margin-top: 20px;">
|
||||||
|
<iframe id="DataAttachmentFrame" style="height:900px; border-width:thin; margin-right: 10px;"
|
||||||
|
hidden></iframe>
|
||||||
|
<iframe id="HeaderAttachmentFrame" style="height:900px; border-width:thin;" hidden></iframe>
|
||||||
|
|
||||||
|
<div id="DataAttachmentDiv" hidden>
|
||||||
|
<canvas id="DataAttachmentCanvas"></canvas>
|
||||||
|
</div>
|
||||||
|
<div id="HeaderAttachmentDiv" hidden>
|
||||||
|
<canvas id="HeaderAttachmentCanvas"></canvas>
|
||||||
|
</div>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
<footer>
|
||||||
|
<p>© 2024 - Infineon Technologies</p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="MessageModal"></div>
|
||||||
|
|
||||||
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/bootstrap.min.js?no-cache=2024-06-14-15-53"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/respond.min.js?no-cache=2024-06-14-15-53"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
<script src="https://metrology-viewer-prod.mes.infineon.com/js/index.js?no-cache=2024-06-14-15-53"
|
||||||
|
type="text/javascript"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
5
Static/.vscode/mklink.md
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# mklink
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mklink /J "D:\wwwRoot" "L:\DevOps\Mesa_FI\OI-Metrology\Static"
|
||||||
|
```
|
5
Static/.vscode/settings.json
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"cSpell.words": [
|
||||||
|
"Infineon"
|
||||||
|
]
|
||||||
|
}
|
85
Static/awaiting-disposition.html
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width" />
|
||||||
|
<title>Awaiting Disposition</title>
|
||||||
|
|
||||||
|
<script src="js/modernizr-3.6.0-custom.js?no-cache=2024-06-14-15-41" type="text/javascript"></script>
|
||||||
|
|
||||||
|
<link href="styles/bootstrap.min.css?no-cache=2024-06-14-15-41" rel="stylesheet" />
|
||||||
|
<link href="igniteui/css/themes/bootstrap3/default/infragistics.theme.css?no-cache=2024-06-14-15-41"
|
||||||
|
rel="stylesheet" />
|
||||||
|
<link href="igniteui/css/structure/infragistics.css?no-cache=2024-06-14-15-41" rel="stylesheet" />
|
||||||
|
<link href="styles/site-server.css?no-cache=2024-06-14-15-41" rel="stylesheet" />
|
||||||
|
|
||||||
|
<script src="js/jquery-3.6.0.min.js?no-cache=2024-06-14-15-41" type="text/javascript"></script>
|
||||||
|
<script src="js/jquery-ui.min.js?no-cache=2024-06-14-15-41" type="text/javascript"></script>
|
||||||
|
<script src="igniteui/js/infragistics.core.js?no-cache=2024-06-14-15-41" type="text/javascript"></script>
|
||||||
|
<script src="igniteui/js/infragistics.lob.js?no-cache=2024-06-14-15-41" type="text/javascript"></script>
|
||||||
|
<script src="igniteui/js/infragistics.dv.js?no-cache=2024-06-14-15-41" type="text/javascript"></script>
|
||||||
|
|
||||||
|
<script src="js/chart-4.3.0.min.js" type="module"></script>
|
||||||
|
|
||||||
|
<script src="js/common.js?no-cache=2024-06-14-15-41" type="text/javascript"></script>
|
||||||
|
<script src="js/site-server.js?no-cache=2024-06-14-15-41" type="text/javascript"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="navbar navbar-fixed-top">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="navbar-header">
|
||||||
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
</button>
|
||||||
|
<div class="navbar-brand">
|
||||||
|
<a href="/"><img src="images/IFX_LOGO_RGB.png" height="20" /></a>
|
||||||
|
OI Metrology Viewer
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navbar-collapse collapse">
|
||||||
|
<ul class="nav navbar-nav">
|
||||||
|
<li><a href="awaiting-disposition.html" class="alert-info">Awaiting Disposition</a></li>
|
||||||
|
<li><a href="index.html">Run Information</a></li>
|
||||||
|
<li><a href="run-headers.html">Run Headers</a></li>
|
||||||
|
<li><a href="https://oi-metrology-viewer-prod.mes.infineon.com/Export" target="_blank">Export</a></li>
|
||||||
|
<li><a href="https://oi-metrology-viewer-archive.mes.infineon.com/" target="_blank">Archive</a></li>
|
||||||
|
</ul>
|
||||||
|
<p class="navbar-text navbar-right">
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="container-fluid body-content">
|
||||||
|
<h4>Awaiting Disposition</h4>
|
||||||
|
|
||||||
|
<div style="height: 450px;">
|
||||||
|
<table id="grid"></table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row" style="margin-top: 10px; margin-bottom: 20px;">
|
||||||
|
<div class="col-xs-1">
|
||||||
|
<input type="button" id="OpenButton" value="Open" />
|
||||||
|
</div>
|
||||||
|
<div class="col-xs-1">
|
||||||
|
<input type="button" id="RefreshButton" value="Refresh" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr />
|
||||||
|
<footer>
|
||||||
|
<p>© 2024 - Infineon Technologies</p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="MessageModal"></div>
|
||||||
|
|
||||||
|
<script src="js/bootstrap.min.js?no-cache=2024-06-14-15-41" type="text/javascript"></script>
|
||||||
|
<script src="js/respond.min.js?no-cache=2024-06-14-15-41" type="text/javascript"></script>
|
||||||
|
<script src="js/awaiting-disposition.js?no-cache=2024-06-14-15-41" type="text/javascript"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
Before Width: | Height: | Size: 272 KiB After Width: | Height: | Size: 272 KiB |
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 210 B After Width: | Height: | Size: 210 B |
Before Width: | Height: | Size: 225 B After Width: | Height: | Size: 225 B |
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 418 B After Width: | Height: | Size: 418 B |
Before Width: | Height: | Size: 985 B After Width: | Height: | Size: 985 B |
Before Width: | Height: | Size: 964 B After Width: | Height: | Size: 964 B |
Before Width: | Height: | Size: 486 B After Width: | Height: | Size: 486 B |
Before Width: | Height: | Size: 483 B After Width: | Height: | Size: 483 B |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 999 B After Width: | Height: | Size: 999 B |
Before Width: | Height: | Size: 993 B After Width: | Height: | Size: 993 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB |
Before Width: | Height: | Size: 986 B After Width: | Height: | Size: 986 B |
Before Width: | Height: | Size: 1011 B After Width: | Height: | Size: 1011 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1009 B After Width: | Height: | Size: 1009 B |
Before Width: | Height: | Size: 1017 B After Width: | Height: | Size: 1017 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1010 B After Width: | Height: | Size: 1010 B |
Before Width: | Height: | Size: 1006 B After Width: | Height: | Size: 1006 B |
Before Width: | Height: | Size: 995 B After Width: | Height: | Size: 995 B |
Before Width: | Height: | Size: 1010 B After Width: | Height: | Size: 1010 B |
Before Width: | Height: | Size: 1006 B After Width: | Height: | Size: 1006 B |
Before Width: | Height: | Size: 976 B After Width: | Height: | Size: 976 B |
Before Width: | Height: | Size: 958 B After Width: | Height: | Size: 958 B |
Before Width: | Height: | Size: 965 B After Width: | Height: | Size: 965 B |
Before Width: | Height: | Size: 965 B After Width: | Height: | Size: 965 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 980 B After Width: | Height: | Size: 980 B |
Before Width: | Height: | Size: 1016 B After Width: | Height: | Size: 1016 B |
Before Width: | Height: | Size: 1013 B After Width: | Height: | Size: 1013 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 978 B After Width: | Height: | Size: 978 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 638 B After Width: | Height: | Size: 638 B |
Before Width: | Height: | Size: 280 B After Width: | Height: | Size: 280 B |
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 307 B |
Before Width: | Height: | Size: 318 B After Width: | Height: | Size: 318 B |
Before Width: | Height: | Size: 300 B After Width: | Height: | Size: 300 B |
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 1008 B After Width: | Height: | Size: 1008 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 142 B After Width: | Height: | Size: 142 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 730 B After Width: | Height: | Size: 730 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |