Closed
Bug 293068
Opened 20 years ago
Closed 20 years ago
Desktop corrupted with auto-refresh websites
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
EXPIRED
People
(Reporter: bo.peng, Unassigned)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.7) Gecko/20050414 Firefox/1.0.3
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.7) Gecko/20050414 Firefox/1.0.3
Fonts and display in Firefox is completely out of whack. The XP desktop is mess
edup with the webpage supposed to be display in Firefox appearing in the upper
left corner of the desktop, only messy and without the window borders,
corrupting any window that happen to be in the area. Closing Firefox fixes it --
and only by closing it.
The most reliable way to replicate the problem, as far as I can test, is the
datasynapse Service Session admin page, with autorefresh enabled. Many site with
autorefresh gives me this problem. But, notably, My Yahoo doesn't.
Reproducible: Sometimes
Steps to Reproduce:
1. Go to http://www.chinesenewsnet.com. Let it auto-refresh. Typically within an
hour it starts to occur.
2. If you have datasynapse running, open its Service Session Admin and enable
auto-refresh. Within minutes you'll see it.
Expected Results:
Maintain normal display.
I've been having this problem with both my office and home machines, which share
little characteristics except that both run XP Pro (English).
Here's the source code of the particularly reliable (for replicating the
problem, that is) datasynapse page:
--------------------------
<html>
<head>
<title>DataSynapse GridServer; - Services -
Service Session Admin</title>
<script language="JavaScript">
<!--
function aWindow(name,url,w,h,scroll) {
newName = stripDashes(name);
newName = window.open(url, newName, 'width=' + w + ',height=' + h +
',toolbar=no,location=no,scrollbars=' + scroll);
newName.focus();
}
function aResizableWindow(name,url,w,h,scroll) {
newName = stripDashes(name);
newName = window.open(url, newName, 'width=' + w + ',height=' + h +
',toolbar=no,location=no,scrollbars=' + scroll + ',resizable');
newName.focus();
}
function aResizableToolbarWindow(name,url,w,h,scroll) {
newName = stripDashes(name);
newName = window.open(url, newName, 'width=' + w + ',height=' + h +
',toolbar=yes,location=no,scrollbars=' + scroll + ',resizable');
newName.focus();
}
function stripDashes(name) {
var newName = '';
for (i=0; i < name.length; i++) {
if (name.charAt(i) == '-') {
newName += '_';
} else {
newName += name.charAt(i);
}
}
return newName;
}
//-->
</script>
<script language="JavaScript">
<!--
function helpIndex() {
aResizableToolbarWindow('dshelp', helpLink(), 690, 500, 'yes');
}
function helpTopic(topic) {
aResizableToolbarWindow('dshelp', helpLink() + '?topic=' + topic, 690,
500, 'yes');
}
function helpType(type) {
aResizableToolbarWindow('dshelp', helpLink() + '?type=' + topic, 690, 500,
'yes');
}
function helpLink() {
return '/livecluster/admin/control/help/help.jsp';
}
function help(uri) {
aResizableToolbarWindow('dshelp', uri, 690, 500, 'yes');
}
//-->
</script>
<link rel="stylesheet" type="text/css" href="/livecluster/admin/inc/style_ie.css">
<link rel="shortcut icon" href="/livecluster/admin/images/icons/favicon.ico"
TYPE="image/x-icon">
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<meta http-equiv="Refresh"
content="10;url=/livecluster/admin/control/job/jobAdmin.jsp?refresh=10&refreshCount=1&col=jobdriverhostname&direction=descending&pageNumber=1&pageSize=200&search=190x&sort=jobsubmitted">
<!-- page includes -->
<script language="JavaScript">
<!--
// simple confirm dialog
function confirmSubmit(form, text) {
if (confirm(text)) {
form.submit();
return true;
} else {
return false;
}
}
// changes command input to 'newValue' and submits form
function commandSubmit(form, newValue) {
form.command.value=newValue;
form.submit();
return true;
}
// changes command input to 'newValue' and submits form
function commandSubmitAnchor(form, newValue, anchorName) {
modifyAnchorAction(form, anchorName);
form.command.value=newValue;
form.submit();
return true;
}
function appendQuerySubmit(form, query) {
var newAction = form.action;
if (newAction.indexOf('?') == -1) {
newAction += '?';
} else {
newAction += '&';
}
form.action = newAction + query;
form.submit();
return true;
}
function modifyActionSubmit(form, newaction) {
form.action=newaction;
form.submit();
return true;
}
function modifyAnchorAction(form, anchorName) {
form.action=form.action + '#' + anchorName;
}
function confirmCommandSubmit(form, text, newValue) {
if (confirm(text)) {
form.command.value=newValue;
form.submit();
return true;
} else {
return false;
}
}
//-->
</script>
<script language="JavaScript">
<!--
function closeDetails(id) {
document.actionForm.command.value='detail';
document.actionForm.id.value=id;
document.actionForm.submit();
}
function closeMultDetails(id, sub, formElement) {
formElement.value=sub;
closeDetails(id);
}
function globalActions(formElement) {
var command = formElement.options[formElement.selectedIndex].value;
var name = formElement.options[formElement.selectedIndex].text;
document.gactions.command.value=command;
if (command == '') {
return;
} else if (command == 'prune' || command == 'cancelall' || command ==
'cancelallonpage' || command == 'killall' ||
command == 'killallonpage' || command == 'disableall' ||
command == 'stopall' || command == 'stoponpage' || command == 'disableonpage') {
confirmSubmit(document.gactions, name + '?');
} else if (command == 'prunejobs') {
document.gactions.command.value='prune';
confirmSubmit(document.gactions, 'Remove Finished Services? This
does not include Services with expires set to false.');
} else if (command == 'newbatch') {
document.gactions.action='/livecluster/admin/control/batch/batchEditor.jsp';
document.gactions.search.value='';
document.gactions.submit();
} else if (command == 'newsub') {
document.gactions.action='/livecluster/admin/control/server/editSub.jsp';
document.gactions.submit();
} else if (command == 'newuser') {
document.gactions.action='/livecluster/admin/control/user/editUser.jsp';
document.gactions.submit();
} else if (command == 'newhook') {
aResizableWindow('hookEdit',
'/livecluster/admin/control/server/hookEditor.jsp', 850, 520, 'no');
} else if (command == 'configure') {
document.editorForm.submit();
return false;
} else if (command == 'configureall') {
document.editorForm.detailIds.value='all';
document.editorForm.submit();
return false;
} else if (command == 'setalldaemonprop') {
document.editorForm.command.value=command;
document.editorForm.detailIds.value='all';
document.editorForm.action='/livecluster/admin/control/engine/enginePropertyGroupEditor.jsp';
document.editorForm.submit();
return false;
} else if (command == 'setdaemonprop') {
document.editorForm.command.value=command;
document.editorForm.action='/livecluster/admin/control/engine/enginePropertyGroupEditor.jsp';
document.editorForm.submit();
return false;
} else if (command == 'destroyallregions') {
document.gactions.action='/livecluster/admin/control/job/gridCache.jsp';
confirmSubmit(document.gactions, 'Destroy All Regions?');
} else {
document.gactions.submit();
}
formElement.selectedIndex=0;
formElement.options[formElement.selectedIndex].value='';
}
//-->
</script>
<script language="JavaScript">
<!--
function changePriority(newValue, id) {
document.actionForm.command.value='priority';
document.actionForm.id.value=id;
document.actionForm.priority.value=newValue;
document.actionForm.submit();
}
function changeExpires(formElement, id, oldValue) {
var newValue = formElement.options[formElement.selectedIndex].value;
if (oldValue == newValue) {
return;
} else {
document.actionForm.command.value='expires';
document.actionForm.id.value=id;
document.actionForm.expires.value=newValue;
document.actionForm.submit();
}
}
function performAction(formElement, id, submit) {
var command = formElement.options[formElement.selectedIndex].value;
document.actionForm.command.value=command;
document.actionForm.id.value=id;
if (command == 'detail') {
document.actionForm.submit();
} else if (command == 'view') {
aWindow('jobview' + id,
'/livecluster/admin/control/job/jobView.jsp?id=' + id, 650, 400, 'no');
} else if (command == 'logs') {
aResizableWindow('joblog' + id,
'/livecluster/admin/control/log/logViewer.jsp?html=true&id=' + id + '&start=' +
submit, 650, 600, 'yes');
} else if (command == 'summary') {
aResizableWindow('jobsum' + id,
'/livecluster/admin/control/job/summary.jsp?id=' + id, 750, 600, 'yes');
} else if (command == 'tasks') {
document.actionForm.sort.value='';
document.actionForm.pageSize.value='';
document.actionForm.direction.value='';
document.actionForm.pageNumber.value='';
document.actionForm.action='/livecluster/admin/control/job/taskAdmin.jsp';
for ( i=0, n = document.actionForm.elements.length; i < n; i++ ) {
if ( document.actionForm.elements[i].name == 'search' ) {
document.actionForm.elements[i].value='';
break;
}
}
document.actionForm.submit();
} else if (command == 'cancel') {
confirmSubmit(document.actionForm, 'Cancel the Selected Service? ('
+ id + ')');
} else if (command == 'remove') {
confirmSubmit(document.actionForm, 'Remove the Selected Service? ('
+ id + ')');
} else if (command == 'fileupdate') {
document.actionForm.submit();
} else {
return;
}
formElement.selectedIndex=0;
}
//-->
</script>
</head>
<body onLoad="">
<!-- main table -->
<table cellpadding="0" cellspacing="0" class="mainTable">
<!-- logo and login row -->
<tr valign="top">
<td class="mainTable">
<!-- logo and login row, nav tabs row, table open -->
<table cellspacing="0" cellpadding="0" class="navTable">
<tr valign="top" height="22">
<td>
<!-- logo and login table -->
<table width="100%">
<tr>
<!-- logo cell -->
<td align="left" width="230"></td>
<td align="left" valign="top" class="appname">GridServer 4.0</td>
<!-- login and server info. only show if logged in -->
<td width="*" align="right" valign="middle" class="loggedin" nowrap>
Logged in as <a
href="/livecluster/admin/control/user/editUser.jsp"
class="uwhite">support</a> | <a
href="/livecluster/admin/control/base/login.jsp?command=logout"
class="uwhite">Logout</a>
</td>
</tr>
</table>
</td>
</tr>
<tr height="10">
<td></td>
</tr>
<!-- nav tabs row -->
<tr height="23">
<td>
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<!-- space cell -->
<td width="115"></td>
<!-- only display nav tabs, icons, and subnav if logged in -->
<!-- tabs cell (td tags in include) -->
<td align="left" valign="bottom" nowrap>
<table cellpadding="0" cellspacing="0">
<tr height="15" valign="bottom">
<td><img src='/livecluster/admin/images/topnav/tabOnLeft.gif'
height=17></td><td class=navTabOn><a
href=/livecluster/admin/control/job/jobAdmin.jsp alt=Services
class=navTextOn>Services</a></td><td><img
src='/livecluster/admin/images/topnav/tabOnRight.gif' height=17></td>
<td class=navTabOff><a
href=/livecluster/admin/control/base/engine_index.jsp alt=Engine
class=navTextOff>Engine</a></td>
<td class=navTabOff><a
href=/livecluster/admin/control/base/driver_index.jsp alt=Driver
class=navTextOff>Driver</a></td>
<td class=navTabOff><a
href=/livecluster/admin/control/broker/brokerAdmin.jsp alt=Manager
class=navTextOff>Manager</a></td>
<td class=navTabOff><a
href=/livecluster/admin/control/base/reports_index.jsp alt=Reports
class=navTextOff>Reports</a></td>
<td class=navTabOff><a
href=/livecluster/admin/control/base/admin_index.jsp alt=Admin
class=navTextOff>Admin</a></td>
<td class=navTabOff><a
href=/livecluster/admin/control/base/batch_index.jsp alt=Batch
class=navTextOff>Batch</a></td>
</tr>
</table>
</td>
<!-- icons cell (td tags in include) -->
<td width="175" align="right" valign="top" nowrap><a
href="/livecluster/admin/control/base/welcome.jsp"><img
src="/livecluster/admin/images/icons/home_top.gif" width="29" height="23"
title="Home" border="0"></a><a
href="/livecluster/admin/control/base/license.jsp"><img
src='/livecluster/admin/images/icons/license_top.gif' width='29' height='23'
title='License Information' border='0'></a><a
href="javascript:helpIndex();"><img
src="/livecluster/admin/images/icons/help_top.gif" width="29" height="23"
title="Help" border="0"></a><a
href="/livecluster/admin/control/base/docs_index.jsp" alt=Docs><img
src="/livecluster/admin/images/icons/doc_top.gif" width="26" height="23"
title="Documentation" border="0"></a></td>
<td width="*"> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!-- subnav row -->
<tr>
<td class="mainTable">
<table cellspacing="0" cellpadding="0" border="0" class="subNavTable">
<tr>
<td class="subnav">
Service Session Admin | <a
href='/livecluster/admin/control/job/serviceGroupAdmin.jsp'
class='sub'>Service Group Admin</a> | <a
href='/livecluster/admin/control/job/jobDescDiscrimination.jsp'
class='sub'>Discriminator Admin</a> | <a
href='/livecluster/admin/control/job/serviceRegistry.jsp'
class='sub'>Service Type Registry</a> | <a
href='/livecluster/admin/control/server/fileDeployment.jsp'
class='sub'>Resource Deployment</a> | <a
href='/livecluster/admin/control/job/gridCache.jsp'
class='sub'>GridCache Admin</a> | <a
href='/livecluster/admin/control/job/cacheConfigurationHandler.jsp'
class='sub'>GridCache Configuration</a> | <a
href='/livecluster/admin/control/job/jobTest.jsp'
class='sub'>Service Test</a> | <a
href='/livecluster/admin/control/base/job_index.jsp'
class='sub'>Services Home</a>
</td>
<td width="*"> </td>
</tr>
</table>
</td>
</tr>
<!-- charts -->
<tr>
<td>
<!-- all charts table -->
<table class="allChartsTable">
<tr>
<!-- working engines -->
<td>
<table cellspacing="1" class="chartTable">
<tr valign="top">
<td width="90" class="chartName" align="right">Busy Engines</td>
<td width="25" class="chartvalue" align="center">
0
</td>
</tr>
<tr valign="top">
<td width="90" class="chartname" align="right">Available
Engines</td>
<td width="25" class="chartvalue" align="center">
744
</td>
</tr>
</table>
</td>
<!-- mixed chart -->
<td>
<table cellspacing="1" class="chartTable">
<tr valign="top">
<td width="90" class="chartname" align="right">Drivers</td>
<td width="25" class="chartvalue" align="center">
19
</td>
</tr>
<tr valign="top">
<td width="90" class="chartname" align="right">Engine Daemons</td>
<td width="25" class="chartvalue" align="center">
186
</td>
</tr>
</table>
</td>
<!-- job chart -->
<td>
<table cellspacing="1" class="chartTable">
<tr valign="top">
<td width="90" class="chartname" align="right">Running Services</td>
<td width="25" class="chartvalue" align="center">
0
</td>
</tr>
<tr valign="top">
<td width="90" class="chartname" align="right">Finished
Services</td>
<td width="25" class="chartvalue" align="center">
202
</td>
</tr>
</table>
</td>
<!-- task chart -->
<td>
<table cellspacing="1" class="chartTable">
<tr valign="top">
<td width="90" class="chartname" align="right">Running Tasks</td>
<td width="25" class="chartvalue" align="center">
0
</td>
</tr>
<tr valign="top">
<td width="90" class="chartname" align="right">Pending Tasks</td>
<td width="25" class="chartvalue" align="center">
0
</td>
</tr>
</table>
</td><!-- mixed chart -->
<!-- applets links table -->
<td>
<table cellspacing="1" class="iconTable">
<tr rowspan="2">
<td align="center">
<a
href="javascript:aResizableWindow('gridmon199','/livecluster/admin/control/server/gridMonitor.jsp?title=nysuncalpua02',800,420,'no');"><img
src="/livecluster/admin/images/icons/director_mid.gif" title="Director Monitor"
border="0"></a>
</td>
<td align="center">
<a
href="javascript:aResizableWindow('bkrmon909','/livecluster/admin/control/broker/brokerMonitor.jsp?title=http://nysuncalpua02:8080/livecluster-1&maxJobs=10',800,420,'no');"><img
src="/livecluster/admin/images/icons/broker_mid.gif" title="Broker Monitor"
border="0"></a>
</td>
</tr>
</table>
</td>
<td>
<table cellspacing="1" cellpadding="2" class="chartTable">
<tr valign="top">
<td width="40" class="chartname" rowspan="2">
<img src='/livecluster/admin/images/broker_node.png'
title="Manager Component Indicator">
</td>
<td class="chartname" align="right">Broker</td>
</tr>
<tr valign="top">
<td class="chartvalue" align="right">nysuncalpua02</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!-- content title and refresh and help row -->
<tr valign="top">
<td>
<table class="contentLimited">
<tr>
<!-- content title cell -->
<td nowrap>
<font class="title">[ Service Session Admin ]</font>
</td>
<!-- refresh and help cell -->
<td align="right">
<table cellpadding="0" cellspacing="0">
<tr>
<form name="refreshform" id="refreshform"
action="/livecluster/admin/control/job/jobAdmin.jsp" method="post">
<input type='hidden' name='col' id='col' value='jobdriverhostname'>
<input type='hidden' name='direction' id='direction' value='descending'>
<input type='hidden' name='pageNumber' id='pageNumber' value='1'>
<input type='hidden' name='pageSize' id='pageSize' value='200'>
<input type='hidden' name='search' id='search' value='190x'>
<input type='hidden' name='sort' id='sort' value='jobsubmitted'>
<td valign="top">
<a href="javascript:document.refreshform.submit();" class="fBtn">Refresh</a>
</td>
<td valign="top">
<input type="hidden" name="refreshCount" id="refreshCount" value="1"/>
<select name="refresh" id="refresh" class="fSelect"
onChange="refreshform.submit();">
<option value=''>- rate -</option>
<option value=''>no</option>
<option value='3'>3 sec.</option>
<option value='5'>5 sec.</option>
<option value='10' SELECTED>10 sec.</option>
<option value='15'>15 sec.</option>
<option value='20'>20 sec.</option>
<option value='30'>30 sec.</option>
<option value='60'>1 min.</option>
<option value='120'>2 min.</option>
</select>
</td>
<td valign="top">
<img src="/livecluster/admin/images/pixel.gif" width="15" height="1">
</td>
<td valign="top">
<a
href="javascript:helpTopic('/livecluster/admin/control/job/jobAdmin.jsp');"
class="fBtn">Page Help</a>
</td>
</form>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<script language="javascript">
<!--
function changePage(pSelectWidget) {
var selectedValue = pSelectWidget[pSelectWidget.selectedIndex].value;
document.results.pageNumber.value=selectedValue;
document.results.submit();
}
function validateResultsPerPage() {
return validateSize(document.results.pageSize.value);
}
function validateFetchSizePerPage() {
return validateSize(document.results.fetchSize.value);
}
function validateSize(pageSize) {
if ( isNaN(pageSize) || pageSize < 1 || pageSize % 1 != 0) {
alert ("Results per page must be a positive integer.");
return false;
} else {
return true;
}
}
//-->
</script>
<tr>
<td>
<table cellpadding="2" cellspacing="0" class="contentLimited">
<!-- pager -->
<tr class="functionalTables">
<form action="/livecluster/admin/control/job/jobAdmin.jsp"
name="results" id="results" onsubmit="javascript:return validateResultsPerPage();">
<td nowrap valign="top" align="left">
<div class="body">
<input type='hidden' name='col' id='col' value='jobdriverhostname'>
<input type='hidden' name='direction' id='direction' value='descending'>
<input type='hidden' name='pageNumber' id='pageNumber' value='1'>
<input type='hidden' name='search' id='search' value='190x'>
<input type='hidden' name='sort' id='sort' value='jobsubmitted'>
Page:
<select name="page1" class="fSelect" onchange="changePage(this);">
<option value="1" selected>1 of 1</option>
</select>
Service sessions: <select name="page2" class="fSelect"
onchange="changePage(this);">
<option value="1" selected>1 - 2 of 2</option>
</select>
Results per page: <input name="pageSize" id="pageSize"
class="fField" size="1" type="text" value="200">
<a href="javascript:document.results.submit();"
onclick="javascript:return validateResultsPerPage();" class="fBtn">Go</a>
</div>
</td>
</form>
<!-- search form -->
<form action="/livecluster/admin/control/job/jobAdmin.jsp" name="search"
id="search">
<td align="right" valign="top">
<div class="body">
<input type='hidden' name='direction' id='direction' value='descending'>
<input type='hidden' name='pageNumber' id='pageNumber' value='1'>
<input type='hidden' name='pageSize' id='pageSize' value='200'>
<input type='hidden' name='sort' id='sort' value='jobsubmitted'>
Search for
<input name="search" id="search" class="fField" size="12" type="text"
value="190x"> in
<select name="col" id="col" class="fSelect">
<option value='jobname'>Session Name</option>
<option value='jobid'>Service Session ID</option>
<option value='jobtypename'>Service Type Name</option>
<option value='jobdriverhostname' SELECTED>Driver Hostname</option>
<option value='jobsubmitted'>Submit Time</option>
<option value='jobstatus'>Status</option>
<option value='jobtimes'>Times</option>
<option value='jobtasks'>Tasks</option>
<option value='jobpriority'>Priority</option>
<option value='jobactions'>Actions</option>
<option value='jobappdesc'>Application Description</option>
</select>
<a href="javascript:document.search.submit();" class="fBtn">Go</a>
</div>
</td>
</form>
</tr>
<tr height="4"><td colspan="2"></td></tr>
<!-- global actions, add column, delete column row -->
<tr class="functionalTables">
<form name="gactions" action="/livecluster/admin/control/job/jobAdmin.jsp"
method="post">
<td nowrap valign="top" align="left">
<input type="hidden" name="command" id="command" value="prune">
<input type='hidden' name='col' id='col' value='jobdriverhostname'>
<input type='hidden' name='direction' id='direction' value='descending'>
<input type='hidden' name='pageNumber' id='pageNumber' value='1'>
<input type='hidden' name='pageSize' id='pageSize' value='200'>
<input type='hidden' name='search' id='search' value='190x'>
<input type='hidden' name='sort' id='sort' value='jobsubmitted'>
<input name="detailIds" id="detailIds" type="hidden"
value="3398843348623430351,1105981578136925558">
<select name="globals" id="globals" class="fSelect"
onChange="globalActions(document.gactions.globals);">
<option value=''>-- Global Actions --</option>
<option value='expandall'>Expand View of All</option>
<option value='collapseall'>Collapse View of All</option>
<option value='cancelallonpage'>Cancel All Service Sessions on Page</option>
<option value='cancelall'>Cancel All Service Sessions</option>
<option value='prunejobs'>Remove Finished Service Sessions</option>
<option value='fileupdate'>Update Deployment Files</option>
</select>
</td>
</form>
<td valign="top" align="right" nowrap>
<table cellpadding="0" cellspacing="1" border="0">
<tr>
<form name="acolumn"
action="/livecluster/admin/control/job/jobAdmin.jsp" method="post">
<td valign="top">
<input type='hidden' name='col' id='col' value='jobdriverhostname'>
<input type='hidden' name='direction' id='direction' value='descending'>
<input type='hidden' name='pageNumber' id='pageNumber' value='1'>
<input type='hidden' name='pageSize' id='pageSize' value='200'>
<input type='hidden' name='search' id='search' value='190x'>
<input type='hidden' name='sort' id='sort' value='jobsubmitted'>
<select name="modcol" id="modcol" class="bodyselect"
onChange="document.acolumn.submit();">
<option value=''>-- Add Column --</option>
<option value='jobtype'>Session Type</option>
<option value='jobdriveruser'>Driver Username</option>
<option value='jobemail'>Email</option>
<option value='jobcomputetime'>Computational Time</option>
<option value='jobpratio'>Performance Ratio</option>
<option value='jobsizes'>Sizes</option>
<option value='jobmaxtime'>Max Time</option>
<option value='jobcollect'>Collection Type</option>
<option value='jobcompress'>Compress</option>
<option value='jobkill'>Kill Residual Tasks</option>
<option value='jobtaskmsg'>Maximum Tasks Per Message</option>
<option value='jobpack'>Auto Pack</option>
<option value='jobdataunixdir'>Shared Unix Data Directory</option>
<option value='jobdatawindir'>Shared Windows Data Directory</option>
<option value='jobcheck'>Checkpoint Enabled</option>
<option value='jobmaxengines'>Max Engines</option>
<option value='jobclass'>Implementation</option>
<option value='jobexpires'>Expires</option>
<option value='jobdept'>Department</option>
<option value='jobgroup'>Group</option>
<option value='jobindiv'>Individual</option>
<option value='jobservicegroup'>Service Group</option>
<option value='jobservicegroupid'>Service Group ID</option>
<option value='jobschedpriority'>Scheduler Priority</option>
</select>
</td>
</form>
<form name="dcolumn"
action="/livecluster/admin/control/job/jobAdmin.jsp" method="post">
<td valign="top">
<input type='hidden' name='col' id='col' value='jobdriverhostname'>
<input type='hidden' name='direction' id='direction' value='descending'>
<input type='hidden' name='pageNumber' id='pageNumber' value='1'>
<input type='hidden' name='pageSize' id='pageSize' value='200'>
<input type='hidden' name='search' id='search' value='190x'>
<input type='hidden' name='sort' id='sort' value='jobsubmitted'>
<select name="modcol" id="modcol" class="bodyselect"
onChange="document.dcolumn.submit();">
<option value=''>-- Delete Column --</option>
<option value='jobname'>Session Name</option>
<option value='jobid'>Service Session ID</option>
<option value='jobtypename'>Service Type Name</option>
<option value='jobdriverhostname'>Driver Hostname</option>
<option value='jobsubmitted'>Submit Time</option>
<option value='jobstatus'>Status</option>
<option value='jobtimes'>Times</option>
<option value='jobtasks'>Tasks</option>
<option value='jobpriority'>Priority</option>
<option value='jobactions'>Actions</option>
<option value='jobappdesc'>Application Description</option>
</select>
</td>
</form>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table class="contentTable">
<tr>
<td class="body">
Search results for <a class="bblue">'190x'</a> in column '<a
class="bblue">Driver Hostname</a>':
<img src='/livecluster/admin/images/pixel.gif' width=20 height=1
border=0>
<a href="/livecluster/admin/control/job/jobAdmin.jsp"
class="ublue">< < Back to full service session list</a>
<p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table class="contentTable">
<tr>
<td>
<table class="dTable">
<tr>
<td class="tablehead" width="20"><center>#</center></td>
<td class="tablehead">
<a
href="/livecluster/admin/control/job/jobAdmin.jsp?sort=jobname&direction=ascending&col=jobdriverhostname&pageNumber=1&pageSize=200&search=190x"
class="uwhite" title="The name of the Service session">Session Name</a>
</td>
<td class="tablehead">
<a
href="/livecluster/admin/control/job/jobAdmin.jsp?sort=jobid&direction=ascending&col=jobdriverhostname&pageNumber=1&pageSize=200&search=190x"
class="uwhite" title="The id of the Service session">Service Session ID</a>
</td>
<td class="tablehead">
<a
href="/livecluster/admin/control/job/jobAdmin.jsp?sort=jobtypename&direction=ascending&col=jobdriverhostname&pageNumber=1&pageSize=200&search=190x"
class="uwhite" title="Service type name from the registry">Service Type Name</a>
</td>
<td class="tablehead">
<a
href="/livecluster/admin/control/job/jobAdmin.jsp?sort=jobdriverhostname&direction=ascending&col=jobdriverhostname&pageNumber=1&pageSize=200&search=190x"
class="uwhite" title="The hostname of the Driver">Driver Hostname</a>
</td>
<td class="tablehead">
<a
href="/livecluster/admin/control/job/jobAdmin.jsp?sort=jobsubmitted&direction=ascending&col=jobdriverhostname&pageNumber=1&pageSize=200&search=190x"
class="uwhite" title="When the Service session was submitted">Submit
Time</a><img src="/livecluster/admin/images/forms/descending.gif" border="0"/>
</td>
<td class="tablehead">
<a
href="/livecluster/admin/control/job/jobAdmin.jsp?sort=jobstatus&direction=ascending&col=jobdriverhostname&pageNumber=1&pageSize=200&search=190x"
class="uwhite" title="The status of the Service session">Status</a>
</td>
<td class="tablehead">
<a
href="/livecluster/admin/control/job/jobAdmin.jsp?sort=jobtimes&direction=ascending&col=jobdriverhostname&pageNumber=1&pageSize=200&search=190x"
class="uwhite" title="Elapsed Time of the Service Session / Average Time of the
tasks in sec">Times</a>
</td>
<td class="tablehead">
<a
href="/livecluster/admin/control/job/jobAdmin.jsp?sort=jobtasks&direction=ascending&col=jobdriverhostname&pageNumber=1&pageSize=200&search=190x"
class="uwhite" title="Waiting Tasks / Completed Tasks / Total Tasks">Tasks</a>
</td>
<td class="tablehead">
<a
href="/livecluster/admin/control/job/jobAdmin.jsp?sort=jobpriority&direction=ascending&col=jobdriverhostname&pageNumber=1&pageSize=200&search=190x"
class="uwhite" title="Priority of the Service session">Priority</a>
</td>
<td class="tablehead">
<div class="uwhite" title="Actions to perform on
table">Actions</div>
</td>
<td class="tablehead">
<a
href="/livecluster/admin/control/job/jobAdmin.jsp?sort=jobappdesc&direction=ascending&col=jobdriverhostname&pageNumber=1&pageSize=200&search=190x"
class="uwhite" title="The application description">Application Description</a>
</td>
</tr>
<form name="actionForm" id="actionForm"
action="/livecluster/admin/control/job/jobAdmin.jsp" method="post">
<input type="hidden" name="command" id="command" value=""/>
<input type="hidden" name="id" id="id" value=""/>
<input type="hidden" name="priority" id="priority" value=""/>
<input type="hidden" name="expires" id="expires" value=""/>
<input type='hidden' name='col' id='col' value='jobdriverhostname'>
<input type='hidden' name='direction' id='direction' value='descending'>
<input type='hidden' name='pageNumber' id='pageNumber' value='1'>
<input type='hidden' name='pageSize' id='pageSize' value='200'>
<input type='hidden' name='search' id='search' value='190x'>
<input type='hidden' name='sort' id='sort' value='jobsubmitted'>
<tr>
<td class="tablevalue"><center>1</center></td>
<td class="tablevalue">
HSBCCreditExposureAnalysis
</td>
<td class="tablevalue">
3398843348623430351
</td>
<td class="tablevalue">
DistAnalysis
</td>
<td class="tablevalue">
HSI-T8-190X
</td>
<td class="tablevalue">
5/5/05 4:23 PM
</td>
<td class="tablevalue">
Cancelled
</td>
<td class="tablevalue">
2317 / 372.98
</td>
<td class="tablevalue">
19 / 1752 / 2139
</td>
<td class="tablevalue">
5
</td>
<td class="tablevalue">
<select name="j3398843348623430351"
id="j3398843348623430351" class="bodyselect" onChange="performAction(this,
'3398843348623430351', '1115324614250')"><option value="">-- Actions
--</option><option value="detail">Service Session Details</option>null<option
value="view">Service Session View</option><option value="logs">Search
Logs</option><option value="remove">Remove Service Session</option></select>
</td>
<td class="tablevalue">
HSBCCreditExposure 5/4/05 8:00:00.000 PM EDT Standard
Hedge US_SCP Basket (CR)
</td>
</tr>
<tr>
<td class="tablevalue"><center>2</center></td>
<td class="tablevalue">
HSBCCreditExposureAnalysis
</td>
<td class="tablevalue">
1105981578136925558
</td>
<td class="tablevalue">
DistAnalysis
</td>
<td class="tablevalue">
HSI-T8-190X
</td>
<td class="tablevalue">
5/5/05 3:57 PM
</td>
<td class="tablevalue">
Cancelled, Task Errors
</td>
<td class="tablevalue">
318 / 44.15
</td>
<td class="tablevalue">
1 / 211 / 606
</td>
<td class="tablevalue">
5
</td>
<td class="tablevalue">
<select name="j1105981578136925558"
id="j1105981578136925558" class="bodyselect" onChange="performAction(this,
'1105981578136925558', '1115323054883')"><option value="">-- Actions
--</option><option value="detail">Service Session Details</option>null<option
value="view">Service Session View</option><option value="logs">Search
Logs</option><option value="remove">Remove Service Session</option></select>
</td>
<td class="tablevalue">
HSBCCreditExposure 5/4/05 3:33:14.000 PM EDT Standard
Hedge US_SCP Basket (CR)
</td>
</tr>
</form>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!-- footer -->
<tr>
<td class="mainTable">
<table width="100%">
<!-- space from content -->
<tr>
<td height="20"></td>
</tr>
<!-- line -->
<tr>
<td class="subnavtable" width="100%" height="4"></td>
</tr>
<!-- copyright -->
<tr>
<td class="footer" class="functionalTables"><img
src='/livecluster/admin/images/pixel.gif' width=5 height=1 border=0>©
Copyright 2004 DataSynapse, Inc. All Rights Reserved. <img
src='/livecluster/admin/images/pixel.gif' width=20 height=1 border=0><a
href="javascript:aWindow('terms','/livecluster/admin/legal/terms.jsp',500,400,'yes');"
class="ugray">Terms of Use</a> <img src='/livecluster/admin/images/pixel.gif'
width=20 height=1 border=0><a href="/livecluster/admin/base/product_info.jsp"
class="ugray">Product Information</a> <img
src='/livecluster/admin/images/pixel.gif' width=20 height=1 border=0>GridServer
Version 4.0 Service Pack 1</td>
</tr>
</table>
</td>
</tr>
</table>
<p>
</body>
<head>
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
</head>
</html>
---------------------------------------------------------
Comment 1•20 years ago
|
||
This is an automated message, with ID "auto-resolve01".
This bug has had no comments for a long time. Statistically, we have found that
bug reports that have not been confirmed by a second user after three months are
highly unlikely to be the source of a fix to the code.
While your input is very important to us, our resources are limited and so we
are asking for your help in focussing our efforts. If you can still reproduce
this problem in the latest version of the product (see below for how to obtain a
copy) or, for feature requests, if it's not present in the latest version and
you still believe we should implement it, please visit the URL of this bug
(given at the top of this mail) and add a comment to that effect, giving more
reproduction information if you have it.
If it is not a problem any longer, you need take no action. If this bug is not
changed in any way in the next two weeks, it will be automatically resolved.
Thank you for your help in this matter.
The latest beta releases can be obtained from:
Firefox: http://www.mozilla.org/projects/firefox/
Thunderbird: http://www.mozilla.org/products/thunderbird/releases/1.5beta1.html
Seamonkey: http://www.mozilla.org/projects/seamonkey/
Comment 2•20 years ago
|
||
This bug has been automatically resolved after a period of inactivity (see above
comment). If anyone thinks this is incorrect, they should feel free to reopen it.
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → EXPIRED
You need to log in
before you can comment on or make changes to this bug.
Description
•