home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / pocketbk / utilsr / s3uucode / UUCODE.TXT < prev   
Text File  |  1992-08-02  |  3KB  |  91 lines

  1.    * This is a free software-programm for the PSION Series 3 *
  2.  
  3.                +----------------------------------+
  4.                |   USERMANUAL for UUCODE.APP      |
  5.                +----------------------------------+
  6.  
  7.  
  8.                   Adapted to the PSION Series 3
  9.  
  10.                                 by
  11.  
  12.                   Volker Hoppe and Steffen Penne
  13.  
  14.                          Yellow Computing
  15.                            Postbox 1136
  16.                     D-7107 Bad Friedrichshall
  17.                              Germany
  18.  
  19.                         Tel: +49 7136 4097
  20.                         Fax: +49 7136 7136
  21.                         BBS: +49 7136 4221
  22.  
  23.              using TOPSPEED C Compiler and PSION SDK
  24.  
  25.                            12-Juli-1992
  26.  
  27.  
  28. INTRODUCTION:
  29. =============
  30. UU-encoding is a way to code a file which may contain any
  31. characters into a standard character set that can be reliably sent
  32. over mail networks like USENET or FIDO.
  33. The UU-encoding and decoding is adapted from the UU402.C
  34. sourcecode we found on an ATARI Unix machine.
  35.  
  36.  
  37. HOW TO USE:
  38. ===========
  39. The UUCODE.APP for the series 3 contains the functions for
  40. uuencode and uudecode, which means it can encode a binary file or
  41. decode its ASCII representation.
  42.  
  43. Please install the application in your system screen.
  44.  
  45. After starting the application the source-code file selection will
  46. appear. Here you can select the required file for processing.
  47. The application detects automatically, if it is an UUcoded file.
  48. In this case it is encoded into its original file.
  49. If it is no UUcoded file it is automatically coded into an ASCII
  50. file. The UUcoded file will get the extension *.ASC and will be
  51. saved using the same pathname as the soucre file had.
  52.  
  53.  
  54. HINT:
  55. =====
  56. The first line of the UUcodeded file contains the target filename
  57. with filesystem, drive and path.
  58. The result of the decoding process is stored at this path.
  59. If there is a drive which is not present on your Series 3, then
  60. you should edit this, before starting the UUcode for decoding.
  61.  
  62.  
  63. ABOUT THE CHARACTER ENCODING:
  64. =============================
  65. The basic scheme is to break groups of 3 eight bit characters (24
  66. bits) into 4 six bit characters and then add 32 (a space) to each
  67. six bit character which maps it into the readily transmittable
  68. character.  Another way of phrasing this is to say that the
  69. encoded 6 bit characters are mapped into the set:
  70.  
  71.         `!"#$%&'()*+,-./012356789:;<=>?@ABC...XYZ[\]^_
  72.  
  73. for transmission over communications lines.
  74.  
  75. As some transmission mechanisms compress or remove spaces, spaces
  76. are changed into back-quote characters (a 96).
  77.  
  78. The encoded file's size is expanded by 35% (3 bytes become 4, plus
  79. control information), causing it to take longer to transmit than
  80. the equivalent binary.
  81.  
  82. For more details about UU-coding see
  83. USER COMMANDS MANUAL
  84. UUENCODE(1C)
  85. UUDECODE(1C)
  86. Sun Release 4.0
  87. Last change: 23 November 1987
  88.  
  89.  
  90. - EOF -
  91.