1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the documentation of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:FDL$
|
---|
10 | ** Commercial Usage
|
---|
11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
13 | ** Software or, alternatively, in accordance with the terms contained in a
|
---|
14 | ** written agreement between you and Nokia.
|
---|
15 | **
|
---|
16 | ** GNU Free Documentation License
|
---|
17 | ** Alternatively, this file may be used under the terms of the GNU Free
|
---|
18 | ** Documentation License version 1.3 as published by the Free Software
|
---|
19 | ** Foundation and appearing in the file included in the packaging of this
|
---|
20 | ** file.
|
---|
21 | **
|
---|
22 | ** If you have questions regarding the use of this file, please contact
|
---|
23 | ** Nokia at [email protected].
|
---|
24 | ** $QT_END_LICENSE$
|
---|
25 | **
|
---|
26 | ****************************************************************************/
|
---|
27 |
|
---|
28 | /*!
|
---|
29 | \group codecs
|
---|
30 | \title Codecs
|
---|
31 | \ingroup groups
|
---|
32 | \brief Codec support in Qt.
|
---|
33 |
|
---|
34 | These codecs provide facilities for conversion between Unicode and
|
---|
35 | specific text encodings.
|
---|
36 |
|
---|
37 | \generatelist{related}
|
---|
38 | */
|
---|
39 |
|
---|
40 | /*!
|
---|
41 | \page codec-big5.html
|
---|
42 | \title Big5 Text Codec
|
---|
43 | \ingroup codecs
|
---|
44 |
|
---|
45 | The Big5 codec provides conversion to and from the Big5 encoding.
|
---|
46 | The code was originally contributed by Ming-Che Chuang
|
---|
47 | \<[email protected]\> for the Big-5+ encoding, and was
|
---|
48 | included in Qt with the author's permission, and the grateful
|
---|
49 | thanks of the Qt team. (Note: Ming-Che's code is QPL'd, as
|
---|
50 | per an mail to [email protected].)
|
---|
51 |
|
---|
52 | However, since Big-5+ was never formally approved, and was never
|
---|
53 | used by anyone, the Taiwan Free Software community and the Li18nux
|
---|
54 | Big5 Standard Subgroup agree that the de-facto standard Big5-ETen
|
---|
55 | (zh_TW.Big5 or zh_TW.TW-Big5) be used instead.
|
---|
56 |
|
---|
57 | The Big5 is currently implemented as a pure subset of the
|
---|
58 | Big5-HKSCS codec, so more fine-tuning is needed to make it
|
---|
59 | identical to the standard Big5 mapping as determined by
|
---|
60 | Li18nux-Big5. See \l{http://www.autrijus.org/xml/} for the draft
|
---|
61 | Big5 (2002) standard.
|
---|
62 |
|
---|
63 | James Su \<[email protected]\> \<[email protected]\>
|
---|
64 | generated the Big5-HKSCS-to-Unicode tables with a very
|
---|
65 | space-efficient algorithm. He generously donated his code to glibc
|
---|
|
---|