home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a525 / 35.ddi / V2BACK.VRF < prev   
Encoding:
Text File  |  1993-03-01  |  2.9 KB  |  66 lines

  1. /* Copyright (c) Oracle Corporation 1992.  All Rights Reserved */
  2. /*****************************************************************************
  3.   NAME
  4.     v2back.vrf - V3.0.9.2 version analysis/product configuration script for
  5.          V2 Backward Compatibility.
  6.  
  7.   DESCRIPTION
  8.     This script checks dependencies and environment settings for the
  9.     installation of a V2 Product.
  10.  
  11.   OWNER
  12.     Kush Deepak Jain
  13.  
  14.   MODIFIED    DD-MM-YY    Reason
  15.     ekabatch  01-30-92    Made NLS Compliant.
  16.     kjain     01-15-92    Created.
  17. *****************************************************************************/
  18. {
  19.   product_label = product_interface_label(current_product);
  20.  
  21.   ui_product(product_label);
  22.  
  23.   analyzing_dependencies = instantiate(nls("analyzing_dependencies",
  24.                        "Analyzing %%product_label%% Dependencies..."));
  25.  
  26.   ui_action(analyzing_dependencies);
  27.  
  28.   if (product_number(current_product) == 0)
  29.     {
  30.       doit = FALSE;
  31.  
  32.       dont_install_installer = nls("dont_install_installer","The V3 Oracle Installer is capable of installing Oracle products distributed with the old V2 Oracle Installer. It is therefore not necessary to install the V2 Oracle Installer. Insert a product disk and choose the From button, then choose the Install button.");
  33.  
  34.       information_dialog(dont_install_installer);
  35.     }
  36.   else
  37.     {
  38.       if (not(registered("v2install")))
  39.     signal('FAILURE,nls("install_utilities_first","It is not possible install old Oracle products distributed with the old V2 Oracle Installer until the Oracle Installer Utilities have been installed. Please install the Oracle Installer Utilities from either floppy media or CD-ROM and try again."));
  40.  
  41.       doit = TRUE;  
  42.  
  43.       child_products = all_child_products(current_product);
  44.  
  45.       if (empty(child_products))
  46.     {
  47.       disk_problem = nls("disk_problem","There is a problem with the product disk you inserted. It was not possible to correctly determine its contents. Therefore, it will not be possible to install it. This problem may have arisen because the product disk you inserted is considerably old.");
  48.  
  49.       signal('FAILURE,disk_problem);
  50.     }
  51.  
  52.       child = first(child_products);
  53.  
  54.       v2_filename = product_filename(child);
  55.  
  56.       v2_label = product_interface_label(child);
  57.  
  58.       installing_product =  nls("installing_product","Installing %%product_label%%...");
  59.       installation_terminated =     nls("installation_terminated","Installation terminated at user request.");
  60.       installation_corrupted = nls("installation_corrupted","This installation of Oracle needs to be corrected. To do this, you must run the Oracle Installer from a distribution diskette or from CD-ROM.");
  61.       migrating_product_with_name = nls("migrating_product_with_name","Migrating Product Number %%v2_number%%: %%v2_label%%...");
  62.       creating_stubs = nls("creating_stubs","Creating %%product_label%% Executable Stubs...");
  63.     }
  64.  
  65.   return(0);
  66. }