/* Copyright (c) Oracle Corporation 1997. All Rights Reserved */ /************************************************************************ NAME hlptxt.vrf DESCRIPTION This script defines the appropriate help text depending on the bundle name, i.e., the CD that is being installed. It then returns a string containing the help text. This is used in user.stp. USAGE: foo = execute("hlptxt.vrf"); foo will contain the help text MODIFIED MM/DD/YY Reason zzerhoun 08/24/99 Moved NLS strings to win32. rxfernan AUG-97 Production Release of Oracle 7.3.4. **************************************************************************/ { /* Define the help text for the appropriate bundle name. */ /* Define help text of all EE, Oracle8, and Client CDs in the Windows 95 platform. */ if((operating_system == "win95") && ((bundle_name == E_O8_W_NT) || (bundle_name == W_O8_W_NT) || (bundle_name == C_O8_95_NT))) { help_text = help_text_c95; } /* The condition above is not true... */ /* Help text for Oracle8 Enterprise Edition. */ if(bundle_name == E_O8_W_NT) { help_text = help_text_ee; } /* Help text for Oracle Workgroup Server. */ else if(bundle_name == W_O8_W_NT) { help_text = help_text_o8; } /* Help text for Oracle Client. */ else if(bundle_name == C_O8_95_NT) { help_text = help_text_client; } /* Help text for Personal Oracle for Windows NT. */ else if(bundle_name == P_O8_W_NT) { help_text = help_text_po8nt; } /* Help text for Personal Oracle for Windows 95. */ else if(bundle_name == P_O8_95) { help_text = help_text_po895; } /* Else default to an empty string -we have problems, bundle_name has to be set. */ else help_text = ""; return(help_text); }