home *** CD-ROM | disk | FTP | other *** search
/ Handbook of Infosec Terms 2.0 / Handbook_of_Infosec_Terms_Version_2.0_ISSO.iso / text / rfcs / rfc1554.txt < prev    next >
Text File  |  1996-05-07  |  12KB  |  212 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                            M. Ohta Request for Comments: 1554                 Tokyo Institute of Technology Category: Informational                                         K. Handa                                                                      ETL                                                            December 1993 
  8.  
  9.            ISO-2022-JP-2: Multilingual Extension of ISO-2022-JP 
  10.  
  11. Status of this Memo 
  12.  
  13.    This memo provides information for the Internet community.  This memo    does not specify an Internet standard of any kind.  Distribution of    this memo is unlimited. 
  14.  
  15. Introduction 
  16.  
  17.    This memo describes a text encoding scheme: "ISO-2022-JP-2", which is    used experimentally for electronic mail [RFC822] and network news    [RFC1036] messages in several Japanese networks.  The encoding is a    multilingual extension of "ISO-2022-JP", the existing encoding for    Japanese [2022JP].  The encoding is supported by an Emacs based    multilingual text editor: MULE [MULE]. 
  18.  
  19.    The name, "ISO-2022-JP-2", is intended to be used in the "charset"    parameter field of MIME headers (see [MIME1] and [MIME2]). 
  20.  
  21. Description 
  22.  
  23.    The text with "ISO-2022-JP-2" starts in ASCII [ASCII], and switches    to other character sets of ISO 2022 [ISO2022] through limited    combinations of escape sequences.  All the characters are encoded    with 7 bits only. 
  24.  
  25.    At the beginning of text, the existence of an announcer sequence:    "ESC 2/0 4/1 ESC 2/0 4/6 ESC 2/0 5/10" is (though omitted) assumed.    Thus, characters of 94 character sets are designated to G0 and    invoked as GL.  C1 control characters are represented with 7 bits.    Characters of 96 character sets are designated to G2 and invoked with    SS2 (single shift two, "ESC 4/14" or "ESC N"). 
  26.  
  27.    For example, the escape sequence "ESC 2/4 2/8 4/3" or "ESC $ ( C"    indicates that the bytes following the escape sequence are Korean KSC    characters, which are encoded in two bytes each.  The escape sequence    "ESC 2/14 4/1" or "ESC . A" indicates that ISO 8859-1 is designated    to G2. After the designation, the single shifted sequence "ESC 4/14    4/1" or "ESC N A" is interpreted to represent a character "A with    acute". 
  28.  
  29.  
  30.  
  31. Ohta & Handa                                                    [Page 1] 
  32.  RFC 1554         Multilingual Extension of ISO-2022-JP     December 1993 
  33.  
  34.     The following table gives the escape sequences and the character sets    used in "ISO-2022-JP-2" messages. The reg# is the registration number    in ISO's registry [ISOREG]. 
  35.  
  36.                               94 character sets       reg#  character set      ESC sequence                designated to       ------------------------------------------------------------------       6     ASCII              ESC 2/8 4/2      ESC ( B    G0       42    JIS X 0208-1978    ESC 2/4 4/0      ESC $ @    G0       87    JIS X 0208-1983    ESC 2/4 4/2      ESC $ B    G0       14    JIS X 0201-Roman   ESC 2/8 4/10     ESC ( J    G0       58    GB2312-1980        ESC 2/4 4/1      ESC $ A    G0       149   KSC5601-1987       ESC 2/4 2/8 4/3  ESC $ ( C  G0       159   JIS X 0212-1990    ESC 2/4 2/8 4/4  ESC $ ( D  G0 
  37.  
  38.                               96 character sets       reg#  character set      ESC sequence                designated to       ------------------------------------------------------------------       100   ISO8859-1          ESC 2/14 4/1     ESC . A    G2       126   ISO8859-7(Greek)   ESC 2/14 4/6     ESC . F    G2 
  39.  
  40.    For further information about the character sets and the escape    sequences, see [ISO2022] and [ISOREG]. 
  41.  
  42.    If there is any G0 designation in text, there must be a switch to    ASCII or to JIS X 0201-Roman before a space character (but not    necessarily before "ESC 4/14 2/0" or "ESC N ' '") or control    characters such as tab or CRLF.  This means that the next line starts    in the character set that was switched to before the end of the    previous line.  Though the designation to JIS X 0201-Roman is allowed    for backward compatibility to "ISO-2022-JP", its use is discouraged.    Applications such as pagers and editors which randomly seek within a    text file encoded with "ISO-2022-JP-2" may assume that all the lines    begin with ASCII, not with JIS X 0201-Roman. 
  43.  
  44.    At the beginning of a line, information on G2 designation of the    previous line is cleared.  New designation must be given before a    character in 96 character sets is used in the line. 
  45.  
  46.    The text must end in ASCII designated to G0. 
  47.  
  48.    As the "ISO-2022-JP", and thus, "ISO-2022-JP-2", is designed to    represent English and modern Japanese, left-to-right directionality    is assumed if the text is displayed horizontally. 
  49.  
  50.    Users of "ISO-2022-JP-2" must be aware that some common transport    such as old Bnews can not relay a 7-bit value 7/15 (decimal 127),    which is used to encode, say, "y with diaeresis" of ISO 8859-1. 
  51.  
  52.  
  53.  
  54. Ohta & Handa                                                    [Page 2] 
  55.  RFC 1554         Multilingual Extension of ISO-2022-JP     December 1993 
  56.  
  57.     Other restrictions are given in the Formal Syntax section below. 
  58.  
  59. Formal Syntax 
  60.  
  61.    The notational conventions used here are identical to those used in    STD 11, RFC 822 [RFC822]. 
  62.  
  63.    The * (asterisk) convention is as follows: 
  64.  
  65.       l*m something 
  66.  
  67.    meaning at least l and at most m somethings, with l and m taking    default values of 0 and infinity, respectively. 
  68.  
  69.    message             = headers 1*(CRLF text)                                           ; see also [MIME1] "body-part"                                           ; note: must end in ASCII 
  70.  
  71.    text                = *(single-byte-char /                            g2-desig-seq /                            single-shift-char)                           [*segment                            reset-seq                            *(single-byte-char /                              g2-desig-seq /                              single-shift-char ) ]                                           ; note: g2-desig-seq must                                           ; precede single-shift-char 
  72.  
  73.    headers             = <see [RFC822] "fields" and [MIME1] "body-part"> 
  74.  
  75.    segment             = single-byte-segment / double-byte-segment 
  76.  
  77.    single-byte-segment = single-byte-seq                          *(single-byte-char /                            g2-desig-seq /                            single-shift-char ) 
  78.  
  79.    double-byte-segment = double-byte-seq                          *((one-of-94 one-of-94) /                            g2-desig-seq /                            single-shift-char ) 
  80.  
  81.    reset-seq           = ESC "(" ( "B" / "J" ) 
  82.  
  83.    single-byte-seq     = ESC "(" ( "B" / "J" ) 
  84.  
  85.    double-byte-seq     = (ESC "$" ( "@" / "A" / "B" )) / 
  86.  
  87.  
  88.  
  89. Ohta & Handa                                                    [Page 3] 
  90.  RFC 1554         Multilingual Extension of ISO-2022-JP     December 1993 
  91.  
  92.                           (ESC "$" "(" ( "C" / "D" )) 
  93.  
  94.    g2-desig-seq        = ESC "." ( "A" / "F" ) 
  95.  
  96.    single-shift-seq    = ESC "N" 
  97.  
  98.    single-shift-char   = single-shift-seq one-of-96 
  99.  
  100.    CRLF                = CR LF 
  101.  
  102.                                                     ; ( Octal, Decimal.) 
  103.  
  104.    ESC                 = <ISO 2022 ESC, escape>     ; (    33,      27.) 
  105.  
  106.    SI                  = <ISO 2022 SI, shift-in>    ; (    17,      15.) 
  107.  
  108.    SO                  = <ISO 2022 SO, shift-out>   ; (    16,      14.) 
  109.  
  110.    CR                  = <ASCII CR, carriage return>; (    15,      13.) 
  111.  
  112.    LF                  = <ASCII LF, linefeed>       ; (    12,      10.) 
  113.  
  114.    one-of-94           = <any one of 94 values>     ; (41-176, 33.-126.) 
  115.  
  116.    one-of-96           = <any one of 96 values>     ; (40-177, 32.-127.) 
  117.  
  118.    7BIT                = <any 7-bit value>          ; ( 0-177,  0.-127.) 
  119.  
  120.    single-byte-char    = <any 7BIT, including bare CR & bare LF, but NOT                           including CRLF, and not including ESC, SI, SO> 
  121.  
  122. MIME Considerations 
  123.  
  124.    The name given to the character encoding is "ISO-2022-JP-2". This    name is intended to be used in MIME messages as follows: 
  125.  
  126.       Content-Type: text/plain; charset=iso-2022-jp-2 
  127.  
  128.    The "ISO-2022-JP-2" encoding is already in 7-bit form, so it is not    necessary to use a Content-Transfer-Encoding header. It should be    noted that applying the Base64 or Quoted-Printable encoding will    render the message unreadable in non-MIME-compliant software. 
  129.  
  130.    "ISO-2022-JP-2" may also be used in MIME headers.  Both "B" and "Q"    encoding could be useful with "ISO-2022-JP-2" text. 
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  Ohta & Handa                                                    [Page 4] 
  137.  RFC 1554         Multilingual Extension of ISO-2022-JP     December 1993 
  138.  
  139.  References 
  140.  
  141.    [ASCII] American National Standards Institute, "Coded character set            -- 7-bit American national standard code for information            interchange", ANSI X3.4-1986. 
  142.  
  143.     [ISO2022] International Organization for Standardization (ISO),              "Information processing -- ISO 7-bit and 8-bit coded              character sets -- Code extension techniques",              International Standard, Ref. No. ISO 2022-1986 (E). 
  144.  
  145.    [ISOREG] International Organization for Standardization (ISO),             "International Register of Coded Character Sets To Be Used             With Escape Sequences". 
  146.  
  147.    [MIME1] Borenstein, N., and N. Freed, "MIME  (Multipurpose Internet            Mail Extensions) Part One: Mechanisms for Specifying and            Describing the Format of Internet Message Bodies", RFC 1521,            September 1993. 
  148.  
  149.    [MIME2] Moore, K., "MIME (Multipurpose Internet Mail Extensions) Part            Two: Message Header Extensions for Non-ASCII Text", RFC 1522,            September 1993. 
  150.  
  151.    [RFC822] Crocker, D., "Standard for the Format of ARPA Internet Text             Messages", STD 11, RFC 1522, UDEL, August 1982. 
  152.  
  153.    [RFC1036] Horton M., and R. Adams, "Standard for Interchange of              USENET Messages", RFC 1036, AT&T Bell Laboratories, Center              for Seismic Studies, December 1987. 
  154.  
  155.    [2022JP] Murai, J., Crispin, M., and E. van der Poel, "Japanese             Character Encoding for Internet Messages", RFC 1468, June             1993. 
  156.  
  157.    [MULE] Nishikimi, M., Handa, K., and S. Tomura, "Mule: MULtilingual           Enhancement to GNU Emacs", Proc. of INET'93, August, 1993. 
  158.  
  159. Acknowledgements 
  160.  
  161.    This memo is the result of discussion between various people in a    news group: fj.kanji and is reviewed by a mailing list: jp-msg    @iij.ad.jp.  The Authors wish to thank in particular Prof. Eiichi    Wada for his suggestions based on profound knowledge in ISO 2022 and    related standards. 
  162.  
  163.  
  164.  
  165.  
  166.  
  167. Ohta & Handa                                                    [Page 5] 
  168.  RFC 1554         Multilingual Extension of ISO-2022-JP     December 1993 
  169.  
  170.  Security Considerations 
  171.  
  172.    Security issues are not discussed in this memo. 
  173.  
  174. Authors' Addresses 
  175.  
  176.    Masataka Ohta    Tokyo Institute of Technology    2-12-1, O-okayama, Meguro-ku,    Tokyo 152, JAPAN 
  177.  
  178.    Phone: +81-3-5499-7084    Fax: +81-3-3729-1940    EMail: mohta@cc.titech.ac.jp 
  179.  
  180.     Ken'ichi Handa    Electrotechnical Laboratory    Umezono 1-1-4, Tsukuba,    Ibaraki 305, JAPAN 
  181.  
  182.    Phone: +81-298-58-5916    Fax: +81-298-58-5918    EMail: handa@etl.go.jp 
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  
  209.  
  210. Ohta & Handa                                                    [Page 6] 
  211.  
  212.