home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / jsage / zsus / z3help / n.lbr / NT.HZP / NT.HLP
Encoding:
Text File  |  1991-11-18  |  6.4 KB  |  130 lines

  1. ;
  2.                                     NT.COM                                    
  3.  
  4.              Size (recs) CRC   Version    Author/Latest Issue      Disk
  5. NT46.COM       2k (16)   A52A  4.6        Rob Friefeld 2/90        Z3COM6
  6. NT46.4OM       3k (20)   DB5A  4.6        Rob Friefeld 2/90        Z3COM6
  7.  
  8.   1- Syntax  2- Configuration  3- NT Notes  4- CFG File                       
  9.  
  10.  
  11.    Note Taker is  a small ZCPR utility for taking  quick  notes.   It  appends 
  12. notes to any specified text file or preconfigured note file by default.   Time
  13. and date appear before  the  note  if  available.   NT is  safe  for  secure Z 
  14. Systems, works under Z3PLUS and contains a ZCNFG menu-driven configuration.
  15.  
  16. :1
  17.  
  18.    Syntax:  NT [DIR:][FILE][.TYP]
  19.  
  20.    Save note  to specified file.  If the file already exists, the text entered 
  21. will  be appended  to it.  If the file extension is omitted, a default type is 
  22. automatically inserted.
  23.  
  24.    If no file is specified  on the command line,  a file  name is requested on 
  25. exit (this is configurable).   If not filespec is given,  a  default filename, 
  26. drive, and user area are used for output (these are also configurable).
  27.  
  28.       IMPORTANT:  A filename with a blank .TYP cannot be opened by NT
  29.       unless the default file type has been patched to '   '.
  30.       (Such a file would have been created with another program.)
  31.  
  32.    Input  uses  the BDOS  read function,  so editing is limited to destructive
  33. backspace and ^X to clear the line under CP/M 2.2 and its derivatives.  Z3Plus
  34. allows nondestructive backspace and many other capabilities.   Enter  a  blank
  35. line to save and exit.   A ^C at the start of any input line, or RETURN at the
  36. start of the first line, aborts the program.
  37. :2
  38.  
  39.  Configuration 
  40.  
  41.    NT is configurable with ZCNFG.COM,  available publicly at  no charge.   Put
  42. ZCNFG and  NT46.CFG in the  same drive  and  user area and  type "ZCNFG NT46".
  43. ZCNFG will guide you through a menu-driven installation session, including on-
  44. line help.  If you are unable to obtain ZCNFG, the addresses to patch are:
  45.  
  46. Patch location for NT46.COM (Type 1):   ORG + 0BH  (1st record)
  47.   "       "     "  NT46.4OM (Type 4):   ORG + 10DH (3rd record) 
  48.  
  49.    Location     Patch            Current Setting       Optional Settings
  50.    --------     -----            ---------------       -----------------
  51.    ORG + 0BH    Default Drive    00 - Current drive    Drive number, A=1.
  52.                    "    User     FF - Current user     User 00-0F (or more)
  53.                    "    Name    'NOTES   '
  54.                    "    Ext     'NT '
  55.                 Prompt on exit?  00                    Non-zero causes prompt
  56. :3
  57.  NT Notes - 1/4 
  58.  
  59.    a. Vs 4.6 updates (02/12/90, Rob Friefeld):
  60.       - ZPRSFN re-instated (works with BGii, ZCPR 3.0)
  61.       - Uses internal stack
  62.       - Reorganized code for clarity, incorporated SYSDEF.LIB.
  63.       - Added  assembly  directive  for Type4  version;  Type4  requires  hand 
  64.         configuration.
  65.  
  66.    b. Vs 4.5 updates (02/11/90, Carson Wilson):
  67.       - Now works with ZCPR 3.3 and up.  NT now type 1 only.
  68.       - Z33 required for PARSE2.
  69.       - CONOUT now strips bit 7 for high-bit sensitive terminals.
  70.       - Now calls Z3INIT.
  71.       - Removed vestigial data area from NT 4.2.
  72.       - Now terminates file with EOF if input overflows buffer.
  73.       - Check for valid filespec tightened up.
  74.  NT Notes - 2/4 
  75.  
  76.    c. Vs 4.4 updates (02/02/90, Carson Wilson):
  77.       - Made "File: " prompt a configurable option.
  78.       - Increased SEPLEN by one.
  79.  
  80.    d. Vs 4.3 updates (01/25/90, Carson Wilson):
  81.       - Now works with CP/M Plus.   Bonus: allows CPM+ edit  controls!   Calls 
  82.         DSLIB universal RCLOCK routine  for DateStamper,  ZSDOS,  or CP/M Plus
  83.         time.  Now stops at column 78 to prevent CP/M+ from going to next line
  84.         when CP/M+  console  width is  set  to 79 (Morrow default).   Modified 
  85.         Z33FUNCT.LIB for use with Z3PLUS.   Bug still exists in Z3LIB's GETCCP 
  86.         routine.  Since  NT  does   not  currently   prompt  for  a  filename, 
  87.         Z33FUNCT.LIB is not called.  It is included for reference/future use.
  88.       - Secure system  capability  added  by  disallowing  file  specification 
  89.         privileges to nonwheels (always use default).
  90.       - Separate help for nonwheels.
  91.       - Faster operation:  no  longer "erases"  non-existent  NOTES.NT  before 
  92.         creating a new one; aborts immediately if first input line contains no
  93.         characters.
  94.  NT Notes - 3/4 
  95.  
  96.       - No longer rings bell when asking the "File: " question.
  97.       - No longer asks the "File: " question (commented out).    
  98.       - Removed optional RCP code during  rapid development.   This  should be 
  99.         fairly easy to add back later, if wanted.
  100.       - Removed type3 code; use either type1 or type4.   Now requires  Z34  to 
  101.         run (1st instruction is RST 0).
  102.       - Changed prompt from ":" to "> ".
  103.       - Improved help screen.
  104.       - Now uses  ZSLIB MDAT2  and MTIMC2 to store  date  and time in NOTES.NT
  105.         file.
  106.  NT Notes - 4/4 
  107.  
  108.    c. Vs 4.2 updates (3/18/88, Rob Friefeld):
  109.       - Omits some features of previous versions, including control char input
  110.         (intended for initializations,  now done with ECHO), and  print of the
  111.         previous screen of text.  The  previous version  read  the entire file 
  112.         into memory, added text, then rewrote the whole thing to disk.  Vs 4.2
  113.         only reads the last record and writes from there.  This approach gives
  114.         faster performance and may make it possible to use the  program  as an 
  115.         RCP pop-up (requires buffer space in the  RCP and code for  re-entrant 
  116.         use of BDOS).  Assembly requires an SLR assembler and SYSDEF.LIB.  
  117.       - For those with DateStamper, NT42DS includes a DATE routine to put time
  118.         and date into each note.  
  119.       - An assembly option permits NT to be used as an RCP command (5 records)
  120.         with the text  buffer  below  the CCP.   The  program is  better used, 
  121.         however, as a (RAM) disk based utility.
  122. :4
  123.                                  NT46.CFG 
  124.  
  125.              Size (recs) CRC   Version    Author/Latest Issue      Disk
  126.                2k (10)   B874  4.6        Rob Friefeld 2/90        Z3COM6
  127. ==============================================================================
  128.  
  129.    Configuration file for use with ZCNFG.COM.
  130.