It is the start to look at that is a good starting point, with a need for more, so let's keep this thread alive.
So what do we need/want?
Should we aim to support a specific version of OS/2 and newer? ¹)
A list of handbooks related to REXX. The list that Dariusz Piatkowski showed should be a good starting point, where can the files be downloaded from?
There should also be a dedicated section about "Object REXX" ²) and "ooRexx" ²).
PDF and/or INF/HLP format?
What would you like to see/need? Dan and Lewis
Is it a broader discussion about what REXX can do and how, a list of functions one can copy/paste into own projects, or...?
____
¹) Various libraries has been introduced and removed in versions of eComStation and ArcaOS. The proper way would be to assume that there is only Classic REXX in Warp 4 installed with the limitations and bugs found there and provide functions that check and test the system and then work from there. It may require rather large functions to be complete, but may be what we should aim for?
Example 1: To get the boot drive of the system currently in use one can call the function SysBootDrive, but it is only available with later versions of RexxUtil, so to write scripts that work with any version of the OS, one has to expand it somewhat (see code).
Example 2: The useful rexx library to unpack files "unzip32.dll" may (not) be available, but unzip.exe of various versions may (not) also be available, and/or unpack200.exe with OpenJDK. A wrapper function to unzip should be written to use whatever is available as we can't assume a baseline.
²) With Object REXX and ooRexx one can create a reusable "text library" to reference (compare to "include" in C/C++) with methods that can explore all possebilities and provide a unified way to unpack archives.
/* Purpose: Get information about the drive where the OS has been installed to */
/* Somewhat extended (and renamed) version of the one found in Rexx Tips & Tricks v3.60 */
/* Note the use of OS2ENVIRONMENT instead of just ENVIRONMENT as one can't assume a certain baseline version without forcing that one on others */
RxBootDrive: PROCEDURE EXPOSE (exposeList)
/* install a local error handler */
SIGNAL ON SYNTAX NAME BootDrive
boot_drive = ''
boot_drive = SysBootDrive()
BootDrive:
/* boot_drive is still empty if SysBootDrive() failed */
/* SysBootDrive() is only available in the newer versions of REXXUTIL! */
IF boot_drive = '' THEN
DO
/* Do further tests to ensure that the result of this method is correct! */
PARSE UPPER VALUE VALUE( "PATH",, prog.__env ) WITH "\OS2\SYSTEM" -2 boot_drive +2
boot_drive = STRIP( boot_drive )
os_dir = STRIP( LEFT( VALUE( 'OSDIR',, 'OS2ENVIRONMENT' ), 2 ) )
sys_cmd = STRIP( LEFT( VALUE( 'COMSPEC',, 'OS2ENVIRONMENT' ), 2 ) )
IF LENGTH( os_dir ) = 2 & LENGTH( sys_cmd ) = 2 THEN
IF os_dir = sys_cmd THEN RETURN os_dir
IF LENGTH( os_dir ) = 2 THEN
IF boot_drive = os_dir THEN RETURN boot_drive
IF LENGTH( sys_cmd ) = 2 THEN
IF boot_drive = sys_cmd THEN RETURN boot_drive
END
RETURN boot_drive