Changeset 2481
- Timestamp:
- Apr 28, 2012, 10:56:40 PM (13 years ago)
- Location:
- trunk/src
- Files:
-
- 1 added
- 12 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/install/applyico.cmd ¶
r2434 r2481 4 4 * 5 5 * Helper batch for to attach operating system dependant icons to the folders 6 * of the NEPMD, as WarpI ncan currently not determine the operating system6 * of the NEPMD, as WarpIN can currently not determine the operating system 7 7 * version (Warp 3/Warp 4/eComStation) during installation. 8 8 * 9 * This program is intended to be called only by NLSETUP.EXEduring NEPMD9 * This program is intended to be called only by POSTWPI2.CMD during NEPMD 10 10 * installation or by RECROBJ.CMD. 11 11 * -
TabularUnified trunk/src/netlabs/install/cleanup.cmd ¶
r2480 r2481 5 5 * Helper batch for to remove obsolete objects. 6 6 * 7 * This program is intended to be called only by NLSETUP.EXEduring NEPMD7 * This program is intended to be called only by POSTWPI2.CMD during NEPMD 8 8 * installation or by RECROBJ.CMD. 9 9 * … … 111 111 rcx = SysDestroyObject( NetlabsDir'\install\epmdefassocs.cmd') 112 112 rcx = SysDestroyObject( NetlabsDir'\install\epmnewsamewindow.cmd') 113 rcx = SysDestroyObject( NetlabsDir'\install\special.cmd') 114 rcx = SysDestroyObject( NetlabsDir'\install\nlsetup.exe') 113 115 rcx = SysDestroyObject( NetlabsDir'\macros\drawkey.e') 114 116 rcx = SysDestroyObject( NetlabsDir'\macros\menuacel.e') -
TabularUnified trunk/src/netlabs/install/dyncfg.cmd ¶
r2420 r2481 21 21 * start and corrects it if it doesn't point to %NEPMD_USERDIR%\bin\nepmd.ini 22 22 * 23 * This program is intended to be called only by NLSETUP.EXEduring NEPMD23 * This program is intended to be called only by POSTWPI2.CMD during NEPMD 24 24 * installation or by RECROBJ.CMD. 25 25 * -
TabularUnified trunk/src/netlabs/install/expobj.cmd ¶
r2434 r2481 7 7 * of the installation. 8 8 * 9 * This program is intended to be called only by NLSETUP.EXEduring NEPMD9 * This program is intended to be called only by POSTWPI2.CMD during NEPMD 10 10 * installation. 11 11 * -
TabularUnified trunk/src/netlabs/install/initreg.cmd ¶
r2434 r2481 10 10 * DEFAULTS.DAT. 11 11 * 12 * This program is intended to be called only by NLSETUP.EXEduring NEPMD12 * This program is intended to be called only by POSTWPI2.CMD during NEPMD 13 13 * installation. 14 14 * -
TabularUnified trunk/src/netlabs/install/instenv.cmd ¶
r2434 r2481 314 314 315 315 /* ErrorMessage may contain data, even if rc from that is ignored. */ 316 /* NLSETUPignores messages if rc = 0. */316 /* POSTWPI ignores messages if rc = 0. */ 317 317 IF ErrorMessage <> '' THEN 318 318 CALL SayErrorText -
TabularUnified trunk/src/netlabs/install/postwpi2.cmd ¶
r2480 r2481 1 1 /****************************** Module Header ******************************* 2 2 * 3 * Module Name: nlsetup.cmd3 * Module Name: postwpi2.cmd 4 4 * 5 * Syntax: nlsetup[NEPMD [UNINSTALL | APPLYICO]]5 * Syntax: postwpi2 [NEPMD [UNINSTALL | APPLYICO]] 6 6 * 7 7 * Frame batch for to call all required CMD files when setting up additional 8 8 * directories and files in the user directory tree. 9 9 * 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. 13 12 * 14 13 * This program is intended to be called only during installation of the … … 72 71 ErrorTitle = 'Netlabs EPM Distribution Installation' 73 72 74 /* Parse parameters */73 /* Parse args */ 75 74 fNepmd = FALSE 76 75 fUninstall = FALSE 77 76 fApplyIco = FALSE 78 ARG Parms 79 DO WHILE Parms <> '' 80 PARSE VAR Parms ThisParm Parms 81 ThisParm = STRIP( ThisParm) 77 ARG UpArgs 78 Rest = UpArgs 79 DO WHILE Rest <> '' 80 PARSE VAR Rest ThisArg Rest 81 ThisArg = STRIP( ThisArg) 82 82 83 83 SELECT 84 WHEN This Parm= '' THEN84 WHEN ThisArg = '' THEN 85 85 LEAVE 86 WHEN This Parm= 'NEPMD' THEN86 WHEN ThisArg = 'NEPMD' THEN 87 87 fNepmd = TRUE 88 WHEN This Parm= 'UNINSTALL' THEN88 WHEN ThisArg = 'UNINSTALL' THEN 89 89 fUninstall = TRUE 90 WHEN This Parm= 'APPLYICO' THEN90 WHEN ThisArg = 'APPLYICO' THEN 91 91 fApplyIco = TRUE 92 92 OTHERWISE -
TabularUnified trunk/src/netlabs/install/recrobj.cmd ¶
r2480 r2481 14 14 * The WarpIN database entries will not be recreated. 15 15 * 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. 17 17 * 18 18 * Copyright (c) Netlabs EPM Distribution Project 2008 … … 210 210 IF (next = '') THEN ITERATE 211 211 212 SearchString = ' nlsetup.exe NEPMD'212 SearchString = 'postwpi.exe NEPMD' 213 213 IF (TRANSLATE( RIGHT( next, LENGTH( SearchString))) = TRANSLATE( SearchString)) THEN 214 214 DO 1 … … 220 220 rcx = DIRECTORY( SUBSTR( WorkDir, 1, 2)) 221 221 222 /* Keep in sync with NLSETUP.CMD/.EXE*/222 /* Keep in sync with POSTWPI2.CMD */ 223 223 'CALL INSTENV'; IF (rc \= 0) THEN LEAVE 224 224 'CALL USERTREE'; IF (rc \= 0) THEN LEAVE -
TabularUnified trunk/src/netlabs/install/remepm.cmd ¶
r2434 r2481 13 13 * old files will be deleted. 14 14 * 15 * This Cmd is not called by NLSETUP.EXE. It can be called directly. It was15 * This Cmd is not called by POSTWPI2.CMD. It can be called directly. It was 16 16 * left in here, because one would like to uninstall all EPM 5 files of 17 17 * Warp 3. Note that this is not required. NEPMD can be used with the EPMBBS -
TabularUnified trunk/src/netlabs/install/renudirs.cmd ¶
r2434 r2481 35 35 * may be copied to the new empty directories. 36 36 * 37 * This program is intended to be called only by NLSETUP.EXEduring NEPMD37 * This program is intended to be called only by POSTWPI2.CMD during NEPMD 38 38 * installation. 39 39 * -
TabularUnified trunk/src/netlabs/install/usertree.cmd ¶
r2434 r2481 9 9 * and also applies help panels to make F1 show help for objects. 10 10 * 11 * This program is intended to be called only by NLSETUP.EXEduring NEPMD11 * This program is intended to be called only by POSTWPI2.CMD during NEPMD 12 12 * installation or by RECROBJ.CMD. 13 13 * -
TabularUnified trunk/src/rexx/makefile ¶
r2434 r2481 3 3 # Module Name: makefile 4 4 # 5 # makefile for creating an exe out of nlsetup.cmd5 # makefile for creating an exe out of postwpi.cmd 6 6 # 7 7 # Copyright (c) Netlabs EPM Distibution Project 2002 … … 30 30 31 31 FILESTOCLEAN= \ 32 $(CMPINSTDIR)\ nlsetup.exe \33 $(CMPDIR)\ nlsetup.log32 $(CMPINSTDIR)\postwpi.exe \ 33 $(CMPDIR)\postwpi.log 34 34 35 35 # --- private extension of suffix list … … 44 44 # --- pseudotargets 45 45 46 ALL: NLSETUP46 ALL: POSTWPI 47 47 48 48 # --- … … 54 54 # --- 55 55 56 NLSETUP: $(CMPINSTDIR)\nlsetup.exe56 POSTWPI: $(CMPINSTDIR)\postwpi.exe 57 57 58 58 # ---- create EXE versions of frame REXX batchfiles 59 59 60 $(CMPINSTDIR)\ nlsetup.exe: nlsetup.cmd60 $(CMPINSTDIR)\postwpi.exe: postwpi.cmd 61 61 -
TabularUnified trunk/src/wis/nepmd.wis ¶
r2434 r2481 122 122 NODESELECT 123 123 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" 126 126 127 127 CLEARPROFILE="USER\NEPMD\Language" … … 169 169 REQUIRES="OS/2 Netlabs\WarpIN\Base\%ID_VERSION_REQ_WARPIN%" 170 170 SELECT 171 EXECUTE="$(1)\netlabs\install\ nlsetup.exe NEPMD APPLYICO"171 EXECUTE="$(1)\netlabs\install\postwpi.exe NEPMD APPLYICO" 172 172 TITLE="%PCK_2_TITLE%" 173 173
Note:
See TracChangeset
for help on using the changeset viewer.