e122f6435a
Add spruce scraper with CLI, session management, parsers, progress tracking, recheck logic, and test suite. Includes example config and README.
783 lines
30 KiB
HTML
783 lines
30 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>Root View</title>
|
|
|
|
<!-- <script src="menuscript.js" language="javascript" type="text/javascript"></script> -->
|
|
<link rel="stylesheet" type="text/css" href="menustyle.css" media="screen, print" />
|
|
|
|
<script src="menuscript.js" language="javascript" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<style>
|
|
P {
|
|
font: 9pt Arial, Helvetica, sans-serif;
|
|
}
|
|
.header {
|
|
font: bold 22pt Arial, Helvetica, sans-serif;
|
|
color: #008080;
|
|
text-align: center;
|
|
}
|
|
.header_desc {
|
|
font: bold 10pt Arial, Helvetica, sans-serif;
|
|
color: #800000;
|
|
text-align: center;
|
|
}
|
|
|
|
.error {
|
|
font: bold 16pt Arial, Helvetica, sans-serif;
|
|
color: #ff0000;
|
|
text-align: center;
|
|
}
|
|
|
|
.information {
|
|
font: 10pt Arial, Helvetica, sans-serif;
|
|
color: #0000ff;
|
|
text-align: left;
|
|
}
|
|
|
|
.data_title {
|
|
font: bold 9pt Arial, Helvetica, sans-serif;
|
|
color: white;
|
|
background: #696969;
|
|
text-align: left;
|
|
}
|
|
|
|
.data_odd {
|
|
font: 9pt Arial, Helvetica, sans-serif;
|
|
font-weight : lighter;
|
|
background-color : #eeeeee;
|
|
color : #000000;
|
|
}
|
|
|
|
.data_even {
|
|
font: 9pt Arial, Helvetica, sans-serif;
|
|
font-weight : lighter;
|
|
background-color : #ffffff;
|
|
color : #000000;
|
|
}
|
|
|
|
.data {
|
|
font: 9pt Arial, Helvetica, sans-serif;
|
|
color: #000000;
|
|
}
|
|
|
|
.login {
|
|
font: bold 9pt Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.header_link {
|
|
font: bold 9pt Arial, Helvetica, sans-serif;
|
|
color: white;
|
|
background: #696969;
|
|
text-align: left;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#pointer_div {
|
|
position:relative;
|
|
border-style:solid;
|
|
border-width:2px;
|
|
border-color:red;
|
|
margin:5px;
|
|
/*cursor:crosshair;*/
|
|
}
|
|
|
|
#data_left {
|
|
text-align: left;
|
|
}
|
|
|
|
#image_frame {
|
|
background-color: #70a0b0;
|
|
font-size:2px;
|
|
}
|
|
|
|
.red_text {
|
|
color: #ff0000;
|
|
font: bold 9pt Arial, Helvetica, sans-serif;
|
|
}
|
|
</style>
|
|
<script>
|
|
|
|
|
|
function validateFilename(filenameID) {
|
|
var item = getObj(filenameID);
|
|
var result = item.value;
|
|
|
|
// based on code found on http://www.codingforums.com/showthread.php?t=194468
|
|
if (/^[a-z0-9\.\s\-\_\[\]]*$/i.test(result) === false) { // anything but a-zA-Z0-9, [,], dot, hypen, space, underscore is disallowed
|
|
alert ("File name " + result + " contains invalid character(s)! \r\nAnything but a-z, A-Z, 0-9, square brackets, dot, hypen, space, underscore is disallowed");
|
|
item.focus();
|
|
return false;
|
|
}
|
|
// If we allow using spaces in filenames, we should at least strip any leading or trailing spaces
|
|
item.value = item.value.replace(/^\s+|\s+$/g,""); // the g switch is essential!!
|
|
return true;
|
|
}
|
|
|
|
function getObj(ElementId)
|
|
{
|
|
if (document.getElementById) // BYI now this method works perfect for both IE and NS
|
|
return document.getElementById(ElementId);
|
|
|
|
return false;
|
|
}
|
|
function showit(ElementId)
|
|
{
|
|
getObj(ElementId).style.display='block';
|
|
}
|
|
function hideit(ElementId)
|
|
{
|
|
getObj(ElementId).style.display='none';
|
|
}
|
|
function FormatFloat(v)
|
|
{
|
|
if (v=="")
|
|
return v;
|
|
return Math.round(v*100)/100;
|
|
}
|
|
function validateNumber(objId){
|
|
// BYI the function validates if the value of the data entry element on the form is an integer or a float
|
|
// an alert message is popped up in case of error, the problem field is focused
|
|
// the function returns false so that if used in OnSubmit clause it will force the user to re-enter the data
|
|
var item = getObj(objId);
|
|
var result = item.value;
|
|
|
|
if (isNaN(Number(result))) {
|
|
alert("The value must be an integer or float value.");
|
|
item.focus();
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function validatePositiveNumber(objId) {
|
|
var item = getObj(objId);
|
|
var result = item.value;
|
|
|
|
if (!validateNumber(objId))
|
|
return false;
|
|
if (result < 0) {
|
|
alert("The value must be a positive value.");
|
|
item.focus();
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
function PanicStop()
|
|
{
|
|
// srn - do not ask for confirmation
|
|
//if (!confirm("Are you sure you want to stop all process?"))
|
|
// return;
|
|
|
|
var f = document.stop_form;
|
|
f.submit();
|
|
}
|
|
</script>
|
|
|
|
<form name="stop_form" action="index.php" method="post">
|
|
<input type="hidden" name="cmd" value="stop">
|
|
</form>
|
|
|
|
<!-- Button menuing system added 8/2/2009 by gbr -->
|
|
|
|
<table border="0" cellpadding="0" cellspacing="0" width=100%><tr><td>
|
|
<a href="index.php?cmd=scan"
|
|
onmouseover="setOverImg('2','');overSub=true;showSubMenu('submenu2','button2');"
|
|
onmouseout="setOutImg('2','');overSub=false;setTimeout('hideSubMenu(\'submenu2\')',delay);" target="">
|
|
<img src="buttons/button2up.png" border="0" id="button2" vspace="0" hspace="0"></a>
|
|
|
|
|
|
<a href="index.php?cmd=about&mode=photos"
|
|
onmouseover="setOverImg('5','');overSub=true;showSubMenu('submenu5','button5');"
|
|
onmouseout="setOutImg('5','');overSub=false;setTimeout('hideSubMenu(\'submenu5\')',delay);" target="">
|
|
<img src="buttons/button5up.png" border="0" id="button5" vspace="0" hspace="0"></a>
|
|
|
|
<a href="index.php?cmd=about"
|
|
onmouseover="setOverImg('6','');overSub=true;showSubMenu('submenu6','button6');"
|
|
onmouseout="setOutImg('6','');overSub=false;setTimeout('hideSubMenu(\'submenu6\')',delay);" target="">
|
|
<img src="buttons/button6up.png" border="0" id="button6" vspace="0" hspace="0"></a>
|
|
|
|
<a href="index.php?cmd=movies"
|
|
onmouseover="setOverImg('9','');overSub=true;showSubMenu('submenu9','button9');"
|
|
onmouseout="setOutImg('9','');overSub=false;setTimeout('hideSubMenu(\'submenu9\')',delay);" target="">
|
|
<img src="buttons/movies_up.png" border="0" id="button9" vspace="0" hspace="0"></a>
|
|
|
|
<a href="index.php?cmd=logoff"
|
|
onmouseover="setOverImg('10','');overSub=true;showSubMenu('submenu10','button10');"
|
|
onmouseout="setOutImg('10','');overSub=false;setTimeout('hideSubMenu(\'submenu10\')',delay);" target="">
|
|
<img src="buttons/button9up.png" border="0" id="button10" vspace="0" hspace="0"></a><br>
|
|
</td></tr></table>
|
|
|
|
<script>
|
|
function explainWhyNot()
|
|
{
|
|
document.getElementById("WhyNot").innerHTML="<CENTER><font color=red>Cannot connect to the RootView server you selected.</font></CENTER><br>The RootView server you selected is supposed to be a service running on the machine at IP address 205.149.147.130 and Port 17026. The possible problems and suggested solutions are:<br><br>1. The host machine 205.149.147.130 is not running, or is not connected to the internet. Try pinging 205.149.147.130.<br><br>2. The RootView service is not started, or paused. On the host machine 205.149.147.130, log in as the Administrator. Right click on My Computer, and click on Manage|Services. Find RootView Service in the list of services. In the Status column of the Services window, confirm that the service is started. If the service is stopped or paused, Start the service.<br><br>3. The Rootview service is attempting to open the wrong port, that is, not opening the socket at port 17026. This can be checked by opening the rootviewsrv.ini file in the same directory at the rootviewsrv.exe file and looking for the section [TCPIP]. In that section check the Port value is 17026. If it is incorrect, change it to the correct port, save the file, and restart the service.<br><br>4. The firewall on the computer that is running the service is blocking port 17026. Check Start|Control Panel|Firewall and click on the Exceptions tab. Check for a RootView entry. Select it and click on Edit to view the port number. Make sure that you have a RootView entry with a Port number that equals 17026.<br><br>";
|
|
}
|
|
</script><TABLE ALIGN=CENTER><TR><TD ALIGN=CENTER><div class="header">BW3-20 [AMR-26] <FONT SIZE="-1">v3.0.0.33</font></div><div class="header_desc"></div><font size='+1'>(Scan)</font></TD><TD> </TD><TD></TD></TR></TABLE>
|
|
<table>
|
|
<tr>
|
|
<td valign=top>
|
|
<table cellpassing=0 cellspacing=0 border=0>
|
|
<form name="filterform" method="POST" action="index.php">
|
|
<input type="hidden" name="cmd" value="scan">
|
|
<input type="hidden" name="start" value="0">
|
|
<input type="hidden" name="order" value="0">
|
|
<input type="hidden" name="order_dir" value="1">
|
|
|
|
<!-- labels for edit controls in first row. 2/7/2011 gbr -->
|
|
<tr>
|
|
<td VALIGN=TOP>Filter Scans: </td>
|
|
<td VALIGN=TOP>
|
|
<td VALIGN=TOP> User:</td>
|
|
<td VALIGN=TOP> Date From:</td>
|
|
<td VALIGN=TOP> Date To:</td>
|
|
<TD VALIGN=TOP>From Scan ID</TD> <!-- added 2/7/2011 gbr per block 51 -->
|
|
<TD VALIGN=TOP>To Scan ID</TD> <!-- added 2/7/2011 gbr per block 51 -->
|
|
<td VALIGN=TOP> Scans per page:</td>
|
|
</tr>
|
|
|
|
<!-- edit controls in second row. 2/7/2011 gbr -->
|
|
<tr>
|
|
<TD> </TD>
|
|
<td VALIGN=TOP>
|
|
<input type="hidden" name="FilterScanStatus" value="2">
|
|
</td>
|
|
<td VALIGN=TOP><select name="FilterUser">
|
|
<option value="0">All</option>
|
|
<option value="1">yuri</option>
|
|
<option value="2">George Rothbart</option>
|
|
<option value="3">Mike Taggart</option>
|
|
<option value="23">Joanne Childs</option>
|
|
<option value="7">Mike Allen</option>
|
|
<option value="14">Tom Unwin</option>
|
|
<option value="26" selected>Mark/Kyle</option>
|
|
<option value="22">Colleen Iverson</option>
|
|
</select></td>
|
|
<td VALIGN=TOP><input type=hidden name=hidedate value=""><input type="text" name="FilterDtFrom" id="FilterDtFrom" value="" size=10 maxlength=10 ><a href="javascript:void(0)" onclick="gfPop.fStartPop(document.filterform.FilterDtFrom,document.filterform.hidedate);return false;" HIDEFOCUS><img name="popcal" align="absmiddle" src="js/popcalendarrange/calbtn.gif" width="34" height="22" border="0" alt="date"></a></TD>
|
|
<td VALIGN=TOP><input type="text" name="FilterDtTo" id="FilterDtTo" value="" size=10 maxlength=10 ><a href="javascript:void(0)" onclick="gfPop.fStartPop(document.filterform.FilterDtTo,document.filterform.hidedate);return false;" HIDEFOCUS><img name="popcal" align="absmiddle" src="js/popcalendarrange/calbtn.gif" width="34" height="22" border="0" alt="date"></a> <TD VALIGN=TOP><INPUT name="FilterIdFrom" value=0 SIZE=9></TD><TD VALIGN=TOP><INPUT name="FilterIdTo" value=0 SIZE=9></TD> <td VALIGN=TOP><select name="FilterCount">
|
|
<option value="20" selected>20</option>
|
|
<option value="40">40</option>
|
|
<option value="80">80</option>
|
|
<option value="160">160</option>
|
|
<option value="320">320</option>
|
|
</select></td>
|
|
<td VALIGN=TOP><input type=submit value=" Go "></td>
|
|
</tr>
|
|
|
|
</form>
|
|
</table>
|
|
</td>
|
|
<td width=100> </td>
|
|
<td>
|
|
<FIELDSET>
|
|
<LEGEND>Comparison Mode</LEGEND>
|
|
<table cellpadding=0 cellspacing=0 border=0>
|
|
<form name="compareform" method="POST" action="index.php" onsubmit="return validateScanList();">
|
|
<input type="hidden" name="cmd" value="scan">
|
|
<input type="hidden" name="mode" value="compare">
|
|
<input type="hidden" name="scanList" value="">
|
|
<tr><td align=center><table cellpadding=0 cellspacing=0 border=0>
|
|
<tr>
|
|
<td><input type="RADIO" name="cmp_mode" value="0" CHECKED></td>
|
|
<td align='left'>Fit To Screen</td>
|
|
</tr>
|
|
<tr>
|
|
<td><input type="RADIO" name="cmp_mode" value="1"></td>
|
|
<td align='left'>Normal Size</td>
|
|
</tr>
|
|
</table></td></tr>
|
|
<tr><td align=center><input type="submit" value=" Compare ">
|
|
</form>
|
|
</td></tr>
|
|
</table>
|
|
</FIELDSET>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<!-- PopCalendar(tag name and id must match) Tags should sit at the page bottom -->
|
|
<iframe width=174 height=189 name="gToday:normal:agenda.js" id="gToday:normal:agenda.js"
|
|
src="js/popcalendarrange/ipopeng_001.htm" scrolling="no" frameborder="0"
|
|
style="visibility:visible; z-index:999; position:absolute; left:-500px; top:0px;">
|
|
</iframe>
|
|
<p align=center>
|
|
First
|
|
Previous
|
|
1
|
|
<a href="JavaScript: SetPage(20);">2</a>
|
|
<a href="JavaScript: SetPage(20);">Next</a>
|
|
<a href="JavaScript: SetPage(20);">Last</a>
|
|
</p>
|
|
<script>
|
|
function DeleteScan(id, name)
|
|
{
|
|
if (!confirm("Are you sure you want to delete \""+name+"\" scan?"))
|
|
return;
|
|
|
|
var frm = document.deleteform;
|
|
frm.id.value=id;
|
|
frm.submit();
|
|
}
|
|
function SetOrder(new_order)
|
|
{
|
|
// current order and direction
|
|
order = 0;
|
|
order_dir = 1;
|
|
|
|
// if same order then change direction
|
|
if (order==new_order)
|
|
order_dir = (order_dir==0 ? 1 : 0);
|
|
else {
|
|
order = new_order;
|
|
order_dir = 0;
|
|
}
|
|
|
|
// update the screen
|
|
var f = document.filterform;
|
|
f.order.value = order;
|
|
f.order_dir.value = order_dir;
|
|
f.submit();
|
|
}
|
|
function SetPage(n)
|
|
{
|
|
var f = document.filterform;
|
|
f.start.value = n;
|
|
f.submit();
|
|
}
|
|
|
|
function processScanId(current_state, scanID) {
|
|
var scan = scanID.toString();
|
|
var f = document.compareform;
|
|
var str = f.scanList.value;
|
|
if ((current_state == true) && (str.indexOf(" "+ scan) == -1)) {
|
|
str = str + " " + scan;
|
|
f.scanList.value = str;
|
|
}
|
|
if ((current_state == false) && (str.indexOf(" "+ scan) > -1)) {
|
|
str = str.replace(" "+ scan, "");
|
|
f.scanList.value = str;
|
|
}
|
|
//alert("ScanID(s)=>" + str+"<, current state is "+ (current_state? "checked" : "unchecked"));
|
|
}
|
|
|
|
function validateScanList() {
|
|
var f = document.compareform;
|
|
var str = f.scanList.value;
|
|
if ((str == '') || (str.indexOf(" ") == str.lastIndexOf(" "))) {
|
|
alert("Please select at least 2 scans for comparison!");
|
|
return false;
|
|
}
|
|
//alert("Selected scans for comparison: "+f.scanList.value);
|
|
return true;
|
|
}
|
|
|
|
</script>
|
|
<table cellpadding=1 cellspacing=0 border="0" bgcolor="#000000" width="100%">
|
|
|
|
<form action="index.php" name="deleteform" method="post">
|
|
<input type="hidden" name="cmd" value="scan">
|
|
<input type="hidden" name="mode" value="delete">
|
|
<input type="hidden" name="id" value="">
|
|
</form>
|
|
|
|
<tr><td>
|
|
<table cellspacing=0 cellpadding=3 border=0 width="100%">
|
|
<tr class="data_title">
|
|
<td><table cellpadding=0 cellspacing=0 border=0><tr><td><a class=header_link href="JavaScript: SetOrder(0);">ID</a></td>
|
|
<td> <img src="images/order_desc.gif" width=18 height=18 border=0></td>
|
|
</tr></table></td>
|
|
<td><a class=header_link href="JavaScript: SetOrder(1);">Name</a></td>
|
|
<td><a class=header_link href="JavaScript: SetOrder(2);">Scan Time</a></td>
|
|
<td><a class=header_link href="JavaScript: SetOrder(3);">Step Units</a></td>
|
|
<td><a class=header_link href="JavaScript: SetOrder(4);">(X,Y)-(X,Y)-(DX,DY)</a></td>
|
|
<td><a class=header_link href="JavaScript: SetOrder(5);">Dwell Time, ms</a></td>
|
|
<td><a class=header_link href="JavaScript: SetOrder(6);">Scan Lines</a></td>
|
|
<td><a class=header_link href="JavaScript: SetOrder(7);">Scan Mode</a></td>
|
|
<td><a class=header_link href="JavaScript: SetOrder(8);">Start Time</a></td>
|
|
<td><a class=header_link href="JavaScript: SetOrder(9);">End Time</a></td>
|
|
<td><a class=header_link href="JavaScript: SetOrder(10);">Can- celled</a></td>
|
|
<td><a class=header_link href="JavaScript: SetOrder(11);">User</a></td>
|
|
<td>Scan Status</td>
|
|
<td>Arc- hived</td>
|
|
<td> </td>
|
|
<td> </td>
|
|
</tr>
|
|
<tr class="data_even">
|
|
<td>158374</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-07-29 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-07-29 04:59:46</td>
|
|
<td>2024-07-30 02:51:07</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=158374">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare0" value="158374" onclick='processScanId(this.checked, 158374);'> </td>
|
|
</tr>
|
|
<tr class="data_odd">
|
|
<td>158222</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-07-22 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-07-22 04:59:36</td>
|
|
<td>2024-07-23 02:50:57</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=158222">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare1" value="158222" onclick='processScanId(this.checked, 158222);'> </td>
|
|
</tr>
|
|
<tr class="data_even">
|
|
<td>158069</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-07-15 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-07-15 05:00:19</td>
|
|
<td>2024-07-16 02:51:26</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=158069">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare2" value="158069" onclick='processScanId(this.checked, 158069);'> </td>
|
|
</tr>
|
|
<tr class="data_odd">
|
|
<td>157971</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-07-08 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-07-08 04:59:48</td>
|
|
<td>2024-07-09 02:51:10</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=157971">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare3" value="157971" onclick='processScanId(this.checked, 157971);'> </td>
|
|
</tr>
|
|
<tr class="data_even">
|
|
<td>157813</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-07-01 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-07-01 05:00:17</td>
|
|
<td>2024-07-02 02:51:29</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=157813">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare4" value="157813" onclick='processScanId(this.checked, 157813);'> </td>
|
|
</tr>
|
|
<tr class="data_odd">
|
|
<td>157656</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-06-24 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-06-24 05:00:17</td>
|
|
<td>2024-06-25 02:49:49</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=157656">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare5" value="157656" onclick='processScanId(this.checked, 157656);'> </td>
|
|
</tr>
|
|
<tr class="data_even">
|
|
<td>157498</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-06-17 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-06-17 05:00:19</td>
|
|
<td>2024-06-18 02:51:50</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=157498">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare6" value="157498" onclick='processScanId(this.checked, 157498);'> </td>
|
|
</tr>
|
|
<tr class="data_odd">
|
|
<td>157340</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-06-10 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-06-10 05:00:18</td>
|
|
<td>2024-06-11 02:51:48</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=157340">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare7" value="157340" onclick='processScanId(this.checked, 157340);'> </td>
|
|
</tr>
|
|
<tr class="data_even">
|
|
<td>157091</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-06-03 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-06-03 04:59:54</td>
|
|
<td>2024-06-04 02:46:57</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=157091">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare8" value="157091" onclick='processScanId(this.checked, 157091);'> </td>
|
|
</tr>
|
|
<tr class="data_odd">
|
|
<td>156743</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-05-27 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-05-27 04:59:56</td>
|
|
<td>2024-05-28 02:44:55</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=156743">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare9" value="156743" onclick='processScanId(this.checked, 156743);'> </td>
|
|
</tr>
|
|
<tr class="data_even">
|
|
<td>156416</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-05-20 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-05-20 04:59:33</td>
|
|
<td>2024-05-21 02:46:29</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=156416">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare10" value="156416" onclick='processScanId(this.checked, 156416);'> </td>
|
|
</tr>
|
|
<tr class="data_odd">
|
|
<td>156089</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-05-13 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-05-13 05:00:02</td>
|
|
<td>2024-05-14 02:46:12</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=156089">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare11" value="156089" onclick='processScanId(this.checked, 156089);'> </td>
|
|
</tr>
|
|
<tr class="data_even">
|
|
<td>155763</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-05-06 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-05-06 05:00:08</td>
|
|
<td>2024-05-07 02:46:49</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=155763">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare12" value="155763" onclick='processScanId(this.checked, 155763);'> </td>
|
|
</tr>
|
|
<tr class="data_odd">
|
|
<td>155391</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-04-29 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-04-29 05:00:11</td>
|
|
<td>2024-04-30 02:46:58</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=155391">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare13" value="155391" onclick='processScanId(this.checked, 155391);'> </td>
|
|
</tr>
|
|
<tr class="data_even">
|
|
<td>154869</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-04-22 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-04-22 04:59:48</td>
|
|
<td>2024-04-23 02:45:46</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=154869">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare14" value="154869" onclick='processScanId(this.checked, 154869);'> </td>
|
|
</tr>
|
|
<tr class="data_odd">
|
|
<td>154416</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-04-15 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-04-15 04:59:31</td>
|
|
<td>2024-04-16 02:46:16</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=154416">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare15" value="154416" onclick='processScanId(this.checked, 154416);'> </td>
|
|
</tr>
|
|
<tr class="data_even">
|
|
<td>153954</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-04-08 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-04-08 04:59:37</td>
|
|
<td>2024-04-09 02:45:47</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=153954">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare16" value="153954" onclick='processScanId(this.checked, 153954);'> </td>
|
|
</tr>
|
|
<tr class="data_odd">
|
|
<td>153488</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-04-01 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-04-01 05:00:01</td>
|
|
<td>2024-04-02 02:44:44</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=153488">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare17" value="153488" onclick='processScanId(this.checked, 153488);'> </td>
|
|
</tr>
|
|
<tr class="data_even">
|
|
<td>153018</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-03-25 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-03-25 05:00:07</td>
|
|
<td>2024-03-26 02:46:29</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=153018">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare18" value="153018" onclick='processScanId(this.checked, 153018);'> </td>
|
|
</tr>
|
|
<tr class="data_odd">
|
|
<td>152549</td>
|
|
<td>Plot 20 AMR26 Full Tube Scan </td>
|
|
<td>2024-03-18 05:00</td>
|
|
<td>mm</td>
|
|
<td>(0,0)-(310,740)- (3.01,2.26)</td>
|
|
<td>100</td>
|
|
<td>Horizontal</td>
|
|
<td>Raster</td>
|
|
<td>2024-03-18 04:59:30</td>
|
|
<td>2024-03-19 02:44:26</td>
|
|
<td align="center">0</td>
|
|
<td>SPRUCE</td>
|
|
<td>Completed</td>
|
|
<td align="center" style="cursor:help" title="All Images archived, Mosaic archived">X </td>
|
|
<td><a href="index.php?cmd=scan&mode=view&id=152549">View</a> </td>
|
|
<td><input type="CHECKBOX" name="compare19" value="152549" onclick='processScanId(this.checked, 152549);'> </td>
|
|
</tr>
|
|
</table>
|
|
</td></tr>
|
|
</table>
|
|
<p align=center>
|
|
First
|
|
Previous
|
|
1
|
|
<a href="JavaScript: SetPage(20);">2</a>
|
|
<a href="JavaScript: SetPage(20);">Next</a>
|
|
<a href="JavaScript: SetPage(20);">Last</a>
|
|
</p>
|