signal('failure,instantiate(nls("instver_too_early1","The version of the Installer currently running is %%installer_version%%. The installation you have chosen requires version %%required_version%%. Please run version %%required_version%% in order to perform this installation.")));
}
] /* This FAILURE will cause 3.0.9.x installer to exit gracefully. */
protocol_type_help = instantiate(nls("protocol_type_help","Select the default network protocol you would like to use for %%bundle_name%%:%carriage_return%%%protocol_type_helpt%%%carriage_return%%%protocol_type_helpp%%."));
protocol_type = single_selection_dialog(
protocol_type_prompt,
protocol_type_choices,
protocol_type_content,
protocol_type_help);
if (protocol_type == protocol_type_tcp)
{
add(selected_products,"wintcp11");
protocol_string = "t";
}
else if (protocol_type == protocol_type_nmp)
{
add(selected_products,"winnmp11");
protocol_string = "p";
}
}
]
}
else if ( (bundle_name == W_O7_NW) || (bundle_name == E_O7_NW))
/* protocol can be either spx or tcp*/
{
{
if (install_type == "")
signal('UNBOUND_VARIABLE);
else if (protocol_type == protocol_type_tcp)
protocol_string = "t";
else if (protocol_type == protocol_type_spx)
protocol_string = "x";
else
signal('UNBOUND_VARIABLE);
}
['UNBOUND_VARIABLE: /* pop a dialog */
{
/* Following five elements are added by for Netware 03/17/95 */
protocol_type_help = instantiate(nls("protocol_type_help","Select the default network protocol you would like to use for %%bundle_name%%:%carriage_return%%%protocol_type_helpx%%%carriage_return%%%protocol_type_helpt%%."));
protocol_type = single_selection_dialog(
instantiate(protocol_type_prompt),
protocol_type_choices,
instantiate(protocol_type_content),
protocol_type_help);
if (protocol_type == protocol_type_tcp)
{
add(selected_products,"wintcp11");
protocol_string = "t";
}
else if (protocol_type == protocol_type_spx)
{
add(selected_products,"winspx11");
protocol_string = "x";
}
}
]
}
host = text_dialog("What is the name of the machine where the Oracle7 Server is installed?", "");