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

128 lines
4.5 KiB
HTML
Raw Permalink 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--Network server description</title>
<script language="Javascript" type="text/javascript" src="rzahqadvcommon.js"></script>
<script type="text/javascript" language="Javascript">
<!-- // Hide script from older browsers
var errMess = "The NWSD name is not in a valid format. The first character must be a letter (A-Z), dollar sign ($), pound sign (#), or 'at' sign (@). The remaining characters can contain these characters as well as digits (0-9), underscores (_), and periods (.).";
var errMess1 = "You must enter an NWSD name.";
//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[1])) {
document.form1.nwsd.value = parent.hidden.v1[1];
}
if (!isEmpty(parent.hidden.v1[2])) {
document.form1.nwsddesc.value = parent.hidden.v1[2];
}
}
function onNext() {
if (isEmpty(document.form1.nwsd.value)) {
alert(errMess1);
return;
}
//Check if NWSD name is alphanumeric
//if (isAlphanumeric(document.form1.nwsd.value) == false) {
if (isValidName(document.form1.nwsd.value) == false) {
alert(errMess);
return;
} else {
//Save data
parent.hidden.v1[1] = document.form1.nwsd.value;
if (!isEmpty(document.form1.nwsddesc.value)) {
parent.hidden.v1[2] = document.form1.nwsddesc.value;
} else {
parent.hidden.v1[2] = "";
}
//Next page
window.location = "rzahqadvisor3.htm";
}
}
function onBack() {
window.location = "rzahqadvisor00.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>Network server description</strong>
<p>The network server description (NWSD) defines the operating characteristics and communications connections of
the network server that controls the Windows server.</p>
<p>Use a name that is easy to remember. The name can have up to 8 characters. Use only the characters A-Z and 0-9 in the
name, and use a letter for the first character. The network server description name is also the computer name and TCP/IP
host name of the Windows server. The description can have up to 50 characters.</p>
<p>What name and description do you want to use for your NWSD?</p>
<form name="form1">
<p style="margin-left:50px;">
<table border="0">
<tr>
<td><label for="nwsd">NWSD name:</label></td>
<td><input type="text" name="nwsd" id="nwsd" maxlength="8"></td></tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td></tr>
<tr>
<td><label for="desc1">NWSD description:</label></td>
<td><input type="text" name="nwsddesc" id="desc1" size="50" maxlength="50"> (optional)</td>
</tr>
</table>
</p>
<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>