[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#377355: marked as done (kbd-chooser: Please add Thai keysyms support)



Your message dated Tue, 22 Aug 2006 15:32:08 -0700
with message-id <E1GFen2-0001UZ-SE@spohr.debian.org>
and subject line Bug#377355: fixed in kbd-chooser 1.30
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: kbd-chooser
Severity: wishlist
Tags: patch

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


Please add Thai keysyms support so that Thai keyboard layout
is supported by the installer.

This patch is consistent with previous patches proposed for
console-tools and kbd, as well as Thai keyboard layout in
console-data.

- -- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16
Locale: LANG=th_TH.UTF-8, LC_CTYPE=th_TH.UTF-8 (charmap=UTF-8)

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (GNU/Linux)

iD8DBQFEr7STqgzR7tCLR/4RAoZQAKCZ2OHb9UMqXQtm3NA46kD7OcKj2QCcDHy6
VFSBIklFNlBrk7SXYW341xo=
=SOfj
-----END PGP SIGNATURE-----
Index: ksyms.c
===================================================================
--- ksyms.c	(revision 38725)
+++ ksyms.c	(working copy)
@@ -1150,6 +1150,10 @@
 #include "sami.syms.h"
 #endif
 
+#if defined(CHARSET_THAI)
+#include "thai.syms.h"
+#endif
+
 static sym iso_8859_15_syms[] = {
 	/* latin-1 with 8 changes */
 	{ 0x00a0, "" },
@@ -1646,6 +1650,9 @@
 #ifdef CHARSET_SAMI
     { "iso-8859-10",	latin6_syms, 160 },
 #endif
+#ifdef CHARSET_THAI
+    { "iso-8859-11",	iso_8859_11_syms, 160 },
+#endif
     { "iso-8859-15",	iso_8859_15_syms, 160 },
     { "mazovia",	mazovia_syms, 128 },
     { "cp-1250",	cp1250_syms, 128 },
Index: config.h
===================================================================
--- config.h	(revision 38725)
+++ config.h	(working copy)
@@ -41,6 +41,7 @@
 #define CHARSET_ISO_8859_8
 #define CHARSET_ISO_8859_9
 
+#define CHARSET_THAI
 
 // Sanity checks
 
Index: thai.syms.h
===================================================================
--- thai.syms.h	(revision 0)
+++ thai.syms.h	(revision 0)
@@ -0,0 +1,102 @@
+/* ISO-8859-11 (Thai) charmap
+ * Theppitak Karoonboonyanan <thep@linux.thai.net>
+ */
+
+char *iso_8859_11_syms[] = {
+    "nobreakspace",		/* AO  */
+    "thai_kokai",
+    "thai_khokhai",
+    "thai_khokhuat",
+    "thai_khokhwai",
+    "thai_khokhon",
+    "thai_khorakhang",
+    "thai_ngongu",
+    "thai_chochan",
+    "thai_choching",
+    "thai_chochang",
+    "thai_soso",
+    "thai_chochoe",
+    "thai_yoying",
+    "thai_dochada",
+    "thai_topatak",
+    "thai_thothan",		/* B0 */
+    "thai_thonangmontho",
+    "thai_thophuthao",
+    "thai_nonen",
+    "thai_dodek",
+    "thai_totao",
+    "thai_thothung",
+    "thai_thothahan",
+    "thai_thothong",
+    "thai_nonu",
+    "thai_bobaimai",
+    "thai_popla",
+    "thai_phophung",
+    "thai_fofa",
+    "thai_phophan",
+    "thai_fofan",
+    "thai_phosamphao",		/* C0 */
+    "thai_moma",
+    "thai_yoyak",
+    "thai_rorua",
+    "thai_ru",
+    "thai_loling",
+    "thai_lu",
+    "thai_wowaen",
+    "thai_sosala",
+    "thai_sorusi",
+    "thai_sosua",
+    "thai_hohip",
+    "thai_lochula",
+    "thai_oang",
+    "thai_honokhuk",
+    "thai_paiyannoi",
+    "thai_saraa",		/* D0 */
+    "thai_maihanakat",
+    "thai_saraaa",
+    "thai_saraam",
+    "thai_sarai",
+    "thai_saraii",
+    "thai_saraue",
+    "thai_sarauee",
+    "thai_sarau",
+    "thai_sarauu",
+    "thai_phinthu",
+    "",
+    "",
+    "",
+    "",
+    "thai_baht",
+    "thai_sarae",		/* E0 */
+    "thai_saraae",
+    "thai_sarao",
+    "thai_saraaimaimuan",
+    "thai_saraaimaimalai",
+    "thai_lakkhangyao",
+    "thai_maiyamok",
+    "thai_maitaikhu",
+    "thai_maiek",
+    "thai_maitho",
+    "thai_maitri",
+    "thai_maichattawa",
+    "thai_thanthakhat",
+    "thai_nikhahit",
+    "thai_yamakkan",
+    "thai_fongman",
+    "thai_leksun",		/* F0 */
+    "thai_leknung",
+    "thai_leksong",
+    "thai_leksam",
+    "thai_leksi",
+    "thai_lekha",
+    "thai_lekhok",
+    "thai_lekchet",
+    "thai_lekpaet",
+    "thai_lekkao",
+    "thai_angkhankhu",
+    "thai_khomut",
+    "",
+    "",
+    "",
+    ""
+};

--- End Message ---
--- Begin Message ---
Source: kbd-chooser
Source-Version: 1.30

We believe that the bug you reported is fixed in the latest version of
kbd-chooser, which is due to be installed in the Debian FTP archive:

kbd-chooser_1.30.dsc
  to pool/main/k/kbd-chooser/kbd-chooser_1.30.dsc
kbd-chooser_1.30.tar.gz
  to pool/main/k/kbd-chooser/kbd-chooser_1.30.tar.gz
kbd-chooser_1.30_i386.udeb
  to pool/main/k/kbd-chooser/kbd-chooser_1.30_i386.udeb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 377355@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Frans Pop <fjp@debian.org> (supplier of updated kbd-chooser package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Wed, 23 Aug 2006 00:04:47 +0200
Source: kbd-chooser
Binary: kbd-chooser
Architecture: source i386
Version: 1.30
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team <debian-boot@lists.debian.org>
Changed-By: Frans Pop <fjp@debian.org>
Description: 
 kbd-chooser - Detect a keyboard and select layout (udeb)
Closes: 339716 365308 377355 382697
Changes: 
 kbd-chooser (1.30) unstable; urgency=low
 .
   [ Colin Watson ]
   * Const-correctness in findfile_in_dir() and findfile().
   * Remove redeclaration of findfile() in loadkeys.y.
 .
   [ Theppitak Karoonboonyanan ]
   * Add Thai (tis-620) keysyms support. Closes: #377355.
 .
   [ Frans Pop ]
   * Add support for ppc64. Closes: #339716.
   * Execute S55kbd-chooser in debian-installer.d where it belongs so that
     UTF-8 support actually gets enabled. Closes: #365308.
   * Add Lintian override for standards-version.
 .
   [ Philip Hands ]
   * Add isinstallable: to delay configuration if auto-install/enabled=true.
 .
   [ Davide Viti ]
   * Enable "iso-8859-7" needed to install Greek keyboard. Closes: #382697.
   * Disable "mazovia", "koi8", "cp1250" keysyms which are currently unused;
     re-enabling can be done in config.h by uncommenting the right define(s).
 .
   [ Updated translations ]
   * Greek, Modern (1453-) (el.po) by quad-nrg.net
   * Estonian (et.po) by Siim Põder
   * Gujarati (gu.po) by Kartik Mistry
   * Icelandic (is.po) by David Steinn Geirsson
   * Panjabi (pa.po) by A S Alam
   * Traditional Chinese (zh_TW.po) by Tetralet
Files: 
 dce486d95836db20656940c26da7a9a3 904 debian-installer optional kbd-chooser_1.30.dsc
 756b022f27946b6f74178ab337547483 85717 debian-installer optional kbd-chooser_1.30.tar.gz
 956c797990be995ce5ea3d36b6e5da29 41812 debian-installer optional kbd-chooser_1.30_i386.udeb
Package-Type: udeb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFE64Rmgm/Kwh6ICoQRAoEbAJwLOihUD1HfmDjhn4Fqfc10dFCqowCgv8/d
7ApVTeJTUTgy2NFVCkOY7MI=
=0NN1
-----END PGP SIGNATURE-----


--- End Message ---

Reply to: