• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

autom4te.cache/H17-May-2011-85,49875,217

docs/H17-May-2011-590502

icons/H03-May-2022-578488

intl/H18-Aug-2008-14,10310,148

libltdl/H17-May-2011-45,35635,521

m4/H17-May-2011-11,96610,792

po/H22-Dec-2008-9,8757,990

skim/H20-Dec-2008-4,2603,168

src/H17-May-2011-9,3637,172

tables/H18-May-2011-1,129,6851,125,280

.cprojectH A D18-Aug-20083.6 KiB4543

ABOUT-NLSH A D18-Aug-200852.6 KiB769723

AUTHORSH A D18-Aug-2008574 2718

COPYINGH A D18-Aug-200817.6 KiB341281

ChangeLogH A D24-Jan-20098.4 KiB178157

INSTALLH A D18-Aug-20089 KiB230175

Makefile.amH A D18-Aug-20081.5 KiB4519

Makefile.inH A D03-May-202226 KiB833740

NEWSH A D18-Aug-20080

READMEH A D18-Aug-20081.7 KiB4834

THANKSH A D18-Aug-20080

aclocal.m4H A D17-May-201140.5 KiB1,1571,041

bootstrapH A D18-Aug-2008970 326

config.guessH A D17-May-201144.2 KiB1,5121,300

config.h.inH A D03-May-202211.4 KiB421289

config.rpathH A D18-Aug-200814.6 KiB549443

config.subH A D17-May-201133.6 KiB1,7061,558

configureH A D17-May-2011716.4 KiB24,26619,120

configure.acH A D17-May-20116.4 KiB244212

cvs2cl.plH A D18-Aug-200889.6 KiB3,2231,688

depcompH A D17-May-201118.2 KiB631407

developersH A D18-Aug-2008776 1615

install-shH A D17-May-201113.3 KiB521344

ltmain.shH A D17-May-2011237.6 KiB8,4076,475

missingH A D17-May-201111.2 KiB377281

mkinstalldirsH A D18-Aug-20083.3 KiB151102

scim-tables.spec.inH A D15-Sep-20087.1 KiB273226

README

1Data files for SCIM Generic Table Input Method module
2=====================================================
3
4This package includes many data files for SCIM Generic Table
5Input Method module (table).
6
7the directory structure is:
8
9zh/		data files for Chinese (Simplified and Traditional).
10ja/		data files for Japanese.
11ko/		data files for Korean.
12additional/	data files for some other languages, such as Russian etc.
13
14The data files will be converted to binary format and installed to
15${prefix}/share/scim/tables/. SCIM table im module will load them
16automatically.
17
18The format of table file
19=========================
20
21A table file has three part: Header, table definition and table data.
22The header must have two line, like:
23
24SCIM_Generic_Table_Phrase_Library_TEXT
25VERSION_1_0
26
27The first line is a magic line to indicate it's a table file in text format.
28The second line is the table format version, currently it's VERSION_1_0.
29
30A binary table should have a header like:
31
32SCIM_Generic_Table_Phrase_Library_BINARY
33VERSION_1_0
34
35The table definition defines the attributes of of this table.
36This section must start with BEGIN_DEFINITION and end with END_DEFINITION.
37Please refer to the tables included in this package about the format.
38
39The table data section includes all data of this table.
40This section must start with BEGIN_TABLE and end with END_TABLE.
41each line in this section refer to a table entry.
42Each entry has three part separated by a white space (tab or space).
43The first part is a key string, the second is the corresponding phrase string,
44the third part is the frequency number of this entry.
45Please refer to the tables included in this package about the format.
46
47The lines started with "###" will be treated as comment and will be ignored.
48