diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /intl/chardet/tools/geniso2022cn.pl | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'intl/chardet/tools/geniso2022cn.pl')
-rw-r--r-- | intl/chardet/tools/geniso2022cn.pl | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/intl/chardet/tools/geniso2022cn.pl b/intl/chardet/tools/geniso2022cn.pl new file mode 100644 index 000000000..c4a43caae --- /dev/null +++ b/intl/chardet/tools/geniso2022cn.pl @@ -0,0 +1,58 @@ +#!/usr/local/bin/perl +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +use strict; +require "genverifier.pm"; +use genverifier; + + +my(@iso2022cn_cls); +my(@iso2022cn_st); +my($iso2022cn_ver); + + +# +# +# ESC - 1 +# > 0x80 - 2 +# $ - 3 +# ) - 4 +# * - 5 +# A G - 6 +# H - 7 +# N O - 8 +# +@iso2022cn_cls = ( + [ 0x01 , 0x1a , 0 ], + [ 0x29 , 0x29 , 3 ], + [ 0x43 , 0x43 , 4 ], + [ 0x1c , 0x7f , 0 ], + [ 0x1b , 0x1b , 1 ], + [ 0x00 , 0x00 , 2 ], + [ 0x80 , 0xff , 2 ] +); + + +# +# ESC$((([)][AG])|([*]H))|[NO]) +# +package genverifier; +@iso2022cn_st = ( +# 0 1 2 3 4 5 6 7 8 + 0, 3, 1, 0, 0, 0, 0, 0, 0, # Start State - 0 + 1, 1, 1, 1, 1, 1, 1, 1, 1, # Error State - 1 + 2, 2, 2, 2, 2, 2, 2, 2, 2, # ItsMe State - 2 + 1, 1, 1, 4, 1, 1, 1, 1, 2, # state 3 - got ESC + 1, 1, 1, 1, 5, 6, 1, 1, 1, # state 4 - got ESC $ + 1, 1, 1, 1, 1, 1, 2, 1, 1, # state 5 - got ESC $ ) + 1, 1, 1, 1, 1, 1, 1, 2, 1, # state 6 - got ESC $ * +); + +$iso2022cn_ver = genverifier::GenVerifier("ISO2022CN", "ISO-2022-CN", + \@iso2022cn_cls, 9, \@iso2022cn_st); +print $iso2022cn_ver; + + + |