home *** CD-ROM | disk | FTP | other *** search
- /*
- $VER: ViewDIZ.dopus5 1.1 (03.06.95)
- Written by Odia The Ultimate.
- ARexx script for DOpus 5 to view file_id.diz's.
- Call as 'REXX:ViewDIZ.dopus5 {f} {Qp}' FLAGS="do all files".
- */
-
- options results
-
- parse arg '"' filename '"' portname .
-
- if portname~=='' then address value portname
- else exit
-
- if ~exists("Libs:rexxreqtools.library") then do
- dopus request '"LIBS:RexxReqTools.Library not found." OK'
- exit
- end
-
- addlib("rexxreqtools.library",0,-30)
-
- lf='0a'x
-
- if substr(right(filename,4),1,1)~="." then do
- dopus request '"Invalid Extension!" OK'
- exit
- end
-
- address command
- if exists('T:File_ID.DIZ') then 'delete t:file_id.diz'
-
- filetype=upper(right(filename,3))
-
- if filetype=doc | filetype=dok | filetype=nfo then filetype=txt
- if filetype=lzh then filetype=lha
-
- select
- when filetype=lha then 'lha x 'filename' file_id.diz t:'
- when filetype=lzx then 'lzx x 'filename' file_id.diz t:'
- when filetype=zip then 'unzip -od 'filename' file_id.diz -d t:'
- when filetype=dms then 'DMSDescript x t:file_id.diz' filename
- when filetype=txt then 'TxtExtract e t:file_id.diz ' filename
- when filetype=exe then 'EXEDescript x t:file_id.diz' filename
- otherwise do
- address value portname
- dopus request '"Unable to handle "'filetype'" Files" OK'
- exit
- end
- end
- address value portname
- if ~exists('T:File_ID.DIZ') then do
- dopus request '"Failed to Extract File_ID.DIZ" OK'
- exit
- end
-
- open('Fileid','T:FILE_ID.DIZ',R)
- ftxt=''
- do until eof('Fileid')
- ftxt=ftxt||lf||readln('Fileid')
- end
-
- rtezrequest(ftxt,"OK","ViewDIZ V1.1 ©1995 Odia The Ultimate", "RTEz_Flags=EZReqF_CenterText RT_ReqPos=ReqPos_CenterScr RT_PubScrName="portname)
- do txt=length(rte) to 12
- close('Fileid')
- exit
-