mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
Use most recent localedata from glibc-2.0.91.
1997-10-09 04:56 Ulrich Drepper <drepper@cygnus.com> * locales/is_IS: Update from Debian version. 1997-08-29 03:16 Ulrich Drepper <drepper@cygnus.com> * tst-fmon.c: New file. strfmon test program. * tst-fmon.sh: New file. Script to run strfmon test. * fmon-de_DE.exp: New file. Expected result of strfmon test for de_DE. * fmon-en_US.exp: New file. Expected result of strfmon test for en_US. * locales/cs_CZ: Update from author.
This commit is contained in:
parent
3f07c1da66
commit
49891c1062
@ -88,7 +88,7 @@ AC_ARG_ENABLE(add-ons, dnl
|
||||
add_ons=`echo */configure | sed -e 's!/configure!!g'`
|
||||
else
|
||||
add_ons=`echo $srcdir/*/configure | \
|
||||
sed -e "s!^$srcdir/!!g" -e 's!/configure!!g'`
|
||||
sed -e "s!$srcdir/!!g" -e 's!/configure!!g'`
|
||||
fi;;
|
||||
*) add_ons=`echo "$enableval" | sed 's/,/ /g'`;;
|
||||
esac],
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Miscellaneous support functions for dynamic linker
|
||||
Copyright (C) 1997 Free Software Foundation, Inc.
|
||||
Copyright (C) 1997, 1998 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -47,7 +47,9 @@ _dl_sysdep_read_whole_file (const char *file, size_t *sizep, int prot)
|
||||
int fd = __open (file, O_RDONLY);
|
||||
if (fd < 0)
|
||||
return NULL;
|
||||
if (__fxstat (_STAT_VER, fd, &st) < 0)
|
||||
if (__fxstat (_STAT_VER, fd, &st) < 0
|
||||
/* No need to map the file if it is empty. */
|
||||
|| st.st_size == 0)
|
||||
result = NULL;
|
||||
else
|
||||
{
|
||||
|
18
elf/rtld.c
18
elf/rtld.c
@ -1,5 +1,5 @@
|
||||
/* Run time dynamic linker.
|
||||
Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
||||
Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -532,24 +532,27 @@ of this helper program; chances are you did not intend to run this program.\n",
|
||||
/* We have one problematic case: if we have a name at the end of
|
||||
the file without a trailing terminating characters, we cannot
|
||||
place the \0. Handle the case separately. */
|
||||
if (file[file_size - 1] != ' ' && file[file_size] != '\t'
|
||||
&& file[file_size] != '\n')
|
||||
if (file[file_size - 1] != ' ' && file[file_size - 1] != '\t'
|
||||
&& file[file_size - 1] != '\n' && file[file_size - 1] != ':')
|
||||
{
|
||||
problem = &file[file_size];
|
||||
while (problem > file && problem[-1] != ' ' && problem[-1] != '\t'
|
||||
&& problem[-1] != '\n')
|
||||
&& problem[-1] != '\n' && problem[-1] != ':')
|
||||
--problem;
|
||||
|
||||
if (problem > file)
|
||||
problem[-1] = '\0';
|
||||
}
|
||||
else
|
||||
problem = NULL;
|
||||
{
|
||||
problem = NULL;
|
||||
file[file_size - 1] = '\0';
|
||||
}
|
||||
|
||||
if (file != problem)
|
||||
{
|
||||
char *p;
|
||||
runp = file;
|
||||
runp = file + strspn (file, ": \t\n");
|
||||
while ((p = strsep (&runp, ": \t\n")) != NULL)
|
||||
{
|
||||
struct link_map *new_map = _dl_map_object (NULL, p,
|
||||
@ -557,6 +560,9 @@ of this helper program; chances are you did not intend to run this program.\n",
|
||||
if (new_map->l_opencount == 1)
|
||||
/* It is no duplicate. */
|
||||
++npreloads;
|
||||
|
||||
if (runp != NULL)
|
||||
runp += strspn (runp, ": \t\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,180 +1,183 @@
|
||||
970b316dd260f981b02f80c5481037db charmaps/ANSI_X3.110-1983
|
||||
63ca7fd8249a3065c2cf46d3568ce205 charmaps/ANSI_X3.4-1968
|
||||
e86c1b2ef30069c39ae57c74044c8f5f charmaps/ASMO_449
|
||||
64cdea65126674d17e4d4de9eebe7a7d charmaps/BALTIC
|
||||
44b589073659d5059ed28feae29d1bb9 charmaps/BS_4730
|
||||
3014b545b72ea460c6be1c0e736fd0fe charmaps/BS_VIEWDATA
|
||||
7c114537b032dcb0c33fad6447f4e390 charmaps/CP1250
|
||||
dbe7661c6a5b123e8c5d369fa4dcdaf7 charmaps/CP1251
|
||||
7257c9691d957e62a7e637cc0b4a3883 charmaps/CP1252
|
||||
5d596c65b87acd46382b62b627419906 charmaps/CP1253
|
||||
26d7fe7875157b1264a0feb2af3bd4b1 charmaps/CP1254
|
||||
995beb377a9b10ceb69d2e2db9f38c0c charmaps/CP1255
|
||||
8f3ab677c4c41d9a602ec5a9d2181a58 charmaps/CP1256
|
||||
9ac7292aa07f1774b3fa82407f50bfe0 charmaps/CP1257
|
||||
3e7ab730f995ee2aac310d086877f76c charmaps/CSA_Z243.4-1985-1
|
||||
41dadf28b93935585caa80790fb9cfe1 charmaps/CSA_Z243.4-1985-2
|
||||
1f2207e691c3adad58244f7561c987c8 charmaps/CSA_Z243.4-1985-GR
|
||||
61c0c0ffff0c3543641c16bf9196405d charmaps/CSN_369103
|
||||
cda6b11a184e5d046bd753b34b4c5c16 charmaps/CWI
|
||||
8c01af7e97fa05c868747364aeee903f charmaps/DEC-MCS
|
||||
6d641c1ca619a395699c9e08f38aade0 charmaps/DIN_66003
|
||||
56a240f6ab1652084d70d62e71df76b9 charmaps/DS_2089
|
||||
aaf3aa1f7973d24c10f0195e44d309cc charmaps/EBCDIC-AT-DE
|
||||
2ac9ed4896146b681fa877218b987397 charmaps/EBCDIC-AT-DE-A
|
||||
3128740dffa196fed88be336e8b3b6a4 charmaps/EBCDIC-CA-FR
|
||||
c37b7c8e96d7ee23cc4a6de8fb38a144 charmaps/EBCDIC-DK-NO
|
||||
91c7c4ae978f1037531a1850d796db38 charmaps/EBCDIC-DK-NO-A
|
||||
b70f369a9a6665a013f4d67ddafb9117 charmaps/EBCDIC-ES
|
||||
2bb6d464c083baf2e4590510356efc54 charmaps/EBCDIC-ES-A
|
||||
da80b72f81b71aa750c89efe36cdebc9 charmaps/EBCDIC-ES-S
|
||||
4900c129fe536d90eef1fa079021d600 charmaps/EBCDIC-FI-SE
|
||||
53493344a23c5915d05cb445596e6985 charmaps/EBCDIC-FI-SE-A
|
||||
16441fef214449bf01833c75119f4218 charmaps/EBCDIC-FR
|
||||
47bc93bac2e9121e92ec45e6b084ac3e charmaps/EBCDIC-IS-FRISS
|
||||
590d2d63cffe663a57f9594a88a5d252 charmaps/EBCDIC-IT
|
||||
c51d96a6c0701ace762c1b381650c9e2 charmaps/EBCDIC-PT
|
||||
37b02d6622d5bbad31dbd29e5ea85c1a charmaps/EBCDIC-UK
|
||||
72fc4fb96a6b4fb18090aaf5c1ca5e04 charmaps/EBCDIC-US
|
||||
a66fceae768b6c6653347c6d62a591e2 charmaps/ECMA-CYRILLIC
|
||||
9f8b15ccd32dc406d449428624c7f5a9 charmaps/ES
|
||||
d8827d6828355187991c0c77b1d175e0 charmaps/ES2
|
||||
684e59dfaedd5be03cdb75f13bd4087b charmaps/GB_1988-80
|
||||
eac9ece498b20cea3f64e08e29fcf728 charmaps/GOST_19768-74
|
||||
aa2138ecb935ae395a42e2a36fae17df charmaps/GREEK7
|
||||
016bf365bfbe76a2dffd3371e449bed8 charmaps/GREEK7-OLD
|
||||
cd9b8358fd4ee9ca42f51dd5b9bee1d2 charmaps/GREEK-CCITT
|
||||
d601c5e0564708cccc77f5a0ff21ad5a charmaps/HP-ROMAN8
|
||||
ac6aefc1a0ee7a71a219aeaa45d2dd59 charmaps/IBM037
|
||||
6c88d3707f227d81de6c486fa37291af charmaps/IBM038
|
||||
a866b15cb70f42db3e10208dc1c6c760 charmaps/IBM1004
|
||||
9cf5a37e4b3adb3cbd07dacfdfa339f3 charmaps/IBM1026
|
||||
a9da79881a9ca162290d30dbc60e50ef charmaps/IBM1047
|
||||
efd81c94d2eb08b06b917fab1999237e charmaps/IBM256
|
||||
4cd391704e0bfa5004f51aee15d63487 charmaps/IBM273
|
||||
9cd875dcc061173394ddccb59df09d5d charmaps/IBM274
|
||||
85f505f2920525084080877e61c3c676 charmaps/IBM275
|
||||
a3e907c09ff00ca647dd250da4d08910 charmaps/IBM277
|
||||
d5228847a6c37dd5d0bfef061a87ddf5 charmaps/IBM278
|
||||
961510d2dc9ac86a74c490a14fb2c5bd charmaps/IBM280
|
||||
e743c1c1e6cb73c36b4afe941cf98aeb charmaps/IBM281
|
||||
356b5249cf790ebba361a41c9ab0008f charmaps/IBM284
|
||||
f0fb91312ba9bda57ae7d54c08fe7277 charmaps/IBM285
|
||||
3721e2fe385430d0b723d3670843c5e6 charmaps/IBM290
|
||||
9a2d9a73447dffdecb2ce7c1f0312073 charmaps/IBM297
|
||||
bdfddcd88b3f1ca36576247b4c50282f charmaps/IBM420
|
||||
4aa0aac1583eba7e8e9fa5098522eab5 charmaps/IBM423
|
||||
c58e6bc022f94eef43fc7ed684c5157f charmaps/IBM424
|
||||
1ec3b0acdbcd99941c889e41e997e61e charmaps/IBM437
|
||||
c4472e9815e61c39586a51ae60a13e4e charmaps/IBM500
|
||||
634e54bc22ec929c4a9782e0437e4ed3 charmaps/IBM850
|
||||
f58eac70d307cc4a242f33a93ddbf99a charmaps/IBM851
|
||||
2e65788cf6f20256b6cbd3f9f1584ab0 charmaps/IBM852
|
||||
3945e5dcd7088ce2deed5399fccf8464 charmaps/IBM855
|
||||
9b6d2ea97443ffd9925455efaad1dede charmaps/IBM857
|
||||
e01be3d125620dc75439fa2e3b608636 charmaps/IBM860
|
||||
28166b8677342cda155574d5c3f223fe charmaps/IBM861
|
||||
9c0af519221ec94358866e2608fe91f8 charmaps/IBM862
|
||||
98d2001523bb39c9532979b4df6ad326 charmaps/IBM863
|
||||
deb6bde660b73869e87174bec7ba27dc charmaps/IBM864
|
||||
f58ccd68d1019be24883064012d00b9b charmaps/IBM865
|
||||
d18990891c7f4beb67520dcaaa2ab94b charmaps/IBM868
|
||||
04c8bce968ed0b84a9facd22c4efde61 charmaps/IBM869
|
||||
711e343635c377f70561f2b8091a3b37 charmaps/IBM870
|
||||
6cb196018f85ea9ca94a59cadf5326c4 charmaps/IBM871
|
||||
f344024ec2efbc52d4985f676018da7f charmaps/IBM875
|
||||
02e6cae94ceaedeaf335157831251f91 charmaps/IBM880
|
||||
bfd57147762dfa155c9b0cb7e3caea16 charmaps/IBM891
|
||||
f46fdde76da7a47f73c79e4cfc7d6e54 charmaps/IBM903
|
||||
3f0f3fead1f82ceef5c5e175305a7088 charmaps/IBM904
|
||||
77af7f0a6d441433069cf1bc96babb88 charmaps/IBM905
|
||||
445c6202fdbe83c728a2dfe868732f02 charmaps/IBM918
|
||||
efe297def24e84feaa37856884dd829e charmaps/IEC_P27-1
|
||||
4badb4c8c58e1d30b540f5742f7e69bc charmaps/INIS
|
||||
9f3f79ab67a41ac29a93cfba31c5e2af charmaps/INIS-8
|
||||
88f6cdba3e3d1b858bd269f62123f8c0 charmaps/INIS-CYRILLIC
|
||||
44a7a7a18fe17c5eadaf24bf976da25e charmaps/INVARIANT
|
||||
8131fd60be71f5474823c96f8b3e1de3 charmaps/ISO_10367-BOX
|
||||
0e7fdb8285e9ca6113454ce247d3863c charmaps/ANSI_X3.110-1983
|
||||
a586da90c49cd6875b8238a8878a7591 charmaps/ANSI_X3.4-1968
|
||||
5f18526bbba0326cf6af1861bcac141f charmaps/ASMO_449
|
||||
a9f7051d90b3cd83bc0ad8bd7bae0b02 charmaps/BALTIC
|
||||
8e1e15a295bd169737f22dc53f08ab0b charmaps/BS_4730
|
||||
93f30925bb39086d37e66e4d185ec84b charmaps/BS_VIEWDATA
|
||||
41d1dc3ded4f1e379fa92bd3fcf5c35d charmaps/CP1250
|
||||
de9e81aa6857f6904b8d8e48e199151b charmaps/CP1251
|
||||
4295ced14d537e63d55c27a50f60fd65 charmaps/CP1252
|
||||
97bd97f3ca917489edfa63dbd3977255 charmaps/CP1253
|
||||
20cb2f279747e4f892f793b7ee0055c2 charmaps/CP1254
|
||||
a7a5467df241ffb55f8247bbf9f12ad5 charmaps/CP1255
|
||||
7d5cfac2ef35027f4c634cba8c43b4cc charmaps/CP1256
|
||||
a8dc97d22ade3ee0a8cd8c7122bd4f18 charmaps/CP1257
|
||||
de28dafcea25942068f985ed626f2dc8 charmaps/CSA_Z243.4-1985-1
|
||||
052ef075f60624efa6e802e91410b47e charmaps/CSA_Z243.4-1985-2
|
||||
06e1bab71c5bb639445d86075cf7cef4 charmaps/CSA_Z243.4-1985-GR
|
||||
bfcceac1c7d2315b982cdf02e2870c39 charmaps/CSN_369103
|
||||
18eaa1c7aae3a6cb1609564c2df17c97 charmaps/CWI
|
||||
e3940ad883b5d632284be02e9e5fe0e6 charmaps/DEC-MCS
|
||||
5b2f992418cd91c2fd8f4404798d7ec3 charmaps/DIN_66003
|
||||
49813249f796b430323b39f5ac214c52 charmaps/DS_2089
|
||||
c4d27a4c8b3d1dab456c18e19b9cb581 charmaps/EBCDIC-AT-DE
|
||||
b6ee12056031057046fe9ac512f37eeb charmaps/EBCDIC-AT-DE-A
|
||||
f80c64718816f3bb3ed6d19f2d7b80dd charmaps/EBCDIC-CA-FR
|
||||
6e87df8f2e888deaa9f3470d57f59a15 charmaps/EBCDIC-DK-NO
|
||||
5732dfa3c6c28fff5da1471b0e56a05c charmaps/EBCDIC-DK-NO-A
|
||||
f259d26266edee351f070320a014e7eb charmaps/EBCDIC-ES
|
||||
12232db40f6339d548f8ed37eb6463f9 charmaps/EBCDIC-ES-A
|
||||
0408b369c135709d2994fff8a1f7dac4 charmaps/EBCDIC-ES-S
|
||||
1a3e377a76556eb17de9a269933943b1 charmaps/EBCDIC-FI-SE
|
||||
759dc0c6c3d6354fa61c1b04b59d709c charmaps/EBCDIC-FI-SE-A
|
||||
c98d95a6890fc7e5a8819e16d8f808e7 charmaps/EBCDIC-FR
|
||||
e3c41b832d7645e9190a86ddde244011 charmaps/EBCDIC-IS-FRISS
|
||||
05582f7a3153f505859710b0829faa12 charmaps/EBCDIC-IT
|
||||
24dd8e158b408851dffaeed975ea57e0 charmaps/EBCDIC-PT
|
||||
8e2215ef304cf77b7fdaceb76bfd27fd charmaps/EBCDIC-UK
|
||||
b2f02a121a48a3ac110bd6ee5263fd9b charmaps/EBCDIC-US
|
||||
ac706419ebd1e3a649fb681312ac8ce5 charmaps/ECMA-CYRILLIC
|
||||
7dddc0b7992cd333434b8a02959c50a0 charmaps/ES
|
||||
4c0b61e790c2d2470516111e1d2aa319 charmaps/ES2
|
||||
a135f498373b1305167f1a6c699949a2 charmaps/GB_1988-80
|
||||
1e1e94ad8d1c12e9f10f7d6e1d870a68 charmaps/GOST_19768-74
|
||||
69a174dec8822dedba8b8aad36ba44df charmaps/GREEK-CCITT
|
||||
7963e4f78b3e7da2904db267b51ffdad charmaps/GREEK7
|
||||
98867deff09f3b96d80967768cef2860 charmaps/GREEK7-OLD
|
||||
a20e92ee764a1021470f63ddf2b4ac26 charmaps/HP-ROMAN8
|
||||
d2bb7b6934925cd3c48339932683d738 charmaps/IBM037
|
||||
75372e1aa9e87d8f21029beea062ebfa charmaps/IBM038
|
||||
00135b9fe204f67ffb3ca606c6e90e65 charmaps/IBM1004
|
||||
06a3321eb8e21e60ef061e547af5004d charmaps/IBM1026
|
||||
d6db928eeb35033d1ab07a61874afcc8 charmaps/IBM1047
|
||||
612e20c98d575f4926417557d59653a4 charmaps/IBM256
|
||||
5f610ea0f1199d48a60b735815e441ac charmaps/IBM273
|
||||
1918b8b2947201cf1abd09fde2a270f5 charmaps/IBM274
|
||||
f0ba496e0bb3928385bf8746e362aaea charmaps/IBM275
|
||||
d5e68a6b5e6e4a5673bd488e4754cbb1 charmaps/IBM277
|
||||
70c7fc622ca4d613c0d8bd160517e7b6 charmaps/IBM278
|
||||
8d75b9799cc7857f31779b68cd326deb charmaps/IBM280
|
||||
80d9bb633ddf8118a16a3c13c02e2775 charmaps/IBM281
|
||||
ace7a1f04f6ea723fc23de14ee07a686 charmaps/IBM284
|
||||
aa42a6d193da334341f83f5783e88346 charmaps/IBM285
|
||||
7d71d7200be8bfbc3b132813a1fa79de charmaps/IBM290
|
||||
04e570ddbb122b2fc06503d3f74573cb charmaps/IBM297
|
||||
6f33fae170d1d8f2e8805598a5d9faec charmaps/IBM420
|
||||
8b156f73e652c2d61b7ccd6a87f9a8ed charmaps/IBM423
|
||||
66042b458fb9ab18f17b10c8f28f6e36 charmaps/IBM424
|
||||
b634bac1501c18318edd0f3933b384a2 charmaps/IBM437
|
||||
fbfeade12b636f330ae301c8c4889066 charmaps/IBM500
|
||||
14624459eeab649848449d0e3f83acc1 charmaps/IBM850
|
||||
c758668ec74757819130a3fe0dc0c360 charmaps/IBM851
|
||||
c1788b0d0c362ad15d23ebe5aaeb035c charmaps/IBM852
|
||||
2d3e765198279a53a3d9488b37facf2a charmaps/IBM855
|
||||
cbb9a7e1fb92bc16aeef5d3f63027e2f charmaps/IBM857
|
||||
5314bd045aea2814c576924e27013670 charmaps/IBM860
|
||||
cf51cf4947729270615891be457c327b charmaps/IBM861
|
||||
c401a334989aad1355a558387ba834fd charmaps/IBM862
|
||||
5755062fc1ca9f6a6a2b5ba7eadf72af charmaps/IBM863
|
||||
1cbd4090174eb65cbf8b60d75286d0d2 charmaps/IBM864
|
||||
1bd1fd420dc3dea9a8ac7b1757916412 charmaps/IBM865
|
||||
3c687466bbe8924d247de33aefc3b39c charmaps/IBM868
|
||||
a4a9721bce720a8c24b3130dba84347d charmaps/IBM869
|
||||
f06c133a6a95e36ed4bfd25def526769 charmaps/IBM870
|
||||
3484dd8f95b187e5875dc73278485dd5 charmaps/IBM871
|
||||
2ac060b9d24b0627a69edaf9c8f9b20f charmaps/IBM875
|
||||
526e51ad0ce04ad9700b6444e83d4331 charmaps/IBM880
|
||||
d594cb73e9deddfbacf403223a39415e charmaps/IBM891
|
||||
13fd16925cebadb6a90fd4739ab128f8 charmaps/IBM903
|
||||
38bc42b9ccbe74fd83c17fe7035d378f charmaps/IBM904
|
||||
dafb03bc5ff222d549f49526aad39f14 charmaps/IBM905
|
||||
2f05e3ef0b85315493c1367db075f89f charmaps/IBM918
|
||||
b620d1383e848c22e993d83c929d4e2c charmaps/IEC_P27-1
|
||||
9cc72469de529887ae06cc49eba811b9 charmaps/INIS
|
||||
698eb5f931a6378ec100988b2e7080f8 charmaps/INIS-8
|
||||
3355267d5b626e15335bc3d9e9ceecec charmaps/INIS-CYRILLIC
|
||||
82997b03c60b1c75db7c684369afa784 charmaps/INVARIANT
|
||||
f6ec68e3fa6e6a32ce569a11b3053b6a charmaps/ISO-8859-1
|
||||
e0965976cc4566f2f6b88ff6190c6273 charmaps/ISO-8859-10
|
||||
eb0956b77262e50119b476b8a7266ee7 charmaps/ISO-8859-2
|
||||
5f4b7f0d6d3123a5928f83d13b15b8ef charmaps/ISO-8859-3
|
||||
43a6fbbc2c730598a4c9924a4caf1a5a charmaps/ISO-8859-4
|
||||
cf08296dd3226cb37c14faf45e7bf7e0 charmaps/ISO-8859-5
|
||||
2aa504f779ecaa9b1ed1bd2095f9b690 charmaps/ISO-8859-6
|
||||
f4322623956f662e8d9d5c10dda3b066 charmaps/ISO-8859-7
|
||||
0fb1c5a4c1e86155ed868ef4365d5b31 charmaps/ISO-8859-8
|
||||
b0118405e433712edf7fd9edaf01da09 charmaps/ISO-8859-9
|
||||
1b37bc4d952af81b97fdf412e0c09acc charmaps/ISO-IR-90
|
||||
29e4042157fbde4ecf3e36d82c976c62 charmaps/ISO_10367-BOX
|
||||
b71ed28fbb5d7d62d9f3a710a34a6df4 charmaps/ISO_10646
|
||||
bb31373cb7d39a205bae221e58f1d4a1 charmaps/ISO_2033-1983
|
||||
36644828d2f0db4119698984cff9fff0 charmaps/ISO_5427
|
||||
09aa0a2d88e51399bd1581dc6e2394ce charmaps/ISO_5427-EXT
|
||||
8afb96037ce01e4debf8df7dc4be5c57 charmaps/ISO_5428
|
||||
49b4677573bd28d794b71771cba51f2c charmaps/ISO_646.BASIC
|
||||
a4d959a49db1e8c9f40c406206560a46 charmaps/ISO_646.IRV
|
||||
8fff113e98ee8ca7244d96236cd9a9a4 charmaps/ISO_6937
|
||||
4b725c11b8acac218edb223a8fabe28c charmaps/ISO_6937-2-25
|
||||
21cbdcf9e505338eeff0aaecccb01d24 charmaps/ISO_6937-2-ADD
|
||||
1524185dff114b3f072cdde41b2757d9 charmaps/ISO-8859-1
|
||||
27b9c1e552f5fd0b27fc536f0fa95fa4 charmaps/ISO-8859-10
|
||||
37edf0c113b991fa03454c11efe7a604 charmaps/ISO-8859-2
|
||||
23f592d1c931fbae7aab787764ce4e13 charmaps/ISO-8859-3
|
||||
8da948413a01091eee9824a1acf8e9da charmaps/ISO-8859-4
|
||||
802615fe39f14271c9f6a9c7bbb6fefe charmaps/ISO-8859-5
|
||||
0ce863896fefabade74256df4d81504f charmaps/ISO-8859-6
|
||||
dbfbcb0cde6aca45dccc8e1fa3dbeccc charmaps/ISO-8859-7
|
||||
d202cea38f00eb9a64816e7471b4fba1 charmaps/ISO-8859-8
|
||||
0f2d28310846869627d4957ff7af7672 charmaps/ISO-8859-9
|
||||
0ff1cec843b556575348c403d1a44f5b charmaps/ISO_8859-SUPP
|
||||
e3d2b1067decd1b5a6db1e059458a663 charmaps/ISO-IR-90
|
||||
6c2093382e84d8304500816c0e6e9517 charmaps/IT
|
||||
85787bcfd8a57d23e444413454471f02 charmaps/JIS_C6220-1969-JP
|
||||
87c6ebd0c4aa8e298bc2b5f148e83ea1 charmaps/JIS_C6220-1969-RO
|
||||
246eb24242c02164520df418f2d963b0 charmaps/JIS_C6229-1984-A
|
||||
3bb35d7d629bc4f5c486051b4b2315e1 charmaps/JIS_C6229-1984-B
|
||||
cfaed7e9366ac0c053d1a6841a813bc3 charmaps/JIS_C6229-1984-B-ADD
|
||||
2f973a2199e6c70da93c17a55e726a70 charmaps/JIS_C6229-1984-HAND
|
||||
106feb69588f588bcb69f269a904cd5c charmaps/JIS_C6229-1984-HAND-ADD
|
||||
e5f0a57ea025f7a4d74e43ae5dd506b6 charmaps/JIS_C6229-1984-KANA
|
||||
53fefc27f5ab707f14e97a755e36a91c charmaps/JIS_X0201
|
||||
a99c92babdf549c9b8902d86ef6a99b4 charmaps/JUS_I.B1.002
|
||||
1ca9cd921efb2db125b3e408daee8720 charmaps/JUS_I.B1.003-MAC
|
||||
be91175d769b4817a28312d2a2162fe5 charmaps/JUS_I.B1.003-SERB
|
||||
da93a4e606e0ad840f25eaad48164d7d charmaps/KOI-8
|
||||
1623c0ffb000db9f365d2b1b695aac14 charmaps/KOI8-R
|
||||
a3209c513563672e6da7776d30ae6f03 charmaps/KSC5636
|
||||
40c613c89d8293a342dee656e155dc05 charmaps/LATIN-GREEK
|
||||
7c211fac48ca088792c29bbe943b0216 charmaps/LATIN-GREEK-1
|
||||
75f99e2c3282eb84c00ba39dda5495fb charmaps/MACINTOSH
|
||||
15ca1d6d67e5b92f2b597a2e2ac078ea charmaps/MAC-IS
|
||||
b869985c0d872c31ac1156c76c951b28 charmaps/MSZ_7795.3
|
||||
08aed8b910a6d892107bb8cdd71794f5 charmaps/NATS-DANO
|
||||
5abf5f2d900fcbc2ba555b1554424a98 charmaps/NATS-DANO-ADD
|
||||
7d60589127a94570e8b3f1281cd0e8eb charmaps/NATS-SEFI
|
||||
c32dc6d37dd5cf0a129c91f05a5b89e0 charmaps/NATS-SEFI-ADD
|
||||
6c83fd70b4f2d5301cc808e426e30e4e charmaps/NEXTSTEP
|
||||
441065ddef635bc15047c309b3f35951 charmaps/NF_Z_62-010
|
||||
2eb96001d9520c322ec37b9a9893431b charmaps/ISO_2033-1983
|
||||
cdd74ad87b62bebded4d4f09e4b70d95 charmaps/ISO_5427
|
||||
9a0245eaeaa3542e4792462dc4167a3b charmaps/ISO_5427-EXT
|
||||
99fbd7b049392e2eeec98725b69d2dab charmaps/ISO_5428
|
||||
a5ab527ece9076cd01834ef48c8106e4 charmaps/ISO_646.BASIC
|
||||
fea79ae8fd70fd216df26613ad5d293f charmaps/ISO_646.IRV
|
||||
55b56e442762700cf94e449c7325a5ee charmaps/ISO_6937
|
||||
87ffdcd2cc8b976bfd692e810e45a428 charmaps/ISO_6937-2-25
|
||||
4a587336167d35c53a053fb8f1ffdc74 charmaps/ISO_6937-2-ADD
|
||||
9af1e02797b627bcde8c7284f39f0384 charmaps/ISO_8859-SUPP
|
||||
ce480b4ebe5d70f6eb769ba74b770a6b charmaps/IT
|
||||
0e8eeddeaf18ff2ea878694a2739463f charmaps/JIS_C6220-1969-JP
|
||||
889594dcd1e032e70e44b286616fc12d charmaps/JIS_C6220-1969-RO
|
||||
1b0ed357f33c83769d60f871c9ca5f9a charmaps/JIS_C6229-1984-A
|
||||
c3fedbfd1213028ec7a9072dc3efe2fe charmaps/JIS_C6229-1984-B
|
||||
127a7f4f39cb025219a5415dadc6601a charmaps/JIS_C6229-1984-B-ADD
|
||||
f97432b25a4838f338fb97632d5a1e68 charmaps/JIS_C6229-1984-HAND
|
||||
eeb2032e4e26972c0ea298b4add26f1a charmaps/JIS_C6229-1984-HAND-ADD
|
||||
f6635f62933ca73d099f7f0deabf98e2 charmaps/JIS_C6229-1984-KANA
|
||||
1eacfba9e5ea66fcba5e899fb1e0d5b0 charmaps/JIS_X0201
|
||||
58db9089f3a64d68e4d8ccae52477658 charmaps/JUS_I.B1.002
|
||||
0ef24ee22fe2db7c269f391fcf318a25 charmaps/JUS_I.B1.003-MAC
|
||||
d9f90201c1cf81ea3e1d168720bffc83 charmaps/JUS_I.B1.003-SERB
|
||||
67d61886ea42a4f7860ac7c4e02788d3 charmaps/KOI-8
|
||||
d59998eca2cfb8f43bf0720da364d74b charmaps/KOI8-R
|
||||
740a29c47cc9a64027b11dfa25c40db0 charmaps/KSC5636
|
||||
c4a4025dccd0b37119b9382d9f741736 charmaps/LATIN-GREEK
|
||||
5fb2c89721a7ac283154db22d6d2dce3 charmaps/LATIN-GREEK-1
|
||||
6680017c5cda54ba6b7191e9bbbbd521 charmaps/MAC-IS
|
||||
4d605d9319f35bca76db2f3adc37b186 charmaps/MACINTOSH
|
||||
447109f8043eed245396b8dfb0c5b024 charmaps/MSZ_7795.3
|
||||
1d20c917abdd4beeeba248c57e315cfa charmaps/NATS-DANO
|
||||
b3bbdc3f120f8953a4f6aa642427fe15 charmaps/NATS-DANO-ADD
|
||||
6ecc9d568a7816ec1c36e671397bc62e charmaps/NATS-SEFI
|
||||
10d8bd8b95e840b9158f429ad5b9365a charmaps/NATS-SEFI-ADD
|
||||
2f4a07a32092af3ad9ba80327b2eee3d charmaps/NEXTSTEP
|
||||
27d205fe2bdb212ff487149378a8fb13 charmaps/NF_Z_62-010
|
||||
d867bfe77c36b2d1aeecaa3f57d9d4e1 charmaps/NF_Z_62-010-1973
|
||||
018e57c7bd71e87a5e656abfe816a7f3 charmaps/NS_4551-1
|
||||
02b6dd2e3ca9d725fa1a170719fddfde charmaps/NS_4551-2
|
||||
aa63a528dd77226508543f05d083731a charmaps/PT
|
||||
682f1056b6275ddd149e25a358362ea0 charmaps/PT2
|
||||
9680704e24c31df79809b65a27bd071e charmaps/SAMI
|
||||
0aec6669370200f2b257438a600d221c charmaps/SEN_850200_B
|
||||
8d0de9fd47615c228c4464af3b02c397 charmaps/SEN_850200_C
|
||||
db3c60025eb80244d70bf7889f058055 charmaps/T.101-G2
|
||||
572baa84bd05d4b236b7e2fb211d0dfd charmaps/T.61-7BIT
|
||||
1e39e36aa7544014059b0aa8381ab051 charmaps/T.61-8BIT
|
||||
81c8e12a75dff4371ce82773d670cd6d charmaps/VIDEOTEX-SUPPL
|
||||
910e8174540ecba1ac61b5f27f6dc359 locales/cs_CZ
|
||||
45ade09ead9fd385d58504bfc005ecab locales/da_DK
|
||||
f337a4af933e8cf76ce0cbe0c3220385 charmaps/NS_4551-1
|
||||
249ccbf125a7f3ba65f981c713315518 charmaps/NS_4551-2
|
||||
c31d1e195aa38a135db258ffe9819686 charmaps/PT
|
||||
15be55c497423c88f935bc5cb0b8a8a3 charmaps/PT2
|
||||
4350bd8c8fe1e5af0c7ce81ca1cede69 charmaps/SAMI
|
||||
0749422e24fc635059683aab8e5cec7c charmaps/SEN_850200_B
|
||||
ba143c0073ddafb215cb977c352c51a0 charmaps/SEN_850200_C
|
||||
9785b30026d616bbda77eaf8e6153787 charmaps/T.101-G2
|
||||
1f46111983da2e6089c96fe82dac584a charmaps/T.61-7BIT
|
||||
c9cddee81fc56afc565103f0595512d8 charmaps/T.61-8BIT
|
||||
ef3bf5ae895d02eaef728a6cad19f389 charmaps/VIDEOTEX-SUPPL
|
||||
0ecf1f5d1f3013682c36740c70a401b7 charmaps/NC_NC00-10
|
||||
3b41e78b72c9e6ae388372250a4c2aa1 charmaps/NF_Z_62-010_(1973)
|
||||
8106c88f663bad113164494c1c11118d charmaps/ISO_8859-1,GL
|
||||
bbbcbd6f0a484ec25d8a592217a76ebb locales/POSIX
|
||||
750e13fbceda38057a7b6c484eb06324 locales/da_DK
|
||||
249894e0554d46d1fbdae4a5fb8cc20e locales/de_AT
|
||||
b3628f73e00bb655a5e96bcc2331893c locales/de_BE
|
||||
e74bb8234af71907f2e53ef2e60d9f45 locales/de_CH
|
||||
b09f9fa150fb8c13b2a5ed17a3448241 locales/de_DE
|
||||
f9c522cf7d07e8020e4b723b29caf8d0 locales/de_LU
|
||||
df036d626c53c86c06231c1502e96fbb locales/en_CA
|
||||
05f7d035fa3341f9ab189878bbd26033 locales/en_CA
|
||||
84105524bf0eba76d4a32c3aac8d9a34 locales/en_CA,2.5
|
||||
f55dc7b52a0eb150bab63eef74651a0d locales/en_DK
|
||||
20946213e1c36e3650af5ddfc524bd35 locales/en_GB
|
||||
8f9daff1bd5b2a1332c5bcd54a8aed31 locales/en_IE
|
||||
566209c74fefc01c3c5752b2f5eae667 locales/en_US
|
||||
847fbfac1565c5babea6d6b831bd5242 locales/es_ES
|
||||
732fd15661f8c081e5b43de94832cfc4 locales/et_EE
|
||||
34c147fa6d60f66addd83f5928d52fd7 locales/en_GB
|
||||
398c68e7028b077b94894797ee5458c9 locales/en_IE
|
||||
153039cdf91c635484777e0bb33ba920 locales/en_US
|
||||
fd15e2a13b8011c2bfe9c3b05eff207c locales/es_ES
|
||||
f901523cd86a920930d40f1df5009252 locales/et_EE
|
||||
df1e697015f3f3b572231aa9ba07633d locales/eu_ES
|
||||
bda978c8b0e379d57a8599edfdb2e858 locales/fi_FI
|
||||
37f5d1de744b022f015469d2e4e0af8e locales/fi_FI
|
||||
a25300033ea6c619a4e15051f14aa65e locales/fo_FO
|
||||
02ca55b19338f94530f0b60999638ed4 locales/fr_BE
|
||||
604f969ebcd07c7a31c9fc0d2cb40138 locales/fr_BE
|
||||
655c7b8713b9aad20014df2c27928cb7 locales/fr_CA
|
||||
d5bec15a74c4107a77a46fe185883574 locales/fr_CA,2.13
|
||||
19403a5cd69a9ad658b173859eb022ef locales/fr_CH
|
||||
@ -182,24 +185,46 @@ d5bec15a74c4107a77a46fe185883574 locales/fr_CA,2.13
|
||||
cc1b77cf4cdc4488a99637e730e0f57f locales/fr_LU
|
||||
1987b72e766038b0f475165c994d1469 locales/ga_IE
|
||||
be2ef06fd9a4b4def515216972fe9250 locales/gr_GR
|
||||
e7ad1d62ccf958b04f018cbd96ede3b2 locales/hr_HR
|
||||
7f35d03bbe29b53831674704f8b307af locales/hu_HU
|
||||
1a8b95f6663b7a99703a32c6135d8896 locales/is_IS
|
||||
d060d5e2e080b5692489de95b7b20de4 locales/hr_HR
|
||||
d02223dade18758640bfa70c1d170e98 locales/hu_HU
|
||||
375e0020f66990f1603b79f9df60f4fa locales/is_IS
|
||||
47620dbc36bf3ffe04b32dd16b7aae3c locales/it_IT
|
||||
f02aa03e057d170058cf0a2d606db09b locales/iw_IL
|
||||
0940e8f8b39c824b85bc50f40d16989b locales/iw_IL
|
||||
5fa2bc3b08e08cb7f4da2851a7b21f05 locales/kl_GL
|
||||
d5394568c45886788becf67b54bc916e locales/lt_LT
|
||||
9239bf9149845fde73e6324eced3964c locales/lv_LV
|
||||
a5530edbfd9cb65fc2a866ec3f013cf4 locales/lt_LT
|
||||
94aed177e0651d3dcafa09f590b5acbb locales/lv_LV
|
||||
456f00456ce2e883460aba53e1093c2d locales/nl_BE
|
||||
e71081f29649cfd4ac8563ae1f7932fa locales/nl_NL
|
||||
3a0720088defd80baa0623990c6d196a locales/no_NO
|
||||
6d1bb18d4271cd712e5dc24eec4706b9 locales/pl_PL
|
||||
bbbcbd6f0a484ec25d8a592217a76ebb locales/POSIX
|
||||
509fc74fdd394f6876358d357f955645 locales/pt_BR
|
||||
1cbda73a799c6cf42d857ed4e40d6cbe locales/no_NO
|
||||
827caec4004fd77f9ca97ea256b21868 locales/pl_PL
|
||||
07e2684441ecdc9ece18f633ae00076b locales/pt_BR
|
||||
7c2463bcee68bccde3145642a34a8ef1 locales/pt_PT
|
||||
32c766f85eb82823856485e5802dce19 locales/ro_RO
|
||||
8d407ed28a435f58c18b52dc48a3593e locales/ru_RU
|
||||
56af541b88929e9660f30306bd55c4a9 locales/sl_SI
|
||||
7f837427f6a238b6fc250fc8a90afa91 locales/ro_RO
|
||||
0e68606d49186401d7b6931dc8084bfb locales/ru_RU
|
||||
b6498488c97ad1d2d9119f7b3dcf7a1f locales/sl_SI
|
||||
a59a08e2288391bc0882068def61d366 locales/sv_FI
|
||||
cc6d1db9e6bb9165429a0be9f46a2c79 locales/sv_SE
|
||||
7f6c0e878f709be0b933ad05100e168c locales/tr_TR
|
||||
20af597287a7d2cce5465bc692ba6b4c locales/sv_SE
|
||||
a1f7c6535f4ee4c3f23524008ca08e53 locales/tr_TR
|
||||
910e8174540ecba1ac61b5f27f6dc359 locales/cs_CZ
|
||||
8c38898d9cbfa7f797e47e27bdd91f73 locales/en_AU
|
||||
6816d2aadb882619bfe684e50a230852 locales/en_DK.com
|
||||
12e02e50fca2b3563893729faa410f2f locales/en_NZ
|
||||
0c7adfb84e334279cb13061a043113a4 locales/es_AR
|
||||
4f643ee76f76df83e6172f336bfcc8bb locales/es_BO
|
||||
c562352bba41973cb22ea8961ed875ec locales/es_CL
|
||||
dafed6e0c6e003e1805ccac826d2ae30 locales/es_CO
|
||||
5508d82a63812605eca52359c1179f51 locales/es_DO
|
||||
1df5e0167e107599a43e5aca9270df2f locales/es_EC
|
||||
f6b2cf25a65ab804527ed5f8947eadb3 locales/es_GT
|
||||
6b21519f45950c91560be0364162d9ce locales/es_HN
|
||||
71af9f7a610d287eee5d68b339b74a34 locales/es_MX
|
||||
98c2a232ee3e98869846d46ed48d1faa locales/es_PA
|
||||
0c9354de0fe693bddf00b1df0f1f7964 locales/es_PE
|
||||
c9980527337ee39b576468dd60525546 locales/es_PY
|
||||
6b26ff3f8d4f41bd5a06ffc87295120d locales/es_SV
|
||||
50b4a54e67a4d65f5c6040cb213dfe7d locales/es_US
|
||||
a5ff4e334d35296e8275c878f5f7f19a locales/es_UY
|
||||
65e476aaa53069abbcff197d33c8fdc5 locales/es_VE
|
||||
0940e8f8b39c824b85bc50f40d16989b locales/he_IL
|
||||
d8035242883a9aace0e592d11f40093a locales/ja_JP
|
||||
40135568ac6e0e87b4de092be5a713d0 locales/zh_CN
|
||||
|
@ -1,3 +1,16 @@
|
||||
1997-10-09 04:56 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* locales/is_IS: Update from Debian version.
|
||||
|
||||
1997-08-29 03:16 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* tst-fmon.c: New file. strfmon test program.
|
||||
* tst-fmon.sh: New file. Script to run strfmon test.
|
||||
* fmon-de_DE.exp: New file. Expected result of strfmon test for de_DE.
|
||||
* fmon-en_US.exp: New file. Expected result of strfmon test for en_US.
|
||||
|
||||
* locales/cs_CZ: Update from author.
|
||||
|
||||
1997-03-17 03:32 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* sort-test.sh: Call localedef with additional environment variable
|
||||
|
@ -32,7 +32,10 @@ locales := $(filter-out $(addprefix locales/, CVS RCS %~), \
|
||||
|
||||
test-srcs := collate-test xfrm-test tst-fmon
|
||||
test-input := de_DE.ISO-8859-1 da_DK.ISO-8859-1 fr_CA,2.13.ISO-8859-1
|
||||
fmon-input := de_DE.ISO-8859-1 en_US.ISO-8859-1
|
||||
|
||||
distribute := CHECKSUMS tst-fmon.sh tst-fmon.data ChangeLog sort-test.sh \
|
||||
README mnemonic.ds fr_CA,2.13.in de_DE.in da_DK.in \
|
||||
$(charmaps) $(locales)
|
||||
|
||||
# Get $(inst_i18ndir) defined.
|
||||
include ../Makeconfig
|
||||
@ -42,7 +45,7 @@ install-others := $(addprefix $(inst_i18ndir)/, $(charmaps) $(locales))
|
||||
|
||||
include ../Rules
|
||||
|
||||
# Install the message object files as libc.po in the language directory.
|
||||
# Install the source files in the appropriate directories.
|
||||
$(inst_i18ndir)/charmaps/%: charmaps/%; $(do-install)
|
||||
$(inst_i18ndir)/locales/%: locales/%; $(do-install)
|
||||
|
||||
@ -50,5 +53,5 @@ $(inst_i18ndir)/locales/%: locales/%; $(do-install)
|
||||
ifeq (no,$(cross-compiling))
|
||||
tests: $(objpfx)collate-test $(objpfx)xfrm-test $(objpfx)tst-fmon
|
||||
$(SHELL) -e sort-test.sh $(common-objpfx) $(test-input)
|
||||
$(SHELL) -e tst-fmon.sh $(common-objpfx) $(fmon-input)
|
||||
$(SHELL) -e tst-fmon.sh $(common-objpfx) tst-fmon.data
|
||||
endif
|
||||
|
@ -1,2 +0,0 @@
|
||||
The charmaps/ directory contains charmaps for coded character sets which
|
||||
contains the portable POSIX character repertoire.
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> ANSI_X3.110-1983
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-99
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> ANSI_X3.4-1968
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-6
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> ASMO_449
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO_9036
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> BALTIC
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% &g1esc x2d56 &g2esc x2e56 &g3esc x2f56
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> BS_4730
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-4
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> BS_VIEWDATA
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-47
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> CP1250
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: UNICODE 1.0
|
||||
|
||||
% alias MS-EE
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> CP1251
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: UNICODE 1.0
|
||||
|
||||
% alias MS-CYRL
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> CP1252
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: UNICODE 1.0
|
||||
|
||||
% alias MS-ANSI
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> CP1253
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: UNICODE 1.0
|
||||
|
||||
% alias MS-GREEK
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> CP1254
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: UNICODE 1.0
|
||||
|
||||
% alias MS-TURK
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> CP1255
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: UNICODE 1.0
|
||||
|
||||
% alias MS-HEBR
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> CP1256
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: UNICODE 1.0
|
||||
|
||||
% alias MS-ARAB
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> CP1257
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: CEN/TC304 N283
|
||||
|
||||
% alias WINBALTRIM
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> CSA_Z243.4-1985-1
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-121
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> CSA_Z243.4-1985-2
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-122
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> CSA_Z243.4-1985-GR
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-123
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> CSN_369103
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-139
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> CWI
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: Computerworld Sza'mita'stechnika vol 3 issue 13 1988-06-29
|
||||
|
||||
% alias CWI-2
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> DEC-MCS
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% VAX/VMS User's Manual, Order Number: AI-Y517A-TE, April 1986.
|
||||
|
||||
% alias DEC
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> DIN_66003
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-21
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> DS_2089
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: Danish Standard, DS 2089, February 1974
|
||||
|
||||
% alias DS2089
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-AT-DE
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-AT-DE-A
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-CA-FR
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-DK-NO
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-DK-NO-A
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-ES
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-ES-A
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-ES-S
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-FI-SE
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-FI-SE-A
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-FR
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-IS-FRISS
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: Skyrsuvelar Rikisins og Reykjavikurborgar, feb 1982
|
||||
|
||||
% alias FRISS
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-IT
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-PT
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-UK
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> EBCDIC-US
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3270 Char Set Ref Ch 10, GA27-2837-9, April 1987
|
||||
|
||||
CHARMAP
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> ECMA-CYRILLIC
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-111
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> ES
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-17
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> ES2
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-85
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> GB_1988-80
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-57
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> GOST_19768-74
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ST_SEV_358-88
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> GREEK-CCITT
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-150
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> GREEK7
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-88
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> GREEK7-OLD
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-18
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> HP-ROMAN8
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: LaserJet IIP Printer User's Manual,
|
||||
|
||||
% HP part no 33471-90901, Hewlet-Packard, June 1989.
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM037
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP037
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM038
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3174 Character Set Ref, GA27-3831-02, March 1990
|
||||
|
||||
% alias EBCDIC-INT
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM1004
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: CEN/TC304 N283, 1994-02-04
|
||||
|
||||
% alias CP1004
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM1026
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP1026
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM1047
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM Character Data Representation Architecture
|
||||
|
||||
% Registry SC09-1391-00 p 150.
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM256
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM Registry C-H 3-3220-050
|
||||
|
||||
% alias EBCDIC-INT1
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM273
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP273
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM274
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3174 Character Set Ref, GA27-3831-02, March 1990
|
||||
|
||||
% alias EBCDIC-BE
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM275
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias EBCDIC-BR
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM277
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias EBCDIC-CP-DK
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM278
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP278
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM280
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP280
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM281
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3174 Character Set Ref, GA27-3831-02, March 1990
|
||||
|
||||
% alias EBCDIC-JP-E
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM284
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP284
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM285
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP285
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM290
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3174 Character Set Ref, GA27-3831-02, March 1990
|
||||
|
||||
% alias CP290
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM297
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP297
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM420
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% IBM NLS RM p 11-11
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM423
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP423
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM424
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP424
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM437
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP437
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM500
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP500
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM850
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% source: UNICODE 1.0
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM851
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP851
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM852
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP852
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM855
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP855
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM857
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP857
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM860
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP860
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM861
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP861
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM862
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP862
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM863
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM Keyboard layouts and code pages, PN 07G4586 June 1991
|
||||
|
||||
% alias CP863
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM864
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM Keyboard layouts and code pages, PN 07G4586 June 1991
|
||||
|
||||
% alias CP864
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM865
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM DOS 3.3 Ref (Abridged), 94X9575 (Feb 1987)
|
||||
|
||||
% alias CP865
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM868
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP868
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM869
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM Keyboard layouts and code pages, PN 07G4586 June 1991
|
||||
|
||||
% alias CP869
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM870
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP870
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM871
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP871
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM875
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: UNICODE 1.0
|
||||
|
||||
% alias CP875
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM880
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP880
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM891
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP891
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM903
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP903
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM904
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP904
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM905
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM 3174 Character Set Ref, GA27-3831-02, March 1990
|
||||
|
||||
% alias CP905
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IBM918
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: IBM NLS RM Vol2 SE09-8002-01, March 1990
|
||||
|
||||
% alias CP918
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> IEC_P27-1
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-143
|
||||
|
@ -1,6 +1,8 @@
|
||||
<code_set_name> INIS
|
||||
<comment_char> %
|
||||
<escape_char> /
|
||||
% version: 1.0
|
||||
% repertoiremap: mnemonic,ds
|
||||
% source: ECMA registry
|
||||
|
||||
% alias ISO-IR-49
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user