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

[debian-users:32377] Bug#JP/1039: marked as done (xpbiff: too japanese specific)



Taketoshi Sano <sano@debian.or.jp>さんの Mon, 15 Apr 2002 04:56:33 +0900 (JST)付けの
message-id <20020414195633.F2F34B03BC@hp.debian.or.jp>
subject Bug#1039: fixed in xpbiff 1.27-10 
のメッセージにより以下のバグ報告は「処理済」とされました。

もし、間違ったバグ報告を「処理済」にしてしまった場合は
必要に応じてバグ報告を再発行し、そして/または、ただちに問題を修正してください。

(注: これは Debian JP Bug Tracking System が発行している
自動応答メッセージで、debian-users メイリングリストにも送られています。
あなたがシステム管理者で、このメッセージが何について書かれている
かよくわからないのでしたら、どこかに深刻なメールシステムの誤設定がある
ことを示しています。すぐに私まで連絡をいただけないでしょうか)
(NB: If you are a system administrator and have no idea what I'm
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

-- 
Debian JP Bug Tracking System / owner@bugs.debian.or.jp


Received: from hp.debian.or.jp (hp.debian.or.jp [211.123.26.4])
	by arashi.debian.or.jp (Postfix) with ESMTP id 47B5317B4EA
	for <1039-close@bugs.debian.or.jp>; Mon, 15 Apr 2002 04:56:35 +0900 (JST)
To: 1039-close@bugs.debian.or.jp
X-Katie: $Revision: 1.36 $
Subject: Bug#1039: fixed in xpbiff 1.27-10
Message-Id: <20020414195633.F2F34B03BC@hp.debian.or.jp>
Date: Mon, 15 Apr 2002 04:56:33 +0900 (JST)

We believe that the bug you reported is fixed in the latest version of
xpbiff, which has been installed in the Debian-JP FTP archive:

xpbiff_1.27-10.diff.gz
  to pool/main/x/xpbiff/xpbiff_1.27-10.diff.gz
xpbiff_1.27-10_i386.deb
  to pool/main/x/xpbiff/xpbiff_1.27-10_i386.deb
xpbiff_1.27-10.dsc
  to pool/main/x/xpbiff/xpbiff_1.27-10.dsc



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 1039@bugs.debian.or.jp,
and the maintainer will reopen the bug report if appropriate.

Debian-JP distribution maintenance software
pp.
Taketoshi Sano <sano@debian.or.jp> (supplier of updated xpbiff 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 ftpadm@debian.or.jp)


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

Format: 1.7
Date: Sun, 14 Apr 2002 23:46:30 +0900
Source: xpbiff
Binary: xpbiff
Architecture: source i386
Version: 1.27-10
Distribution: unstable
Urgency: low
Maintainer: Taketoshi Sano <sano@debian.or.jp>
Changed-By: Taketoshi Sano <sano@debian.org>
Description: 
 xpbiff     - animated mail monitor on X with popup notification
Closes: 1038 1039 1040 1485 1501
Changes: 
 xpbiff (1.27-10) unstable; urgency=low
 .
   * New Maintainer
   * Added Origin: and Bugs: (jp-policy: 00330)
   * Old fixes (Closes: #1501, #1485, #1040, #1039, #1038)
Files: 
 7b8db8adfb4bbbe3cb2d515fe7fe6f83 658 x11 optional xpbiff_1.27-10.dsc
 28fdee1a6949b53a829e26827eafa527 6963 x11 optional xpbiff_1.27-10.diff.gz
 33a2585d2f2d830d3c9b783792903b33 21616 x11 optional xpbiff_1.27-10_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE8uZju0LPz0K4xwAkRArtKAJ43dpWoNU22iyecyoDTuHCXZI9ErwCgtvCe
p4YzUvHBOenu0hlxelpmWbg=
=IHmz
-----END PGP SIGNATURE-----



Return-Path: <ukai@xxxxxxxxxxxxx>
Date: Thu, 07 Oct 1999 19:41:31 +0900
Message-ID: <14332.30939.188212.61791G@xxxxxxxxxxxxxxxxxxxx>
From: Fumitoshi UKAI <ukai@debian.or.jp>
To: submit@bugs.debian.or.jp
Subject: xpbiff: too japanese specific
User-Agent: Wanderlust/2.2.2 (You Could Be Mine) SEMI/1.13.6 (Komatsu) FLIM/1.13.2 (Kasanui) Emacs/20.3 (i386-debian-linux-gnu) MULE/4.0 (HANANOEN)
Organization: Debian JP Project
Sender: ukai@xxxxxxxxxxxxx
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-2022-JP

Package: xpbiff
Version: 1.27-5
Severity: wishlist

xpbiff.c では

  #ifdef XI18N
  #ifdef JCONVERT
      /* Use environment variable LANG as Locale */
	  /*    if ((locale_name = setlocale(LC_CTYPE, "")) != NULL) {
	  Locale_ent      *p;

	  jcode = UNKNOWN;
	  for (p = locale_list; p->name; p++) {
	      if (strcmp(p->name, locale_name) == 0) {
		  jcode = p->code;
		  break;
	      }
	  }
      }*/
      jcode=EUC;
      setlocale(LC_CTYPE, "");
  #else
      jcode=EUC;
      setlocale(LC_CTYPE, "");
  #endif
      XtSetLanguageProc(NULL, NULL, NULL);
  #endif

となっていますが、これだと locale がなんであろうと jcode が EUC になってしまい
常に jis2euc() されてしまうことになります。
他の encoding で問題があるのでは?
せめて ja* な時だけ jcode=EUC; にして、それ以外は UNKNOWN にしておくのが
よいかと思われます。

-- 
鵜飼文敏