Changeset 2481


Ignore:
Timestamp:
Apr 28, 2012, 10:56:40 PM (13 years ago)
Author:
Andreas Schnellbacher
Message:
  • Renamed NLSETUP.EXE to POSTWPI.EXE.
  • Moved the relevant code to POSTWPI2.CMD for easier debugging.
Location:
trunk/src
Files:
1 added
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/install/applyico.cmd

    r2434 r2481  
    44*
    55* Helper batch for to attach operating system dependant icons to the folders
    6 * of the NEPMD, as WarpIn can currently not determine the operating system
     6* of the NEPMD, as WarpIN can currently not determine the operating system
    77* version (Warp 3/Warp 4/eComStation) during installation.
    88*
    9 * This program is intended to be called only by NLSETUP.EXE during NEPMD
     9* This program is intended to be called only by POSTWPI2.CMD during NEPMD
    1010* installation or by RECROBJ.CMD.
    1111*
  • TabularUnified trunk/src/netlabs/install/cleanup.cmd

    r2480 r2481  
    55* Helper batch for to remove obsolete objects.
    66*
    7 * This program is intended to be called only by NLSETUP.EXE during NEPMD
     7* This program is intended to be called only by POSTWPI2.CMD during NEPMD
    88* installation or by RECROBJ.CMD.
    99*
     
    111111   rcx = SysDestroyObject( NetlabsDir'\install\epmdefassocs.cmd')
    112112   rcx = SysDestroyObject( NetlabsDir'\install\epmnewsamewindow.cmd')
     113   rcx = SysDestroyObject( NetlabsDir'\install\special.cmd')
     114   rcx = SysDestroyObject( NetlabsDir'\install\nlsetup.exe')
    113115   rcx = SysDestroyObject( NetlabsDir'\macros\drawkey.e')
    114116   rcx = SysDestroyObject( NetlabsDir'\macros\menuacel.e')
  • TabularUnified trunk/src/netlabs/install/dyncfg.cmd

    r2420 r2481  
    2121* start and corrects it if it doesn't point to %NEPMD_USERDIR%\bin\nepmd.ini
    2222*
    23 * This program is intended to be called only by NLSETUP.EXE during NEPMD
     23* This program is intended to be called only by POSTWPI2.CMD during NEPMD
    2424* installation or by RECROBJ.CMD.
    2525*
  • TabularUnified trunk/src/netlabs/install/expobj.cmd

    r2434 r2481  
    77* of the installation.
    88*
    9 * This program is intended to be called only by NLSETUP.EXE during NEPMD
     9* This program is intended to be called only by POSTWPI2.CMD during NEPMD
    1010* installation.
    1111*
  • TabularUnified trunk/src/netlabs/install/initreg.cmd

    r2434 r2481  
    1010* DEFAULTS.DAT.
    1111*
    12 * This program is intended to be called only by NLSETUP.EXE during NEPMD
     12* This program is intended to be called only by POSTWPI2.CMD during NEPMD
    1313* installation.
    1414*
  • TabularUnified trunk/src/netlabs/install/instenv.cmd

    r2434 r2481  
    314314
    315315/* ErrorMessage may contain data, even if rc from that is ignored. */
    316 /* NLSETUP ignores messages if rc = 0. */
     316/* POSTWPI ignores messages if rc = 0. */
    317317IF ErrorMessage <> '' THEN
    318318   CALL SayErrorText
  • TabularUnified trunk/src/netlabs/install/postwpi2.cmd

    r2480 r2481  
    11/****************************** Module Header *******************************
    22*
    3 * Module Name: nlsetup.cmd
     3* Module Name: postwpi2.cmd
    44*
    5 * Syntax: nlsetup [NEPMD [UNINSTALL | APPLYICO]]
     5* Syntax: postwpi2 [NEPMD [UNINSTALL | APPLYICO]]
    66*
    77* Frame batch for to call all required CMD files when setting up additional
    88* directories and files in the user directory tree.
    99*
    10 * This module is called by the WarpIN package directly. In order to prevent
    11 * a VIO window opening for this REXX script, this (and only this script) is
    12 * compiled to a PM executable.
     10* This module is called by the WarpIN package via POSTWPI.EXE. POSTWPI.EXE
     11* is used only to prevent a VIO window opening for this REXX script.
    1312*
    1413* This program is intended to be called only during installation of the
     
    7271ErrorTitle = 'Netlabs EPM Distribution Installation'
    7372
    74 /* Parse parameters */
     73/* Parse args */
    7574fNepmd     = FALSE
    7675fUninstall = FALSE
    7776fApplyIco  = FALSE
    78 ARG Parms
    79 DO WHILE Parms <> ''
    80    PARSE VAR Parms ThisParm Parms
    81    ThisParm = STRIP( ThisParm)
     77ARG UpArgs
     78Rest = UpArgs
     79DO WHILE Rest <> ''
     80   PARSE VAR Rest ThisArg Rest
     81   ThisArg = STRIP( ThisArg)
    8282
    8383   SELECT
    84       WHEN ThisParm = '' THEN
     84      WHEN ThisArg = '' THEN
    8585         LEAVE
    86       WHEN ThisParm = 'NEPMD' THEN
     86      WHEN ThisArg = 'NEPMD' THEN
    8787         fNepmd = TRUE
    88       WHEN ThisParm = 'UNINSTALL' THEN
     88      WHEN ThisArg = 'UNINSTALL' THEN
    8989         fUninstall = TRUE
    90       WHEN ThisParm = 'APPLYICO' THEN
     90      WHEN ThisArg = 'APPLYICO' THEN
    9191         fApplyIco = TRUE
    9292   OTHERWISE
  • TabularUnified trunk/src/netlabs/install/recrobj.cmd

    r2480 r2481  
    1414* The WarpIN database entries will not be recreated.
    1515*
    16 * This Cmd is not called by NLSETUP.EXE. It can be called directly.
     16* This Cmd is not called by POSTWPI2.CMD. It can be called directly.
    1717*
    1818* Copyright (c) Netlabs EPM Distribution Project 2008
     
    210210   IF (next = '') THEN ITERATE
    211211
    212    SearchString = 'nlsetup.exe NEPMD'
     212   SearchString = 'postwpi.exe NEPMD'
    213213   IF (TRANSLATE( RIGHT( next, LENGTH( SearchString))) = TRANSLATE( SearchString)) THEN
    214214   DO 1
     
    220220        rcx = DIRECTORY( SUBSTR( WorkDir, 1, 2))
    221221
    222       /* Keep in sync with NLSETUP.CMD/.EXE */
     222      /* Keep in sync with POSTWPI2.CMD */
    223223      'CALL INSTENV';           IF (rc \= 0) THEN LEAVE
    224224      'CALL USERTREE';          IF (rc \= 0) THEN LEAVE
  • TabularUnified trunk/src/netlabs/install/remepm.cmd

    r2434 r2481  
    1313* old files will be deleted.
    1414*
    15 * This Cmd is not called by NLSETUP.EXE. It can be called directly. It was
     15* This Cmd is not called by POSTWPI2.CMD. It can be called directly. It was
    1616* left in here, because one would like to uninstall all EPM 5 files of
    1717* Warp 3. Note that this is not required. NEPMD can be used with the EPMBBS
  • TabularUnified trunk/src/netlabs/install/renudirs.cmd

    r2434 r2481  
    3535* may be copied to the new empty directories.
    3636*
    37 * This program is intended to be called only by NLSETUP.EXE during NEPMD
     37* This program is intended to be called only by POSTWPI2.CMD during NEPMD
    3838* installation.
    3939*
  • TabularUnified trunk/src/netlabs/install/usertree.cmd

    r2434 r2481  
    99* and also applies help panels to make F1 show help for objects.
    1010*
    11 * This program is intended to be called only by NLSETUP.EXE during NEPMD
     11* This program is intended to be called only by POSTWPI2.CMD during NEPMD
    1212* installation or by RECROBJ.CMD.
    1313*
  • TabularUnified trunk/src/rexx/makefile

    r2434 r2481  
    33# Module Name: makefile
    44#
    5 # makefile for creating an exe out of nlsetup.cmd
     5# makefile for creating an exe out of postwpi.cmd
    66#
    77# Copyright (c) Netlabs EPM Distibution Project 2002
     
    3030
    3131FILESTOCLEAN= \
    32  $(CMPINSTDIR)\nlsetup.exe \
    33  $(CMPDIR)\nlsetup.log
     32 $(CMPINSTDIR)\postwpi.exe \
     33 $(CMPDIR)\postwpi.log
    3434
    3535# --- private extension of suffix list
     
    4444# --- pseudotargets
    4545
    46 ALL: NLSETUP
     46ALL: POSTWPI
    4747
    4848# ---
     
    5454# ---
    5555
    56 NLSETUP: $(CMPINSTDIR)\nlsetup.exe
     56POSTWPI: $(CMPINSTDIR)\postwpi.exe
    5757
    5858# ---- create EXE versions of frame REXX batchfiles
    5959
    60 $(CMPINSTDIR)\nlsetup.exe: nlsetup.cmd
     60$(CMPINSTDIR)\postwpi.exe: postwpi.cmd
    6161
  • TabularUnified trunk/src/wis/nepmd.wis

    r2434 r2481  
    122122     NODESELECT
    123123     TITLE="%PCK_1_TITLE%"
    124      EXECUTE="$(1)\netlabs\install\nlsetup.exe NEPMD"
    125      DEEXECUTE="$(1)\netlabs\install\nlsetup.exe NEPMD UNINSTALL"
     124     EXECUTE="$(1)\netlabs\install\postwpi.exe NEPMD"
     125     DEEXECUTE="$(1)\netlabs\install\postwpi.exe NEPMD UNINSTALL"
    126126
    127127     CLEARPROFILE="USER\NEPMD\Language"
     
    169169     REQUIRES="OS/2 Netlabs\WarpIN\Base\%ID_VERSION_REQ_WARPIN%"
    170170     SELECT
    171      EXECUTE="$(1)\netlabs\install\nlsetup.exe NEPMD APPLYICO"
     171     EXECUTE="$(1)\netlabs\install\postwpi.exe NEPMD APPLYICO"
    172172     TITLE="%PCK_2_TITLE%"
    173173
Note: See TracChangeset for help on using the changeset viewer.