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

159 lines
6.1 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--iSCSI communications message queue</title>
<script language="Javascript" type="text/javascript" src="rzahqadvcommon.js"></script>
<script language="Javascript" type="text/javascript" src="../rzahg/iccommon.js"></script>
<script type="text/javascript" language="Javascript">
<!-- // Hide script from older browsers
var errMess = "Enter a valid message queue name or select to log messages to the system operator queue. The message queue name must contain only letters (A-Z) or digits (0-9).";
var errMess1 = "Enter a valid library name or choose another option. The library name must contain only 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[155])) { //value stored for main radio
document.form1.rad[parseInt(parent.hidden.v1[155],10)].checked = true;
if (parseInt(parent.hidden.v1[155],10) == 1) { //log to comm queue
if (!isEmpty(parent.hidden.v1[156])) {
document.form1.mqname.value = parent.hidden.v1[156];
}
if (!isEmpty(parent.hidden.v1[157])) { //value stored for sub radio buttons
document.form1.rad2[parseInt(parent.hidden.v1[157],10)].checked = true;
if (parseInt(parent.hidden.v1[157],10) == 2) { //other lib name
if (!isEmpty(parent.hidden.v1[158])) {
document.form1.libname.value = parent.hidden.v1[158];
}
}
}
}
}
}
function onNext() {
//Save data
if (document.form1.rad[0].checked == true) { //log to sys oper queue
parent.hidden.v1[155] = 0;
parent.hidden.v1[156] = "";
parent.hidden.v1[157] = "";
parent.hidden.v1[158] = "";
} else { //must be log to comm queue
parent.hidden.v1[155] = 1;
if (isEmpty(document.form1.mqname.value) || !isAlphanumeric(document.form1.mqname.value)) {
alert(errMess);
return;
} else {
parent.hidden.v1[156] = document.form1.mqname.value;
}
if (document.form1.rad2[0].checked == true) parent.hidden.v1[157] = 0;
if (document.form1.rad2[1].checked == true) parent.hidden.v1[157] = 1;
if (document.form1.rad2[2].checked == true) {
parent.hidden.v1[157] = 2;
if (isEmpty(document.form1.libname.value) || !isAlphanumeric(document.form1.libname.value)) {
alert(errMess1);
return;
} else {
parent.hidden.v1[158] = document.form1.libname.value;
}
}
}
window.location = "rzahqadvisor16.htm"; //next page
}
function onBack() {
window.location = "rzahqadvisor15.htm";
}
function selectRadioTwo(num) {
document.form1.rad2[num].checked = true;
}
//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>iSCSI communications message queue</strong>
<p>iSCSI communications status messages are logged to a message queue. You can choose to log the messages to the system operator message queue
or to another message queue.</p>
<form name="form1">
<p>What iSCSI communications message queue do you want to use?</p>
<p>
<blockquote>
<input type="radio" name="rad" value="operator" id="operator" checked>
<label for="operator">Log messages to the system operator message queue</label><br><br>
<input type="radio" name="rad" value="commq" id="commq">
<label for="commq">Log messages to the communications message queue:</label><br><br>
<blockquote>
<label for="mqname">Message queue name:</label> <input type="text" name="mqname" maxlength="10" id="mqname" onFocus="selectRadio(1);"><br>
Message queue library:<br>
<input type="radio" name="rad2" checked value="liblist" id="liblist" onClick="selectRadio(1);">
<label for="liblist">Library list</label><br>
<input type="radio" name="rad2" value="current" id="current" onClick="selectRadio(1);">
<label for="current">Current library</label><br>
<input type="radio" name="rad2" value="other" id="other" onClick="selectRadio(1);">
<label for="other">Other library name: </label>
<input type="text" name="libname" id="other" maxlength="10" onFocus="selectRadioTwo(2);selectRadio(1);">
</blockquote>
</blockquote>
</p>
<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>