ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzahq_5.4.0.1/rzahqadvisor3h.htm

168 lines
5.8 KiB
HTML
Raw Normal View History

2024-04-02 14:02:31 +00:00
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 4.0//EN">
<html>
<head>
<meta name="Copyright" content="Copyright (c) 2004 by IBM Corporation">
<!-- All rights reserved. Licensed Materials Property of IBM -->
<!-- US Government Users Restricted Rights -->
<!-- Use, duplication or disclosure restricted by -->
<!-- GSA ADP Schedule Contract with IBM Corp. -->
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<title>Windows Server installation advisor--Remote system identity</title>
<script language="Javascript" type="text/javascript" src="rzahqadvcommon.js"></script>
<script type="text/javascript" language="Javascript">
<!-- // Hide script from older browsers
var reqMess = "You must enter a serial number to continue, or go back to previous panel and choose to use a service process connection to determine the remote system enclosure identity.";
var errMess = "The serial number is not in a valid format. The characters must be letters (A-Z) or digits (0-9).";
var errMess2 = "The manufacture type and model is not in a valid format. The characters must be letters (A-Z) or digits (0-9).";
//START NON-TRANSLATABLE
//Obtain name of HTML file in parent frame.
var parentDir = parent.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
var parentUrl = parent.window.location.href.substring(parentDir.length,parent.window.location.href.length+1);
if (parentUrl.indexOf("#") >= 0) { parentUrl = parentUrl.substring(0,parentUrl.indexOf("#"));}
function checkFrame() {
//Is the hidden frame already loaded with the correct html?
if (parentUrl != "rzahqadvisor1.htm") {
window.location = "rzahqadvisor1.htm"; //load advisor frameset
return;
} else {
//Obtain name of HTML file in hidden frame.
var hiddenDir = parent.hidden.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
var hiddenUrl = parent.hidden.window.location.href.substring(hiddenDir.length,parent.hidden.window.location.href.length+1);
if (hiddenUrl.indexOf("#") >= 0) { hiddenUrl = hiddenUrl.substring(0,hiddenUrl.indexOf("#"));}
if (hiddenUrl != "rzahqadvhidden.htm") {
//Correct HTML not loaded, load it
parent.hidden.window.location = "rzahqadvhidden.htm";
} else { //already loaded
getData();
}
}
}
function getData() {
if (!isEmpty(parent.hidden.v1[119])) {
if (parseInt(parent.hidden.v1[119],10) == 0) {
document.form1.rad[0].checked = true;
}
if (parseInt(parent.hidden.v1[119],10) == 1) {
document.form1.rad[1].checked = true;
if (!isEmpty(parent.hidden.v1[120])) {
document.form1.sernum.value = parent.hidden.v1[120];
}
if (!isEmpty(parent.hidden.v1[121])) {
document.form1.mantype.value = parent.hidden.v1[121];
}
}
}
}
function onNext() {
if (document.form1.rad[0].checked == true) {
parent.hidden.v1[119] = 0;
parent.hidden.v1[120] = "";
parent.hidden.v1[121] = "";
} else {
parent.hidden.v1[119] = 1;
if (isEmpty(document.form1.sernum.value)) {
alert(reqMess);
return;
} else {
if (!isAlphanumeric(document.form1.sernum.value)) {
alert(errMess);
return;
} else {
parent.hidden.v1[120] = document.form1.sernum.value;
}
}
if (isEmpty(document.form1.mantype.value)) {
parent.hidden.v1[121] = "";
} else {
if (!isAlphanumeric(document.form1.mantype.value)) {
alert(errMess2);
return;
} else {
parent.hidden.v1[121] = document.form1.mantype.value;
}
}
}
//Next page
window.location = "rzahqadvisor3j.htm";
}
function onBack() {
window.location = "rzahqadvisor3g.htm";
}
//END NON-TRANSLATABLE
////////// -->
</script>
<LINK rel="stylesheet" type="text/css" href="../rzahg/ic.css">
</head>
<body onLoad="checkFrame()">
<h2>Windows Server installation advisor</h2>
<strong>Remote system identity</strong>
<p>The remote system hardware (xSeries system or BladeCenter blade) must be
identified so that the correct server hardware is used for the server.</p>
<p>If the server hardware is an xSeries server, you do not need to specify the
remote system serial number below. In this case, the serial number specified
for the service processor configuration enclosure identity defined earlier can
be used to identify the server hardware.</p>
<p>If the server hardware is a BladeCenter blade, you must specify the serial
number of the blade below.</p>
<p>For cases where the remote system serial number might not be unique on the
network, you can optionally specify the remote system manufacturer type and model.</p>
<p>How would you like to identify the remote system hardware?</p>
<form name="form1">
<blockquote>
<input type="radio" name="rad" checked value="useid" id="useid">
<label for="useid">Use enclosure identity from the service processor configuration</label>
<br><br>
<input type="radio" name="rad" value="spec" id="spec">
<label for="spec">Use the following values</label>
<blockquote>
<table>
<tr>
<td><label for="sernum">Serial number:</label></td>
<td><input type="text" name="sernum" id="sernum" maxlength="12" onFocus="selectRadio(1)"></td>
</tr>
<tr>
<td><label for="mantype">Manufacturer type and model:</label></td>
<td><input type="text" name="mantype" id="mantype" maxlength="24" onFocus="selectRadio(1)" size="25"> (optional)</td>
</tr>
<tr>
<td></td>
<td><FONT SIZE="-1">Example: Enter <EM>1234XYZ</EM>.</FONT></td>
</tr>
</table>
</blockquote>
</blockquote>
<br><br><br>
<center>
<input type="button" value="&lt;&lt; Back" onClick="onBack()">
<input type="button" value="Next &gt;&gt;" onClick="onNext()">
</center>
</form>
</body>
</html>