home *** CD-ROM | disk | FTP | other *** search
Wrap
/***************************************************************************** Copyright (c) Oracle Corporation 1995. All Rights Reserved NAME sqlplus.pkg DESCRIPTION Package file for Windows 95 SQL*Plus product OWNER David Tom MODIFIED DD-MMM-YY Reason mmckerle AUG-97 Modified for 7.3.4 Production Release rxfernan MAY-97 Oracle 8.0.3 Production Release dtom 01-AUG-95 Created *****************************************************************************/ { ######################################################################### # Both the package install and the Custom install with packages will use # the same .PKG, .MAP, .INS, and .VRF scripts. Their behaviour will be # slightly different. The package install will (in general) not show # any additional dialogs. The custom install will. The "products" list # determines which products will be visible in the custom dialogs. The # "dflt_products" list is used to indicate products which products are # are highlighted in the custom dialogs. ########################################################################### products = list(); dflt_products = list(); # Note: 1) RSF gets force installed by the RDBMS. # 2) Release Notes get installed by everything. # 3) Protocol Adapters will be auto-detected by SQL*Net Client, and are # explicitly listed in the packages. # 4) The following are hidden products (in the .PRD file), and will only get # installed if they are force installed by another product: # a) Trace Collection services # These products will not be explicitly added to the product lists. { add(products , w32plus33 ); } ['UNBOUND_VARIABLE: continue();] { add(dflt_products, w32plus33 ); } ['UNBOUND_VARIABLE: continue();] { add(products , w32netclt23 ); } ['UNBOUND_VARIABLE: continue();] { add(dflt_products, w32netclt23 ); } ['UNBOUND_VARIABLE: continue();] { add(products , w32doc73 ); } ['UNBOUND_VARIABLE: continue();] { add(dflt_products, w32doc73 ); } ['UNBOUND_VARIABLE: continue();] /*---installer can only be installed from distribution media---------*/ { if (distribution) { { add(products , ntinstall ); } ['UNBOUND_VARIABLE: continue();] { add(dflt_products, ntinstall ); } ['UNBOUND_VARIABLE: continue();] } } [ 'UNBOUND_VARIABLE: continue(); ] selection_title = nls("selection_title", "%%prod_label%%"); selection_prompt = nls("selection_prompt", "Select the components you want to install:"); selection_help = nls("selection_help", "The default components of the %%prod_label%% will be installed. Items that you do not wish to install may be de-selected.%carriage_return%%carriage_return%Items may be selected or de-selected by holding the CTRL key and clicking on the item with the mouse or by moving the cursor to the item and using the space bar to select or de-select the item."); }