142 lines
5.7 KiB
HTML
142 lines
5.7 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
|
<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. -->
|
|
<title>Customize your backup checklist: welcome</title>
|
|
<LINK rel="stylesheet" type="text/css" href="../rzahg/ic.css">
|
|
<script type="text/javascript" language="Javascript">
|
|
|
|
//var comsg = "The interview detected that you previously created a customized task list. Click OK to load the task list you previously created, or click Cancel to create a new task list.";
|
|
var cookieMess = "This interview uses a cookie to function. Ensure that you have are using a browser that supports cookies and that cookies are enabled.";
|
|
|
|
//START NON-TRANSLATABLE
|
|
function getCookieData(label) {
|
|
var labelLen = label.length;
|
|
var cLen = document.cookie.length;
|
|
var i=0;
|
|
var cEnd;
|
|
while (i < cLen) {
|
|
var j = i + labelLen;
|
|
if (document.cookie.substring(i,j) == label) {
|
|
cEnd = document.cookie.indexOf(";",j);
|
|
if (cEnd == -1) {
|
|
cEnd = document.cookie.length;
|
|
}
|
|
return unescape(document.cookie.substring(j+1,cEnd));
|
|
}
|
|
i++
|
|
}
|
|
|
|
//if they reach this point, no cookie data was found
|
|
return("zzzz");
|
|
}
|
|
|
|
function storeValue(input) {
|
|
var exp = new Date();
|
|
var oneYearFromNow = exp.getTime() + (365 * 24 * 60 * 60 * 1000);
|
|
exp.setTime(oneYearFromNow);
|
|
document.cookie = "gosaveint=" + input + ";expires=" + exp.toGMTString();
|
|
}
|
|
|
|
|
|
function onOld() {
|
|
z = screen.height-100;
|
|
windowparms = "width=640,height=" + z + ",resizable=yes,scrollbars=yes,titlebar=no,toolbar=no,status=no";
|
|
//windowparms = "width=640,resizable=yes,scrollbars=yes,titlebar=no,toolbar=no,status=no";
|
|
aWindow = window.open("rzaiuchecklist.htm?noframes=true", "custom", windowparms);
|
|
aWindow.focus();
|
|
if (aWindow != null) {
|
|
if (aWindow.opener == null) {
|
|
aWindow.opener = self;
|
|
}
|
|
}
|
|
window.location = "rzaiusummary.htm";
|
|
}
|
|
|
|
function onNew() {
|
|
for (var i=0; i < 64; i++) {
|
|
tstring = tstring + "x";
|
|
}
|
|
storeValue(tstring);
|
|
onNext();
|
|
}
|
|
|
|
function onNext() {
|
|
var tstring = "x";
|
|
for (var i=0; i < 63; i++) {
|
|
tstring = tstring + "x";
|
|
}
|
|
input = getCookieData("gosaveint");
|
|
if (input == "zzzz") {
|
|
storeValue(tstring);
|
|
inputA = getCookieData("gosaveint"); //load stored data
|
|
if (inputA == "zzzz") { //cookie did not work, probably disabled
|
|
alert(cookieMess);
|
|
return;
|
|
}
|
|
}
|
|
window.location = "rzaiuserver_name.htm";
|
|
}
|
|
|
|
//END NON-TRANSLATABLE
|
|
</script>
|
|
</head>
|
|
|
|
<BODY>
|
|
|
|
<H2>Customize your GO SAVE backup instructions</H2>
|
|
<p><strong>Welcome</strong></p>
|
|
|
|
<noscript><p>This online interview uses JavaScript<SUP>(TM)</SUP> to function. Ensure you are using a browser that supports
|
|
JavaScript and that JavaScript is enabled.</p></noscript>
|
|
|
|
<p>In this interview, you answer a series of questions about the type of GO SAVE operation you want to perform for
|
|
your specific system configuration. These questions will help determine which tasks you must peform to obtain a complete backup of
|
|
your server using GO SAVE: Option 21, 22, or 23. Once you answer these questions, a customized checklist is provided
|
|
with only the backup activities you need to perform.</p>
|
|
|
|
<p><b>Note:</b><br>
|
|
You need to know specific information about how your server is configured, such as whether or not you use network servers. If you
|
|
are not able to determine how your system is configured with the help provided in the interview, contact your system administrator.
|
|
If your system configuration changes, you need to generate a new GO SAVE checklist to ensure you are performing a complete save.</p>
|
|
|
|
<form name="forma">
|
|
<script type="text/javascript" language="Javascript">
|
|
|
|
var text1 = "The interview detected that you previously created a customized task list. You can load the task list you previously created or you can create a new task list. ";
|
|
text1 += "If you create a new task list, your old task list will be overwritten.<p> <\/p>";
|
|
text1 += "<center><input name='Old' type='button' value='Load my task list' onClick='onOld()'> <input name='new' type='button' value='Create a new task list' onClick='onNew()'><\/center>";
|
|
var text2 = "<p>If you have enabled your Web browser to accept cookies, you can return to your custom GO SAVE backup instructions later. ";
|
|
text2 += "Simply return to this page and choose to return to your previously created customized GO SAVE backup instructions.<\/p><p> <\/p>";
|
|
text2 += "<center><input name='Next' type='button' value=' Next >> ' onClick='onNext()'><\/center>";
|
|
var text3 = "<p>If you have enabled your Web browser to accept cookies, you can return to your custom GO SAVE backup instructions later. ";
|
|
text3 += "Simply return to this page and choose to return to your previously created customized GO SAVE backup instructions.<\/p>";
|
|
text3 += "<p> <\/p><center><input name='Next' type='button' value=' Next >> ' onClick='onNext()'><\/center>";
|
|
|
|
//START NON-TRANSLATABLE
|
|
var tstring = "x";
|
|
re = /\s*/;
|
|
input = getCookieData("gosaveint"); //load stored data
|
|
input2 = input.split(re);
|
|
if (input != "zzzz") {
|
|
if (input2[52] != "x") {
|
|
document.writeln(text1);
|
|
} else {
|
|
document.writeln(text2);
|
|
}
|
|
} else {
|
|
document.writeln(text3);
|
|
}
|
|
|
|
//END NON-TRANSLATABLE
|
|
</script>
|
|
</form>
|
|
</BODY>
|
|
</html>
|
|
|