home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / postscript / ps3270.README < prev    next >
Encoding:
Text File  |  1990-02-10  |  1.5 KB  |  44 lines

  1. Copyright (C) 1990 The Board of Trustees of The Leland Stanford Junior University. 
  2. All Rights Reserved.
  3.  
  4. Transparent mode command for tn3270 on a NeXT.    
  5. Not to be directly called from shell.        
  6. Specify    'ps3270' as tn3270 '-t' option. e.g. 'tn3270 -t ps3270 hostname'
  7.  
  8. ps3270 requires tn3270 4.1.1 or later, which was NOT supplied with NeXTOS 1.0,
  9. but you can get it from the usual sources.  This new version is worth getting
  10. because it makes your session a 3278 (rather than 3277) and supports
  11. 3278-2, -3, -4, and -5.  Tip: compile the new version of tn3270 with
  12. the '-Dsun' option.
  13.  
  14. ps3270 also requires a driver on the mainframe side.   This is the same
  15. driver used with the Yale terminal emulation package for ASCII pass-thru
  16. mode.
  17.  
  18. ps3270 captures PostScript to a temporary file, 
  19. then messages the Workspace Manager to launch Preview on it.
  20.  
  21. To install the program in ~/Apps, just type 'make install'.
  22.  
  23. Written by Paul Kunz, Stanford Linear Accelerator Center
  24. pfkeb@ebnextk.slac.stanford.edu (my NeXT) or,
  25. pfkeb@slacvm.slac.stanford.edu (my mainframe) which is also
  26. SLACVM on BITNET.
  27.  
  28. A final note: How do you generate PostScript on mainframe?   Simple,
  29. for each PostScript operator, write a PSxxxx routine that takes the
  30. arguments and writes it to a file.   For example,
  31.  
  32.     void PSlineto( float x, float y ) {
  33.     fprintf( fp, "%f%f lineto\n", x, y );
  34.     return;
  35.     }
  36.  
  37. or with VS FORTRAN,
  38.  
  39.        Subroutine PSlineto( X, Y )
  40.        Write(lun, 6000) X, Y
  41.   6000 Format( 2F10.5, ' lineto' )
  42.        Return
  43.        End
  44.