home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a525 / 26.ddi / DOS.STP < prev    next >
Encoding:
Text File  |  1993-03-23  |  64.1 KB  |  1,625 lines

  1. /* Copyright (c) Oracle Corporation 1992.  All Rights Reserved */
  2.  
  3. /*****************************************************************************
  4.   NAME
  5.     dos.stp - DOS V3 Installation Environment Initialization File for V7
  6.           Oracle products
  7.  
  8.   DESCRIPTION
  9.     This script bootstraps the DOS environment for the installation
  10.     of Oracle V7 products. It is always read first by ORAINST for DOS.
  11.  
  12.   OWNER
  13.      Kush Deepak Jain
  14.  
  15.   MODIFIED   MM/DD/YY Reason
  16.     kjain    01/28/92 Complete rewrite for production logic,MVI and
  17.               V2 Backward Compatibility.
  18.     kjain    12/16/92 Made NLS compliant
  19.     kjain    11/02/92 ported new os2.stp to dos
  20.     kjain    10/07/92 Added automatic boot_drive determination.
  21.     jicohen  09/01/92 Ported OS2.STP to DOS 
  22. *****************************************************************************/
  23. {
  24.   product_label = nls("product_label","Oracle Installer");
  25.  
  26.   ui_product(product_label);
  27.  
  28.   ui_action(nls("default_language","Looking for a Default Language..."));
  29.  
  30.   /* Let the installer know if this is a bootstrapping sequence. */
  31.  
  32.   bootstrap = TRUE;
  33.  
  34.   /* Let the installer know that it is being run from distribution media. */
  35.  
  36.   distribution = TRUE;
  37.  
  38.   /* Be friendly. */
  39.  
  40.   welcome = TRUE;
  41.  
  42.   mark
  43.     {
  44.       { nls_language = default_language();}
  45.     [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  46.       {
  47.         english = list("English","AMERICAN_AMERICA.US7ASCII");
  48.         brazilian_portuguese = list("Brazilian Portuguese",
  49.                     "BRAZILIAN PORTUGUESE_BRAZIL.WE8PC850");
  50.         czech = list("Czech","CZECH_CZECHOSLOVAKIA.EE8PC852");
  51.         danish = list("Danish","DANISH_DENMARK.DK8PC850");
  52.         dutch = list("Dutch","DUTCH_THE NETHERLANDS.WE8PC850");
  53.         finnish = list("Finnish","FINNISH_FINLAND.SF8PC850");
  54.         french = list("French","FRENCH_FRANCE.WE8PC850");
  55.         german = list("German","GERMAN_GERMANY.WE8PC850");
  56.         greek = list("Greek","GREEK_GREECE.EL8PC437S");
  57.         hungarian = list("Hungarian","HUNGARIAN_HUNGARY.EE8PC852");
  58.         italian = list("Italian","ITALIAN_ITALY.WE8PC850");
  59.         norwegian = list("Norwegian","NORWEGIAN_NORWAY.N8PC850");
  60.         polish = list("Polish","POLISH_POLAND.EE8PC852");
  61.         portuguese = list("Portuguese","PORTUGUESE_PORTUGAL.WE8PC850");
  62.         russian = list("Russian","RUSSIAN_CIS.RU8PC866");
  63.         slovak = list("Slovak","SLOVAK_CZECHOSLOVAKIA.EE8PC852");
  64.         spanish = list("Spanish","SPANISH_SPAIN.WE8PC850");
  65.         swedish = list("Swedish","SWEDISH_SWEDEN.S8PC850");
  66.         turkish = list("Turkish","TURKISH_TURKEY.TR8PC857");
  67.  
  68.         language_prompt = nls("language_prompt","It was not possible to determine which language you normally run Oracle products in. Please select the language would you like to use:");
  69.  
  70.         if (welcome)
  71.           {
  72.         welcome_prompt = nls("welcome_prompt","Welcome to the Oracle Installer.");
  73.         language_prompt = "%welcome_prompt% %language_prompt%";
  74.           }
  75.  
  76.         welcome = FALSE;
  77.  
  78.         language_content = nls("language_content","Language");
  79.         language_help = nls("language_help","You are being asked to select the language you would like to use. The Oracle Installer will run in that language. English text may appear if the installer cannot locate a message it needs. By default, the Oracle products you install will use the language you select as well.");
  80.         lang_list = list(english,brazilian_portuguese,
  81.                  czech,danish,dutch,finnish,french,german,
  82.                  greek,hungarian,italian,
  83.                  norwegian,polish,portuguese,
  84.                  russian,slovak,spanish,swedish,turkish);
  85.  
  86.         language_list = list(first(english),first(brazilian_portuguese),
  87.                  first(czech),
  88.                  first(danish),first(dutch),first(finnish),
  89.                  first(french),first(german),first(greek),
  90.                  first(hungarian),
  91.                  first(italian),
  92.                  first(norwegian),first(polish),
  93.                  first(portuguese),first(russian),
  94.                  first(slovak),first(spanish),first(swedish),
  95.                  first(turkish));
  96.  
  97.         nls_language = single_selection_dialog(language_prompt,language_list,
  98.                            first(english),language_content,
  99.                            language_help);
  100.  
  101.         while(not(nls_language == first(first(lang_list))))
  102.           lang_list = rest(lang_list);
  103.  
  104.         nls_language = first(rest(first(lang_list)));
  105.         
  106.         set_default_language(nls_language);
  107.  
  108.         reopen_resource_file();
  109.       }
  110.        ]
  111.  
  112.  
  113.       check_environment = nls("check_environment","Checking the Environment...");
  114.  
  115.       ui_action(check_environment);
  116.  
  117.       mark
  118.     {
  119.       { the_customer_name = customer_name(); }
  120.         [ 'UNKNOWN_CUSTOMER:
  121.           {
  122.         customer_prompt = nls("customer_prompt","Please enter the name of the company to which this Oracle product has been licensed:");
  123.         
  124.         if (welcome)
  125.           {
  126.             welcome_prompt = nls("welcome_prompt","Welcome to the Oracle Installer.");
  127.             customer_prompt = "%welcome_prompt% %customer_prompt%";
  128.           }
  129.  
  130.         welcome = FALSE;
  131.         
  132.         customer_content = nls("customer_content","Customer Name");
  133.         customer_help = nls("customer_help","You are being asked to enter the name of the company to which this copy of Oracle has been licensed. This information will be internally recorded for licensing purposes.");         
  134.  
  135.         the_customer_name = "";
  136.  
  137.         while (the_customer_name == "")
  138.           the_customer_name = text_dialog(customer_prompt,"",
  139.                            customer_content,customer_help);
  140.  
  141.         { save_customer_name(the_customer_name);}
  142.           [ 'WRITE_PROTECTED: continue(); 
  143.             'WRITE_ERROR: continue(); ]
  144.           }
  145.     ]
  146.  
  147.  
  148.      identifying_boot_drive = nls("identifying_boot_drive",
  149.                   "Identifying the Boot Drive...");
  150.  
  151.      ui_action(identifying_boot_drive);
  152.  
  153.      boot_drive = dos_boot_drive();
  154.   
  155.      if (dos_version() <  "4")
  156.        {
  157.      mapped_drives = dos_mapped_drives();
  158.  
  159.      extract(mapped_drives,"A"); extract(mapped_drives,"B");
  160.  
  161.      boot_drive_prompt = nls("boot_drive_prompt","Please select the drive from which you boot your computer:");
  162.  
  163.      if (welcome)
  164.        {
  165.          welcome_prompt = nls("welcome_prompt","Welcome to the Oracle Installer.");
  166.          boot_drive_prompt = "%welcome_prompt% %boot_drive_prompt%";
  167.        }
  168.  
  169.      welcome = FALSE;
  170.  
  171.      boot_drive_content = nls("boot_drive_content","Boot Drive");
  172.      boot_drive_help = nls("boot_drive_help","You are being asked to identify the drive from which you boot your computer.");
  173.  
  174.      boot_drive = single_selection_dialog(boot_drive_prompt, mapped_drives,boot_drive_content,boot_drive_help);
  175.  
  176.        }
  177.  
  178.       ui_action(nls("locate_home","Locating Oracle Home..."));
  179.  
  180.       has_mvi_oracle_home = FALSE;
  181.       has_v7_oracle_home = FALSE;
  182.       has_v6_oracle_home = FALSE;
  183.       has_matching_homes = FALSE;
  184.       has_matching_configurations = FALSE;
  185.           ora_config_is_set = FALSE;
  186.  
  187.       {
  188.         {
  189.           {
  190.                 ora_config = translate("ORA_CONFIG"); 
  191.             ora_config_is_set = TRUE;
  192.           }
  193.         [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  194.           {
  195.             path = translate("PATH");
  196.  
  197.             exploded_path = explode(path,";");
  198.  
  199.             found = FALSE;
  200.  
  201.             if (not(empty(exploded_path)))
  202.               while (not(found))
  203.             {
  204.               path_member = first(exploded_path);
  205.  
  206.               if ((length(path_member) == 3) &&
  207.                   contains(path_member,":\"))
  208.                 original_ora_config = "%path_member%CONFIG.ORA";
  209.               else
  210.                 original_ora_config = "%path_member%\CONFIG.ORA";
  211.  
  212.               {
  213.                 if (exists(original_ora_config))
  214.                   {
  215.                 ora_config = original_ora_config;
  216.                 found = TRUE;
  217.                   }
  218.               }
  219.                 [ 'INVALID_FILE_NAME: continue();
  220.                   'PERMISSION_DENIED: continue();
  221.                   'OS_ERROR: continue(); ]
  222.  
  223.               exploded_path = rest(exploded_path);
  224.             }
  225.  
  226.             ora_config = ora_config;
  227.           }
  228.         ]
  229.  
  230.           oracle_home = v7_translate("ORACLE_HOME");
  231.           pathify(ora_config); pathify(oracle_home);
  232.  
  233.           if (not(ora_config_is_set))
  234.                 if (not(exists(oracle_home)))
  235.           signal('UNBOUND_ENVIRONMENT_VARIABLE);
  236.  
  237.           has_v7_oracle_home = TRUE;
  238.  
  239.           {
  240.         v7_translate("MULTIVERSION_ORACLE_HOME");
  241.  
  242.         has_mvi_oracle_home = TRUE;
  243.           }
  244.         [ 'OS_ERROR: continue();
  245.           'UNBOUND_ENVIRONMENT_VARIABLE: continue(); ]
  246.  
  247.           {
  248.         v6_ora_config = v6_translate("%%CONFIG%%");
  249.         v6_oracle_home = v6_translate("%%ORACLE_HOME%%");
  250.         pathify(v6_ora_config); pathify(v6_oracle_home);
  251.  
  252.         if (not(exists(oracle_home)))
  253.           signal('UNBOUND_ENVIRONMENT_VARIABLE);
  254.  
  255.         has_v6_oracle_home = TRUE;
  256.  
  257.         has_matching_homes = (oracle_home == v6_oracle_home);
  258.         has_matching_configurations = (ora_config == v6_ora_config);
  259.           }
  260.         [ 'OS_ERROR: continue();
  261.           'UNBOUND_ENVIRONMENT_VARIABLE: continue(); ]
  262.         }
  263.           [ 'OS_ERROR: signal('UNBOUND_ENVIRONMENT_VARIABLE);
  264.         'UNBOUND_VARIABLE: signal('UNBOUND_ENVIRONMENT_VARIABLE); ]
  265.  
  266.       }
  267.         [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  268.           {
  269.         ora_config = v6_translate("%%CONFIG%%");
  270.         oracle_home = v6_translate("%%ORACLE_HOME%%");
  271.  
  272.         pathify(ora_config); pathify(oracle_home);
  273.  
  274.         if (not(exists(oracle_home)))
  275.           signal('UNBOUND_ENVIRONMENT_VARIABLE);
  276.  
  277.         has_v6_oracle_home = TRUE;
  278.           }
  279.         [ 'OS_ERROR: { oracle_home = "%boot_drive%:\ORADOS";
  280.                    ora_config = "%oracle_home%\XBIN\CONFIG.ORA"; }
  281.           'UNBOUND_ENVIRONMENT_VARIABLE:
  282.                  { oracle_home = "%boot_drive%:\ORADOS";
  283.                    ora_config = "%oracle_home%\XBIN\CONFIG.ORA"; }
  284.         ]
  285.         ]
  286.  
  287.       mark
  288.         {
  289.           select_home_prompt = nls("select_home_prompt","Enter the complete path to which you wish to install Oracle products:");
  290.           select_home_content = nls("select_home_content","Oracle Home");
  291.           select_home_help = nls("select_home_help","You are being asked to select the location to which Oracle products are to be installed.");
  292.  
  293.           if (has_mvi_oracle_home)
  294.         additional_home_help = instantiate(nls("mvi_home_help","
  295.  
  296. A Multiple Version Oracle Home was located at '%%oracle_home%%'."));
  297.           else if (has_v7_oracle_home)
  298.         additional_home_help = instantiate(nls("v7_home_help","
  299.  
  300. An Oracle 7 Home was located at '%%oracle_home%%'."));
  301.           else if (has_v6_oracle_home)
  302.         additional_home_help = instantiate(nls("v6_home_help","
  303.  
  304. An old Oracle Home was located at '%%oracle_home%%'."));
  305.           else
  306.         additional_home_help = nls("no_home_help","
  307.  
  308. An Oracle Home could not be located.");
  309.  
  310.           select_home_help = "%select_home_help% %additional_home_help%";
  311.  
  312.           if (has_v7_oracle_home)
  313.         {
  314.           if (has_mvi_oracle_home)
  315.             oracle_home_name = "Multiple Version Oracle Home";
  316.           else
  317.             oracle_home_name = "Oracle 7 Home";
  318.  
  319.           if (not(has_v6_oracle_home) || not(has_matching_homes))
  320.             {
  321.               additional_home_help = instantiate(nls("no_v6_home_help","
  322.  
  323. WARNING: There is a problem with your %%oracle_home_name%% configuration. Older Oracle products cannot properly locate your Oracle Home. Proceeding with this installation will correct this problem."));
  324.  
  325.               select_home_help = "%select_home_help% %additional_home_help%";
  326.             }
  327.           else if (not(has_matching_configurations))
  328.             {
  329.               additional_home_help = instantiate(nls("mismatching_configurations_help","
  330.  
  331. WARNING: Two separate configuration files have been located. '%%ora_config%%' is used by %%oracle_home_name%% products. '%%v6_ora_config%%' is used by older Oracle products. Proceeeding with this installation will correct this problem by only configuring the use of '%%ora_config%%' only."));
  332.  
  333.               select_home_help = "%select_home_help% %additional_home_help%";
  334.             }
  335.         }
  336.  
  337.           ui_action(nls("verify_home","Verifying Oracle Home..."));
  338.  
  339.           migrate_oracle_home = FALSE;
  340.  
  341.           oracle_home_unselected = TRUE;
  342.           while (oracle_home_unselected)
  343.         {
  344.           if (welcome)
  345.             {
  346.               welcome_prompt = nls("welcome_prompt","Welcome to the Oracle Installer.");
  347.               select_home_prompt = "%welcome_prompt% %select_home_prompt%";
  348.             }
  349.  
  350.           welcome = FALSE;
  351.  
  352.           directory = text_dialog(select_home_prompt,oracle_home,
  353.                       select_home_content,
  354.                       select_home_help);
  355.           pathify(directory);
  356.  
  357.           mark
  358.             if ((has_v7_oracle_home && not(has_mvi_oracle_home)) ||
  359.             (not(has_v7_oracle_home) && has_v6_oracle_home))
  360.               if (directory == oracle_home)
  361.             {
  362.               migration_prompt = instantiate(nls("migration_prompt","'%%directory%%' is your current Oracle Home. It is not possible to install new Oracle products to '%%directory%%' unless it is migrated to a Multiple Version Oracle Home. After you have migrated an Oracle Home, it will not be possible to use older versions of the Oracle Installer to install products there anymore. Are you sure you want to migrate the products you have installed in '%%directory%%'?"));
  363.               migration_content = nls("migration_content","Migration");
  364.               migration_help = instantiate(nls("migration_help","The process of migrating your current Oracle Home, '%%directory%%' will enable you to install multiple versions of future Oracle products. Some changes you may notice are:
  365.  
  366. '%%directory%%\XBIN' will go on your path instead of '%%directory%%\BIN'.
  367.  
  368. Configurable execution stubs for all Oracle executables are placed in the '%%directory%%\XBIN' directory.
  369.  
  370. After you migrate your Oracle Home, you will not be able to use the older Version 2 installer. This installer can install older products distributed with the Version 2 installer."));
  371.  
  372.               migrate_oracle_home = yesno_dialog(migration_prompt,
  373.                                  TRUE,
  374.                                  migration_content,
  375.                                  migration_help);
  376.  
  377.               if (not(migrate_oracle_home))
  378.                 continue();
  379.             }
  380.               else
  381.             {
  382.               unusable_home_prompt = instantiate(nls("unusable_home_prompt","Choosing to install Oracle products into '%%directory%%' will render the Oracle products installed in '%%oracle_home%%' temporarily unusable. Futhermore, it will not be possible to use the products to be installed in '%%directory%%' and the products previously installed in '%%oracle_home%%' together. Are you sure you want to install new Oracle products in '%%directory%%'?"));
  383.               unusable_home_content = nls("unusable_home_content","Multiple Homes");
  384.               unusable_home_help = instantiate(nls("unusable_home_help","Choosing to install Oracle products into '%%directory%%' will render the Oracle products installer in '%%oracle_home%%' temporarily unusable because it will be necessary to change the Oracle configuration variable, CONFIG, to point to your new Oracle Home.
  385.  
  386. It is recommended that you choose your current Oracle Home, '%%oracle_home%%', instead."));
  387.  
  388.               if (not(yesno_dialog(unusable_home_prompt,FALSE,
  389.                            unusable_home_content,
  390.                            unusable_home_help)))
  391.                 continue();
  392.             }
  393.  
  394.           mark
  395.             { make_directory(directory); }
  396.               [ 'WRITE_ERROR:
  397.               {
  398.                 write_error_prompt = nls("write_error_prompt","It was not possible to create the directory '%%directory%%'. This could have been caused by not having the write permissions needed to create the specified directory. Please correct the problem or choose another directory.");
  399.                 information_dialog(instantiate(write_error_prompt));
  400.               }
  401.             'FILE_NOT_FOUND:
  402.               {
  403.                 file_not_found_prompt = nls("file_not_found_prompt","The directory you specified, '%%directory%%', is not valid. This could have been caused by entering an improper path or by requiring the Oracle Installer to make more than one directory. Please correct the problem or choose another directory.");
  404.                 information_dialog(instantiate(file_not_found_prompt));
  405.               }
  406.             'OS_ERROR:
  407.               {
  408.                 os_error_prompt = nls("os_error_prompt","The directory you specified, '%%directory%%', could not be created. This could have been caused because a file already exists by that name. Please correct the problem or choose another directory.");
  409.                 information_dialog(instantiate(os_error_prompt));
  410.               }
  411.               ]
  412.  
  413.           /* Make sure the Oracle Home directories exist. */
  414.  
  415.           mark
  416.             {
  417.               {
  418.             subdirectory = "%directory%\XBIN";
  419.             make_directory(subdirectory);
  420.  
  421.             subdirectory = "%directory%\DBS";
  422.             make_directory(subdirectory);
  423.  
  424.             subdirectory = "%directory%\ORAINST";
  425.             make_directory(subdirectory);
  426.  
  427.             oracle_home_unselected = FALSE;
  428.                }
  429.              [ 'WRITE_ERROR:
  430.                 {
  431.                   sub_write_error_prompt = nls("sub_write_error_prompt","It was not possible to create the directory '%%subdirectory%%'. This could have been caused by not having the write permissions needed to create the specified directory. Please correct the problem or choose another directory.");
  432.                   information_dialog(instantiate(write_error_prompt));
  433.                   signal('CLEANUP);
  434.                 }
  435.               'FILE_NOT_FOUND:
  436.                 {
  437.                   sub_file_not_found_prompt = nls("sub_file_not_found_prompt","The directory, '%%subdirectory%%', is not valid. It is unclear why this is the case. Please correct the problem or choose another directory.");
  438.                   information_dialog(instantiate(file_not_found_prompt));
  439.                   signal('CLEANUP);
  440.                 }
  441.               'OS_ERROR:
  442.                 {
  443.                   sub_os_error_prompt = nls("sub_os_error_prompt","The directory, '%%subdirectory%%', could not be created. This could have been caused because a file already exists by that name. Please correct the problem or choose another directory.");
  444.                   information_dialog(instantiate(os_error_prompt));
  445.                   signal('CLEANUP);
  446.                 }
  447.             ]
  448.             }
  449.               [ 'CLEANUP: {
  450.                     { remove_directory("%directory%\ORAINST"); }
  451.                       [ 'WRITE_ERROR: continue();
  452.                     'OS_ERROR: continue(); ]
  453.                     { remove_directory("%directory%\DBS"); }
  454.                       [ 'WRITE_ERROR: continue();
  455.                     'OS_ERROR: continue(); ]
  456.                     { remove_directory("%directory%\XBIN"); }
  457.                       [ 'WRITE_ERROR: continue();
  458.                     'OS_ERROR: continue(); ]
  459.                    }
  460.               ]
  461.               }
  462.  
  463.           if (oracle_home != directory)
  464.         {
  465.           oracle_home = directory;
  466.           {
  467.             { modify("EJDKT","Absolutely Stellar",ora_config); }
  468.              [ 'INVALID_FILE_NAME: signal('OS_ERROR);
  469.                'PERMISSION_DENIED: signal('OS_ERROR);
  470.                'WRITE_ERROR: signal('OS_ERROR);
  471.                'FILE_NOT_FOUND: signal('OS_ERROR);
  472.                'OS_ERROR: signal('OS_ERROR); ]
  473.           }
  474.            [ 'OS_ERROR: ora_config = "%oracle_home%\XBIN\CONFIG.ORA"; ]
  475.  
  476.         }
  477.  
  478.  
  479.  
  480.           ui_action(check_environment);
  481.  
  482.           autoexec_needs_change = FALSE;
  483.           config_needs_change = FALSE;
  484.           has_buffers_value = FALSE;
  485.           change_buffers_value = FALSE;
  486.           has_files_value = FALSE;
  487.           change_files_value = FALSE;          
  488.           add_xbin_directory = FALSE;
  489.           remove_bin_directory = FALSE;
  490.           remove_pbin_directory = FALSE;
  491.           move_config_file = FALSE;
  492.           add_config_variable = FALSE;
  493.           set_config_variable = FALSE;
  494.           add_ora_config_variable = FALSE;
  495.           set_ora_config_variable = FALSE;
  496.           has_break_value = FALSE;
  497.           change_break_value = FALSE;
  498.           path_needs_change = FALSE;
  499.           config_is_wrong = FALSE;
  500.           oraconfig_is_wrong = FALSE;
  501.  
  502.           if((boot_drive == "A" ) || (boot_drive == "B" ))
  503.         {
  504.            information_dialog(nls("put_system_disk_prompt","Put the DOS system disk into %boot_drive%")); 
  505.        
  506.            /* Update DOS AUTOEXEC.BAT file. */
  507.            while(not (exists("%boot_drive%:\command.com")))
  508.            {
  509.            disk_problem_prompt = nls("disk_problem_prompt","You have not inserted a System Disk. Please insert a System Disk.");
  510.            disk_problem_content = nls("disk_problem_content","Wrong Disk problem");
  511.            disk_problem_help = nls("disk_problem_help","The System Disk contains command.com and two hidden system files. Please insert a floppy which contains these three files to continue installation.");
  512.            information_dialog(disk_problem_prompt,
  513.                       disk_problem_content,
  514.                       disk_problem_help);
  515.            }
  516.         }
  517.  
  518.           if (exists("%boot_drive%:\CONFIG.SYS"))
  519.         copy_file("%boot_drive%:\CONFIG.SYS",
  520.               "%boot_drive%:\CONFIG.NEW");
  521.           else
  522.         create_file("%boot_drive%:\CONFIG.NEW");
  523.  
  524.  
  525.           if (exists("%boot_drive%:\AUTOEXEC.BAT"))
  526.         copy_file("%boot_drive%:\AUTOEXEC.BAT",
  527.               "%boot_drive%:\AUTOEXEC.NEW");
  528.           else
  529.         create_file("%boot_drive%:\AUTOEXEC.NEW");
  530.  
  531.  
  532.           {
  533.         current_break_value = translate("break",
  534.                          "%boot_drive%:\config.new");
  535.         has_break_value = TRUE;
  536.         if (current_break_value != "on")
  537.            signal('UNBOUND_ENVIRONMENT_VARIABLE);
  538.  
  539.           }
  540.         ['UNBOUND_ENVIRONMENT_VARIABLE:
  541.           {
  542.             modify("BREAK","ON","%boot_drive%:\CONFIG.NEW");
  543.             config_needs_change = TRUE;
  544.             change_break_value = TRUE;
  545.           } ]
  546.  
  547.           {
  548.         current_files_value = translate("FILES",
  549.                           "%boot_drive%:\CONFIG.NEW");
  550.         has_files_value = TRUE;
  551.         {
  552.           if (current_files_value < 40)
  553.             signal('UNBOUND_ENVIRONMENT_VARIABLE);
  554.         }
  555.           [ 'TYPE_MISMATCH: signal('UNBOUND_ENVIRONMENT_VARIABLE); ]
  556.           }
  557.         ['UNBOUND_ENVIRONMENT_VARIABLE:
  558.           {
  559.             modify("FILES","40","%boot_drive%:\CONFIG.NEW");
  560.             config_needs_change = TRUE;
  561.             change_files_value = TRUE;
  562.           } ]
  563.      buf_string = 30;
  564.      current_buffers_value = 0;
  565.  
  566.       {     current_buffers_value = translate("buffers",
  567.                        "%boot_drive%:\CONFIG.NEW"," =");
  568.      has_buffers_value = TRUE;
  569.      if (current_buffers_value < 16)
  570.       signal('unbound_environment_variable);
  571.       }
  572.     [ 'UNBOUND_ENVIRONMENT_VARIABLE: /* Check for DR-DOS HIBUFFERS */
  573.     {{ if (translate("hibuffers","%boot_drive%:\CONFIG.NEW") < 16)
  574.           { number_of_buffers = 16 - current_buffers_value;
  575.         modify("HIBUFFERS","%number_of_buffers%",
  576.                "%boot_drive%:\CONFIG.NEW"," = ");
  577.         config_needs_change = TRUE;
  578.         change_buffers_value = TRUE; }}
  579.         [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  580.         { modify("BUFFERS","16","%boot_drive%:\CONFIG.NEW"," = ");
  581.           config_needs_change = TRUE;
  582.           change_buffers_value = TRUE; } ]
  583.       continue();
  584.      }
  585.           
  586.       'TYPE_MISMATCH:
  587.           {
  588.           buffer_list = explode(current_buffers_value,",/",TRUE);
  589.           number_of_buffers = first(buffer_list);  
  590.           if (number_of_buffers < 16)
  591.             {
  592.                buffer_list = rest(buffer_list);
  593.                number_of_buffers = 16;
  594.                buffer_list = cons(number_of_buffers,buffer_list);
  595.                buf_string = implode(buffer_list);
  596.                modify("BUFFERS",buf_string,"%boot_drive%:\CONFIG.NEW"," =");
  597.                config_needs_change = TRUE;
  598.                change_buffers_value = TRUE;
  599.             }
  600.           else
  601.              buf_string = current_buffers_value;
  602.             
  603.           }
  604.                     
  605.      ]
  606.  
  607.  
  608.           {
  609.         path = translate("PATH");
  610.  
  611.         if (not(contains(path,"%oracle_home%\XBIN")))
  612.           signal('UNBOUND_ENVIRONMENT_VARIABLE);
  613.  
  614.         if (contains(path,"%oracle_home%\BIN"))
  615.           signal('UNBOUND_ENVIRONMENT_VARIABLE);
  616.  
  617.         if (contains(path,"%oracle_home%\PBIN"))
  618.           signal('UNBOUND_ENVIRONMENT_VARIABLE);
  619.  
  620.         exploded_path = explode(path,";");
  621.           }
  622.         [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  623.           {
  624.             variable = "SET PATH";
  625.             separator = " = ";
  626.  
  627.             { { path = translate(variable,
  628.                      "%boot_drive%:\AUTOEXEC.NEW",
  629.                      separator); }
  630.             [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  631.               { variable = "PATH";
  632.                 { path = translate(variable,
  633.                            "%boot_drive%:\AUTOEXEC.NEW",
  634.                            separator); }
  635.                   [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  636.                 { separator = " ";           
  637.                   { path = translate(variable,
  638.                              "%boot_drive%:\AUTOEXEC.NEW",
  639.                              separator); }
  640.                     [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  641.                     { path = ""; continue(); } ] 
  642.                    } ]
  643.               } ]
  644.             }
  645.  
  646.             if (not(contains(path,"%oracle_home%\XBIN")))
  647.               {
  648.             path = "%oracle_home%\XBIN;%path%";
  649.             modify(variable,path,
  650.                    "%boot_drive%:\AUTOEXEC.NEW",separator);
  651.             autoexec_needs_change = TRUE;
  652.             add_xbin_directory = TRUE;
  653.               }
  654.  
  655.             exploded_path = explode(path,";");
  656.             dos_mem_path = exploded_path; 
  657.             {
  658.               while(member(dos_mem_path,"%oracle_home%\bin") || 
  659.                 member(dos_mem_path,"%oracle_home%\pbin")
  660.                )
  661.             { 
  662.               if (first(dos_mem_path) == "%oracle_home%\bin")
  663.                 {
  664.                   order = "REAL,PROT";
  665.                   signal('DOSMEM_SEARCH_OVER);
  666.                 }
  667.               else if(first(dos_mem_path) == "%oracle_home%\pbin")
  668.                 { 
  669.                   order = "PROT,REAL";
  670.                   signal('DOSMEM_SEARCH_OVER);
  671.                 }
  672.               dos_mem_path = rest(dos_mem_path);
  673.             }
  674.             }
  675.               ['DOSMEM_SEARCH_OVER : continue();] 
  676.  
  677.             if (member(exploded_path,"%oracle_home%\BIN"))
  678.               {
  679.  
  680.             extract(exploded_path,"%oracle_home%\BIN");
  681.             path = implode(exploded_path,";");
  682.             modify(variable,path,
  683.                    "%boot_drive%:\AUTOEXEC.NEW",separator);
  684.             autoexec_needs_change = TRUE;
  685.             remove_bin_directory = TRUE;
  686.               }
  687.             exploded_path = explode(path,";");
  688.  
  689.             if (member(exploded_path,"%oracle_home%\PBIN"))
  690.               {
  691.             extract(exploded_path,"%oracle_home%\PBIN");
  692.             path = implode(exploded_path,";");
  693.             modify(variable,path,
  694.                    "%boot_drive%:\AUTOEXEC.NEW",separator);
  695.             autoexec_needs_change = TRUE;
  696.             remove_pbin_directory = TRUE;
  697.               }
  698.  
  699.             if (not(add_xbin_directory) && not(remove_bin_directory)
  700.             && not(remove_pbin_directory))
  701.              { path_needs_change = TRUE;
  702.                path_problem_prompt = nls("path_problem_prompt","The PATH variable is correctly set in your AUTOEXEC.BAT file, but is incorrect in the environment. Oracle products will not function properly until the PATH variable has been corrected.");
  703.                path_problem_content = nls("path_problem_content","PATH Problem");
  704.                path_problem_help = nls("path_problem_help","The PATH variable is correctly set in your AUTOEXEC.BAT file, but is incorrect in the environment. This problem may have arisen from a manual change of the PATH variable, in which case rebooting your computer will resolve the problem. It is also possible that your PATH variable has been changed by some other software you are running or by a DOS batch file you have executed. In that case, it is necessary for you to track the problem manually." );
  705.  
  706.                information_dialog(path_problem_prompt,
  707.                       path_problem_content,
  708.                       path_problem_help);
  709.              }
  710.           }
  711.         ]
  712.  
  713.         if (not(ora_config_is_set))
  714.           {
  715.             if (not(member(exploded_path,directory_name(ora_config))))
  716.           ora_config = "%oracle_home%\XBIN\CONFIG.ORA";
  717.  
  718.         {
  719.           ora_config_value = translate("ORA_CONFIG");
  720.  
  721.           if (ora_config_value != ora_config)
  722.             {
  723.               {
  724.             current_ora_config_value = translate("SET ORA_CONFIG",
  725.                                  "%boot_drive%:\AUTOEXEC.NEW");
  726.             pathify(current_ora_config_value);
  727.  
  728.             if (current_ora_config_value != ora_config)
  729.               {
  730.                 set_ora_config_variable = TRUE;
  731.                 signal('UNBOUND_ENVIRONMENT_VARIABLE);
  732.               }
  733.             oraconfig_is_wrong = TRUE;
  734.             ora_config_problem_prompt = nls("ora_config_problem_prompt","The ORA_CONFIG variable is correctly set in your AUTOEXEC.BAT file, but is incorrect in the environment. Oracle products will not function properly until the ORA_CONFIG variable has been corrected.");
  735.             ora_config_problem_content = nls("ora_config_problem_content","ORA_CONFIG Problem");
  736.             ora_config_problem_help = nls("ora_config_problem_help","The ORA_CONFIG variable is correctly set in your AUTOEXEC.BAT file to '%%current_ora_config_value%%', but is incorrectly set in the environment to '%%ora_config_value%%'. This problem may have arisen from a manual change of the ORA_CONFIG variable, in which case rebooting your computer will resolve the problem. It is also possible that your ORA_CONFIG variable has been changed by some other software you are running or a DOS batch file you have executed. In that case, it is necessary for you to track the problem manually. One possible solution to the ORA_CONFIG problem is to remove it from your AUTOEXEC.BAT file and ensure that your CONFIG.ORA file is on your PATH." );
  737.  
  738.             information_dialog(ora_config_problem_prompt,
  739.                        ora_config_problem_content,
  740.                        instantiate(ora_config_problem_help));
  741.               }
  742.             [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  743.               {
  744.                 modify("SET ORA_CONFIG",ora_config,
  745.                    "%boot_drive%:\CONFIG.NEW");
  746.                 add_ora_config_variable = TRUE;
  747.                 autoexec_needs_change = TRUE;
  748.               }
  749.             ]
  750.             }
  751.         }
  752.           [ 'OS_ERROR: signal('UNBOUND_ENVIRONMENT_VARIABLE); ]
  753.           }
  754.         [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  755.           {
  756.             if (not(empty(exploded_path)))
  757.               {
  758.             ora_config_directory = directory_name(ora_config);
  759.  
  760.             found = FALSE;
  761.  
  762.             while (not(found))
  763.               {
  764.                 path_member = first(exploded_path);
  765.  
  766.                 if ((length(path_member) == 3) &&
  767.                 contains(path_member,":\"))
  768.                   potential_ora_config = "%path_member%CONFIG.ORA";
  769.                 else
  770.                   potential_ora_config = "%path_member%\CONFIG.ORA";
  771.  
  772.                 if (path_member == ora_config_directory)
  773.                   found = TRUE;
  774.                 else if (exists(potential_ora_config))
  775.                   {
  776.                 path_anomaly_prompt = nls("path_anomaly_prompt","There is a CONFIG.ORA file on your PATH which supercedes the CONFIG.ORA file that the installer is attempting to configure. Oracle products will not function properly until this problem has been corrected.");
  777.                 path_anomaly_content = nls("path_anomaly_content","PATH Problem");
  778.                 path_anomaly_help = nls("path_anomaly_help","There is a CONFIG.ORA file in the directory '%%path_member%%' which is superceding the CONFIG.ORA file in the directory '%%ora_config_directory%%'. Oracle products search for the CONFIG.ORA file on the PATH and will find '%%potential_ora_config%%' before they find '%%ora_config_directory%%\CONFIG.ORA', leading to unpredictable results. To correct the problem, either eliminate the '%%potential_ora_config%%' file or rearrange the elements of your path so that '%%ora_config_directory%%' comes before '%%path_member%%'.");
  779.  
  780.                 information_dialog(path_anomaly_prompt,
  781.                            path_anomaly_content,
  782.                            instantiate(path_anomaly_help));
  783.  
  784.                 found = TRUE;
  785.                   }
  786.                 else
  787.                   exploded_path = rest(exploded_path);
  788.  
  789.                 /* This Should Never Happen. */
  790.                 if (empty(exploded_path))
  791.                   found = TRUE;
  792.               }
  793.               }
  794.           }
  795.         ]
  796.  
  797.  
  798.           {
  799.         {
  800.           if (v6_translate("%%CONFIG%%") != ora_config)
  801.             signal('UNBOUND_ENVIRONMENT_VARIABLE);
  802.         }
  803.          [ 'OS_ERROR: signal('UNBOUND_ENVIRONMENT_VARIABLE); ]
  804.           }
  805.         [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  806.           {
  807.             current_config_value = translate("SET CONFIG",
  808.                              "%boot_drive%:\AUTOEXEC.NEW");
  809.             pathify(current_config_value);
  810.  
  811.             if (current_config_value != ora_config)
  812.               { 
  813.             set_config_variable = TRUE;
  814.             signal('UNBOUND_ENVIRONMENT_VARIABLE);
  815.               }
  816.             else
  817.               {     
  818.             { wrong_config_value = translate("CONFIG");}
  819.               [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  820.                 wrong_config_value = "";]
  821.             config_is_wrong = TRUE;
  822.             autoexec_problem_prompt = nls("autoexec_problem_prompt","The CONFIG variable is correctly set in your AUTOEXEC.BAT file, but is incorrect in the environment. Oracle products will not function properly until the CONFIG variable has been corrected.");
  823.             autoexec_problem_content = nls("autoexec_problem_content","CONFIG Problem");
  824.             autoexec_problem_help = nls("autoexec_problem_help","The CONFIG variable is correctly set in your AUTOEXEC.BAT file to '%current_config_value%', but is incorrectly set in the environment to '%wrong_config_value%'. This problem may have arisen from a manual change of the CONFIG variable, in which case rebooting your computer will resolve the problem. It is also possible that your CONFIG variable has been changed by some other software you are running or by a DOS batch file you have executed. In that case, it is necessary for you to track the problem manually." );
  825.  
  826.             information_dialog(autoexec_problem_prompt,
  827.                        autoexec_problem_content,
  828.                        autoexec_problem_help);
  829.               }
  830.           }
  831.             [ 'UNBOUND_ENVIRONMENT_VARIABLE:
  832.               {
  833.             modify("SET CONFIG",ora_config,
  834.                    "%boot_drive%:\AUTOEXEC.NEW");
  835.             autoexec_needs_change = TRUE;
  836.             add_config_variable = TRUE;
  837.               } ]
  838.         ]
  839.  
  840.           if (config_needs_change)
  841.            {
  842.          config_changes_needed_prompt = instantiate(nls("config_changes_needed_prompt","Changes to the file %%boot_drive%%:\CONFIG.SYS file are needed. Would you like the changes to be made automatically?"));
  843.  
  844.          config_changes_needed_content = nls("config_changes_needed_content","Configuration");
  845.          config_changes_needed_help = instantiate(nls("config_changes_needed_help","The needed changes to your %%boot_drive%%:\CONFIG.SYS file are as follows:"));
  846.  
  847.  
  848.          if (change_buffers_value)
  849.            {
  850.              if (has_buffers_value)
  851.                additional_changes_help = instantiate(nls("has_buffers_value","
  852.  
  853. The BUFFERS variable is currently set to '%%current_buffers_value%%'. It needs to be set to a value of at least '%%buf_string%%'."));
  854.              else
  855.                additional_changes_help = nls("has_no_buffers_value","
  856.  
  857. The BUFFERS variable is currently unset. It needs to be set to a value of at least '30'.");
  858.  
  859.              config_changes_needed_help = "%config_changes_needed_help% %additional_changes_help%";
  860.            }
  861.               
  862.          if (change_files_value)
  863.            {
  864.              if (has_files_value)
  865.                additional_changes_help = instantiate(nls("has_files_value","
  866.  
  867. The FILES variable is currently set to '%%current_files_value%%'. It needs to be set to a value of at least '40'."));
  868.              else
  869.                additional_changes_help = nls("has_no_files_value","
  870.  
  871. The FILES variable is currently unset. It needs to be set to a value of at least '40'.");
  872.  
  873.              config_changes_needed_help = "%config_changes_needed_help% %additional_changes_help%";
  874.            }
  875.          if (change_break_value)
  876.            {
  877.              if (has_break_value)
  878.                additional_changes_help = instantiate(nls("has_break_value","
  879.  
  880. The BREAK variable is currently set to '%%current_break_value%%'. It needs to be set to ON."));
  881.              else
  882.                additional_changes_help = nls("has_no_break_value","
  883.  
  884. The BREAK variable is currently unset. It needs to be set to ON.");
  885.  
  886.              config_changes_needed_help = "%config_changes_needed_help% %additional_changes_help%";
  887.            }
  888.               
  889.          mark
  890.            config_has_been_changed = yesno_dialog(config_changes_needed_prompt,TRUE,config_changes_needed_content,config_changes_needed_help);
  891.  
  892.          if (config_has_been_changed)
  893.            {
  894.              copy_file("%boot_drive%:\CONFIG.SYS",
  895.                    "%boot_drive%:\CONFIG.BAK");
  896.              copy_file("%boot_drive%:\CONFIG.NEW",
  897.                    "%boot_drive%:\CONFIG.SYS");
  898.              remove_file("%boot_drive%:\CONFIG.NEW");
  899.            }
  900.           }
  901.           else
  902.            /* No Changes Were Necessary. */
  903.            remove_file("%boot_drive%:\CONFIG.NEW");
  904.  
  905.  
  906.           if (autoexec_needs_change)
  907.            {
  908.          autoexec_changes_needed_prompt = instantiate(nls("autoexec_changes_needed_prompt","Changes to the file %%boot_drive%%:\AUTOEXEC.BAT file are needed. Would you like the changes to be made automatically?"));
  909.  
  910.  
  911.          autoexec_changes_needed_content = nls("autoexec_changes_needed_content","Configuration");
  912.          autoexec_changes_needed_help = instantiate(nls("autoexec_changes_needed_help","The needed changes to you %%boot_drive%%:\AUTOEXEC.BAT file are as follows:"));
  913.  
  914.          if (remove_bin_directory ||
  915.              remove_pbin_directory || add_xbin_directory)
  916.            autoexec_changes_needed_help = "%autoexec_changes_needed_help%
  917.  
  918. ";
  919.          if (remove_bin_directory)
  920.            if (remove_pbin_directory)
  921.              {
  922.                additional_changes_help = instantiate(nls("remove_bin_pbin_directory","The PATH variable currently includes the outdated '%%oracle_home%%\BIN' and '%%oracle_home%%\PBIN' directories."));
  923.  
  924.                autoexec_changes_needed_help = "%autoexec_changes_needed_help%%additional_changes_help%";
  925.              }
  926.            else
  927.              {
  928.                additional_changes_help = instantiate(nls("remove_bin_directory","The PATH variable currently includes the outdated '%%oracle_home%%\BIN' directory."));
  929.  
  930.                autoexec_changes_needed_help = "%autoexec_changes_needed_help%%additional_changes_help%";
  931.              }
  932.          else if (remove_pbin_directory)
  933.            {
  934.              additional_changes_help = instantiate(nls("remove_pbin_directory","The PATH variable currently includes the outdated '%%oracle_home%%\PBIN' directory."));
  935.  
  936.              autoexec_changes_needed_help = "%autoexec_changes_needed_help%%additional_changes_help%";
  937.            }
  938.  
  939.          if (add_xbin_directory)
  940.            if (remove_bin_directory || remove_pbin_directory)
  941.              {
  942.                additional_changes_help = instantiate(nls("add_xbin_remove_a_directory","The PATH variable needs to include the '%%oracle_home%%\XBIN' directory instead."));
  943.  
  944.                autoexec_changes_needed_help = "%autoexec_changes_needed_help% %additional_changes_help%";
  945.              }
  946.            else
  947.              {         
  948.                additional_changes_help = instantiate(nls("add_xbin_directory","The PATH variable needs to include the '%%oracle_home%%\XBIN' directory."));
  949.  
  950.                autoexec_changes_needed_help = "%autoexec_changes_needed_help%%additional_changes_help%";
  951.              }
  952.  
  953.          if (remove_bin_directory ||
  954.              remove_pbin_directory || add_xbin_directory)
  955.            {
  956.              len = length(path);
  957.              if (len > 127)
  958.                {
  959.              additional_changes_help = instantiate(nls("greater_path_length","
  960.  
  961. These changes will result in a search path length of %len%, exceeding the DOS limit of 127. You will have to correct this manually. One solution may be shorter directory names."));
  962.  
  963.              autoexec_changes_needed_help = "%autoexec_changes_needed_help% %additional_changes_help%";
  964.                }
  965.            }
  966.          
  967.          if (set_ora_config_variable)
  968.            {
  969.              additional_changes_help = instantiate(nls("set_ora_config_variable","
  970.  
  971. The ORA_CONFIG variable is currently set to '%%current_ora_config_value%%'. It needs to be set to '%%ora_config%%'."));
  972.  
  973.              autoexec_changes_needed_help = "%autoexec_changes_needed_help% %additional_changes_help%";
  974.            }
  975.          else if (add_ora_config_variable)
  976.            {
  977.              additional_changes_help = instantiate(nls("add_ora_config_variable","
  978.  
  979. The ORA_CONFIG variable is currently unset. It needs to be set to '%%ora_config%%'."));
  980.  
  981.            }
  982.          if (set_config_variable)
  983.            {
  984.              additional_changes_help = instantiate(nls("set_config_variable","
  985.  
  986. The CONFIG variable is currently set to '%%current_config_value%%'. It needs to be set to '%%ora_config%%'."));
  987.  
  988.              autoexec_changes_needed_help = "%autoexec_changes_needed_help% %additional_changes_help%";
  989.            }         
  990.          else if (add_config_variable)
  991.            {
  992.              additional_changes_help = instantiate(nls("add_config_variable","
  993.  
  994. The CONFIG variable is currently unset. It needs to be set to '%%ora_config%%'."));
  995.  
  996.              autoexec_changes_needed_help = "%autoexec_changes_needed_help% %additional_changes_help%";
  997.            }
  998.  
  999.          mark
  1000.            autoexec_has_been_changed = yesno_dialog(autoexec_changes_needed_prompt,TRUE,autoexec_changes_needed_content,autoexec_changes_needed_help);
  1001.  
  1002.          if (autoexec_has_been_changed)
  1003.            {
  1004.              copy_file("%boot_drive%:\AUTOEXEC.BAT",
  1005.                    "%boot_drive%:\AUTOEXEC.BAK");
  1006.              copy_file("%boot_drive%:\AUTOEXEC.NEW",
  1007.                    "%boot_drive%:\AUTOEXEC.BAT");
  1008.              remove_file("%boot_drive%:\AUTOEXEC.NEW");
  1009.            }
  1010.         }
  1011.           else
  1012.            /* No Changes Were Necessary. */
  1013.            remove_file("%boot_drive%:\AUTOEXEC.NEW");
  1014.  
  1015.           ui_action(nls("installing_stubs","Installing Multiple Version Oracle Home Stubs..."));
  1016.  
  1017.           copy_file("ORAXRUN.EXE","%oracle_home%\XBIN\");
  1018.           copy_file("ORASTUB.COM","%oracle_home%\XBIN\");
  1019.           copy_file("MAKESTUB.EXE","%oracle_home%\XBIN\");
  1020.           copy_file("PLOADR.COM","%oracle_home%\XBIN\");
  1021.  
  1022.           ui_action(nls("installing_compatibility","Installing Backward Compatibility..."));
  1023.  
  1024.           copy_file("V2BACK.MAP","%oracle_home%\ORAINST\");
  1025.           copy_file("V2BACK.VRF","%oracle_home%\ORAINST\");
  1026.           copy_file("V2BACK.INS","%oracle_home%\ORAINST\");
  1027.           copy_file("V2BACK.DEI","%oracle_home%\ORAINST\");
  1028.           copy_file("V2BACK.US","%oracle_home%\ORAINST\");
  1029.  
  1030.           mark
  1031.         if (migrate_oracle_home)
  1032.           {
  1033.             ui_action(nls("removing_outdated_installer","Removing Outdated Oracle Installer..."));
  1034.             remove_file("%oracle_home%\BIN\SQLPME.EXE");
  1035.             remove_file("%oracle_home%\BIN\MACHTYPE.EXE");
  1036.             remove_file("%oracle_home%\BIN\REMPME.EXE");
  1037.             remove_file("%oracle_home%\BIN\REMORA.EXE");
  1038.  
  1039.             remove_file("%oracle_home%\PBIN\PLOADR.COM");
  1040.  
  1041.             remove_file("%oracle_home%\DBS\SQLPME.MSG");
  1042.             remove_file("%oracle_home%\DBS\REMPUS.MSB");
  1043.             remove_file("%oracle_home%\DBS\RMRAUS.MSB");
  1044.  
  1045.             remove_file("%oracle_home%\BIN\ORAINST.EXE");
  1046.             remove_file("%oracle_home%\BIN\OCOPY.EXE");
  1047.             remove_file("%oracle_home%\BIN\OLANGABB.EXE");
  1048.             remove_file("%oracle_home%\BIN\CHKALL.EXE");
  1049.             remove_file("%oracle_home%\BIN\INSTLOAD.EXE");
  1050.             remove_file("%oracle_home%\BIN\ORAINST1.EXE");
  1051.             remove_file("%oracle_home%\BIN\ODECOMPR.EXE");
  1052.             remove_file("%oracle_home%\DBS\SYSINIT.ORI");
  1053.         
  1054.             /* Migrate Existing REGISTER.ORA and FILELIST.ORA */
  1055.  
  1056.             if (not(exists("%oracle_home%\ORAINST\DOS.RGS")))
  1057.               {
  1058.             if (exists("%oracle_home%\DBS\REGISTER.ORA") &&
  1059.                 exists("%oracle_home%\DBS\FILELIST.ORA"))
  1060.               {
  1061.                 /* Must do this before calling stubify */
  1062.                 dos_stub_name = "%oracle_home%\XBIN\ORASTUB.COM";
  1063.                 {dos_stub_size = size(dos_stub_name);}
  1064.                  [ 'OS_ERROR:dos_stub_size = 0;
  1065.                    'FILE_NOT_FOUND:dos_stub_size = 0;
  1066.                    'INVALID_FILE_NAME:dos_stub_size = 0;
  1067.                    'PERMISSION_DENIED:dos_stub_size = 0;
  1068.                  ]
  1069.                 the_registry_list = list();
  1070.  
  1071.                 v2_number = 1;
  1072.  
  1073.                 migrating_product_number = nls("migrating_product_number","Migrating Product Number %%v2_number%%...");
  1074.                 migrating_product_with_name = nls("migrating_product_with_name","Migrating Product Number %%v2_number%%: %%v2_name%%...");
  1075.                 while (v2_number < 82)
  1076.                   {
  1077.                 ui_action(instantiate(migrating_product_number));
  1078.                 { v2_registration = translate("%v2_number%",
  1079.                                   "%oracle_home%\DBS\REGISTER.ORA"," ");}
  1080.  
  1081.                   ['UNBOUND_ENVIRONMENT_VARIABLE: v2_registration = ""; ]
  1082.                 if (length(v2_registration) > 0)
  1083.                   {
  1084.                     v2_registration_list = explode(v2_registration," ");
  1085.                     v2_version = first(v2_registration_list);
  1086.                     v2_registration = implode(rest(v2_registration_list)," ");
  1087.                     v2_filename = "v2back%v2_number%";
  1088.  
  1089.                     v2_comment = "";
  1090.  
  1091.                     copy_file("V2BACK.DEI",
  1092.                           "%oracle_home%\ORAINST\%v2_filename%.DEI");
  1093.  
  1094.                     deinstl = make_group("deinstl");
  1095.                     add_component(deinstl,"",
  1096.                           "%v2_filename%.DEI",
  1097.                           "%%installer_home%%\",
  1098.                           size("%oracle_home%\ORAINST\%v2_filename%.DEI"));
  1099.                     add_component(deinstl,"",
  1100.                           "%v2_filename%.MAP",
  1101.                           "%%installer_home%%\",0);
  1102.  
  1103.  
  1104.                     if (contains(v2_registration,"!"))
  1105.                       v2_name = implode(explode(first(explode(v2_registration,"!")))," ");
  1106.                     else
  1107.                       v2_name = v2_registration;
  1108.  
  1109.                     exploded_v2_name = explode(v2_name);
  1110.  
  1111.                     name_entry = exploded_v2_name;
  1112.                     while (not(empty(name_entry)))
  1113.                       if (first(name_entry) == "Rev")
  1114.                     {
  1115.                       v2_comment = implode(name_entry," ");
  1116.  
  1117.                       while (not(empty(name_entry)))
  1118.                         extract(name_entry,
  1119.                             first(name_entry));
  1120.                     }
  1121.                       else if (first(name_entry) == "Support")
  1122.                     {
  1123.                       name_entry = rest(name_entry);
  1124.  
  1125.                       if (first(name_entry) == "Patch")
  1126.                         {
  1127.                           v2_comment = "Support Patch";
  1128.                           while (not(empty(name_entry)))
  1129.                         extract(name_entry,
  1130.                             first(name_entry));
  1131.                           extract(exploded_v2_name,"Support");
  1132.                         }
  1133.                     }
  1134.                       else if (first(name_entry) == "without")
  1135.                     {
  1136.                       name_entry = rest(name_entry);
  1137.                       if (first(name_entry) == "help")
  1138.                         { 
  1139.                           v2_comment = "without help";
  1140.                           while (not(empty(name_entry)))
  1141.                         extract(name_entry,
  1142.                             first(name_entry));
  1143.                           extract(exploded_v2_name,"without");
  1144.                         }
  1145.  
  1146.                     }
  1147.  
  1148.                       else if (first(name_entry) == "with")
  1149.                     {
  1150.                       name_entry = rest(name_entry);
  1151.  
  1152.                       if (first(name_entry) == "help")
  1153.                         {
  1154.                           v2_comment = "with help";
  1155.                           while (not(empty(name_entry)))
  1156.                         extract(name_entry,
  1157.                             first(name_entry));
  1158.                           extract(exploded_v2_name,"with");
  1159.                         }
  1160.                     }
  1161.  
  1162.                       else
  1163.                     name_entry = rest(name_entry);
  1164.                   
  1165.                     v2_name = implode(exploded_v2_name," ");
  1166.  
  1167.                     ui_action(instantiate(migrating_product_with_name));
  1168.                   
  1169.                     if (contains(v2_registration,"!"))
  1170.                       {
  1171.                     files = translate("%v2_number%",
  1172.                               "%oracle_home%\DBS\FILELIST.ORA",
  1173.                               " ",TRUE);
  1174.  
  1175.                     pre_file_list = explode(files," ");
  1176.                     file_list = list();
  1177.                     while(not(empty(pre_file_list)))
  1178.                       {
  1179.                         the_file = first(pre_file_list);
  1180.                         if(exists(the_file))
  1181.                           add(file_list,the_file);
  1182.                         pre_file_list = rest(pre_file_list);
  1183.                       }
  1184. #ifdef DOS
  1185.                     if (v2_number == 1)
  1186.                       {
  1187.                         s_product = "%ORACLE_HOME%\BIN\ORACLE6.EXE";
  1188.                         d_product = "%ORACLE_HOME%\XBIN\ORACLE6.EXE";
  1189.                         if(exists(s_product))
  1190.                           {
  1191.                         copy_file(s_product,d_product);
  1192.                         extract(file_list,s_product);
  1193.                         add(file_list,d_product);
  1194.                           }
  1195.                       }
  1196.                     else if(v2_number == 10)
  1197.                       { 
  1198.                         s_product = "%ORACLE_HOME%\BIN\SQLDNT.EXE";
  1199.                         d_product = "%ORACLE_HOME%\XBIN\SQLDNT.EXE";
  1200.                         if(exists(s_product))
  1201.                           {
  1202.                         copy_file(s_product,d_product);
  1203.                         extract(file_list,s_product);
  1204.                         add(file_list,d_product);
  1205.                           }
  1206.                       }
  1207.                     else if(v2_number == 15)
  1208.                       { 
  1209.                         s_product = "%ORACLE_HOME%\BIN\SQLASYNC.EXE";
  1210.                         d_product = "%ORACLE_HOME%\XBIN\SQLASYNC.EXE";
  1211.                         if(exists(s_product))
  1212.                           {
  1213.                         copy_file(s_product,d_product);
  1214.                         extract(file_list,s_product);
  1215.                         add(file_list,d_product);
  1216.                           }
  1217.                       }
  1218.                     else if(v2_number == 16)
  1219.                       { 
  1220.                         s_product = "%ORACLE_HOME%\BIN\SQLAPPC.EXE";
  1221.                         d_product = "%ORACLE_HOME%\XBIN\SQLAPPC.EXE";
  1222.                         if(exists(s_product))
  1223.                           {
  1224.                         copy_file(s_product,d_product);
  1225.                         extract(file_list,s_product);
  1226.                         add(file_list,d_product);
  1227.                           }
  1228.                       }
  1229.                     else if(v2_number == 19)
  1230.                       { 
  1231.                         s_product = "%ORACLE_HOME%\BIN\SQL3270.EXE";
  1232.                         d_product = "%ORACLE_HOME%\XBIN\SQL3270.EXE";
  1233.                         if(exists(s_product))
  1234.                           {
  1235.                         copy_file(s_product,d_product);
  1236.                         extract(file_list,s_product);
  1237.                         add(file_list,d_product);
  1238.                           }
  1239.                       }
  1240.                     else if(v2_number == 20)
  1241.                       { 
  1242.                         s_product = "%ORACLE_HOME%\BIN\SQLTCP.EXE";
  1243.                         d_product = "%ORACLE_HOME%\XBIN\SQLTCP.EXE";
  1244.                         if(exists(s_product))
  1245.                           {
  1246.                         copy_file(s_product,d_product);
  1247.                         extract(file_list,s_product);
  1248.                         add(file_list,d_product);
  1249.                           }
  1250.                       }
  1251.                     else if(v2_number == 21)
  1252.                       { 
  1253.                         s_product = "%ORACLE_HOME%\BIN\SQLSPX.EXE";
  1254.                         d_product = "%ORACLE_HOME%\XBIN\SQLSPX.EXE";
  1255.                         if(exists(s_product))
  1256.                           {
  1257.                         copy_file(s_product,d_product);
  1258.                         extract(file_list,s_product);
  1259.                         add(file_list,d_product);
  1260.                           }
  1261.                       }
  1262.                     else if(v2_number == 22)
  1263.                       { 
  1264.                         s_product = "%ORACLE_HOME%\BIN\SQLNMP.EXE";
  1265.                         d_product = "%ORACLE_HOME%\XBIN\SQLNMP.EXE";
  1266.                         if(exists(s_product))
  1267.                           {
  1268.                         copy_file(s_product,d_product);
  1269.                         extract(file_list,s_product);
  1270.                         add(file_list,d_product);
  1271.                           }
  1272.                       }
  1273.                     else if(v2_number == 24)
  1274.                       { 
  1275.                         s_product = "%ORACLE_HOME%\BIN\SQLVIN.EXE";
  1276.                         d_product = "%ORACLE_HOME%\XBIN\SQLVIN.EXE";
  1277.                         if(exists(s_product))
  1278.                           {
  1279.                         copy_file(s_product,d_product);
  1280.                         extract(file_list,s_product);
  1281.                         add(file_list,d_product);
  1282.                           }
  1283.                       }
  1284.                     else if(v2_number == 31)
  1285.                       { 
  1286.                         s_product = "%ORACLE_HOME%\BIN\SQLNTB.EXE";
  1287.                         d_product = "%ORACLE_HOME%\XBIN\SQLNTB.EXE";
  1288.                         if(exists(s_product))
  1289.                           {
  1290.                         copy_file(s_product,d_product);
  1291.                         extract(file_list,s_product);
  1292.                         add(file_list,d_product);
  1293.                           }
  1294.  
  1295.                       }
  1296.                 
  1297. #endif DOS
  1298.                     /* Extract the SQLPME and its related files. */
  1299. #ifdef DOS                    
  1300.                     extract(file_list,"%oracle_home%\BIN\SQLPME.EXE");
  1301.                     extract(file_list,"%oracle_home%\BIN\REMPME.EXE");
  1302.                     extract(file_list,"%oracle_home%\BIN\REMORA.EXE");
  1303.                     extract(file_list,"%oracle_home%\BIN\MACHTYPE.EXE");
  1304.                     extract(file_list,"%oracle_home%\DBS\SQLPME.MSG");
  1305.                     extract(file_list,"%oracle_home%\DBS\REMPUS.MSB");
  1306.                     extract(file_list,"%oracle_home%\DBS\RMRAUS.MSB");
  1307.                     extract(file_list,"%oracle_home%\PBIN\PLOADR.COM");
  1308.  
  1309. #endif DOS
  1310.         
  1311.                     created_directories = list("%oracle_home%","%oracle_home%\XBIN","%oracle_home%\DBS","%oracle_home%\BIN","%oracle_home%\PBIN","%oracle_home%\ORAINST");
  1312.                     exe = make_group("exe"); 
  1313.                     while (not(empty(file_list)))
  1314.                       {
  1315.                         file = first(file_list);
  1316.  
  1317.                         { file_size = size(file); }
  1318.                           [ 'FILE_NOT_FOUND: file_size = 0; ]
  1319.  
  1320.                         the_file_name = file_name(file);
  1321.  
  1322.                         the_directory_name = directory_name(file);
  1323.  
  1324.                         new_directories = list();
  1325.  
  1326.                         {
  1327.                           while (contains(the_directory_name,
  1328.                                   oracle_home))
  1329.                         {
  1330.                           if (member(created_directories,
  1331.                                  the_directory_name))
  1332.                             signal('ENOUGH_ALREADY);
  1333.  
  1334.                           new_directories = cons(the_directory_name,new_directories);
  1335.  
  1336.                           the_directory_name = directory_name(the_directory_name);
  1337.                         }
  1338.                         }
  1339.                           [ 'ENOUGH_ALREADY: continue(); ]
  1340.  
  1341.                         union(created_directories,new_directories);
  1342.  
  1343.                         while (not(empty(new_directories)))
  1344.                           {
  1345.                         add_component(exe,"DIRECTORY",
  1346.                                   "",first(new_directories),0);
  1347.  
  1348.                         new_directories = rest(new_directories);
  1349.                           }
  1350.  
  1351.                         the_directory_name = directory_name(file);
  1352.                         if(( the_directory_name == "%ORACLE_HOME%\XBIN") || ( not ((contains(the_directory_name,"%ORACLE_HOME%\BIN")) || ( contains(the_directory_name,"%ORACLE_HOME%\PBIN")) ) ))
  1353.                           subgroup = "OTHER";
  1354.                         else if (contains(the_file_name,
  1355.                              ".EXE"))
  1356.                           {
  1357.                         subgroup = "EXE";
  1358.                         name_of_file = first(explode(the_file_name,"."));
  1359.                         if(the_directory_name == "%oracle_home%\BIN")  
  1360.                           if((contains(files,"%oracle_home%\PBIN\%name_of_file%.PXE")))
  1361.                             subgroup = "NOSTUB";
  1362.                           else
  1363.                             add_component(exe,"STUB","%name_of_file%.COM","%oracle_home%\XBIN\",dos_stub_size);
  1364.  
  1365.                            else
  1366.                          add_component(exe,"STUB","%name_of_file%.COM","%oracle_home%\XBIN\",dos_stub_size);
  1367.                           }
  1368.  
  1369.                         else if (contains(the_file_name,
  1370.                              ".COM"))
  1371.                             {
  1372.                               subgroup = "EXE";
  1373.                               name_of_file = first(explode(the_file_name,"."));
  1374.                               if(the_directory_name == "%oracle_home%\BIN")
  1375.                              add_component(exe,"STUB","%name_of_file%.COM","%oracle_home%\XBIN\", dos_stub_size);
  1376.                               else if ( not ( contains(files,"%oracle_home%\PBIN\%name_of_file%.PXE")))
  1377.                                  add_component(exe,"STUB","%name_of_file%.COM","%oracle_home%\XBIN\",dos_stub_size);
  1378.                                else
  1379.                                  subgroup = "NOSTUB";
  1380.                                   
  1381.                             } 
  1382.                         else if (contains(the_file_name,
  1383.                              ".BAT"))
  1384.                             {
  1385.                               subgroup = "EXE";
  1386.                               name_of_file = first(explode(the_file_name,"."));    
  1387.                               add_component(exe,"STUB",
  1388.                                     "%name_of_file%.COM",
  1389.                                     "%oracle_home%\XBIN\",
  1390.                                     dos_stub_size);
  1391.                                 
  1392.                             }
  1393.                          else if (contains(the_file_name,".PXE"))
  1394.                             {
  1395.                               subgroup = "EXE";
  1396.                               name_of_file = first(explode(the_file_name,"."));                              
  1397.                               if( not ( contains(files,"%oracle_home%\PBIN\%name_of_file%.EXE")) && (the_directory_name != "%oracle_home%\BIN"))
  1398.                               add_component(exe,"STUB",
  1399.                                     "%name_of_file%.COM",
  1400.                                     "%oracle_home%\XBIN\",
  1401.                                     dos_stub_size);
  1402.                              else
  1403.                                subgroup = "NOSTUB";
  1404.                             }                        
  1405.                               else
  1406.                             subgroup = "OTHER";
  1407.  
  1408.                         add_component(exe,subgroup,the_file_name,"%the_directory_name%\",file_size);
  1409.  
  1410.                         file_list = rest(file_list);
  1411.                       }
  1412.                       }
  1413.                     else
  1414.                       {
  1415.                          exe = make_group("exe");
  1416.                      add_component(exe,"V1","","",0);
  1417.                       }
  1418.  
  1419.  
  1420.                     /* Create the stubs */
  1421.                     dos_stubify("",exe,"EXE"); 
  1422.  
  1423.                     /* Write .map file */
  1424.                     write_map(list(deinstl,exe),
  1425.                           "%oracle_home%\ORAINST\%v2_filename%.MAP");
  1426.  
  1427.                     the_registry = make_registry("v2product%v2_number%",
  1428.                                  v2_number,
  1429.                                  v2_filename,
  1430.                                  v2_version,
  1431.                                  v2_name,
  1432.                                  sum(deinstl,
  1433.                                      exe),
  1434.                                  v2_comment);
  1435.                     add(the_registry_list,the_registry);
  1436.                   }
  1437.  
  1438.                 v2_number = v2_number + 1;
  1439.                   }
  1440.  
  1441.                 if (not(empty(the_registry_list)))
  1442.                   write_registry(the_registry_list,"%oracle_home%\ORAINST\DOS.RGS");
  1443.  
  1444.                 remove_file("%oracle_home%\DBS\REGISTER.ORA");
  1445.                 remove_file("%oracle_home%\DBS\FILELIST.ORA");
  1446.               }
  1447.             else
  1448.               {
  1449.                 bad_v2_registry_prompt = instantiate(nls("bad_v2_registry_prompt","It is not possible to correctly migrate your Oracle Home because an a Version 2 Oracle Installer product registration file is missing from '%%oracle_home%%\DBS'. It will be necessary for you to migrate your Oracle Home manually. Choose the Backup button to select a different Oracle Home."));
  1450.                 bad_v2_registry_content = nls("bad_v2_registry_content","No Migration");
  1451.                 bad_v2_registry_help = instantiate(nls("bad_v2_registry_help","It is not possible to correctly migrate your Oracle Home because an a Version 2 Oracle Installer product registration file is missing from '%%oracle_home%%\DBS'. The files that comprise the Version 2 Oracle Installer product registration are '%%oracle_home%%\DBS\REGISTER.ORA' and '%%oracle_home%%\DBS\FILELIST.ORA'. It will be necessary for you to migrate your Oracle Home manually."));
  1452.  
  1453.                 information_dialog(bad_v2_registry_prompt,
  1454.                            bad_v2_registry_content,
  1455.                            bad_v2_registry_help);
  1456.               }
  1457.               }
  1458.             else
  1459.               {
  1460.             current_v3_registry_prompt = instantiate(nls("current_v3_registry_prompt","It is not possible to correctly migrate your Oracle Home because an Oracle Installer product registration file was already found at '%%oracle_home%%\ORAINST\DOS.RGS'. It will be necessary for you to migrate your Oracle Home manually. Choose the Backup button to select a different Oracle Home."));
  1461.             current_v3_registry_content = nls("current_v3_registry_content","No Migration");
  1462.             current_v3_registry_help = instantiate(nls("current_v3_registry_help","It is not possible to correctly migrate your Oracle Home because an Oracle Installer product registration file was already found at '%%oracle_home%%\ORAINST\DOS.RGS'. The Oracle Home product registration file is used to track what Oracle products you have installed on your computer. You have apparently installed Oracle products before with the new Oracle Installer, making it impossible to correctly migrate your Oracle Home. It will be necessary for you to migrate your Oracle Home manually."));
  1463.  
  1464.             information_dialog(current_v3_registry_prompt,
  1465.                        current_v3_registry_content,
  1466.                        current_v3_registry_help);
  1467.               }
  1468.           }
  1469.  
  1470. #ifdef DOS
  1471.  
  1472.         copy_file("SQLPME.EXE","%oracle_home%\XBIN\SQLPME.EXE");
  1473.         copy_file("MACHTYPE.EXE","%oracle_home%\XBIN\MACHTYPE.EXE");
  1474.         copy_file("REMPME.EXE","%oracle_home%\XBIN\REMPME.EXE");
  1475.         copy_file("REMORA.EXE","%oracle_home%\XBIN\REMORA.EXE");
  1476.         copy_file("SQLPME.MSG","%oracle_home%\DBS\SQLPME.MSG");
  1477.         copy_file("REMPUS.MSB","%oracle_home%\DBS\REMPUS.MSB");
  1478.         copy_file("RMRAUS.MSB","%oracle_home%\DBS\RMRAUS.MSB");
  1479. #endif DOS
  1480.  
  1481.           {
  1482.         if (has_v7_oracle_home)
  1483.           {
  1484.             if (original_ora_config != ora_config)
  1485.               if (exists(original_ora_config))
  1486.             move_file(original_ora_config,ora_config);
  1487.           }
  1488.         else if (has_v6_oracle_home)
  1489.           {
  1490.             current_ora_config = v6_translate("%%CONFIG%%");
  1491.  
  1492.             if (current_ora_config != ora_config)
  1493.               if (exists(current_ora_config))
  1494.             move_file(current_ora_config,ora_config);
  1495.           }
  1496.           }
  1497.         [ 'OS_ERROR: continue();
  1498.           'FILE_NOT_FOUND: continue();
  1499.           'UNBOUND_VARIABLE: continue();
  1500.           'UNBOUND_ENVIRONMENT_VARIABLE: continue(); ]
  1501.  
  1502.           /* Make sure all critical variables are correctly bound. */
  1503.           modify("ORACLE_HOME",oracle_home,ora_config);
  1504.           modify("NLS_LANG",nls_language,ora_config);
  1505.           modify("API","%oracle_home%\DBS",ora_config);
  1506.           modify("MULTIVERSION_ORACLE_HOME","TRUE",ora_config);
  1507.  
  1508.           { modify("DOSMEM_SEARCH",order,ora_config); }
  1509.         [ 'UNBOUND_VARIABLE:
  1510.             modify("DOSMEM_SEARCH","PROT,REAL",ora_config);
  1511.         ]
  1512.  
  1513.           /* For Bootstrapping sequence MACHINE_TYPE is in namespace */
  1514.           {
  1515.         machine_type = machine_type;
  1516.         machine_type = "%machine_type%";
  1517.  
  1518.         modify("MACHINE_TYPE",machine_type,ora_config);
  1519.           }
  1520.         [ 'UNBOUND_VARIABLE: 
  1521.           { { machine_type = v6_translate("%%MACHINE_TYPE%%"); }
  1522.             [ 'UNBOUND_VARIABLE: continue();
  1523.               'UNBOUND_ENVIRONMENT_VARIABLE: continue();
  1524.               'OS_ERROR: continue(); ]
  1525.           }
  1526.         ]
  1527.           
  1528.           /* Make sure that the registration exists. */
  1529.           if (not(exists("%oracle_home%\ORAINST\DOS.RGS")))
  1530.         create_file("%oracle_home%\ORAINST\DOS.RGS");
  1531.         }
  1532.  
  1533.       if (not(bootstrap))
  1534.         if (autoexec_needs_change)
  1535.           if (config_needs_change)
  1536.         if (autoexec_has_been_changed)
  1537.           if (config_has_been_changed)
  1538.             signal('failure,nls("config_and_autoexec_changed","In order for the changes to your CONFIG.SYS and AUTOEXEC.BAT files to take effect, your PC must be rebooted. Please reboot your computer now."));
  1539.           else
  1540.             signal('failure,nls("need_config_change","A sample CONFIG.SYS file can be found in %boot_drive%:\CONFIG.NEW. See your 'Getting Started' manual for help with making changes to your CONFIG.SYS file. Please integrate the changes, reboot your computer, and rerun the installer."));
  1541.         else if (config_has_been_changed)
  1542.           signal('failure,nls("need_autoexec_change","A sample AUTOEXEC.BAT file can be found in %boot_drive%:\AUTOEXEC.NEW. See your 'Getting Started' manual for help with making changes to your AUTOEXEC.BAT file. Please integrate the changes, reboot your computer, and rerun the installer."));
  1543.              else
  1544.                signal('failure,nls("need_autoexec_and_config_change","Sample AUTOEXEC.BAT and CONFIG.SYS files can be found in %boot_drive%:\AUTOEXEC.NEW and %boot_drive%:\CONFIG.NEW. See your 'Getting Started' manual for help with making changes to these files. Please integrate the changes, reboot your computer, and rerun the installer."));
  1545.           else if (autoexec_has_been_changed)
  1546.         signal('failure,nls("autoexec_changed","In order for the changes to your AUTOEXEC.BAT file to take effect, your PC must be rebooted. Please reboot your computer now."));
  1547.            else
  1548.              signal('failure,nls("need_autoexec_change","A sample AUTOEXEC.BAT file can be found in %boot_drive%:\AUTOEXEC.NEW. See your 'Getting Started' manual for help with making changes to your AUTOEXEC.BAT file. Please integrate the changes, reboot your computer, and rerun the installer."));
  1549.         else if (config_needs_change)
  1550.           {
  1551.         if (config_has_been_changed)
  1552.            signal('failure,nls("config_changed","In order for the changes to your CONFIG.SYS file to take effect, your PC must be rebooted. Please reboot your computer now."));
  1553.         else
  1554.            signal('failure,nls("need_config_change","A sample CONFIG.SYS file can be found in %boot_drive%:\CONFIG.NEW. See your 'Getting Started' manual for help with making changes to your CONFIG.SYS file. Please integrate the changes, reboot your computer, and rerun the installer."));
  1555.           }
  1556.        else if ( path_needs_change || config_is_wrong || oraconfig_is_wrong )
  1557.           {     
  1558.          need_reboot_prompt = nls("need_reboot_prompt","Please reboot your computer because the following variables are set incorrectly in the environment:
  1559.  
  1560. ");
  1561.          help_prompt ="%need_reboot_prompt%";
  1562.  
  1563.          if (path_needs_change)
  1564.            help_prompt ="%help_prompt%PATH  ";
  1565.          if (config_is_wrong)
  1566.            help_prompt ="%help_prompt%CONFIG  ";
  1567.          if (oraconfig_is_wrong)
  1568.            help_prompt ="%help_prompt%ORA_CONFIG  ";
  1569.          signal('failure,help_prompt);
  1570.  
  1571.           }
  1572.       if ((boot_drive == "A") || (boot_drive == "B"))
  1573.         information_dialog(nls("put_installer_disk","Put the disk labeled Oracle Installer Disk 1 into %boot_drive%.")); 
  1574.     }
  1575.     }
  1576.  
  1577.   ui_action(nls("prepare_to_install","Preparing to Install..."));
  1578.  
  1579.   protected = "Protected Mode";
  1580.   real = "Real Mode";
  1581.  
  1582.   mode_list    = list(protected,real);
  1583.   mode_prompt01 = nls("mode_prompt","Please select which executables you wish to install. You may select either one or both modes:");
  1584.   mode_content01 = nls("mode_content01","Modes");
  1585.   mode_help01     = nls("mode_help01","Many ORACLE Tools are capable of running in both protected mode and real mode. Protected mode tools exploit memory configurations above and beyond the conventional 640K DOS memory model. You should choose to install protected mode executables unless you do NOT have extended memory. You should choose to install real mode executables if you wish to run a tool in conventional memory. If you are unsure, you may choose to install both modes.");
  1586.  
  1587.   reinstall_prompt01 = nls("reinstall_prompt01","The currently installed version of %%product_label%%, %%installed_version%%, is out of date. The most current version is %%current_version%%. Do you wish to update %%product_label%%?");
  1588.  
  1589.   reinstall_content01 = nls("reinstall_content01","Update");
  1590.  
  1591.   reinstall_help01 = nls("reinstall_help01","The currently installed version of %%product_label%%, %%installed_version%%, is out of date. The most current version is %%current_version%%. It is recommended that you update %%product_label%% to the newer version, %%current_version%%. Choose 'Yes' to update %%product_label%% to %%current_version%%. Choose 'No' if you are sure you want to keep the installed version, %%installed_version%%, intact.");
  1592.  
  1593.   reinstall_prompt02 = nls("reinstall_prompt02","WARNING: Not installing the latest version of %%product_label%%, %%current_version%%, may cause other Oracle products to work improperly.");
  1594.  
  1595.   reinstall_content02 = nls("reinstall_content02","Necessary Update");
  1596.  
  1597.   reinstall_help02 = nls("reinstall_help02","You are in the process of installing Oracle products which depend on version %%current_version%% of %%product_label%%. It is therefore recommended that you update %%product_label%% to %%current_version%%. You have chosen not to do so so, which may cause certain Oracle products to work improperly.");
  1598.  
  1599.   reinstall_prompt03 = nls("reinstall_prompt03","WARNING: The currently installed version of %%product_label%%, %%installed_version%%, is up to date. Are you sure you want to install the old version, %%current_version%%?  Doing so may cause other Oracle products to work improperly.");
  1600.  
  1601.   reinstall_content03 = nls("reinstall_content03","Old Version");
  1602.  
  1603.   reinstall_help03 = nls("reinstall_help03","You are attempting to install an older version of %%product_label%%, %%current_version%%, although version %%installed_version%% is already installed. Installing an older version of %%product_label%% may cause other Oracle products to work improperly. Choose 'No' to leave the current version of %%product_label%%, %%installed_version%%, intact. Choose 'Yes' if you are sure you want to replace it with version %%current_version%%.");
  1604.  
  1605.   reinstall_prompt04 = nls("reinstall_prompt04","Version %%installed_version%% of %%product_label%% has already been installed and is up to date. Would you like to reinstall it?");
  1606.  
  1607.   reinstall_content04 = nls("reinstall_content04","Up To Date");
  1608.  
  1609.   reinstall_help04 = nls("reinstall_help04","Version %%installed_version%% of %%product_label%% has already been installed and is up to date. There is no need to reinstall %%product_label%% unless the installation has somehow become damaged. Choose 'No' to skip the reinstallation of %%product_label%%. Choose 'Yes' if you are sure you want to reinstall it.");
  1610.  
  1611.   deinstall_prompt01 = nls("deinstall_prompt01","WARNING: Other products are dependent on %%registry_label%%. Removing it may cause other products to work improperly. Are you sure you want to deinstall it?");
  1612.  
  1613.   deinstall_content01 = nls("deinstall_content01","Dependencies");
  1614.  
  1615.   deinstall_help01 = nls("deinstall_help01","Other products are dependent on %%registry_label%%. Removing it may cause them to work improperly. It is therefore recommended that you do not remove %%registry_label%%. Choose 'No' to leave %%registry_label%% intact. Choose 'Yes' if you are sure you want to remove it.");
  1616.   
  1617.   dos_stub_name = "%oracle_home%\XBIN\ORASTUB.COM";
  1618.   { dos_stub_size = size(dos_stub_name); }
  1619.      [ 'OS_ERROR:dos_stub_size = 0;
  1620.        'FILE_NOT_FOUND:dos_stub_size = 0;
  1621.        'INVALID_FILE_NAME:dos_stub_size = 0;
  1622.        'PERMISSION_DENIED:dos_stub_size = 0;
  1623.      ]
  1624.   dos_stub_home = "%ORACLE_HOME%\XBIN";
  1625. }