246 lines
8.3 KiB
HTML
246 lines
8.3 KiB
HTML
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 4.0//EN">
|
||
|
<HTML>
|
||
|
<HEAD>
|
||
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
|
||
|
<meta name="Copyright" content="Copyright (c) 2006 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>i5/OS <sup>(TM)</sup> system value finder</TITLE>
|
||
|
<LINK rel="stylesheet" type="text/css" href="../rzahg/ic.css">
|
||
|
<script language="Javascript" src = "../rzahg/synch.js" type="text/javascript"></script>
|
||
|
<script language="Javascript" type="text/javascript">
|
||
|
<!-- // Hide script from older browsers
|
||
|
|
||
|
var cookieMess = "This finder uses a cookie to function. Ensure that you have are using a browser that supports cookies and that cookies are enabled.";
|
||
|
var errMess1= "Type a system value you want to find and click Go.";
|
||
|
|
||
|
//START NON-TRANSLATABLE
|
||
|
var noVal = "zzzz";
|
||
|
var cookieName = "ibmsysv";
|
||
|
|
||
|
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(noVal);
|
||
|
}
|
||
|
|
||
|
function storeCookieData(storeValue) {
|
||
|
re = /\s*/;
|
||
|
var newStoreValue = "";
|
||
|
a = getCookieData(cookieName);
|
||
|
if (a != storeValue) {
|
||
|
s2 = storeValue.split(re);
|
||
|
for (var i=0; i < s2.length; i++) {
|
||
|
newStoreValue = newStoreValue + s2[i];
|
||
|
}
|
||
|
storeValue = newStoreValue;
|
||
|
}
|
||
|
var exp = new Date();
|
||
|
var oneYearFromNow = exp.getTime() + (365 * 24 * 60 * 60 * 1000);
|
||
|
exp.setTime(oneYearFromNow);
|
||
|
document.cookie = cookieName + "=" + escape(storeValue) + ";expires=" + exp.toGMTString();
|
||
|
}
|
||
|
|
||
|
function loadHidden() {
|
||
|
//loadCookieData
|
||
|
re = /\s*/;
|
||
|
a = getCookieData(cookieName);
|
||
|
if (a != noVal) { //cookie and data exist
|
||
|
a2 = a.split(re);
|
||
|
//grab cookie data and stick in searcher field
|
||
|
a = a.replace(/\+/g," ");
|
||
|
document.sysvalfinder.searcher.value = a;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function valfind() {
|
||
|
re = /\s*/;
|
||
|
var cookieString = "";
|
||
|
|
||
|
if (document.sysvalfinder.searcher.value == "" || document.sysvalfinder.searcher.value == null) {
|
||
|
alert(errMess1);
|
||
|
return;
|
||
|
} else {
|
||
|
|
||
|
//overwrite cookie data
|
||
|
cookieString += document.sysvalfinder.searcher.value;
|
||
|
//Replace any spaces with pluses (+)
|
||
|
cookieString = cookieString.replace(/\s/g,"+");
|
||
|
storeCookieData(cookieString);
|
||
|
inputA = getCookieData(cookieName); //load stored data
|
||
|
if (inputA == noVal) { //cookie did not work, probably disabled
|
||
|
alert(cookieMess);
|
||
|
//cannot continue interview without cookie
|
||
|
return;
|
||
|
}
|
||
|
window.location = "rzakzfinder20.htm";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function catgo() {
|
||
|
var response = document.sysvalfindercat.catfind.selectedIndex;
|
||
|
switch (response) {
|
||
|
case 0: //Auditing
|
||
|
window.location = "rzakzauditingoverview.htm";
|
||
|
break;
|
||
|
case 1: //Date and Time
|
||
|
window.location = "rzakzdateoverview.htm";
|
||
|
break;
|
||
|
case 2: //Devices
|
||
|
window.location = "rzakzdevicesoverview.htm";
|
||
|
break;
|
||
|
case 3: //International
|
||
|
window.location = "rzakzinternationaloverview.htm";
|
||
|
break;
|
||
|
case 4: //Jobs
|
||
|
window.location = "rzakzjobsoverview.htm";
|
||
|
break;
|
||
|
case 5: //Library lists
|
||
|
window.location = "rzakzlibraryoverview.htm";
|
||
|
break;
|
||
|
case 6: //Message and service
|
||
|
window.location = "rzakzmessagesoverview.htm";
|
||
|
break;
|
||
|
case 7: //Passwords
|
||
|
window.location = "rzakzpasswordoverview.htm";
|
||
|
break;
|
||
|
case 8: //Performance
|
||
|
window.location = "rzakzperformanceoverview.htm";
|
||
|
break;
|
||
|
case 9: //Power control
|
||
|
window.location = "rzakzpoweroverview.htm";
|
||
|
break;
|
||
|
case 10: //Printing
|
||
|
window.location = "rzakzprintingoverview.htm";
|
||
|
break;
|
||
|
case 11: //Restart
|
||
|
window.location = "rzakzrestartoverview.htm";
|
||
|
break;
|
||
|
case 12: //Restore
|
||
|
window.location = "rzakzrestoreoverview.htm";
|
||
|
break;
|
||
|
case 13: //Security
|
||
|
window.location = "rzakzsecurityoverview.htm";
|
||
|
break;
|
||
|
case 14: //Sign-on
|
||
|
window.location = "rzakzsignoverview.htm";
|
||
|
break;
|
||
|
case 15: //Storage
|
||
|
window.location = "rzakzstorageoverview.htm";
|
||
|
break;
|
||
|
case 16: //System control
|
||
|
window.location = "rzakzsystemoverview.htm";
|
||
|
break;
|
||
|
case 17: //Obsolete system values
|
||
|
window.location = "rzakznolongerused.htm";
|
||
|
break;
|
||
|
default:
|
||
|
window.location = "rzakzfinder.htm";
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function detectenter(e) {
|
||
|
var charCode = (navigator.appName == "Netscape") ? e.which : e.keyCode;
|
||
|
if (charCode == 13) {
|
||
|
valfind();
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//END NON-TRANSLATABLE
|
||
|
////////// -->
|
||
|
</script>
|
||
|
<LINK rel="stylesheet" type="text/css" href="../ic.css">
|
||
|
</head>
|
||
|
<BODY onLoad="loadHidden()">
|
||
|
<!-- Java sync-link -->
|
||
|
<script language="Javascript" src = "../rzahg/synch.js" type="text/javascript"></script>
|
||
|
|
||
|
<H2>i5/OS <sup>(TM)</sup> system value finder</H2>
|
||
|
<P>Use the i5/OS <sup>(TM)</sup> system value finder to find information about system values <STRONG><EM>fast</EM></STRONG>.
|
||
|
You can search for categories of system values as they appear in iSeries <sup>(TM)</sup> Navigator or for the system value names you used in the character-based interface.</P>
|
||
|
|
||
|
<!--Table for Search by Category-->
|
||
|
<table cellspacing="4" cellpadding="4" border="0" WIDTH="85%" ALIGN="CENTER">
|
||
|
<tr>
|
||
|
<td colspan="2" class="finderbar"><FORM NAME="sysvalfindercat" ID="sysvalfindercat"><font size="+1"><label for="catfind"><STRONG>Find by category</strong></label></font></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="2"><label for="sysvalfindercat">Search for a category of system values.</label></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td width="15%"><BR><BR></td>
|
||
|
<td><!--Drop Box for system value categories-->
|
||
|
<SELECT NAME="catfind" ID="catfind" SIZE=1>
|
||
|
<OPTION VALUE="Auditing">Auditing
|
||
|
<OPTION VALUE="Date and Time">Date and Time
|
||
|
<OPTION VALUE="Devices">Devices
|
||
|
<OPTION VALUE="International">International
|
||
|
<OPTION VALUE="Jobs">Jobs
|
||
|
<OPTION VALUE="Library Lists">Library Lists
|
||
|
<OPTION VALUE="Message and Logging">Message and Service
|
||
|
<OPTION VALUE="Passwords">Passwords
|
||
|
<OPTION VALUE="Performance">Performance
|
||
|
<OPTION VALUE="Power Control">Power Control
|
||
|
<OPTION VALUE="Printing">Printing
|
||
|
<OPTION VALUE="Restart">Restart
|
||
|
<OPTION VALUE="Restore">Save and Restore
|
||
|
<OPTION VALUE="Security">Security
|
||
|
<OPTION VALUE="Sign-on">Signon
|
||
|
<OPTION VALUE="Storage">Storage
|
||
|
<OPTION VALUE="System Control">System and User Defaults
|
||
|
<OPTION VALUE="NoLongerUsed">Obsolete system values
|
||
|
</SELECT>
|
||
|
<INPUT TYPE="button" NAME="Go" VALUE="Go" onclick="catgo()" onKeyPress="catgo()">
|
||
|
</FORM>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<!--End of Search by Type table-->
|
||
|
|
||
|
<!--Table for Search by Name-->
|
||
|
<table cellspacing="4" cellpadding="4" border="0" WIDTH="85%" ALIGN="CENTER">
|
||
|
<TR>
|
||
|
<TD COLSPAN=2><BR></td>
|
||
|
</TR>
|
||
|
<TR>
|
||
|
<TD colspan="2" class="finderbar"><font size="+1"><STRONG>Find by name</strong></font></TD>
|
||
|
</TR>
|
||
|
<TR>
|
||
|
<TD colspan="2">Find by name for individual system value names used in the character-based interface.</TD>
|
||
|
</TR>
|
||
|
<TR>
|
||
|
<TD width="15%"><BR><BR></TD>
|
||
|
<TD><FONT SIZE=-1>Example: Enter <EM>QAUDCTL</EM> or just <EM>QAUD</EM>.</FONT><BR>
|
||
|
<FORM NAME="sysvalfinder"><label for="searcher">Enter the name of the system value</label>
|
||
|
<INPUT TYPE="text" NAME="searcher" ID="searcher" onKeyPress = "return detectenter(event)"> <INPUT TYPE="button" NAME="Go" VALUE="Go" onclick="valfind()" onKeyPress="valfind()">
|
||
|
</FORM>
|
||
|
</TD>
|
||
|
</TR>
|
||
|
|
||
|
<!--Row for spacing-->
|
||
|
<TR>
|
||
|
<TD COLSPAN=2><BR><BR></TD>
|
||
|
</TR>
|
||
|
</table>
|
||
|
<!--End of Search by Name table-->
|
||
|
</BODY></HTML>
|
||
|
|