home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 265_01 / formdraf.doc < prev    next >
Text File  |  1990-02-15  |  2KB  |  52 lines

  1. chapters:
  2. 1. introduction
  3. 2. exchange media
  4. 3. archive format
  5. 4. implementation
  6. 5. usage of archive/unarchive utilities
  7.  
  8.  
  9.  
  10. - usage of unarchive utility: 
  11.   read  file start-sector byte-length
  12.     file is the name of the sequential output file
  13.     start-sector is the first sector read form
  14.     sector length is computed using the byte length
  15.  
  16. - usage of archive utility:
  17.   write file start-sector
  18.         file is the name of the sequential input file
  19.     start-sector is the first sector written to
  20.     the byte length is determined by the length of the input
  21.     file. no input file may be larger than a single disk
  22.  
  23. - general archive format
  24.   o ASCII code set. System using other code sets must convert
  25.     the data when reading and writing exchange format disks.
  26.  
  27.   o sequential file organization
  28.  
  29.   o no file may be splited across different archives
  30.  
  31. - header format
  32.   o cpio header ???
  33.  
  34.   o filename has to be constructed on rules based on KERMIT:
  35.     - digits and upper case alphabetics (0x30 - 0x39, 0x41 - 0x5a)
  36.     - at most a single period
  37.     - at most 8 charactes before and 3 characters after the period
  38.     - NO device or system specific information (like drives or path names)
  39.  
  40. - data format
  41.   o printable characters (execpt newline) only
  42.  
  43.   o tabs are expanded when writing archives
  44.  
  45.   o newline is represented by a single LF character (as in unix).
  46.     newline conversion takes place when reading and writing exchange
  47.     format disks under operating systems with different conventions
  48.  
  49. - storage media
  50.   o any media physicaly writable by cug, at least 8", 5.25", 3.5"
  51.     diskettes and 9 track tapes
  52.