home *** CD-ROM | disk | FTP | other *** search
- /* 00010000
- * Name: GOPCLITX REXX 00020000
- * VM TCP/IP Network GOPHER Client plain-text processor 00030000
- * Author: Rick Troth, Rice University, Information Systems 00040000
- * Date: 1992-Dec-23 00050000
- * 00060000
- * Input: raw ASCII text 00070000
- * Output: plain (EBCDIC) text 00080000
- */ 00090000
- 00100000
- /* 00110000
- * Copyright 1992 Richard M. Troth. This software was developed 00120000
- * with resources provided by Rice University and is intended 00130000
- * to serve Rice's user community. Rice has benefitted greatly 00140000
- * from the free distribution of software, therefore distribution 00150000
- * of unmodified copies of this material is not restricted. 00160000
- * You may change your own copy as needed. Neither Rice 00170000
- * University nor any of its employees or students shall be held 00180000
- * liable for damages resulting from the use of this software. 00190000
- */ 00200000
- 00210000
- /* Trace "OFF" */ 00220000
- 00230000
- /* sync with input so that 'CALLPIPE COMMAND' will work */ 00240000
- 'PEEKTO' 00250000
- 00260000
- 'CALLPIPE COMMAND GLOBALV SELECT GOPHER GET GOPHER' 00270000
- If gopher = "" Then gopher = "Gopher" 00280000
- 00290000
- 'ADDPIPE *: | DEBLOCK LINEND 0A | DROP LAST 1' , 00300000
- '| CHANGE' '000D002000'x '| TCPA2E' gopher '| *.INPUT:' 00310000
- 00320000
- /* 00330000
- * Name: DROPDOTS REXX 00340000
- * drop trailing lines consisting of only "." 00350000
- * (typically used for end-of-file indication) 00360000
- * Date: 1992-Apr-18, 20 00370000
- */ 00380000
- 00390000
- dots = 0 00400000
- 'READTO LINE' 00410000
- Do While rc = 0 00420000
- If Left(line,1) = "." Then Do 00430000
- dots = dots + 1 00440000
- line.dots = line 00450000
- End /* If .. Do */ 00460000
- Else Do 00470000
- Do i = 1 to dots; 'OUTPUT' line.i; End 00480000
- dots = 0 00490000
- 'OUTPUT' line 00500000
- End /* Else Do */ 00510000
- 'READTO LINE' 00520000
- End /* Do While */ 00530000
- 00540000
- Exit 00550000
- 00560000
-