[Desktop-packages] [Bug 981376] Re: [Patch] memory leak in _wrap_pango_cairo_create_layout

2012-07-14 Thread Aron Xu
Hi Sebastien,

Could you have a look at this patch (if you can find some time)? We
really want to have this patch land in Debian and Ubuntu because there
are several new apps need this fix to avoid it eating up user's
memory...

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pygtk in Ubuntu.
https://bugs.launchpad.net/bugs/981376

Title:
  [Patch] memory leak in _wrap_pango_cairo_create_layout

Status in PyGTK: GTK+ for Python:
  New
Status in “pygtk” package in Ubuntu:
  Triaged
Status in “pygtk” package in Debian:
  Confirmed

Bug description:
  if didn't unref after pygobject_new.

  while(1):
a=pango_cairo.create_layout()

  may cause, memory run out: python doesn't GC this memory.

  The patch is:

  Index: pygtk-2.24.0/pangocairo.override
  ===
  --- pygtk-2.24.0.orig/pangocairo.override2012-04-14 01:40:59.568703232
  +0800
  +++ pygtk-2.24.0/pangocairo.override2012-04-14 01:41:05.792703324 +0800
  @@ -119,10 +119,15 @@
   _wrap_pango_cairo_create_layout(PyGObject *self)
   {
   PangoLayout *ret;
  +PyObject *py_ret;

   ret = pango_cairo_create_layout(PycairoContext_GET(self));
   /* pygobject_new handles NULL checking */
  -return pygobject_new((GObject *)ret);
  +py_ret = pygobject_new((GObject *) ret);
  +if (ret) {
  +g_object_unref(ret);
  +}
  +return py_ret;
   }

   static PyObject *

To manage notifications about this bug go to:
https://bugs.launchpad.net/pygtk/+bug/981376/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1050662] Re: libxml2-dev no longer installs *.la

2012-09-13 Thread Aron Xu
This is intended, in favor of the LA Removal release goal
http://wiki.debian.org/ReleaseGoals/LAFileRemoval

** Changed in: libxml2 (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libxml2 in Ubuntu.
https://bugs.launchpad.net/bugs/1050662

Title:
  libxml2-dev no longer installs *.la

Status in “libxml2” package in Ubuntu:
  Invalid

Bug description:
  The last version of libxml2 does not install the *.la file as part of
  the -dev package anymore.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxml2/+bug/1050662/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 981376] Re: [Patch] memory leak in _wrap_pango_cairo_create_layout

2012-06-05 Thread Aron Xu
** Tags added: patch

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to pygtk in Ubuntu.
https://bugs.launchpad.net/bugs/981376

Title:
  [Patch] memory leak in _wrap_pango_cairo_create_layout

Status in PyGTK: GTK+ for Python:
  New
Status in “pygtk” package in Ubuntu:
  Triaged
Status in “pygtk” package in Debian:
  Confirmed

Bug description:
  if didn't unref after pygobject_new.

  while(1):
a=pango_cairo.create_layout()

  may cause, memory run out: python doesn't GC this memory.

  The patch is:

  Index: pygtk-2.24.0/pangocairo.override
  ===
  --- pygtk-2.24.0.orig/pangocairo.override2012-04-14 01:40:59.568703232
  +0800
  +++ pygtk-2.24.0/pangocairo.override2012-04-14 01:41:05.792703324 +0800
  @@ -119,10 +119,15 @@
   _wrap_pango_cairo_create_layout(PyGObject *self)
   {
   PangoLayout *ret;
  +PyObject *py_ret;

   ret = pango_cairo_create_layout(PycairoContext_GET(self));
   /* pygobject_new handles NULL checking */
  -return pygobject_new((GObject *)ret);
  +py_ret = pygobject_new((GObject *) ret);
  +if (ret) {
  +g_object_unref(ret);
  +}
  +return py_ret;
   }

   static PyObject *

To manage notifications about this bug go to:
https://bugs.launchpad.net/pygtk/+bug/981376/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1067557] Re: zlib1g 1.2.7 and libxml2 2.8 too new for each other?

2012-10-17 Thread Aron Xu
Not a bug in libxml2, but the embeded copy of zlib in your proprietary
program is too low.

** Changed in: libxml2 (Ubuntu)
   Status: Confirmed = Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libxml2 in Ubuntu.
https://bugs.launchpad.net/bugs/1067557

Title:
  zlib1g 1.2.7 and libxml2 2.8 too new for each other?

Status in “libxml2” package in Ubuntu:
  Invalid

Bug description:
  After an upgrade to Ubuntu 12.10 (64 bit, from 12.04) I appear to have
  zlib1g:i386 version 1:1.2.7.dfsg-13 and libxml2:i386 version
  2.8.0+dfsg1-5ubuntu2. These appear to be the newest versions in the
  repositories.

  Running a third party proprietary program (Guitar Pro) that relies on
  libxml2:i386, I get the following error:

  /opt/GuitarPro6/launcher.sh
  ./GuitarPro: /opt/GuitarPro6/./libz.so.1: version `ZLIB_1.2.3.3' not found 
(required by /usr/lib/i386-linux-gnu/libxml2.so.2)

  I've read elsewhere [1] that zlib  1.2.5 breaks libxml2 
  2.7.6.dfsg-2, so I'm wondering whether perhaps zlib 1.2.7 might break
  libxml2 2.8 as well, but that this isn't reflected in the
  dependencies.

  Apologies if this is actually a bug with Guitar Pro. It's not even
  supported on Ubuntu  10.04 32bit (grumble grumble), so I'm playing
  with fire anyhow trying to get it to work. But it was working before
  with zlib1g:i386 (1:1.2.3.4.dfsg-3ubuntu4) and libxml2:i386
  (2.7.8.dfsg-5.1ubuntu4.1)!

  So I'd like to know if there's any suggestions as to what I can do
  about this, or if it's likely to be a bug.

  [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=589134

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxml2/+bug/1067557/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1067852] Re: libxml2-dev won't install, bad dependency

2012-10-18 Thread Aron Xu
In case if you meet such problem, it's better to run apt-get update
later and try again. It might be caused by the time frame between two
architectures' packages aren't being distributed at the same archive
sync, and the best solution is to wait for a while and try again.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libxml2 in Ubuntu.
https://bugs.launchpad.net/bugs/1067852

Title:
  libxml2-dev won't install, bad dependency

Status in “libxml2” package in Ubuntu:
  Invalid

Bug description:
  Running a basic `apt-get install libxml2-dev` on a brand new EC2
  instance running standard canonical ubuntu AMIs:

  $ sudo apt-get install libxml2-dev
  Reading package lists... Done
  Building dependency tree   
  Reading state information... Done
  Some packages could not be installed. This may mean that you have
  requested an impossible situation or if you are using the unstable
  distribution that some required packages have not yet been created
  or been moved out of Incoming.
  The following information may help to resolve the situation:

  The following packages have unmet dependencies:
   libxml2-dev : Depends: libxml2 (= 2.7.8.dfsg-5.1ubuntu4.1) but 
2.7.8.dfsg-5.1ubuntu4.2 is to be installed
  E: Unable to correct problems, you have held broken packages.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxml2/+bug/1067852/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1090754] Re: Make im-config list installed input methods

2012-12-15 Thread Aron Xu
** Bug watch added: Debian Bug tracker #694941
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694941

** Also affects: im-config (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694941
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to language-selector in Ubuntu.
https://bugs.launchpad.net/bugs/1090754

Title:
  Make im-config list installed input methods

Status in “im-config” package in Ubuntu:
  In Progress
Status in “language-selector” package in Ubuntu:
  In Progress
Status in “im-config” package in Debian:
  Unknown

Bug description:
  Currently language-selector includes temporary code to generate a list
  with installed input methods that im-config supports. It would be
  better if im-config provided an option to generate such a list.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/im-config/+bug/1090754/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1072797] Re: i386 version of package libxml2-dev 2.7.8.dfsg-5.1ubuntu4.2 failed to install on amd64 system with error './usr/bin/xml2-config' is different from the same file on

2012-10-29 Thread Aron Xu
*** This bug is a duplicate of bug 987502 ***
https://bugs.launchpad.net/bugs/987502

** This bug has been marked a duplicate of bug 987502
   libxml2-dev: /usr/bin/xml2-config isn't identical across all arch

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libxml2 in Ubuntu.
https://bugs.launchpad.net/bugs/1072797

Title:
  i386 version of package libxml2-dev 2.7.8.dfsg-5.1ubuntu4.2 failed to
  install on amd64 system with error './usr/bin/xml2-config' is
  different from the same file on the system

Status in “libxml2” package in Ubuntu:
  New

Bug description:
  I'm not 100% sure if this is a bug or something that shouldn't work at
  all. I was trying to compile 32-bit wine and got this error while I
  was trying to meet the dependencies.

  ProblemType: Package
  DistroRelease: Ubuntu 12.04
  Package: libxml2-dev 2.7.8.dfsg-5.1ubuntu4.2
  ProcVersionSignature: Ubuntu 3.2.0-32.51-generic 3.2.30
  Uname: Linux 3.2.0-32-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu14
  Architecture: amd64
  Date: Mon Oct 29 12:16:16 2012
  DuplicateSignature:
   Unpacking libxml2-dev:i386 (from 
.../libxml2-dev_2.7.8.dfsg-5.1ubuntu4.2_i386.deb) ...
   dpkg: error processing 
/var/cache/apt/archives/libxml2-dev_2.7.8.dfsg-5.1ubuntu4.2_i386.deb (--unpack):
'./usr/bin/xml2-config' is different from the same file on the system
  ErrorMessage: './usr/bin/xml2-config' is different from the same file on the 
system
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  SourcePackage: libxml2
  Title: package libxml2-dev 2.7.8.dfsg-5.1ubuntu4.2 failed to install/upgrade: 
'./usr/bin/xml2-config' is different from the same file on the system
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxml2/+bug/1072797/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1030590] Re: package libxml2-dev 2.7.8.dfsg-5.1ubuntu4.1 failed to install/upgrade: './usr/bin/xml2-config' is different from the same file on the system

2012-10-29 Thread Aron Xu
*** This bug is a duplicate of bug 987502 ***
https://bugs.launchpad.net/bugs/987502

** This bug has been marked a duplicate of bug 987502
   libxml2-dev: /usr/bin/xml2-config isn't identical across all arch

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libxml2 in Ubuntu.
https://bugs.launchpad.net/bugs/1030590

Title:
  package libxml2-dev 2.7.8.dfsg-5.1ubuntu4.1 failed to install/upgrade:
  './usr/bin/xml2-config' is different from the same file on the system

Status in “libxml2” package in Ubuntu:
  Confirmed

Bug description:
  Installing a lot of packages at the same time so don't know by which
  one it was required. This is a fresh Ubuntu 12.04 LTS 64-bit install.

  ProblemType: Package
  DistroRelease: Ubuntu 12.04
  Package: libxml2-dev 2.7.8.dfsg-5.1ubuntu4.1
  ProcVersionSignature: Ubuntu 3.2.0-27.43-generic 3.2.21
  Uname: Linux 3.2.0-27-generic x86_64
  ApportVersion: 2.0.1-0ubuntu11
  Architecture: amd64
  Date: Sun Jul 29 20:23:53 2012
  ErrorMessage: './usr/bin/xml2-config' is different from the same file on the 
system
  InstallationMedia: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20120425-15:28
  SourcePackage: libxml2
  Title: package libxml2-dev 2.7.8.dfsg-5.1ubuntu4.1 failed to install/upgrade: 
'./usr/bin/xml2-config' is different from the same file on the system
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxml2/+bug/1030590/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1058489] Re: package libxml2 2.7.8.dfsg-5.1ubuntu4.2 failed to install/upgrade: libxml2:amd64 2.7.8.dfsg-5.1ubuntu4.2 cannot be configured because libxml2

2012-10-29 Thread Aron Xu
Please wait a while and run apt-get update and this will be resolved.

** Changed in: libxml2 (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libxml2 in Ubuntu.
https://bugs.launchpad.net/bugs/1058489

Title:
  package libxml2 2.7.8.dfsg-5.1ubuntu4.2 failed to install/upgrade:
  libxml2:amd64 2.7.8.dfsg-5.1ubuntu4.2 cannot be configured because
  libxml2

Status in “libxml2” package in Ubuntu:
  Invalid

Bug description:
  Broken dependancies

  libxml2: Depends: libc6 (= 2.15) но 2.15-0ubuntu10 is installed
   Depends: zlib1g (= 1:1.2.3.3.dfsg) но 1:1.2.3.4.dfsg-3ubuntu4 is 
installed
  libxml2:i386: Depends: libc6 (= 2.15) но 2.15-0ubuntu10  is installed
Depends: zlib1g (= 1:1.2.3.3.dfsg) но 1:1.2.3.4.dfsg-3ubuntu4 
is installed

  ProblemType: Package
  DistroRelease: Ubuntu 12.04
  Package: libxml2 2.7.8.dfsg-5.1ubuntu4.2
  ProcVersionSignature: Ubuntu 3.2.0-31.50-generic 3.2.28
  Uname: Linux 3.2.0-31-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.0.1-0ubuntu13
  Architecture: amd64
  Date: Sat Sep 29 09:11:09 2012
  DuplicateSignature:
   Unpacking replacement libxml2 ...
   dpkg: error processing libxml2:i386 (--configure):
libxml2:i386 2.7.8.dfsg-5.1ubuntu4.1 cannot be configured because 
libxml2:amd64 is in a different version (2.7.8.dfsg-5.1ubuntu4.2)
  ErrorMessage: libxml2:amd64 2.7.8.dfsg-5.1ubuntu4.2 cannot be configured 
because libxml2
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  SourcePackage: libxml2
  Title: package libxml2 2.7.8.dfsg-5.1ubuntu4.2 failed to install/upgrade: 
libxml2:amd64 2.7.8.dfsg-5.1ubuntu4.2 cannot be configured because libxml2
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxml2/+bug/1058489/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1075146] Re: libxml2 2.9.0+dfsg1-3 FTBFS in raring

2012-11-06 Thread Aron Xu
Hi Daniel,

I don't have time to do the tests right now, but looking at the build
log it maybe related to DSO linking, which I'm not sure whether it has
been done correctly on Debian. If you have time could you test if it
fails when forcing DSO linking on Debian? There are quite a few upstream
build system changes in 2.9.0 and it could be newly introduced a bug as
well.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libxml2 in Ubuntu.
https://bugs.launchpad.net/bugs/1075146

Title:
  libxml2 2.9.0+dfsg1-3 FTBFS in raring

Status in “libxml2” package in Ubuntu:
  New

Bug description:
  Theoretically we could sync libxml2 from experimental for raring, but 
unfortunately it FTBFS with this error message:
  libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I./include -I../../include 
-D_FORTIFY_SOURCE=2 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -Wall -pedantic -W -Wformat -Wunused -Wimplicit 
-Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat -Wchar-subscripts 
-Wuninitialized -Wparentheses -Wshadow -Wpointer-arith -Wcast-align 
-Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes 
-Wnested-externs -Winline -Wredundant-decls -Wno-long-long -c ../../xzlib.c 
-fPIE -o xzlib.o /dev/null 21
  /bin/bash ./libtool  --tag=CC   --mode=link cc-g -O2 -fPIE 
-fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security 
-Wall -pedantic -W -Wformat -Wunused -Wimplicit -Wreturn-type -Wswitch 
-Wcomment -Wtrigraphs -Wformat -Wchar-subscripts -Wuninitialized -Wparentheses 
-Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return 
-Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline 
-Wredundant-decls -Wno-long-long   -Wl,--version-script=../../libxml2.syms 
-version-info 11:0:9  -Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro 
-Wl,-z,now -Wl,--as-needed -o libxml2.la -rpath /usr/lib/x86_64-linux-gnu 
SAX.lo entities.lo encoding.lo error.lo parserInternals.lo parser.lo tree.lo 
hash.lo list.lo xmlIO.lo xmlmemory.lo uri.lo valid.lo xlink.lo HTMLparser.lo 
HTMLtree.lo debugXML.lo xpath.lo xpointer.lo xinclude.lo nanohttp.lo nanoftp.lo 
 catalog.lo globals.lo threads.lo c14n.lo xmlstring.lo buf.lo xmlregexp.lo 
xmlschemas.lo xmlschemastypes.lo xmlunicode.lo  xmlreader.lo relaxng.lo dict.lo 
SAX2.lo xmlwriter.lo legacy.lo chvalid.lo pattern.lo xmlsave.lo xmlmodule.lo 
schematron.lo xzlib.lo-llzma  -lm  
  libtool: link: cc -shared  -fPIC -DPIC  .libs/SAX.o .libs/entities.o 
.libs/encoding.o .libs/error.o .libs/parserInternals.o .libs/parser.o 
.libs/tree.o .libs/hash.o .libs/list.o .libs/xmlIO.o .libs/xmlmemory.o 
.libs/uri.o .libs/valid.o .libs/xlink.o .libs/HTMLparser.o .libs/HTMLtree.o 
.libs/debugXML.o .libs/xpath.o .libs/xpointer.o .libs/xinclude.o 
.libs/nanohttp.o .libs/nanoftp.o .libs/catalog.o .libs/globals.o 
.libs/threads.o .libs/c14n.o .libs/xmlstring.o .libs/buf.o .libs/xmlregexp.o 
.libs/xmlschemas.o .libs/xmlschemastypes.o .libs/xmlunicode.o .libs/xmlreader.o 
.libs/relaxng.o .libs/dict.o .libs/SAX2.o .libs/xmlwriter.o .libs/legacy.o 
.libs/chvalid.o .libs/pattern.o .libs/xmlsave.o .libs/xmlmodule.o 
.libs/schematron.o .libs/xzlib.o   -llzma -lm  -O2 
-Wl,--version-script=../../libxml2.syms -Wl,-Bsymbolic-functions -Wl,-z 
-Wl,relro -Wl,-z -Wl,now -Wl,--as-needed   -Wl,-soname -Wl,libxml2.so.2 -o 
.libs/libxml2.so.2.9.0
  /usr/bin/ld: .libs/xpath.o: relocation R_X86_64_PC32 against undefined symbol 
`xmlXPathCmpNodesExt' can not be used when making a shared object; recompile 
with -fPIC
  /usr/bin/ld: final link failed: Bad value

  Full build log is available at http://paste.ubuntu.com/1334398/ - it
  succeeds in sid and with sid+binutls-gold.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxml2/+bug/1075146/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1076975] [NEW] Please port input method function to use im-config

2012-11-09 Thread Aron Xu
Public bug reported:

im-config is the successor of im-switch, featuring a much more elegant
implementation and better handling of many details when launching input
methods. Debian has moved to im-config for two years, and im-switch has
been abandoned for such a long time.  There aren't, and won't get any
update from Debian anymore, and we are preparing the removal of im-
switch from Debian.

Porting the function from im-switch to im-config won't be a pain, as im-
config itself provides similar command line for setting input methods.
All the work needed are about adapting current code to the new
situation. Please don't waste time on fixing im-switch anymore, the more
you fix it the more delta get generated, and the more it gets into a
badly maintained status, IMHO.

** Affects: language-selector (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to language-selector in Ubuntu.
https://bugs.launchpad.net/bugs/1076975

Title:
  Please port input method function to use im-config

Status in “language-selector” package in Ubuntu:
  New

Bug description:
  im-config is the successor of im-switch, featuring a much more elegant
  implementation and better handling of many details when launching
  input methods. Debian has moved to im-config for two years, and im-
  switch has been abandoned for such a long time.  There aren't, and
  won't get any update from Debian anymore, and we are preparing the
  removal of im-switch from Debian.

  Porting the function from im-switch to im-config won't be a pain, as
  im-config itself provides similar command line for setting input
  methods. All the work needed are about adapting current code to the
  new situation. Please don't waste time on fixing im-switch anymore,
  the more you fix it the more delta get generated, and the more it gets
  into a badly maintained status, IMHO.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/language-selector/+bug/1076975/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 875435] Re: iBus indicator does not show on the panel

2012-11-09 Thread Aron Xu
Please don't waste time on this issue anymore, if you want get more
stuff fixed in R and later, port language-selector to im-config. It
won't be too much more work than maintaining a crappy version of an
abandoned project.

** Changed in: im-switch (Ubuntu)
   Status: In Progress = Fix Released

** Changed in: im-switch (Ubuntu)
 Assignee: Ma Xiaojun (damage3025) = (unassigned)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to language-selector in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/875435

Title:
  iBus indicator does not show on the panel

Status in OEM Priority Project:
  In Progress
Status in OEM Priority Project precise series:
  In Progress
Status in Release Notes for Ubuntu:
  Invalid
Status in “ibus” package in Ubuntu:
  Invalid
Status in “im-switch” package in Ubuntu:
  Fix Released
Status in “language-selector” package in Ubuntu:
  Invalid
Status in “unity” package in Ubuntu:
  Invalid
Status in “ibus” source package in Oneiric:
  Invalid
Status in “im-switch” source package in Oneiric:
  Fix Committed
Status in “ibus” source package in Precise:
  Invalid
Status in “im-switch” source package in Precise:
  Fix Committed
Status in “ibus” source package in Quantal:
  Invalid
Status in “im-switch” source package in Quantal:
  Fix Committed

Bug description:
  IBus icon does not show at Unity panel in some environments, we are
  discovering the real culprit now.

  [Impact]
  Impacts all users of CJK languages or any other user depending on IBUS for 
character composition. This is a rather large user base and the prority of this 
bug has been updated as to reflect the impact on users.
  The missing indicator on session start disables users from having a visual 
cue of the current state of the ibus support for their session, as well as the 
current ibus input method in use, which may change during the course of a 
session. Furthermore, since the underlying issue appears to be related to 
ibus-daemon startup, this may render ibus input unusable until the daemon is 
restarted.

  [Release note for P]
  see https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/875435/comments/23

  [Development Fix]
  (TBD)

  [Stable Fix]
  (TBD)

  [Workaround]
  We have some workarounds, but they are not root fix. The root cause is not 
identified.

  A) gsettings approach:
  see comment 8, comment 23

  B) exec: ibus-daemon -rxd
  RESTARTing ibus-daemon can fix the one-time solution. If user met this 
problem, executing `ibus-daemon -rxd`. This command restart ibus-daemon, and 
fix for current login sessions. But that is not root fix, if user restart the 
session (or reboot system), problem are back-in.

  Notes: If user exec the Ibus icon on Dash, that is not functional.
  Because ibus-daemon are already running by /etc/X11/Xsession.d/80im-
  switch.

  B') .desktop approach (with user initiated ibus restart)
  Workaround is as discussed in this bug report, to apply the debdiff provided 
by Ikuya Awashiro. This change modifies the parameters passed to ibus-daemon's 
.desktop file, that used in a Unity Dash. That provide more better B) approach. 
  the session manager on a new session; and makes ibus-daemon replace any 
previously running ibus daemon for the user.

  [Test Case]
  1) Start a Unity session with a CJK language (Chinese, Japanese, Korean, 
Vietnamese) or any other language depending on ibus to compose characters.
  2) Verify that the ibus indicator is shown in the Unity panel, and that ibus 
input can be used.

  The indicator should be visible in all cases. Since this bug is akin
  to a race condition, it may need a few startups to trigger the bug.

  [Regression Potential]
  Minimal, this only affects the ibus daemon on session startup in the way that 
it gets spawned by the session manager: it will replace any other running ibus 
daemon at the time, though none should be running before ibus-daemon gets 
spawned regardless. A different (or the same) ibus daemon can still be started 
manually.
  Possible issues could include the ibus daemon failing to start altogether 
with the session, in which case the ibus input methods would be unavailable, 
and can be started manually by users (using a terminal).

  [Background]
  (guess by Ikuya AWASHIRO, Fumihito YOSHIDA)
  In Ubuntu/Unity environments, ibus-daemon are initiated by 
/etc/X11/Xsession.d/80im-switch scripts. That invoked at early state on system 
start-up, so too early invoking bring up the race between Unity-panel and 
indicator-ibus. If indicator-ibus are start-up at too fast phase, the 
Unity-panel are not started, that cause no icon running.

  --

  iBus still run but doesn't show off in the panel, in every way. The
  only thing to make it right is do ibus-deamon -rxd

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: ibus 1.3.99.20110419-1ubuntu3
  ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
  Uname: Linux 

[Desktop-packages] [Bug 1119560] Re: Newly installed tables don't show up

2013-02-27 Thread Aron Xu
This bug was fixed in the package ibus-table - 1.5.0.is.1.4.99.1-1

---
ibus-table (1.5.0.is.1.4.99.1-1) unstable; urgency=low

  * Revert to upstream version 1.4.99.20121112.1

 -- Aron Xu a...@debian.org  Fri, 15 Feb 2013 03:32:59 +0800

** Changed in: ibus-table (Ubuntu)
   Status: In Progress = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus-table in Ubuntu.
https://bugs.launchpad.net/bugs/1119560

Title:
  Newly installed tables don't show up

Status in IBus:
  Unknown
Status in “ibus-table” package in Ubuntu:
  Fix Released

Bug description:
  How to reproduce:
  1. Install ibus-table-cangjie3, ibus-table-quick-classic, 
ibus-table-wubi into system.
  2. Restart IBus by ibus-daemon -drx
  3. Check ibus-setup or IBus Preferences, there is no new input method 
appear.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: ibus-table 1.4.99.20121012-1
  ProcVersionSignature: Ubuntu 3.8.0-4.8-generic 3.8.0-rc6
  Uname: Linux 3.8.0-4-generic x86_64
  ApportVersion: 2.8-0ubuntu4
  Architecture: amd64
  Date: Sat Feb  9 00:20:12 2013
  InstallationDate: Installed on 2013-02-08 (0 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20130202)
  MarkForUpload: True
  PackageArchitecture: all
  SourcePackage: ibus-table
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ibus/+bug/1119560/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1119560] Re: Newly installed tables don't show up

2013-03-02 Thread Aron Xu
Both are uploaded, and they are tested to be working, :-)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus-table in Ubuntu.
https://bugs.launchpad.net/bugs/1119560

Title:
  Newly installed tables don't show up

Status in IBus:
  Unknown
Status in “ibus-table” package in Ubuntu:
  Fix Released

Bug description:
  How to reproduce:
  1. Install ibus-table-cangjie3, ibus-table-quick-classic, 
ibus-table-wubi into system.
  2. Restart IBus by ibus-daemon -drx
  3. Check ibus-setup or IBus Preferences, there is no new input method 
appear.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: ibus-table 1.4.99.20121012-1
  ProcVersionSignature: Ubuntu 3.8.0-4.8-generic 3.8.0-rc6
  Uname: Linux 3.8.0-4-generic x86_64
  ApportVersion: 2.8-0ubuntu4
  Architecture: amd64
  Date: Sat Feb  9 00:20:12 2013
  InstallationDate: Installed on 2013-02-08 (0 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20130202)
  MarkForUpload: True
  PackageArchitecture: all
  SourcePackage: ibus-table
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ibus/+bug/1119560/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 612499] Re: im-switch is not internationalised

2013-01-19 Thread Aron Xu
For raring, im-config will be default and language-selector has been
ported to use it, so I guess this bug can be closed now.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to im-switch in Ubuntu.
https://bugs.launchpad.net/bugs/612499

Title:
  im-switch is not internationalised

Status in Ubuntu Translations:
  Triaged
Status in “im-switch” package in Ubuntu:
  Confirmed
Status in “im-switch” package in Debian:
  Fix Released

Bug description:
  Binary package hint: im-switch

  The im-switch application is not internationalised, and thus is only
  useful for English speakers.

  Its main purpose being allowing non-English users to switch between
  input methods, it would just make sense for it to have natural
  language support.

  The application is currently a shell script that uses zenity to create
  a UI dialog. Here [1] is an example of how a zenity shell script can
  be internationalised.

  [1]
  https://code.launchpad.net/~dpm/ubuntu/lucid/xorg/bug-335678/+merge/17970
  /+preview-diff/+files/preview.diff

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/612499/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1101836] [NEW] Needs to keep hands off when removed but not purged

2013-01-19 Thread Aron Xu
Public bug reported:

In raring, we are replacing im-switch with im-config, but when im-switch
isn't purged but only removed, scripts in /etc/X11/Xsession.d/ will
still try to set related variables, so that im-config cannot work
correctly.

Fixing im-switch in Precise and Quantal is part of the solution to this
problem, something else must be done for those who haven't got the
chance to upgrade to the fixed version.

** Affects: im-switch (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to im-switch in Ubuntu.
https://bugs.launchpad.net/bugs/1101836

Title:
  Needs to keep hands off when removed but not purged

Status in “im-switch” package in Ubuntu:
  New

Bug description:
  In raring, we are replacing im-switch with im-config, but when im-
  switch isn't purged but only removed, scripts in /etc/X11/Xsession.d/
  will still try to set related variables, so that im-config cannot work
  correctly.

  Fixing im-switch in Precise and Quantal is part of the solution to
  this problem, something else must be done for those who haven't got
  the chance to upgrade to the fixed version.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/im-switch/+bug/1101836/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 964439] Re: Can't start im-switch in Lubuntu 12.04 beta

2013-01-19 Thread Aron Xu
im-switch in Ubuntu is only for initializing input methods by default,
so configure directly with it isn't recommended, the solution could be
use language-selector or install zenity by hand.

In Raring, im-switch is replaced by im-config, and you can use language-
selector or dialog to configure.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to im-switch in Ubuntu.
https://bugs.launchpad.net/bugs/964439

Title:
  Can't start im-switch in Lubuntu 12.04 beta

Status in “im-switch” package in Ubuntu:
  Confirmed

Bug description:
  I can't sart im-switch in Lubuntu 12.04 from main menu in Lubuntu
  12.04 beta. This is what I received when running it from terminal:

  lubuntu@lubuntu-VirtualBox:~$ im-switch
  /usr/bin/im-switch: 1: eval: zenity: not found
  /usr/bin/im-switch: 455: /usr/bin/im-switch: zenity: not found
  Please install following packages:
( ibus-gtk or ibus-qt4 or ibus-clutter ) .

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: im-switch 1.20ubuntu5
  ProcVersionSignature: Ubuntu 3.2.0-17.27-generic-pae 3.2.6
  Uname: Linux 3.2.0-17-generic-pae i686
  ApportVersion: 1.95-0ubuntu1
  Architecture: i386
  Date: Sun Mar 25 16:42:42 2012
  Dependencies:
   
  InstallationMedia: Lubuntu 12.04 Precise Pangolin - Beta i386 (20120301.1)
  PackageArchitecture: all
  SourcePackage: im-switch
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/im-switch/+bug/964439/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1059176] Re: Two IBus icons shown in the system tray when installing Ubuntu 12.10 daily build

2013-01-19 Thread Aron Xu
** Changed in: im-switch (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to im-switch in Ubuntu.
https://bugs.launchpad.net/bugs/1059176

Title:
  Two IBus icons shown in the system tray when installing Ubuntu 12.10
  daily build

Status in “im-switch” package in Ubuntu:
  Fix Released

Bug description:
  When running an Ubuntu 12.10 daily build, you can see two keyboard icons 
(related to IBus I think) at the top right of the screen.
  I don't understand why we see the same icon twice...
  (see screenshot)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/im-switch/+bug/1059176/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1101836] Re: Needs to keep hands off when removed but not purged

2013-01-21 Thread Aron Xu
It wasn't mine, I purge im-switch before installing im-config - actually
I've been using im-config on Ubuntu for more than a year. It was
reported by a user to me, and after examining his /etc/X11
configurations I found this was the cause. We need to have a solution
for those files that aren't automatically removed since they behave
badly when both packages are present.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to im-switch in Ubuntu.
https://bugs.launchpad.net/bugs/1101836

Title:
  Needs to keep hands off when removed but not purged

Status in “im-switch” package in Ubuntu:
  Incomplete

Bug description:
  In raring, we are replacing im-switch with im-config, but when im-
  switch isn't purged but only removed, scripts in /etc/X11/Xsession.d/
  will still try to set related variables, so that im-config cannot work
  correctly.

  Fixing im-switch in Precise and Quantal is part of the solution to
  this problem, something else must be done for those who haven't got
  the chance to upgrade to the fixed version.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/im-switch/+bug/1101836/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Desktop-packages] [Bug 1101836] Re: Needs to keep hands off when removed but not purged

2013-01-22 Thread Aron Xu
On Tue, Jan 22, 2013 at 9:30 PM, Osamu Aoki os...@debian.org wrote:
 Hi,

 On Tue, Jan 22, 2013 at 07:27:09AM -, Aron Xu wrote:
 It wasn't mine, I purge im-switch before installing im-config - actually
 I've been using im-config on Ubuntu for more than a year. It was
 reported by a user to me, and after examining his /etc/X11
 configurations I found this was the cause. We need to have a solution
 for those files that aren't automatically removed since they behave
 badly when both packages are present.

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1101836

 Title:
   Needs to keep hands off when removed but not purged

 Aron, can you forward this bug to upstream properly by reporting with
 full context.

 I think we need to deal with this issue on Debian too.

 Basically, I think these hook script should be deactivated if there is
 no package installed.  Let's think... policy complient solution.


I haven't examine the user's configurations in more details, it's the
reason why I haven't reported to you. I'll look into it ASAP and send
it to Debian BTS.


-- 
Regards,
Aron Xu

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to im-switch in Ubuntu.
https://bugs.launchpad.net/bugs/1101836

Title:
  Needs to keep hands off when removed but not purged

Status in “im-switch” package in Ubuntu:
  Incomplete

Bug description:
  In raring, we are replacing im-switch with im-config, but when im-
  switch isn't purged but only removed, scripts in /etc/X11/Xsession.d/
  will still try to set related variables, so that im-config cannot work
  correctly.

  Fixing im-switch in Precise and Quantal is part of the solution to
  this problem, something else must be done for those who haven't got
  the chance to upgrade to the fixed version.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/im-switch/+bug/1101836/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1119560] Re: Newly installed tables don't show up

2013-02-11 Thread Aron Xu
I'll do detailed testing and report back soon, thanks for the feedback.
The version requirement of IBus and friends' build systems aren't always
very reliable, this happened before but I'm not quite sure it is the
case in this issue.

** Changed in: ibus-table (Ubuntu)
   Importance: Undecided = Medium

** Changed in: ibus-table (Ubuntu)
 Assignee: (unassigned) = Aron Xu (happyaron)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus-table in Ubuntu.
https://bugs.launchpad.net/bugs/1119560

Title:
  Newly installed tables don't show up

Status in “ibus-table” package in Ubuntu:
  In Progress

Bug description:
  How to reproduce:
  1. Install ibus-table-cangjie3, ibus-table-quick-classic, 
ibus-table-wubi into system.
  2. Restart IBus by ibus-daemon -drx
  3. Check ibus-setup or IBus Preferences, there is no new input method 
appear.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: ibus-table 1.4.99.20121012-1
  ProcVersionSignature: Ubuntu 3.8.0-4.8-generic 3.8.0-rc6
  Uname: Linux 3.8.0-4-generic x86_64
  ApportVersion: 2.8-0ubuntu4
  Architecture: amd64
  Date: Sat Feb  9 00:20:12 2013
  InstallationDate: Installed on 2013-02-08 (0 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20130202)
  MarkForUpload: True
  PackageArchitecture: all
  SourcePackage: ibus-table
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus-table/+bug/1119560/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1119560] Re: Newly installed tables don't show up

2013-02-12 Thread Aron Xu
I'm installing VM to verify this issue, and a just FYI that we won't
move to ibus 1.5 in Raring, since the new ibus's quality is worrying. We
need to start to think about the best plan for next cycle, but it's a
bit off topic in this thread.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus-table in Ubuntu.
https://bugs.launchpad.net/bugs/1119560

Title:
  Newly installed tables don't show up

Status in “ibus-table” package in Ubuntu:
  In Progress

Bug description:
  How to reproduce:
  1. Install ibus-table-cangjie3, ibus-table-quick-classic, 
ibus-table-wubi into system.
  2. Restart IBus by ibus-daemon -drx
  3. Check ibus-setup or IBus Preferences, there is no new input method 
appear.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: ibus-table 1.4.99.20121012-1
  ProcVersionSignature: Ubuntu 3.8.0-4.8-generic 3.8.0-rc6
  Uname: Linux 3.8.0-4-generic x86_64
  ApportVersion: 2.8-0ubuntu4
  Architecture: amd64
  Date: Sat Feb  9 00:20:12 2013
  InstallationDate: Installed on 2013-02-08 (0 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20130202)
  MarkForUpload: True
  PackageArchitecture: all
  SourcePackage: ibus-table
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus-table/+bug/1119560/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1119560] Re: Newly installed tables don't show up

2013-02-12 Thread Aron Xu
** Bug watch added: IBus bugs #1590
   http://code.google.com/p/ibus/issues/detail?id=1590

** Also affects: ibus via
   http://code.google.com/p/ibus/issues/detail?id=1590
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus-table in Ubuntu.
https://bugs.launchpad.net/bugs/1119560

Title:
  Newly installed tables don't show up

Status in IBus:
  Unknown
Status in “ibus-table” package in Ubuntu:
  In Progress

Bug description:
  How to reproduce:
  1. Install ibus-table-cangjie3, ibus-table-quick-classic, 
ibus-table-wubi into system.
  2. Restart IBus by ibus-daemon -drx
  3. Check ibus-setup or IBus Preferences, there is no new input method 
appear.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: ibus-table 1.4.99.20121012-1
  ProcVersionSignature: Ubuntu 3.8.0-4.8-generic 3.8.0-rc6
  Uname: Linux 3.8.0-4-generic x86_64
  ApportVersion: 2.8-0ubuntu4
  Architecture: amd64
  Date: Sat Feb  9 00:20:12 2013
  InstallationDate: Installed on 2013-02-08 (0 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20130202)
  MarkForUpload: True
  PackageArchitecture: all
  SourcePackage: ibus-table
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ibus/+bug/1119560/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1119560] Re: Newly installed tables don't show up

2013-02-13 Thread Aron Xu
Upstream said 1.5.0 won't work with ibus 1.4.x, so we need to do the
revert.

@Ma, do you have other patches that want to be applied to this package
(1.4.99+)?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus-table in Ubuntu.
https://bugs.launchpad.net/bugs/1119560

Title:
  Newly installed tables don't show up

Status in IBus:
  Unknown
Status in “ibus-table” package in Ubuntu:
  In Progress

Bug description:
  How to reproduce:
  1. Install ibus-table-cangjie3, ibus-table-quick-classic, 
ibus-table-wubi into system.
  2. Restart IBus by ibus-daemon -drx
  3. Check ibus-setup or IBus Preferences, there is no new input method 
appear.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: ibus-table 1.4.99.20121012-1
  ProcVersionSignature: Ubuntu 3.8.0-4.8-generic 3.8.0-rc6
  Uname: Linux 3.8.0-4-generic x86_64
  ApportVersion: 2.8-0ubuntu4
  Architecture: amd64
  Date: Sat Feb  9 00:20:12 2013
  InstallationDate: Installed on 2013-02-08 (0 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20130202)
  MarkForUpload: True
  PackageArchitecture: all
  SourcePackage: ibus-table
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ibus/+bug/1119560/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 612499] Re: im-switch is not internationalised

2013-02-14 Thread Aron Xu
im-switch is already replaced by im-config in raring, marking this bug
as won't fix.

** Changed in: im-switch (Ubuntu)
   Status: Confirmed = Won't Fix

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to im-switch in Ubuntu.
https://bugs.launchpad.net/bugs/612499

Title:
  im-switch is not internationalised

Status in Ubuntu Translations:
  Won't Fix
Status in “im-switch” package in Ubuntu:
  Won't Fix
Status in “im-switch” package in Debian:
  Fix Released

Bug description:
  Binary package hint: im-switch

  The im-switch application is not internationalised, and thus is only
  useful for English speakers.

  Its main purpose being allowing non-English users to switch between
  input methods, it would just make sense for it to have natural
  language support.

  The application is currently a shell script that uses zenity to create
  a UI dialog. Here [1] is an example of how a zenity shell script can
  be internationalised.

  [1]
  https://code.launchpad.net/~dpm/ubuntu/lucid/xorg/bug-335678/+merge/17970
  /+preview-diff/+files/preview.diff

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/612499/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 612499] Re: im-switch is not internationalised

2013-02-14 Thread Aron Xu
** Changed in: ubuntu-translations
   Status: Triaged = Won't Fix

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to im-switch in Ubuntu.
https://bugs.launchpad.net/bugs/612499

Title:
  im-switch is not internationalised

Status in Ubuntu Translations:
  Won't Fix
Status in “im-switch” package in Ubuntu:
  Won't Fix
Status in “im-switch” package in Debian:
  Fix Released

Bug description:
  Binary package hint: im-switch

  The im-switch application is not internationalised, and thus is only
  useful for English speakers.

  Its main purpose being allowing non-English users to switch between
  input methods, it would just make sense for it to have natural
  language support.

  The application is currently a shell script that uses zenity to create
  a UI dialog. Here [1] is an example of how a zenity shell script can
  be internationalised.

  [1]
  https://code.launchpad.net/~dpm/ubuntu/lucid/xorg/bug-335678/+merge/17970
  /+preview-diff/+files/preview.diff

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/612499/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1126149] Re: Version in raring-proposed dependent on ibus 1.5

2013-02-15 Thread Aron Xu
This is known, we just need to rebuild that version of ibus-chewing
against ibus 1.4.0, but I'm not sure how to do that. It was caused by
the upload of ibus 1.5 in Sid.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus-chewing in Ubuntu.
https://bugs.launchpad.net/bugs/1126149

Title:
  Version in raring-proposed dependent on ibus 1.5

Status in “ibus-chewing” package in Ubuntu:
  New

Bug description:
  An attempt to install traditional Chinese on my Raring installation
  failed, and it took quite a while to figure out why.

  I have stated in Software Sources that updates also from raring-
  proposed shall be installed. Consequenty Ubuntu tried to install
  version 1.4.3-1 of ibus-chewing. That version is dependent on ibus
  1.5, and since a previous version of ibus is and will be included in
  Raring, ibus-chewing couldn't be installed. Together with the fact
  that ibus-chewing is one of the language support packages for
  traditional Chinese, the whole language installation failed.

  I think it would be advisable to move the latest versions of ibus-
  chewing from raring-proposed to a PPA.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus-chewing/+bug/1126149/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 875435] Re: iBus indicator does not show on the panel

2012-11-26 Thread Aron Xu
Canonical's China OEM version has been using Fcitx for several releases.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to language-selector in Ubuntu.
https://bugs.launchpad.net/bugs/875435

Title:
  iBus indicator does not show on the panel

Status in OEM Priority Project:
  Fix Released
Status in OEM Priority Project precise series:
  Fix Released
Status in Release Notes for Ubuntu:
  Invalid
Status in “ibus” package in Ubuntu:
  Fix Released
Status in “im-switch” package in Ubuntu:
  Fix Released
Status in “language-selector” package in Ubuntu:
  Invalid
Status in “unity” package in Ubuntu:
  Invalid
Status in “ibus” source package in Oneiric:
  Invalid
Status in “im-switch” source package in Oneiric:
  Fix Released
Status in “ibus” source package in Precise:
  Invalid
Status in “im-switch” source package in Precise:
  Fix Released
Status in “ibus” source package in Quantal:
  Invalid
Status in “im-switch” source package in Quantal:
  Fix Released

Bug description:
  IBus icon does not show at Unity panel in some environments, we are
  discovering the real culprit now.

  [Impact]
  Impacts all users of CJK languages or any other user depending on IBUS for 
character composition. This is a rather large user base and the prority of this 
bug has been updated as to reflect the impact on users.
  The missing indicator on session start disables users from having a visual 
cue of the current state of the ibus support for their session, as well as the 
current ibus input method in use, which may change during the course of a 
session. Furthermore, since the underlying issue appears to be related to 
ibus-daemon startup, this may render ibus input unusable until the daemon is 
restarted.

  [Release note for P]
  see https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/875435/comments/23

  [Development Fix]
  (TBD)

  [Stable Fix]
  (TBD)

  [Workaround]
  We have some workarounds, but they are not root fix. The root cause is not 
identified.

  A) gsettings approach:
  see comment 8, comment 23

  B) exec: ibus-daemon -rxd
  RESTARTing ibus-daemon can fix the one-time solution. If user met this 
problem, executing `ibus-daemon -rxd`. This command restart ibus-daemon, and 
fix for current login sessions. But that is not root fix, if user restart the 
session (or reboot system), problem are back-in.

  Notes: If user exec the Ibus icon on Dash, that is not functional.
  Because ibus-daemon are already running by /etc/X11/Xsession.d/80im-
  switch.

  B') .desktop approach (with user initiated ibus restart)
  Workaround is as discussed in this bug report, to apply the debdiff provided 
by Ikuya Awashiro. This change modifies the parameters passed to ibus-daemon's 
.desktop file, that used in a Unity Dash. That provide more better B) approach. 
  the session manager on a new session; and makes ibus-daemon replace any 
previously running ibus daemon for the user.

  [Test Case]
  1) Start a Unity session with a CJK language (Chinese, Japanese, Korean, 
Vietnamese) or any other language depending on ibus to compose characters.
  2) Verify that the ibus indicator is shown in the Unity panel, and that ibus 
input can be used.

  The indicator should be visible in all cases. Since this bug is akin
  to a race condition, it may need a few startups to trigger the bug.

  [Regression Potential]
  Minimal, this only affects the ibus daemon on session startup in the way that 
it gets spawned by the session manager: it will replace any other running ibus 
daemon at the time, though none should be running before ibus-daemon gets 
spawned regardless. A different (or the same) ibus daemon can still be started 
manually.
  Possible issues could include the ibus daemon failing to start altogether 
with the session, in which case the ibus input methods would be unavailable, 
and can be started manually by users (using a terminal).

  [Background]
  (guess by Ikuya AWASHIRO, Fumihito YOSHIDA)
  In Ubuntu/Unity environments, ibus-daemon are initiated by 
/etc/X11/Xsession.d/80im-switch scripts. That invoked at early state on system 
start-up, so too early invoking bring up the race between Unity-panel and 
indicator-ibus. If indicator-ibus are start-up at too fast phase, the 
Unity-panel are not started, that cause no icon running.

  --

  iBus still run but doesn't show off in the panel, in every way. The
  only thing to make it right is do ibus-deamon -rxd

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: ibus 1.3.99.20110419-1ubuntu3
  ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
  Uname: Linux 3.0.0-12-generic i686
  ApportVersion: 1.23-0ubuntu3
  Architecture: i386
  Date: Sun Oct 16 09:19:00 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  SourcePackage: ibus
  UpgradeStatus: Upgraded to oneiric on 2011-10-13 (2 days ago)

To manage notifications about this bug go to:

[Desktop-packages] [Bug 876622] Re: Deja-Dup not fully translated into Simplified Chinese

2011-10-20 Thread Aron Xu
** Changed in: ubuntu-translations
 Assignee: (unassigned) = Ubuntu Simplified Chinese Translators 
(ubuntu-l10n-zh-cn)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to deja-dup in Ubuntu.
https://bugs.launchpad.net/bugs/876622

Title:
  Deja-Dup not fully translated into Simplified Chinese

Status in Ubuntu Translations:
  New
Status in “deja-dup” package in Ubuntu:
  Invalid

Bug description:
  Version: deja-dup 20.0-0ubuntu3

  Description:  Deja-dup is not fully translated into Simplified
  Chinese.  Many of the main buttons are still in English (see attached
  photo)

  Steps to reproduce:
  1) Install Ubuntu 11.10 using Simplified Chinese as the default language.
  2) Start up deja-dup

  Actual Results:
  Deja Dup is not fully translated into Chinese...see attached photos.  There 
are many parts that are translated, but the main 2 buttons to do backups and 
restores are still in English.

  Expected results:
  More translations need to be done on deja-dup.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/876622/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 876622] Re: Deja-Dup not fully translated into Simplified Chinese

2011-11-21 Thread Aron Xu
** Changed in: ubuntu-translations
   Status: Triaged = Fix Committed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to deja-dup in Ubuntu.
https://bugs.launchpad.net/bugs/876622

Title:
  Deja-Dup not fully translated into Simplified Chinese

Status in Déjà Dup Backup Tool:
  Invalid
Status in OEM Priority Project:
  New
Status in OEM Priority Project oneiric series:
  New
Status in Ubuntu Translations:
  Fix Committed
Status in “deja-dup” package in Ubuntu:
  Confirmed

Bug description:
  Version: deja-dup 20.0-0ubuntu3

  Description:  Deja-dup is not fully translated into Simplified
  Chinese.  Many of the main buttons are still in English (see attached
  photo)

  Steps to reproduce:
  1) Install Ubuntu 11.10 using Simplified Chinese as the default language.
  2) Start up deja-dup

  Actual Results:
  Deja Dup is not fully translated into Chinese...see attached photos.  There 
are many parts that are translated, but the main 2 buttons to do backups and 
restores are still in English.

  Expected results:
  More translations need to be done on deja-dup.

To manage notifications about this bug go to:
https://bugs.launchpad.net/deja-dup/+bug/876622/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Desktop-packages] [Ubuntu-translations-coordinators] [Bug 876622] Re: Deja-Dup not fully translated into Simplified Chinese

2011-12-04 Thread Aron Xu
On Fri, Dec 2, 2011 at 16:58, David Planella david.plane...@ubuntu.com wrote:
 [...]
 Could someone from the Simplified Chinese team or a Simplified Chinese
 speaker at OEM:

 * Test the language packs currently in the oneiric-proposed repository
 following the simple instructions below. Remember to add the language to
 the table.

 https://wiki.ubuntu.com/Translations/LanguagePackUpdatesQA

 Once that is done, we can release the language pack to oneiric-updates
 for all users, which will get this particular string and other
 translations done since the last language pack update.

 Thanks.


Finally I find some time to test the language packs. It looks fine. I
have signed that page so we can push the update to -updates.

While testing this update, I found onboard had an upstream release
bump via SRU, so many of the translations were lost. We should plan to
publish another update with new translations imported to language
packs.


--
Regards,
Aron Xu

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to deja-dup in Ubuntu.
https://bugs.launchpad.net/bugs/876622

Title:
  Deja-Dup not fully translated into Simplified Chinese

Status in Déjà Dup Backup Tool:
  Invalid
Status in OEM Priority Project:
  New
Status in OEM Priority Project oneiric series:
  New
Status in Ubuntu Translations:
  Fix Committed
Status in “deja-dup” package in Ubuntu:
  Confirmed

Bug description:
  Version: deja-dup 20.0-0ubuntu3

  Description:  Deja-dup is not fully translated into Simplified
  Chinese.  Many of the main buttons are still in English (see attached
  photo)

  Steps to reproduce:
  1) Install Ubuntu 11.10 using Simplified Chinese as the default language.
  2) Start up deja-dup

  Actual Results:
  Deja Dup is not fully translated into Chinese...see attached photos.  There 
are many parts that are translated, but the main 2 buttons to do backups and 
restores are still in English.

  Expected results:
  More translations need to be done on deja-dup.

To manage notifications about this bug go to:
https://bugs.launchpad.net/deja-dup/+bug/876622/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 876622] Re: Deja-Dup not fully translated into Simplified Chinese

2011-12-13 Thread Aron Xu
Hello Kevin,

Please don't assign the oem task to Ubuntu Simplified Chinese Translators, 
reasons:
1) You should read the full conversation of this bug before doing any 
assignment.
2) (If you have read everything, then you will find) The bug has been fixed on 
translator's part, so this assignment is not appropriate.
3) OEM is not a very high priority item for the community contributors, and 
there is already a ubuntu-translations task for the team which we have already 
responded and acted.
4) Please don't flood the team members' mailboxes by simply clicking on the web 
interface because every of your action will result into an email sent to all 
members of the team. 

Therefore I'm removing the assignment.

Thanks for your cooperation.

** Changed in: oem-priority
 Assignee: Ubuntu Simplified Chinese Translators (ubuntu-l10n-zh-cn) = 
(unassigned)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to deja-dup in Ubuntu.
https://bugs.launchpad.net/bugs/876622

Title:
  Deja-Dup not fully translated into Simplified Chinese

Status in Déjà Dup Backup Tool:
  Invalid
Status in OEM Priority Project:
  In Progress
Status in OEM Priority Project oneiric series:
  New
Status in Ubuntu Translations:
  Fix Released
Status in “deja-dup” package in Ubuntu:
  Confirmed

Bug description:
  Version: deja-dup 20.0-0ubuntu3

  Description:  Deja-dup is not fully translated into Simplified
  Chinese.  Many of the main buttons are still in English (see attached
  photo)

  Steps to reproduce:
  1) Install Ubuntu 11.10 using Simplified Chinese as the default language.
  2) Start up deja-dup

  Actual Results:
  Deja Dup is not fully translated into Chinese...see attached photos.  There 
are many parts that are translated, but the main 2 buttons to do backups and 
restores are still in English.

  Expected results:
  More translations need to be done on deja-dup.

To manage notifications about this bug go to:
https://bugs.launchpad.net/deja-dup/+bug/876622/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 875435] Re: iBus indicator does not show on the panel

2012-10-26 Thread Aron Xu
** Also affects: language-selector (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to language-selector in Ubuntu.
https://bugs.launchpad.net/bugs/875435

Title:
  iBus indicator does not show on the panel

Status in OEM Priority Project:
  In Progress
Status in OEM Priority Project precise series:
  In Progress
Status in Release Notes for Ubuntu:
  Invalid
Status in “ibus” package in Ubuntu:
  Confirmed
Status in “im-switch” package in Ubuntu:
  In Progress
Status in “language-selector” package in Ubuntu:
  New
Status in “unity” package in Ubuntu:
  New
Status in “ibus” source package in Oneiric:
  Triaged
Status in “im-switch” source package in Oneiric:
  Confirmed
Status in “language-selector” source package in Oneiric:
  New
Status in “unity” source package in Oneiric:
  New
Status in “ibus” source package in Precise:
  Confirmed
Status in “im-switch” source package in Precise:
  In Progress
Status in “language-selector” source package in Precise:
  New
Status in “unity” source package in Precise:
  New
Status in “ibus” source package in Quantal:
  Confirmed
Status in “im-switch” source package in Quantal:
  In Progress
Status in “language-selector” source package in Quantal:
  New
Status in “unity” source package in Quantal:
  New

Bug description:
  IBus icon does not show at Unity panel in some environments, we are
  discovering the real culprit now.

  [Impact]
  Impacts all users of CJK languages or any other user depending on IBUS for 
character composition. This is a rather large user base and the prority of this 
bug has been updated as to reflect the impact on users.
  The missing indicator on session start disables users from having a visual 
cue of the current state of the ibus support for their session, as well as the 
current ibus input method in use, which may change during the course of a 
session. Furthermore, since the underlying issue appears to be related to 
ibus-daemon startup, this may render ibus input unusable until the daemon is 
restarted.

  [Release note for P]
  see https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/875435/comments/23

  [Development Fix]
  (TBD)

  [Stable Fix]
  (TBD)

  [Workaround]
  We have some workarounds, but they are not root fix. The root cause is not 
identified.

  A) gsettings approach:
  see comment 8, comment 23

  B) exec: ibus-daemon -rxd
  RESTARTing ibus-daemon can fix the one-time solution. If user met this 
problem, executing `ibus-daemon -rxd`. This command restart ibus-daemon, and 
fix for current login sessions. But that is not root fix, if user restart the 
session (or reboot system), problem are back-in.

  Notes: If user exec the Ibus icon on Dash, that is not functional.
  Because ibus-daemon are already running by /etc/X11/Xsession.d/80im-
  switch.

  B') .desktop approach (with user initiated ibus restart)
  Workaround is as discussed in this bug report, to apply the debdiff provided 
by Ikuya Awashiro. This change modifies the parameters passed to ibus-daemon's 
.desktop file, that used in a Unity Dash. That provide more better B) approach. 
  the session manager on a new session; and makes ibus-daemon replace any 
previously running ibus daemon for the user.

  [Test Case]
  1) Start a Unity session with a CJK language (Chinese, Japanese, Korean, 
Vietnamese) or any other language depending on ibus to compose characters.
  2) Verify that the ibus indicator is shown in the Unity panel, and that ibus 
input can be used.

  The indicator should be visible in all cases. Since this bug is akin
  to a race condition, it may need a few startups to trigger the bug.

  [Regression Potential]
  Minimal, this only affects the ibus daemon on session startup in the way that 
it gets spawned by the session manager: it will replace any other running ibus 
daemon at the time, though none should be running before ibus-daemon gets 
spawned regardless. A different (or the same) ibus daemon can still be started 
manually.
  Possible issues could include the ibus daemon failing to start altogether 
with the session, in which case the ibus input methods would be unavailable, 
and can be started manually by users (using a terminal).

  [Background]
  (guess by Ikuya AWASHIRO, Fumihito YOSHIDA)
  In Ubuntu/Unity environments, ibus-daemon are initiated by 
/etc/X11/Xsession.d/80im-switch scripts. That invoked at early state on system 
start-up, so too early invoking bring up the race between Unity-panel and 
indicator-ibus. If indicator-ibus are start-up at too fast phase, the 
Unity-panel are not started, that cause no icon running.

  --

  iBus still run but doesn't show off in the panel, in every way. The
  only thing to make it right is do ibus-deamon -rxd

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: ibus 1.3.99.20110419-1ubuntu3
  ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
  Uname: Linux 

[Desktop-packages] [Bug 875435] Re: iBus indicator does not show on the panel

2012-10-27 Thread Aron Xu
Hi,

With my Debian pkg-ime hat on, I would like to say that sleep for
several seconds at the beginning of /etc/X11/Xsession.d/80im-switch is a
good idea for SRU. I'm not sure whether 10s will be too long for some
users especially who have SSD as root filesystem, and 5 or 6 seconds
would work well for most situations in my experience.

Porting im-config to im-switch is meaningless, as im-config is intended
to replace the latter from the first day it exists, and they are written
and maintained by the same people. Having a minimal workaround landed on
stable release and switch to im-config for R is the best thing to do.
im-switch is not supported by upstream for years and is planned to be
removed from Debian after wheezy.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to language-selector in Ubuntu.
https://bugs.launchpad.net/bugs/875435

Title:
  iBus indicator does not show on the panel

Status in OEM Priority Project:
  In Progress
Status in OEM Priority Project precise series:
  In Progress
Status in Release Notes for Ubuntu:
  Invalid
Status in “ibus” package in Ubuntu:
  Confirmed
Status in “im-switch” package in Ubuntu:
  In Progress
Status in “language-selector” package in Ubuntu:
  New
Status in “unity” package in Ubuntu:
  New
Status in “ibus” source package in Oneiric:
  Triaged
Status in “im-switch” source package in Oneiric:
  Confirmed
Status in “language-selector” source package in Oneiric:
  New
Status in “unity” source package in Oneiric:
  New
Status in “ibus” source package in Precise:
  Confirmed
Status in “im-switch” source package in Precise:
  In Progress
Status in “language-selector” source package in Precise:
  New
Status in “unity” source package in Precise:
  New
Status in “ibus” source package in Quantal:
  Confirmed
Status in “im-switch” source package in Quantal:
  In Progress
Status in “language-selector” source package in Quantal:
  New
Status in “unity” source package in Quantal:
  New

Bug description:
  IBus icon does not show at Unity panel in some environments, we are
  discovering the real culprit now.

  [Impact]
  Impacts all users of CJK languages or any other user depending on IBUS for 
character composition. This is a rather large user base and the prority of this 
bug has been updated as to reflect the impact on users.
  The missing indicator on session start disables users from having a visual 
cue of the current state of the ibus support for their session, as well as the 
current ibus input method in use, which may change during the course of a 
session. Furthermore, since the underlying issue appears to be related to 
ibus-daemon startup, this may render ibus input unusable until the daemon is 
restarted.

  [Release note for P]
  see https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/875435/comments/23

  [Development Fix]
  (TBD)

  [Stable Fix]
  (TBD)

  [Workaround]
  We have some workarounds, but they are not root fix. The root cause is not 
identified.

  A) gsettings approach:
  see comment 8, comment 23

  B) exec: ibus-daemon -rxd
  RESTARTing ibus-daemon can fix the one-time solution. If user met this 
problem, executing `ibus-daemon -rxd`. This command restart ibus-daemon, and 
fix for current login sessions. But that is not root fix, if user restart the 
session (or reboot system), problem are back-in.

  Notes: If user exec the Ibus icon on Dash, that is not functional.
  Because ibus-daemon are already running by /etc/X11/Xsession.d/80im-
  switch.

  B') .desktop approach (with user initiated ibus restart)
  Workaround is as discussed in this bug report, to apply the debdiff provided 
by Ikuya Awashiro. This change modifies the parameters passed to ibus-daemon's 
.desktop file, that used in a Unity Dash. That provide more better B) approach. 
  the session manager on a new session; and makes ibus-daemon replace any 
previously running ibus daemon for the user.

  [Test Case]
  1) Start a Unity session with a CJK language (Chinese, Japanese, Korean, 
Vietnamese) or any other language depending on ibus to compose characters.
  2) Verify that the ibus indicator is shown in the Unity panel, and that ibus 
input can be used.

  The indicator should be visible in all cases. Since this bug is akin
  to a race condition, it may need a few startups to trigger the bug.

  [Regression Potential]
  Minimal, this only affects the ibus daemon on session startup in the way that 
it gets spawned by the session manager: it will replace any other running ibus 
daemon at the time, though none should be running before ibus-daemon gets 
spawned regardless. A different (or the same) ibus daemon can still be started 
manually.
  Possible issues could include the ibus daemon failing to start altogether 
with the session, in which case the ibus input methods would be unavailable, 
and can be started manually by users (using a terminal).

  [Background]
  (guess by Ikuya AWASHIRO, Fumihito YOSHIDA)
  In 

[Desktop-packages] [Bug 875435] Re: iBus indicator does not show on the panel

2012-10-27 Thread Aron Xu
Avoid possible regression is much more important for SRU than fixing a
certain bug, especially when it's not security related. I know your
intention is good, but it's not the way a distribution maker would chase
in a stable release.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to language-selector in Ubuntu.
https://bugs.launchpad.net/bugs/875435

Title:
  iBus indicator does not show on the panel

Status in OEM Priority Project:
  In Progress
Status in OEM Priority Project precise series:
  In Progress
Status in Release Notes for Ubuntu:
  Invalid
Status in “ibus” package in Ubuntu:
  Confirmed
Status in “im-switch” package in Ubuntu:
  In Progress
Status in “language-selector” package in Ubuntu:
  New
Status in “unity” package in Ubuntu:
  New
Status in “ibus” source package in Oneiric:
  Triaged
Status in “im-switch” source package in Oneiric:
  Confirmed
Status in “language-selector” source package in Oneiric:
  New
Status in “unity” source package in Oneiric:
  New
Status in “ibus” source package in Precise:
  Confirmed
Status in “im-switch” source package in Precise:
  In Progress
Status in “language-selector” source package in Precise:
  New
Status in “unity” source package in Precise:
  New
Status in “ibus” source package in Quantal:
  Confirmed
Status in “im-switch” source package in Quantal:
  In Progress
Status in “language-selector” source package in Quantal:
  New
Status in “unity” source package in Quantal:
  New

Bug description:
  IBus icon does not show at Unity panel in some environments, we are
  discovering the real culprit now.

  [Impact]
  Impacts all users of CJK languages or any other user depending on IBUS for 
character composition. This is a rather large user base and the prority of this 
bug has been updated as to reflect the impact on users.
  The missing indicator on session start disables users from having a visual 
cue of the current state of the ibus support for their session, as well as the 
current ibus input method in use, which may change during the course of a 
session. Furthermore, since the underlying issue appears to be related to 
ibus-daemon startup, this may render ibus input unusable until the daemon is 
restarted.

  [Release note for P]
  see https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/875435/comments/23

  [Development Fix]
  (TBD)

  [Stable Fix]
  (TBD)

  [Workaround]
  We have some workarounds, but they are not root fix. The root cause is not 
identified.

  A) gsettings approach:
  see comment 8, comment 23

  B) exec: ibus-daemon -rxd
  RESTARTing ibus-daemon can fix the one-time solution. If user met this 
problem, executing `ibus-daemon -rxd`. This command restart ibus-daemon, and 
fix for current login sessions. But that is not root fix, if user restart the 
session (or reboot system), problem are back-in.

  Notes: If user exec the Ibus icon on Dash, that is not functional.
  Because ibus-daemon are already running by /etc/X11/Xsession.d/80im-
  switch.

  B') .desktop approach (with user initiated ibus restart)
  Workaround is as discussed in this bug report, to apply the debdiff provided 
by Ikuya Awashiro. This change modifies the parameters passed to ibus-daemon's 
.desktop file, that used in a Unity Dash. That provide more better B) approach. 
  the session manager on a new session; and makes ibus-daemon replace any 
previously running ibus daemon for the user.

  [Test Case]
  1) Start a Unity session with a CJK language (Chinese, Japanese, Korean, 
Vietnamese) or any other language depending on ibus to compose characters.
  2) Verify that the ibus indicator is shown in the Unity panel, and that ibus 
input can be used.

  The indicator should be visible in all cases. Since this bug is akin
  to a race condition, it may need a few startups to trigger the bug.

  [Regression Potential]
  Minimal, this only affects the ibus daemon on session startup in the way that 
it gets spawned by the session manager: it will replace any other running ibus 
daemon at the time, though none should be running before ibus-daemon gets 
spawned regardless. A different (or the same) ibus daemon can still be started 
manually.
  Possible issues could include the ibus daemon failing to start altogether 
with the session, in which case the ibus input methods would be unavailable, 
and can be started manually by users (using a terminal).

  [Background]
  (guess by Ikuya AWASHIRO, Fumihito YOSHIDA)
  In Ubuntu/Unity environments, ibus-daemon are initiated by 
/etc/X11/Xsession.d/80im-switch scripts. That invoked at early state on system 
start-up, so too early invoking bring up the race between Unity-panel and 
indicator-ibus. If indicator-ibus are start-up at too fast phase, the 
Unity-panel are not started, that cause no icon running.

  --

  iBus still run but doesn't show off in the panel, in every way. The
  only thing to make it right is do ibus-deamon -rxd

  ProblemType: Bug
  

[Desktop-packages] [Bug 875435] Re: iBus indicator does not show on the panel

2012-10-27 Thread Aron Xu
** Changed in: ibus (Ubuntu)
   Status: Confirmed = Invalid

** Changed in: ibus (Ubuntu Oneiric)
   Status: Triaged = Invalid

** Changed in: ibus (Ubuntu Precise)
   Status: Confirmed = Invalid

** Changed in: ibus (Ubuntu Quantal)
   Status: Confirmed = Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to language-selector in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/875435

Title:
  iBus indicator does not show on the panel

Status in OEM Priority Project:
  In Progress
Status in OEM Priority Project precise series:
  In Progress
Status in Release Notes for Ubuntu:
  Invalid
Status in “ibus” package in Ubuntu:
  Invalid
Status in “im-switch” package in Ubuntu:
  In Progress
Status in “language-selector” package in Ubuntu:
  New
Status in “unity” package in Ubuntu:
  New
Status in “ibus” source package in Oneiric:
  Invalid
Status in “im-switch” source package in Oneiric:
  Confirmed
Status in “language-selector” source package in Oneiric:
  New
Status in “unity” source package in Oneiric:
  New
Status in “ibus” source package in Precise:
  Invalid
Status in “im-switch” source package in Precise:
  In Progress
Status in “language-selector” source package in Precise:
  New
Status in “unity” source package in Precise:
  New
Status in “ibus” source package in Quantal:
  Invalid
Status in “im-switch” source package in Quantal:
  In Progress
Status in “language-selector” source package in Quantal:
  New
Status in “unity” source package in Quantal:
  New

Bug description:
  IBus icon does not show at Unity panel in some environments, we are
  discovering the real culprit now.

  [Impact]
  Impacts all users of CJK languages or any other user depending on IBUS for 
character composition. This is a rather large user base and the prority of this 
bug has been updated as to reflect the impact on users.
  The missing indicator on session start disables users from having a visual 
cue of the current state of the ibus support for their session, as well as the 
current ibus input method in use, which may change during the course of a 
session. Furthermore, since the underlying issue appears to be related to 
ibus-daemon startup, this may render ibus input unusable until the daemon is 
restarted.

  [Release note for P]
  see https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/875435/comments/23

  [Development Fix]
  (TBD)

  [Stable Fix]
  (TBD)

  [Workaround]
  We have some workarounds, but they are not root fix. The root cause is not 
identified.

  A) gsettings approach:
  see comment 8, comment 23

  B) exec: ibus-daemon -rxd
  RESTARTing ibus-daemon can fix the one-time solution. If user met this 
problem, executing `ibus-daemon -rxd`. This command restart ibus-daemon, and 
fix for current login sessions. But that is not root fix, if user restart the 
session (or reboot system), problem are back-in.

  Notes: If user exec the Ibus icon on Dash, that is not functional.
  Because ibus-daemon are already running by /etc/X11/Xsession.d/80im-
  switch.

  B') .desktop approach (with user initiated ibus restart)
  Workaround is as discussed in this bug report, to apply the debdiff provided 
by Ikuya Awashiro. This change modifies the parameters passed to ibus-daemon's 
.desktop file, that used in a Unity Dash. That provide more better B) approach. 
  the session manager on a new session; and makes ibus-daemon replace any 
previously running ibus daemon for the user.

  [Test Case]
  1) Start a Unity session with a CJK language (Chinese, Japanese, Korean, 
Vietnamese) or any other language depending on ibus to compose characters.
  2) Verify that the ibus indicator is shown in the Unity panel, and that ibus 
input can be used.

  The indicator should be visible in all cases. Since this bug is akin
  to a race condition, it may need a few startups to trigger the bug.

  [Regression Potential]
  Minimal, this only affects the ibus daemon on session startup in the way that 
it gets spawned by the session manager: it will replace any other running ibus 
daemon at the time, though none should be running before ibus-daemon gets 
spawned regardless. A different (or the same) ibus daemon can still be started 
manually.
  Possible issues could include the ibus daemon failing to start altogether 
with the session, in which case the ibus input methods would be unavailable, 
and can be started manually by users (using a terminal).

  [Background]
  (guess by Ikuya AWASHIRO, Fumihito YOSHIDA)
  In Ubuntu/Unity environments, ibus-daemon are initiated by 
/etc/X11/Xsession.d/80im-switch scripts. That invoked at early state on system 
start-up, so too early invoking bring up the race between Unity-panel and 
indicator-ibus. If indicator-ibus are start-up at too fast phase, the 
Unity-panel are not started, that cause no icon running.

  --

  iBus still run but doesn't show off in the panel, in every way. The
  only 

[Desktop-packages] [Bug 875435] Re: iBus indicator does not show on the panel

2012-10-27 Thread Aron Xu
** No longer affects: language-selector (Ubuntu Oneiric)

** No longer affects: language-selector (Ubuntu Precise)

** No longer affects: language-selector (Ubuntu Quantal)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to language-selector in Ubuntu.
https://bugs.launchpad.net/bugs/875435

Title:
  iBus indicator does not show on the panel

Status in OEM Priority Project:
  In Progress
Status in OEM Priority Project precise series:
  In Progress
Status in Release Notes for Ubuntu:
  Invalid
Status in “ibus” package in Ubuntu:
  Invalid
Status in “im-switch” package in Ubuntu:
  In Progress
Status in “language-selector” package in Ubuntu:
  New
Status in “unity” package in Ubuntu:
  New
Status in “ibus” source package in Oneiric:
  Invalid
Status in “im-switch” source package in Oneiric:
  Confirmed
Status in “unity” source package in Oneiric:
  New
Status in “ibus” source package in Precise:
  Invalid
Status in “im-switch” source package in Precise:
  In Progress
Status in “unity” source package in Precise:
  New
Status in “ibus” source package in Quantal:
  Invalid
Status in “im-switch” source package in Quantal:
  In Progress
Status in “unity” source package in Quantal:
  New

Bug description:
  IBus icon does not show at Unity panel in some environments, we are
  discovering the real culprit now.

  [Impact]
  Impacts all users of CJK languages or any other user depending on IBUS for 
character composition. This is a rather large user base and the prority of this 
bug has been updated as to reflect the impact on users.
  The missing indicator on session start disables users from having a visual 
cue of the current state of the ibus support for their session, as well as the 
current ibus input method in use, which may change during the course of a 
session. Furthermore, since the underlying issue appears to be related to 
ibus-daemon startup, this may render ibus input unusable until the daemon is 
restarted.

  [Release note for P]
  see https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/875435/comments/23

  [Development Fix]
  (TBD)

  [Stable Fix]
  (TBD)

  [Workaround]
  We have some workarounds, but they are not root fix. The root cause is not 
identified.

  A) gsettings approach:
  see comment 8, comment 23

  B) exec: ibus-daemon -rxd
  RESTARTing ibus-daemon can fix the one-time solution. If user met this 
problem, executing `ibus-daemon -rxd`. This command restart ibus-daemon, and 
fix for current login sessions. But that is not root fix, if user restart the 
session (or reboot system), problem are back-in.

  Notes: If user exec the Ibus icon on Dash, that is not functional.
  Because ibus-daemon are already running by /etc/X11/Xsession.d/80im-
  switch.

  B') .desktop approach (with user initiated ibus restart)
  Workaround is as discussed in this bug report, to apply the debdiff provided 
by Ikuya Awashiro. This change modifies the parameters passed to ibus-daemon's 
.desktop file, that used in a Unity Dash. That provide more better B) approach. 
  the session manager on a new session; and makes ibus-daemon replace any 
previously running ibus daemon for the user.

  [Test Case]
  1) Start a Unity session with a CJK language (Chinese, Japanese, Korean, 
Vietnamese) or any other language depending on ibus to compose characters.
  2) Verify that the ibus indicator is shown in the Unity panel, and that ibus 
input can be used.

  The indicator should be visible in all cases. Since this bug is akin
  to a race condition, it may need a few startups to trigger the bug.

  [Regression Potential]
  Minimal, this only affects the ibus daemon on session startup in the way that 
it gets spawned by the session manager: it will replace any other running ibus 
daemon at the time, though none should be running before ibus-daemon gets 
spawned regardless. A different (or the same) ibus daemon can still be started 
manually.
  Possible issues could include the ibus daemon failing to start altogether 
with the session, in which case the ibus input methods would be unavailable, 
and can be started manually by users (using a terminal).

  [Background]
  (guess by Ikuya AWASHIRO, Fumihito YOSHIDA)
  In Ubuntu/Unity environments, ibus-daemon are initiated by 
/etc/X11/Xsession.d/80im-switch scripts. That invoked at early state on system 
start-up, so too early invoking bring up the race between Unity-panel and 
indicator-ibus. If indicator-ibus are start-up at too fast phase, the 
Unity-panel are not started, that cause no icon running.

  --

  iBus still run but doesn't show off in the panel, in every way. The
  only thing to make it right is do ibus-deamon -rxd

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: ibus 1.3.99.20110419-1ubuntu3
  ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
  Uname: Linux 3.0.0-12-generic i686
  ApportVersion: 1.23-0ubuntu3
  Architecture: i386
  Date: Sun Oct 16 09:19:00 2011
  

[Desktop-packages] [Bug 1379573] Re: ibus-setup does not run on unity

2014-10-12 Thread Aron Xu
Uploaded with a clearer changelog entry, thanks!

** Changed in: ibus (Ubuntu)
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1379573

Title:
  ibus-setup does not run on unity

Status in “ibus” package in Ubuntu:
  Fix Committed

Bug description:
  I got an error message on running ibus-setup command.

  ikuya@UbuntuUtopic1:~$ LANG=C ibus-setup

  (ibus-setup:2597): Gtk-CRITICAL **: gtk_buildable_custom_tag_start: assertion 
'GTK_IS_BUILDABLE (buildable)' failed
  Traceback (most recent call last):
File /usr/share/ibus/setup/main.py, line 548, in module
  setup = Setup()
File /usr/share/ibus/setup/main.py, line 105, in __init__
  self.__builder.add_from_file(gtk_builder_file);
  GLib.Error: gtk-builder-error-quark: Unhandled tag: 'attributes' (1)

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: ibus 1.5.8-2ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-21.28-generic 3.16.4
  Uname: Linux 3.16.0-21-generic x86_64
  ApportVersion: 2.14.7-0ubuntu5
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Oct 10 08:42:45 2014
  InstallationDate: Installed on 2014-08-09 (61 days ago)
  InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Alpha amd64 (20140808)
  SourcePackage: ibus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1379573/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Desktop-packages] [Bug 1375089] Re: im-config should not use .xsession-errors file for informational messages

2014-10-13 Thread Aron Xu
 On Oct 13, 2014, at 08:56, osamu os...@debian.org wrote:

 On Sun, Oct 12, 2014 at 08:47:29PM -, Սահակ wrote:
 Osamu,

 when I run

 $ more .xsession-errors

 On Ubuntu 14.04 or Ubuntu 14.10 I get the following messages:
 --
 Script for ibus started at run_im.
 Script for auto started at run_im.
 Script for default started at run_im.
 ---

 I am not sure which package creates these messages but they clearly
 don't belong in  .xsession-errors file.

 ??? why?  It record any STDERR out put from programs started in
 xsession.

 Do you know which package is responsible?

 im-config

 This way, we can track down what program was executed in user's system
 when I get bug report.

 Please re-read what I wrote, too.


I think it's better to avoid such informative messages by default but
add the possibility of enabling it. In my understanding
.session-errors should record stuff that's at least Warning priority
level and the output from im-config doesn't fit into the category
well..

Just 2 cents.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to im-config in Ubuntu.
https://bugs.launchpad.net/bugs/1375089

Title:
  im-config should not use .xsession-errors file for informational
  messages

Status in “im-config” package in Ubuntu:
  New

Bug description:
  currenty ibus leaves the following informational message in the
  .xsession-errors file:

  Script for ibus started at run_im.

  .xsession-errors file should be used only for error messages and not
  for informational messages.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: ibus 1.5.8-2ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-17.23-generic 3.16.3
  Uname: Linux 3.16.0-17-generic x86_64
  ApportVersion: 2.14.7-0ubuntu2
  Architecture: amd64
  CasperVersion: 1.344
  CurrentDesktop: Unity
  Date: Mon Sep 29 02:10:46 2014
  LiveMediaBuild: Ubuntu 14.10 Utopic Unicorn - Alpha amd64 (20140923)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ibus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/im-config/+bug/1375089/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1352805] Re: please merge ibus from debian

2014-08-18 Thread Aron Xu
** Changed in: ibus (Ubuntu)
   Status: Triaged = In Progress

** Changed in: ibus (Ubuntu)
 Assignee: (unassigned) = Aron Xu (happyaron)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1352805

Title:
  please merge ibus from debian

Status in “ibus” package in Ubuntu:
  In Progress

Bug description:
  Would be nice to have at least 1.5.8 for utopic, because of the many fixes in 
the new release
  debdiff attached

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1352805/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1352805] Re: please merge ibus from debian

2014-08-18 Thread Aron Xu
** Changed in: ibus (Ubuntu)
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1352805

Title:
  please merge ibus from debian

Status in “ibus” package in Ubuntu:
  Fix Committed

Bug description:
  Would be nice to have at least 1.5.8 for utopic, because of the many fixes in 
the new release
  debdiff attached

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1352805/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1363150] Re: [FFe] Fcitx input method integration in Unity

2014-08-29 Thread Aron Xu
I agree with Gunnar on im-config change; I talked to fcitx-qimpanel's
maintainer and he is going to release a new version in next week,
hopefully before Wednesday.

As for Fcitx, I see one of the two patches are applied upstream already,
which I'm perfectly okay to upload, but have you tried to submit the
other one, I think it will be fine for upstream since the patch is
intended to functional for Unity only.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to im-config in Ubuntu.
https://bugs.launchpad.net/bugs/1363150

Title:
  [FFe] Fcitx input method integration in Unity

Status in Indicator keyboard:
  New
Status in Unity Control Center:
  New
Status in Unity Settings Daemon:
  New
Status in “fcitx” package in Ubuntu:
  New
Status in “fcitx-qimpanel” package in Ubuntu:
  New
Status in “im-config” package in Ubuntu:
  New
Status in “indicator-keyboard” package in Ubuntu:
  New
Status in “unity-control-center” package in Ubuntu:
  New
Status in “unity-settings-daemon” package in Ubuntu:
  New

Bug description:
  Fcitx is being included in main, but Unity lacks support for it in
  various ways:

  - The Text Entry panel in unity-control-center has no effect on Fcitx' engine 
list
  - Per-window source options in Text Entry panel don't affect Fcitx
  - Fcitx engines (specifically for keyboard layout) are not available under 
unity-greeter
  - Fcitx indicator isn't available under the lock screen, only 
indicator-keyboard
  - Keyboard layout switching shortcut behaviour provided by Unity and 
unity-settings-daemon doesn't change Fcitx' current IM
  - Fcitx indicator is missing some options that are normally provided by 
indicator-keyboard
  - Running indicator-keyboard and Fcitx concurrently is redundant as 
indicator-keyboard only works with Xkb layouts and IBus IMs

  Some of the changes we need:

  - Add support for Fcitx input sources to unity-settings-daemon, 
unity-control-center, indicator-keyboard
  - Customize the Fcitx indicator under Unity to show some menu options that 
are available in indicator-keyboard (already merged upstream)
  - Hide indicator-keyboard in the session when Fcitx' indicator is visible
  - Add D-Bus property to Fcitx API for the current IM, so that we can detect 
when the user changes the current IM in the Fcitx indicator, and update the 
current input source accordingly (already merged upstream)
  - Use indicator-keyboard icons for keyboard layouts in Fcitx and 
fcitx-qimpanel when running under Unity

  We have a PPA that includes most of the proposed changes. It is
  available at https://launchpad.net/~fcitx-team/+archive/ubuntu/fcitx-
  transition. It does not hide indicator-keyboard in the session yet, as
  having both indicators visible is helpful for testing purposes.

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-keyboard/+bug/1363150/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1335373] Re: ibus uses too much cpu while typing

2014-08-31 Thread Aron Xu
Can't reproduce in stock Ubuntu 14.04 amd64, closing as Invalid. I see
in the upstream report you are using Mint, if that's the case please try
to ask Mint developers to do some investigation.

** Changed in: ibus (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1335373

Title:
  ibus uses too much cpu while typing

Status in IBus:
  Unknown
Status in “ibus” package in Ubuntu:
  Invalid

Bug description:
  What steps will reproduce the problem?

  1. type random stuff fast in a terminal
  2. ibus hogs 15% of a core - Intel Core i7-3610QM CPU @ 2.30GHz
  3. this is much more CPU than recordmydesktop needs to record it!

  What is the expected output? What do you see instead?

  I expect this thing to forward my ASCII keystrokes to my terminal
  without eating 15% of a core.

  I uploaded a youtube video to express my disgust with this program's
  ridiculously bad performance.
  https://www.youtube.com/watch?v=XPJs0pGOhxo

  Maybe this ibus component is the second coming of Jesus for people who
  speak Chinese.  If so, great.  As for me, I don't need other input
  methods very much, I just want plain normal ASCII input to get through
  to my programs efficiently.

  unity-control-center depends on ibus. You should not have let this
  thing into stable with its absolutely atrocious performance. In my
  opinion it should not be in Debian stable either; atrocious
  performance is a serious fault.

  I do not expect operating system components to perform as if they were
  written by grade school children.  Can you fix this thing to not suck,
  please?  Or get rid of it.  Or at least get rid of the dependency on
  it.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu3
  ProcVersionSignature: Ubuntu 3.13.0-29.53-generic 3.13.11.2
  Uname: Linux 3.13.0-29-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.2
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Sat Jun 28 13:34:34 2014
  InstallationDate: Installed on 2012-06-05 (752 days ago)
  InstallationMedia: Linux Mint 13 Maya - Release amd64 (20120520)
  SourcePackage: ibus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ibus/+bug/1335373/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1355141] Re: Please sync ibus-anthy 1.5.5-2 from Debian unstable

2014-09-09 Thread Aron Xu
** Changed in: ibus-anthy (Ubuntu)
 Assignee: (unassigned) = Aron Xu (happyaron)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus-anthy in Ubuntu.
https://bugs.launchpad.net/bugs/1355141

Title:
  Please sync ibus-anthy 1.5.5-2 from Debian unstable

Status in IBus Japanese Anthy engine:
  Unknown
Status in “ibus-anthy” package in Ubuntu:
  Triaged
Status in “ibus-anthy” package in Debian:
  Fix Released

Bug description:
  ibus-anthy 1.5.5-1 does not work due to python compatibility.

  The latest Debian version fixes it. From the changelog:

  * Use --with-python=python3 to avoid the compatibility problem 
and migrate to the Python 3.  Closes: #760478 (LP: #1355141)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ibus-anthy/+bug/1355141/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1355141] Re: Please sync ibus-anthy 1.5.5-2 from Debian unstable

2014-09-13 Thread Aron Xu
This bug was fixed in the package ibus-anthy - 1.5.5-2

---
ibus-anthy (1.5.5-2) unstable; urgency=medium

  * Use --with-python=python3 to avoid the compatibility problem 
and migrate to the Python 3.  Closes: #760478 (LP: #1355141)

 -- Osamu Aoki os...@debian.org  Sun, 07 Sep 2014 20:03:05 +0900

** Changed in: ibus-anthy (Ubuntu)
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus-anthy in Ubuntu.
https://bugs.launchpad.net/bugs/1355141

Title:
  Please sync ibus-anthy 1.5.5-2 from Debian unstable

Status in IBus Japanese Anthy engine:
  Unknown
Status in “ibus-anthy” package in Ubuntu:
  Fix Released
Status in “ibus-anthy” package in Debian:
  Fix Released

Bug description:
  ibus-anthy 1.5.5-1 does not work due to python compatibility.

  The latest Debian version fixes it. From the changelog:

  * Use --with-python=python3 to avoid the compatibility problem 
and migrate to the Python 3.  Closes: #760478 (LP: #1355141)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ibus-anthy/+bug/1355141/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 751633] Re: package ibus-pinyin 1.2.99.20091211-1ubuntu1 failed to install/upgrade: 子进程 已安装的 post-installation 脚本 返回了错误号 2

2014-09-20 Thread Aron Xu
Can't reproduce, sorry. Please reply if you still have the problem.

** Changed in: ibus-pinyin (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus-pinyin in Ubuntu.
https://bugs.launchpad.net/bugs/751633

Title:
  package ibus-pinyin 1.2.99.20091211-1ubuntu1 failed to
  install/upgrade: 子进程 已安装的 post-installation 脚本 返回了错误号 2

Status in “ibus-pinyin” package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: ibus-pinyin

  I don't know anything about it.

  ProblemType: Package
  DistroRelease: Ubuntu 10.04
  Package: ibus-pinyin 1.2.99.20091211-1ubuntu1
  ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2
  Uname: Linux 2.6.32-21-generic i686
  Architecture: i386
  Date: Wed Apr  6 00:32:15 2011
  ErrorMessage: 子进程 已安装的 post-installation 脚本 返回了错误号 2
  InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
  SourcePackage: ibus-pinyin
  Title: package ibus-pinyin 1.2.99.20091211-1ubuntu1 failed to 
install/upgrade: 子进程 已安装的 post-installation 脚本 返回了错误号 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus-pinyin/+bug/751633/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 832553] Re: ibus-engine-pinyin crashed with SIGABRT in raise()

2014-09-20 Thread Aron Xu
11.10 is not supported anymore, if you still have the problem in newer
releases please open another report.

** Changed in: ibus-pinyin (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus-pinyin in Ubuntu.
https://bugs.launchpad.net/bugs/832553

Title:
  ibus-engine-pinyin crashed with SIGABRT in raise()

Status in “ibus-pinyin” package in Ubuntu:
  Fix Released

Bug description:
  type 'v' character in pidgin, ibus crash.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: ibus-pinyin 1.3.99.20110706-1
  ProcVersionSignature: Ubuntu 3.0.0-9.14-generic 3.0.3
  Uname: Linux 3.0.0-9-generic x86_64
  NonfreeKernelModules: nvidia
  Architecture: amd64
  CrashCounter: 1
  Date: Wed Aug 24 15:09:20 2011
  ExecutablePath: /usr/lib/ibus-pinyin/ibus-engine-pinyin
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
  ProcCmdline: /usr/lib/ibus-pinyin/ibus-engine-pinyin --ibus
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  Signal: 6
  SourcePackage: ibus-pinyin
  StacktraceTop:
   raise () from /lib/x86_64-linux-gnu/libc.so.6
   abort () from /lib/x86_64-linux-gnu/libc.so.6
   g_assertion_message () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_assertion_message_expr () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   ?? ()
  Title: ibus-engine-pinyin crashed with SIGABRT in raise()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: admin cdrom dialout libvirtd lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus-pinyin/+bug/832553/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1299319] Re: ibus-engine-pinyin crashed with SIGSEGV in PY::BopomofoEditor::updateLookupTableLabel()

2014-09-20 Thread Aron Xu
** Information type changed from Private to Public

** Package changed: ibus-pinyin (Ubuntu) = libpyzy (Ubuntu)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus-pinyin in Ubuntu.
https://bugs.launchpad.net/bugs/1299319

Title:
  ibus-engine-pinyin crashed with SIGSEGV in
  PY::BopomofoEditor::updateLookupTableLabel()

Status in “libpyzy” package in Ubuntu:
  New

Bug description:
   I can't input any chinese character and sometimes the ibus can crack
  out .  Sometimes I would not use the ibus input and I will reboot my
  computer to switch WIN7 for my work.

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: ibus-pinyin 1.5.0-1ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-19.40-generic 3.13.6
  Uname: Linux 3.13.0-19-generic i686
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: i386
  CurrentDesktop: Unity
  Date: Sat Mar 29 10:54:01 2014
  ExecutablePath: /usr/lib/ibus/ibus-engine-pinyin
  InstallationDate: Installed on 2014-03-28 (0 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Beta i386 (20140326)
  ProcCmdline: /usr/lib/ibus/ibus-engine-pinyin --ibus
  ProcEnviron:
   LANGUAGE=zh_CN:zh
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=zh_CN.UTF-8
   SHELL=/bin/bash
  SegvAnalysis:
   Segfault happened at: 0x804d5b8: movsbl (%esi),%edx
   PC (0x0804d5b8) ok
   source (%esi) (0x36595032) not located in a known VMA region (needed 
readable region)!
   destination %edx ok
  SegvReason: reading unknown VMA
  Signal: 11
  SourcePackage: ibus-pinyin
  StacktraceTop:
   ?? ()
   ?? ()
   PyZy::PhoneticContext::updateCandidates() () from 
/usr/lib/i386-linux-gnu/libpyzy-1.0.so.0
   PyZy::PhoneticContext::update() () from 
/usr/lib/i386-linux-gnu/libpyzy-1.0.so.0
   PyZy::PhoneticContext::reset() () from 
/usr/lib/i386-linux-gnu/libpyzy-1.0.so.0
  Title: ibus-engine-pinyin crashed with SIGSEGV in 
PyZy::PhoneticContext::updateCandidates()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libpyzy/+bug/1299319/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1100670] Re: Cannot use third-party theme packages

2014-09-24 Thread Aron Xu
As this isn't a sole feature request, raising the importance from
wishlist.

** Changed in: ubuntukylin
   Importance: Wishlist = Medium

** Changed in: ubuntukylin
   Status: New = Triaged

** Changed in: gnome-control-center-unity (Ubuntu)
   Importance: Wishlist = Medium

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-control-center-unity in Ubuntu.
https://bugs.launchpad.net/bugs/1100670

Title:
  Cannot use third-party theme packages

Status in Ubuntu Kylin:
  Triaged
Status in “gnome-control-center-unity” package in Ubuntu:
  Confirmed

Bug description:
  The Appearance panel not allows to select third-party themes.
  Copy third-party themes to /usr/share/themes(or ~/.themes), the new theme 
does not display in The Appearance panel.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntukylin/+bug/1100670/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1306509] Re: 文件夹 - 主目录描述应汉化 - XDG home and desktop are not localised in live Ubuntu Kylin session

2014-09-24 Thread Aron Xu
@syq, Can you have a look?

** No longer affects: gnome-calculator (Ubuntu)

** Changed in: ubuntu-translations
 Assignee: (unassigned) = YunQiang Su (wzssyqa)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-calculator in Ubuntu.
https://bugs.launchpad.net/bugs/1306509

Title:
  文件夹 - 主目录描述应汉化 - XDG home and desktop are not localised in live Ubuntu
  Kylin session

Status in Ubuntu Translations:
  New
Status in Ubuntu Kylin:
  Confirmed

Bug description:
  系统测试版本:UK14.04-Daily-0410-i386
  文件夹 - 主目录描述应汉化:现在显示为“Home”。

  XDG home and desktop are not localised in live Ubuntu Kylin session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/1306509/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1303058] Re: crash with the systemerror: unable to parse package file

2014-09-24 Thread Aron Xu
** Also affects: oneconf (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to oneconf in Ubuntu.
https://bugs.launchpad.net/bugs/1303058

Title:
  crash with the systemerror: unable to parse package file

Status in Ubuntu Kylin:
  New
Status in “oneconf” package in Ubuntu:
  New

Bug description:
  This problem appears in the latest 32-bit ISO(2014-04-04). The crash
  file _usr_share_oneconf_oneconf-service.1000.crash is as following. It
  maybe caused by the release file on
  http://cn.archive.ubuntu.com/ubuntu/dists/trusty/universe/i18n
  /Translation-en.

  =

  ProblemType: Crash
  CurrentDesktop: Unity
  Date: Sat Apr  5 00:06:57 2014
  ExecutablePath: /usr/share/oneconf/oneconf-service
  ExecutableTimestamp: 1395675892
  InterpreterPath: /usr/bin/python3.4
  ProcCmdline: /usr/bin/python3 /usr/share/oneconf/oneconf-service
  ProcCwd: /
  ProcEnviron:
   XDG_RUNTIME_DIR=set
   SHELL=/bin/bash
   LANGUAGE=zh_CN:
   PATH=(custom, no user)
   LANG=zh_CN.UTF-8
  ProcMaps:
   08048000-08379000 r-xp  08:01 1051621/usr/bin/python3.4
   08379000-0837a000 r--p 0033 08:01 1051621/usr/bin/python3.4
   0837a000-083e9000 rw-p 00331000 08:01 1051621/usr/bin/python3.4
   083e9000-0840 rw-p  00:00 0 
   09442000-09681000 rw-p  00:00 0  [heap]
   b46e2000-b4762000 rw-p  00:00 0 
   b4762000-b4772000 r-xp  08:01 918492 
/lib/i386-linux-gnu/libbz2.so.1.0.4
   b4772000-b4773000 r--p f000 08:01 918492 
/lib/i386-linux-gnu/libbz2.so.1.0.4
   b4773000-b4774000 rw-p 0001 08:01 918492 
/lib/i386-linux-gnu/libbz2.so.1.0.4
   b4774000-b48b5000 r-xp  08:01 1054532
/usr/lib/i386-linux-gnu/libapt-pkg.so.4.12.0
   b48b5000-b48b6000 ---p 00141000 08:01 1054532
/usr/lib/i386-linux-gnu/libapt-pkg.so.4.12.0
   b48b6000-b48b8000 r--p 00141000 08:01 1054532
/usr/lib/i386-linux-gnu/libapt-pkg.so.4.12.0
   b48b8000-b48b9000 rw-p 00143000 08:01 1054532
/usr/lib/i386-linux-gnu/libapt-pkg.so.4.12.0
   b48b9000-b48f9000 r-xp  08:01 1057002
/usr/lib/python3/dist-packages/apt_pkg.cpython-34m-i386-linux-gnu.so
   b48f9000-b48fa000 r--p 0004 08:01 1057002
/usr/lib/python3/dist-packages/apt_pkg.cpython-34m-i386-linux-gnu.so
   b48fa000-b48ff000 rw-p 00041000 08:01 1057002
/usr/lib/python3/dist-packages/apt_pkg.cpython-34m-i386-linux-gnu.so
   b48ff000-b490 ---p  00:00 0 
   b490-b510 rw-p  00:00 0  [stack:4215]
   b510-b5121000 rw-p  00:00 0 
   b5121000-b520 ---p  00:00 0 
   b520e000-b524e000 rw-p  00:00 0 
   b524e000-b524f000 ---p  00:00 0 
   b524f000-b5a4f000 rw-p  00:00 0  [stack:4214]
   b5a4f000-b5a66000 r-xp  08:01 918557 
/lib/i386-linux-gnu/libnih.so.1.0.0
   b5a66000-b5a67000 r--p 00016000 08:01 918557 
/lib/i386-linux-gnu/libnih.so.1.0.0
   b5a67000-b5a68000 rw-p 00017000 08:01 918557 
/lib/i386-linux-gnu/libnih.so.1.0.0
   b5a68000-b5a82000 r-xp  08:01 918498 
/lib/i386-linux-gnu/libcgmanager.so.0.0.0
   b5a82000-b5a83000 ---p 0001a000 08:01 918498 
/lib/i386-linux-gnu/libcgmanager.so.0.0.0
   b5a83000-b5a84000 r--p 0001a000 08:01 918498 
/lib/i386-linux-gnu/libcgmanager.so.0.0.0
   b5a84000-b5a85000 rw-p 0001b000 08:01 918498 
/lib/i386-linux-gnu/libcgmanager.so.0.0.0
   b5a85000-b5ab7000 r-xp  08:01 1181981
/usr/lib/i386-linux-gnu/gvfs/libgvfscommon.so
   b5ab7000-b5ab9000 r--p 00032000 08:01 1181981
/usr/lib/i386-linux-gnu/gvfs/libgvfscommon.so
   b5ab9000-b5aba000 rw-p 00034000 08:01 1181981
/usr/lib/i386-linux-gnu/gvfs/libgvfscommon.so
   b5aba000-b5aea000 r-xp  08:01 1181679
/usr/lib/i386-linux-gnu/gio/modules/libgvfsdbus.so
   b5aea000-b5aeb000 r--p 0002f000 08:01 1181679
/usr/lib/i386-linux-gnu/gio/modules/libgvfsdbus.so
   b5aeb000-b5aec000 rw-p 0003 08:01 1181679
/usr/lib/i386-linux-gnu/gio/modules/libgvfsdbus.so
   b5aec000-b5b05000 r-xp  08:01 1181678
/usr/lib/i386-linux-gnu/gio/modules/libgioremote-volume-monitor.so
   b5b05000-b5b06000 ---p 00019000 08:01 1181678
/usr/lib/i386-linux-gnu/gio/modules/libgioremote-volume-monitor.so
   b5b06000-b5b07000 r--p 00019000 08:01 1181678
/usr/lib/i386-linux-gnu/gio/modules/libgioremote-volume-monitor.so
   b5b07000-b5b08000 rw-p 0001a000 08:01 1181678
/usr/lib/i386-linux-gnu/gio/modules/libgioremote-volume-monitor.so
   b5b08000-b5be4000 r-xp  08:01 1055424
/usr/lib/i386-linux-gnu/libstdc++.so.6.0.19
   b5be4000-b5be5000 ---p 000dc000 08:01 1055424
/usr/lib/i386-linux-gnu/libstdc++.so.6.0.19
   b5be5000-b5be9000 r--p 000dc000 08:01 1055424
/usr/lib/i386-linux-gnu/libstdc++.so.6.0.19
   b5be9000-b5bea000 rw-p 000e 08:01 1055424
/usr/lib/i386-linux-gnu/libstdc++.so.6.0.19

[Desktop-packages] [Bug 1375089] Re: ibus should not use .xsession-errors file for informational messages

2014-09-28 Thread Aron Xu
** Package changed: ibus (Ubuntu) = im-config (Ubuntu)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to im-config in Ubuntu.
https://bugs.launchpad.net/bugs/1375089

Title:
  ibus should not use .xsession-errors file for informational messages

Status in “im-config” package in Ubuntu:
  New

Bug description:
  currenty ibus leaves the following informational message in the
  .xsession-errors file:

  Script for ibus started at run_im.

  .xsession-errors file should be used only for error messages and not
  for informational messages.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: ibus 1.5.8-2ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-17.23-generic 3.16.3
  Uname: Linux 3.16.0-17-generic x86_64
  ApportVersion: 2.14.7-0ubuntu2
  Architecture: amd64
  CasperVersion: 1.344
  CurrentDesktop: Unity
  Date: Mon Sep 29 02:10:46 2014
  LiveMediaBuild: Ubuntu 14.10 Utopic Unicorn - Alpha amd64 (20140923)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ibus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/im-config/+bug/1375089/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1390637] Re: newest libxml2 update in vivid breaks libvirt build

2014-11-07 Thread Aron Xu
Can you provide the actual xml snippet being processed that are
processed to unexpected result?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libxml2 in Ubuntu.
https://bugs.launchpad.net/bugs/1390637

Title:
  newest libxml2 update in vivid breaks libvirt build

Status in “libxml2” package in Ubuntu:
  New

Bug description:
  Building libvirt in vivid currently results in qemuxml2argvtest
  failing.  It says that it expected a '\\V' and got a 'V'

  Downgrading by doing

  dpkg -i libxml2_2.9.1+dfsg1-3ubuntu4.4_amd64.deb

  allows the build to complete.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxml2/+bug/1390637/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1278569] Re: ibus breaks emacs and eclipse control-space keybinding

2014-07-26 Thread Aron Xu
I think this is caused by setting Ctrl-Space as the default shortcut in
ibus-setup's default configuration, that's a diff between Ubuntu and
Debian because there was problem in switching the input method in Unity
(where Super-Space is captured by gnome/unity-settings-daemon). I'll see
if we can drop that with recent gnome/unity-settings-daemon updates.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1278569

Title:
  ibus breaks emacs and eclipse control-space keybinding

Status in “ibus” package in Ubuntu:
  Confirmed

Bug description:
  Installing ibus 1.5.5-1ubuntu1 breaks Emacs 24's control-space
  keybinding.  I generally have that bound to a custom lisp function,
  but by default (e.g. starting with `emacs -Q`) it is bound to set-
  mark-command.  After doing a dist-upgrade in Trusty which installs
  ibus 1.5.5-1ubuntu1, emacs no longer even sees the control-space key
  chord.  My guess is that ibus is consuming this event, preventing
  emacs from seeing it.  This is a critical regression that makes emacs
  almost unusable.

  By process of elimination, I've narrowed it down to one of these 4
  binary packages.

  gir1.2-ibus-1.0
  ibus
  ibus-gtk
  ibus-gtk3

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-8.27-generic 3.13.2
  Uname: Linux 3.13.0-8-generic x86_64
  ApportVersion: 2.13.2-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Feb 10 15:15:57 2014
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2013-12-06 (66 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  SourcePackage: ibus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1278569/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1240198] Re: Wrong keyboard layout active after booting into desktop

2014-07-27 Thread Aron Xu
** Branch linked: lp:~hennekn/ubuntu/trusty/ibus/bug-1240198

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1240198

Title:
  Wrong keyboard layout active after booting into desktop

Status in “ibus” package in Ubuntu:
  Triaged
Status in “indicator-keyboard” package in Ubuntu:
  Triaged

Bug description:
  I upgraded from raring to saucy.

  After booting into the desktop (unity), the english keyboard layout is
  active, although everything on the system is set to be german
  (keyboard layout, language...)

  Switching to a virtual terminal (ctrl+alt+f1) fixes the problem and
  changes the layout to the german layout.

  all the time, the new input settings indicator says the german layout
  is active.

  locale says: 
  LANG=de_DE.UTF-8
  LANGUAGE=de_DE
  LC_CTYPE=de_DE.UTF-8
  LC_NUMERIC=de_DE.UTF-8
  LC_TIME=de_DE.UTF-8
  LC_COLLATE=de_DE.UTF-8
  LC_MONETARY=de_DE.UTF-8
  LC_MESSAGES=de_DE.UTF-8
  LC_PAPER=de_DE.UTF-8
  LC_NAME=de_DE.UTF-8
  LC_ADDRESS=de_DE.UTF-8
  LC_TELEPHONE=de_DE.UTF-8
  LC_MEASUREMENT=de_DE.UTF-8
  LC_IDENTIFICATION=de_DE.UTF-8
  LC_ALL=

  /etc/default/keyboard says:
  # Check /usr/share/doc/keyboard-configuration/README.Debian for
  # documentation on what to do after having modified this file.

  # The following variables describe your keyboard and can have the same
  # values as the XkbModel, XkbLayout, XkbVariant and XkbOptions options
  # in /etc/X11/xorg.conf.

  XKBMODEL=pc105
  XKBLAYOUT=de
  XKBVARIANT=
  XKBOPTIONS=

  # If you don't want to use the XKB layout on the console, you can
  # specify an alternative keymap.  Make sure it will be accessible
  # before /usr is mounted.
  # KMAP=/etc/console-setup/defkeymap.kmap.gz

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: indicator-keyboard 0.0.0+13.10.20131010.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  ApportVersion: 2.12.5-0ubuntu2
  Architecture: amd64
  Date: Tue Oct 15 20:49:03 2013
  InstallationDate: Installed on 2013-04-26 (171 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
  MarkForUpload: True
  SourcePackage: indicator-keyboard
  UpgradeStatus: Upgraded to saucy on 2013-10-13 (2 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1240198/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1100670] Re: Cannot use third-party theme packages

2014-07-27 Thread Aron Xu
** Also affects: ubuntukylin
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-control-center-unity in Ubuntu.
https://bugs.launchpad.net/bugs/1100670

Title:
  Cannot use third-party theme packages

Status in Ubuntu Kylin:
  New
Status in “gnome-control-center-unity” package in Ubuntu:
  Confirmed

Bug description:
  The Appearance panel not allows to select third-party themes.
  Copy third-party themes to /usr/share/themes(or ~/.themes), the new theme 
does not display in The Appearance panel.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntukylin/+bug/1100670/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 407585] Re: use system keyboard layout setting by default

2014-07-27 Thread Aron Xu
*** This bug is a duplicate of bug 1240198 ***
https://bugs.launchpad.net/bugs/1240198

** This bug has been marked a duplicate of bug 1240198
   Wrong keyboard layout active after booting into desktop

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/407585

Title:
  use system keyboard layout setting by default

Status in “ibus” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: ibus

  the current default for ibus preferences - advanced - keyboard layout
  - use system keyboard layout is off.  I think the sane default in
  this case is on.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/407585/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 897548] Re: ibus-daemon crashed on startup with SIGABRT in g_assertion_message()

2014-07-27 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/897548

Title:
  ibus-daemon crashed on startup with SIGABRT in g_assertion_message()

Status in “ibus” package in Ubuntu:
  New

Bug description:
  This crash occurs sometimes (without any obvious pattern) on KDE login
  when ibus-daemon is started.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: ibus 1.3.99.20110419-1ubuntu3
  ProcVersionSignature: Ubuntu 3.0.0-13.22-generic-pae 3.0.6
  Uname: Linux 3.0.0-13-generic-pae i686
  NonfreeKernelModules: fglrx
  ApportVersion: 1.23-0ubuntu4
  Architecture: i386
  CrashCounter: 1
  Date: Tue Nov 29 10:10:40 2011
  ExecutablePath: /usr/bin/ibus-daemon
  ProcCmdline: /usr/bin/ibus-daemon -Rr --xim
  Signal: 6
  SourcePackage: ibus
  StacktraceTop:
   g_assertion_message (domain=0xb7427910 IBUS, file=0xb742c4cc ibusbus.c, 
line=242, func=0xb742c831 _connection_closed_cb, message=optimized out) at 
/build/buildd/glib2.0-2.30.0/./glib/gtestutils.c:1425
   g_assertion_message_expr (domain=0xb7427910 IBUS, file=0xb742c4cc 
ibusbus.c, line=242, func=0xb742c831 _connection_closed_cb, expr=0xb742bf18 
bus-priv-connection == connection) at 
/build/buildd/glib2.0-2.30.0/./glib/gtestutils.c:1436
   ?? () from /usr/lib/libibus-1.0.so.0
   ffi_call_SYSV () from /usr/lib/i386-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/i386-linux-gnu/libffi.so.6
  Title: ibus-daemon crashed with SIGABRT in g_assertion_message()
  UpgradeStatus: Upgraded to oneiric on 2011-10-14 (45 days ago)
  UserGroups: adm admin audio cdrom debian-transmission dialout fax floppy 
lpadmin plugdev sambashare scanner syslog vboxusers video wireshark

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/897548/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 853947] Re: ibus-daemon crashed with SIGSEGV in ffi_call_SYSV()

2014-07-27 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/853947

Title:
  ibus-daemon crashed with SIGSEGV in ffi_call_SYSV()

Status in “ibus” package in Ubuntu:
  New

Bug description:
  the crash report appears when using the kde desktop

  ProblemType: Crash
  DistroRelease: Ubuntu 11.10
  Package: ibus 1.3.99.20110419-1ubuntu3
  ProcVersionSignature: Ubuntu 3.0.0-11.18-generic 3.0.4
  Uname: Linux 3.0.0-11-generic i686
  NonfreeKernelModules: wl
  ApportVersion: 1.23-0ubuntu1
  Architecture: i386
  Date: Mon Sep 19 22:19:20 2011
  ExecutablePath: /usr/bin/ibus-daemon
  InstallationMedia: Kubuntu 11.10 Oneiric Ocelot - Beta i386 (20110914)
  ProcCmdline: /usr/bin/ibus-daemon -x -r -d
  SegvAnalysis:
   Segfault happened at: 0xbbd5b4:  cmp%edi,0x4(%eax)
   PC (0x00bbd5b4) ok
   source %edi ok
   destination 0x4(%eax) (0xaaae) not located in a known VMA region 
(needed writable region)!
  SegvReason: writing unknown VMA
  Signal: 11
  SourcePackage: ibus
  StacktraceTop:
   ?? () from /usr/lib/libibus-1.0.so.0
   ffi_call_SYSV () from /usr/lib/i386-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/i386-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/i386-linux-gnu/libgobject-2.0.so.0
  Title: ibus-daemon crashed with SIGSEGV in ffi_call_SYSV()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/853947/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 998751] Re: ibus prevents minecraft to get keyboard input

2014-07-27 Thread Aron Xu
Don't think this is an IBus bug as it works only when ibus isn't
handling XIM, which is not possible for people using input method day to
day. I believe this should be reported to Minecraft instead.

** Changed in: ibus (Ubuntu)
   Status: Triaged = Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/998751

Title:
  ibus prevents minecraft to get keyboard input

Status in IBus:
  Unknown
Status in “ibus” package in Ubuntu:
  Invalid

Bug description:
  when ibus is running, some apps don't get keyboard input. for example,
  minecraft is one such application

  when the ibus process is killed, minecraft gets keyboard input fine

  I've tried this with three different JDKs, with the same result:

  * OpenJDK 6
  * OpenJDK 7
  * Oracle JDK 7

  I would expect minecraft to get keyboard input when ibus is running as
  well

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: ibus 1.4.1-3ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-24.37-generic 3.2.14
  Uname: Linux 3.2.0-24-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: amd64
  Date: Sun May 13 15:29:09 2012
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  SourcePackage: ibus
  UpgradeStatus: Upgraded to precise on 2012-05-09 (4 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ibus/+bug/998751/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1291821] Re: Xubuntu 14.04 - keyboard-layout is only changed after resetting ibus

2014-07-27 Thread Aron Xu
William, can you have a look?

** Package changed: ibus (Ubuntu) = indicator-keyboard (Ubuntu)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1291821

Title:
  Xubuntu 14.04 - keyboard-layout is only changed after resetting ibus

Status in “indicator-keyboard” package in Ubuntu:
  Confirmed

Bug description:
  When one tries to alter the keyboard-layout, the indicator on top of the 
display keeps displaying the old layout. After resetting ibus (right click on 
the icon - reset), the new layout
  is shown.

  Also notice that the indicated layout for Belgian is wrong. The name
  Duits-Belgian is shown, which make no sense.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu2
  ProcVersionSignature: Ubuntu 3.13.0-17.37-generic 3.13.6
  Uname: Linux 3.13.0-17-generic i686
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: i386
  CurrentDesktop: XFCE
  Date: Thu Mar 13 09:02:34 2014
  InstallationDate: Installed on 2014-03-12 (0 days ago)
  InstallationMedia: Xubuntu 14.04 LTS Trusty Tahr - Alpha i386 (20140312)
  SourcePackage: ibus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-keyboard/+bug/1291821/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 522814] Re: ibus does not install itself as an option for the all_ALL quasi-locale

2014-07-27 Thread Aron Xu
These stuff are handled in im-config nowadays.

** Package changed: ibus (Ubuntu) = im-config (Ubuntu)

** Changed in: im-config (Ubuntu)
   Status: Confirmed = New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to im-config in Ubuntu.
https://bugs.launchpad.net/bugs/522814

Title:
  ibus does not install itself as an option for the all_ALL quasi-locale

Status in “im-config” package in Ubuntu:
  New

Bug description:
  Binary package hint: ibus

  Upon installation, ibus installs itself as a choice for several
  locales (xinput-lang_LANG alternatives), including ja_JP and ko_KR.
  This allows for use of the im-switch tool to change what input method
  to use for that locale.

  It does not install itself as an option for the all_ALL quasi-locale,
  or more specifically, the xinput-all_ALL alternative. This makes it
  impossible to use im-switch to set my system-wide default to ibus. I
  run Kubuntu 10.04 with an English language setting and a Swedish
  locale. This behavior is present in Karmic as well.

  $ sudo im-switch -c
  No system wide default defined just for locale en_US .
  Use all_ALL quasi-locale and set IM.
  System wide default for all_ALL locale is marked with [+].
  There are 7 choices for the alternative xinput-all_ALL (providing 
/etc/X11/xinit/xinput.d/all_ALL).

SelectionPathPriority   Status
  
  * 0/etc/X11/xinit/xinput.d/default  10auto 
mode
1/etc/X11/xinit/xinput.d/default  10manual 
mode
2/etc/X11/xinit/xinput.d/default-xim  0 manual 
mode
3/etc/X11/xinit/xinput.d/none 0 manual 
mode
4/etc/X11/xinit/xinput.d/uim  0 manual 
mode
5/etc/X11/xinit/xinput.d/uim-systray  0 manual 
mode
6/etc/X11/xinit/xinput.d/uim-toolbar  0 manual 
mode
7/etc/X11/xinit/xinput.d/uim-toolbar-qt   0 manual 
mode

  Press enter to keep the current choice[*], or type selection
  number:

  As workarounds go, it is possible to modify the alternative
  configuration file (/var/lib/dpkg/alternatives/xinput-all_ALL) to
  include ibus, or to manually repoint the symlink at /etc/alternatives
  /xinput-all_ALL. I can also overwrite /etc/X11/xinit/xinput.d/default
  with the contents of the ibus file in the same directory.

  Looking at the source, all_ALL is commented out at
  debian/ibus.postinst:12. Excerpt;

  case $1 in
  configure)
  #ua_inst all_ALL ibus  0
  ua_inst ja_JP   ibus 60
  ua_inst ko_KR   ibus 60
  [...]

  Unsure of the rationale of why it would be disabled that way. Both UIM
  and SCIM install themselves as choices to all_ALL, so installation of
  those methods is very easy.

  ProblemType: Bug
  Architecture: i386
  Date: Tue Feb 16 20:28:01 2010
  DistroRelease: Ubuntu 10.04
  InstallationMedia: Kubuntu 10.04 Lucid Lynx - Alpha i386 (20100201)
  Package: ibus 1.2.0.20091215-1ubuntu1
  ProcEnviron:
   LANGUAGE=
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.32-12.17-generic
  SourcePackage: ibus
  Uname: Linux 2.6.32-12-generic i686

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/im-config/+bug/522814/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 711775] Re: subtitles encoding is not shown properly in vlc

2014-07-27 Thread Aron Xu
** Package changed: ibus (Ubuntu) = vlc (Ubuntu)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/711775

Title:
  subtitles encoding is not shown properly in vlc

Status in “vlc” package in Ubuntu:
  New

Bug description:
  Binary package hint: ibus

  When I run vlc to see a movie with Windows-1251 subtitles, the vlc
  shows following error:

  [0x7f709c05dd50] subsdec decoder error: failed to convert subtitle encoding.
  Try manually setting a character-encoding before you open the file.
  Bus::open: Can not get ibus-daemon's address. 
  IBusInputContext::createInputContext: no connection to ibus-daemon 
  Warning: call to rand()

  and the text of the subtitles is shown as question marks. If I remove
  the ibus and all it's libraries, the VLC works properly.

  My guess is that the ibus did not start on boot, thus I am filing the
  bug against ibus.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vlc/+bug/711775/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 711775] Re: subtitles encoding is not shown properly in vlc

2014-07-27 Thread Aron Xu
** Changed in: ibus (Ubuntu)
   Status: Confirmed = New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/711775

Title:
  subtitles encoding is not shown properly in vlc

Status in “vlc” package in Ubuntu:
  New

Bug description:
  Binary package hint: ibus

  When I run vlc to see a movie with Windows-1251 subtitles, the vlc
  shows following error:

  [0x7f709c05dd50] subsdec decoder error: failed to convert subtitle encoding.
  Try manually setting a character-encoding before you open the file.
  Bus::open: Can not get ibus-daemon's address. 
  IBusInputContext::createInputContext: no connection to ibus-daemon 
  Warning: call to rand()

  and the text of the subtitles is shown as question marks. If I remove
  the ibus and all it's libraries, the VLC works properly.

  My guess is that the ibus did not start on boot, thus I am filing the
  bug against ibus.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vlc/+bug/711775/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1303089] Re: ibus-ui-gtk3 crashed with SIGABRT in g_assertion_message()

2014-07-27 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1303089

Title:
  ibus-ui-gtk3 crashed with SIGABRT in g_assertion_message()

Status in “ibus” package in Ubuntu:
  New

Bug description:
  Sorry, not sure about how the error occurred. Didn't use the system
  since the last boot one hour ago.

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu3
  ProcVersionSignature: Ubuntu 3.13.0-17.37-generic 3.13.6
  Uname: Linux 3.13.0-17-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Sat Apr  5 17:29:31 2014
  ExecutablePath: /usr/lib/ibus/ibus-ui-gtk3
  InstallationDate: Installed on 2014-01-25 (70 days ago)
  InstallationMedia: Ubuntu-GNOME 14.04 Trusty Tahr - Alpha amd64 (20140121.1)
  ProcCmdline: /usr/lib/ibus/ibus-ui-gtk3
  Signal: 6
  SourcePackage: ibus
  StacktraceTop:
   g_assertion_message () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_assertion_message_expr () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   ?? ()
   ?? ()
   ?? () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
  Title: ibus-ui-gtk3 crashed with SIGABRT in g_assertion_message()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1303089/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1236456] Re: ibus-daemon crashed with SIGSEGV in __find_specmb()

2014-07-27 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1236456

Title:
  ibus-daemon crashed with SIGSEGV in __find_specmb()

Status in “ibus” package in Ubuntu:
  New

Bug description:
  Curious error suddenly appearing, with no apparent effect on the
  program I was using (Firefox, Texmaker, Terminal and Nautilus).

  ProblemType: Crash
  DistroRelease: Ubuntu 13.10
  Package: ibus 1.5.3-6ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-11.17-generic 3.11.3
  Uname: Linux 3.11.0-11-generic x86_64
  ApportVersion: 2.12.5-0ubuntu1
  Architecture: amd64
  Date: Mon Oct  7 18:26:06 2013
  ExecutablePath: /usr/bin/ibus-daemon
  InstallationDate: Installed on 2013-07-18 (80 days ago)
  InstallationMedia: Ubuntu 12.04.2 LTS Precise Pangolin - Release amd64 
(20130213)
  MarkForUpload: True
  ProcCmdline: /usr/bin/ibus-daemon --replace --xim --panel disable
  ProcEnviron:
   SHELL=/bin/bash
   XDG_RUNTIME_DIR=set
   PATH=(custom, no user)
   LANGUAGE=fr_FR
   LANG=fr_FR.UTF-8
  SegvAnalysis:
   Segfault happened at: 0x7f4eede1581a _IO_vfprintf_internal+154:callq  
0x7f4eede5fb20 strchrnul
   PC (0x7f4eede1581a) ok
   source 0x7f4eede5fb20 (0x7f4eede5fb20) ok
   destination (%rsp) (0x7f4eeb394f50) in non-writable VMA region: 
0x7f4eeb394000-0x7f4eeb395000 ---p None
   Stack memory exhausted (SP below stack segment)
  SegvReason: writing VMA None
  Signal: 11
  SourcePackage: ibus
  StacktraceTop:
   __find_specmb (format=0x7f4eeec6ae68 (%s)) at printf-parse.h:109
   _IO_vfprintf_internal (s=s@entry=0x7f4eeb3955a0, 
format=format@entry=0x7f4eeec6ae68 (%s), ap=ap@entry=0x7f4eeb395708) at 
vfprintf.c:1326
   __GI___vasprintf_chk (result_ptr=0x7f4eeb3956e8, flags=1, 
format=0x7f4eeec6ae68 (%s), args=0x7f4eeb395708) at vasprintf_chk.c:66
   g_vasprintf () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_strdup_vprintf () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
  Title: ibus-daemon crashed with SIGSEGV in __find_specmb()
  UpgradeStatus: Upgraded to saucy on 2013-07-29 (69 days ago)
  UserGroups: adm cdrom dip kvm lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1236456/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1237231] Re: ibus-daemon crashed with SIGABRT in _g_log_abort()

2014-07-27 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1237231

Title:
  ibus-daemon crashed with SIGABRT in _g_log_abort()

Status in “ibus” package in Ubuntu:
  New

Bug description:
  The error happens soon after logging in without any user action.

  ProblemType: Crash
  DistroRelease: Ubuntu 13.10
  Package: ibus 1.5.3-6ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-11.17-generic 3.11.3
  Uname: Linux 3.11.0-11-generic x86_64
  ApportVersion: 2.12.5-0ubuntu1
  Architecture: amd64
  Date: Tue Oct  8 15:20:46 2013
  ExecutablePath: /usr/bin/ibus-daemon
  MarkForUpload: True
  ProcCmdline: /usr/bin/ibus-daemon --daemonize --xim
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  Signal: 6
  SourcePackage: ibus
  StacktraceTop:
   ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_assertion_message () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_assertion_message_expr () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   ?? ()
   g_list_find_custom () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
  Title: ibus-daemon crashed with SIGABRT in g_assertion_message()
  UpgradeStatus: Upgraded to saucy on 2012-05-18 (508 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1237231/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 959174] Re: ibus-daemon crashed with SIGSEGV in g_dbus_is_name()

2014-07-27 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/959174

Title:
  ibus-daemon crashed with SIGSEGV in g_dbus_is_name()

Status in “ibus” package in Ubuntu:
  New

Bug description:
  Regularly working with some windows open. No idea what caused the bug.

  One possible reason is that I was using LyX (a qt program) and ibus
  might have crashed because of that.

  The system is set for the brazilian portuguese language and I live in
  Korea, so I have to use Korean and, sometimes, Japanese and Chinese on
  top of that.

  ProblemType: Crash
  DistroRelease: Ubuntu 12.04
  Package: ibus 1.4.1-1ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-19.30-generic-pae 3.2.11
  Uname: Linux 3.2.0-19-generic-pae i686
  NonfreeKernelModules: nvidia
  ApportVersion: 1.94.1-0ubuntu2
  Architecture: i386
  Date: Mon Mar 19 19:38:40 2012
  ExecutablePath: /usr/bin/ibus-daemon
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  ProcCmdline: /usr/bin/ibus-daemon --xim
  SegvAnalysis:
   Segfault happened at: 0xb73552b6:movdqu (%edi),%xmm1
   PC (0xb73552b6) ok
   source (%edi) (0x) not located in a known VMA region (needed 
readable region)!
   destination %xmm1 ok
   Stack memory exhausted (SP below stack segment)
  SegvReason: reading unknown VMA
  Signal: 11
  SourcePackage: ibus
  StacktraceTop:
   ?? () from /lib/i386-linux-gnu/libc.so.6
   g_dbus_is_name () from /usr/lib/i386-linux-gnu/libgio-2.0.so.0
   g_dbus_message_set_sender () from /usr/lib/i386-linux-gnu/libgio-2.0.so.0
   ?? ()
   ?? () from /usr/lib/i386-linux-gnu/libgio-2.0.so.0
  Title: ibus-daemon crashed with SIGSEGV in g_dbus_is_name()
  UpgradeStatus: Upgraded to precise on 2012-02-23 (24 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare users

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/959174/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1304708] Re: ibus-daemon crashed with SIGABRT in g_assertion_message()

2014-07-27 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1304708

Title:
  ibus-daemon crashed with SIGABRT in g_assertion_message()

Status in “ibus” package in Ubuntu:
  New

Bug description:
  ibus crashes in normal operation condition without any indications.

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu3
  ProcVersionSignature: Ubuntu 3.13.0-23.45-generic 3.13.8
  Uname: Linux 3.13.0-23-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.1-0ubuntu1
  Architecture: amd64
  Date: Tue Apr  8 23:13:09 2014
  ExecutablePath: /usr/bin/ibus-daemon
  InstallationDate: Installed on 2014-03-18 (20 days ago)
  InstallationMedia: Kubuntu 14.04 LTS Trusty Tahr - Alpha amd64 (20140318)
  ProcCmdline: /usr/bin/ibus-daemon --daemonize --xim
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  Signal: 6
  SourcePackage: ibus
  StacktraceTop:
   g_assertion_message () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_assertion_message_expr () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   ?? ()
   ?? () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
  Title: ibus-daemon crashed with SIGABRT in g_assertion_message()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm bumblebee cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1304708/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1290282] Re: main.py crashed with SIGSEGV in gdk_window_get_events()

2014-07-27 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1290282

Title:
  main.py crashed with SIGSEGV in gdk_window_get_events()

Status in “ibus” package in Ubuntu:
  New

Bug description:
  ibus fails to open.  
  Kubuntu 14.04

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu2
  ProcVersionSignature: Ubuntu 3.13.0-12.32-generic 3.13.4
  Uname: Linux 3.13.0-12-generic x86_64
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: amd64
  CrashCounter: 1
  CurrentDesktop: KDE
  Date: Mon Mar 10 18:26:52 2014
  ExecutablePath: /usr/share/ibus/setup/main.py
  InstallationDate: Installed on 2014-03-10 (0 days ago)
  InstallationMedia: Kubuntu 14.04 LTS Trusty Tahr - Alpha amd64 (20140227)
  InterpreterPath: /usr/bin/python2.7
  ProcCmdline: /usr/bin/python /usr/share/ibus/setup/main.py
  SegvAnalysis:
   Segfault happened at: 0x7fe9d784c024 gdk_window_get_events+84: mov
%al,(%rax)
   PC (0x7fe9d784c024) ok
   source %al ok
   destination (%rax) (0x0001) not located in a known VMA region (needed 
writable region)!
  SegvReason: writing NULL VMA
  Signal: 11
  SourcePackage: ibus
  StacktraceTop:
   gdk_window_get_events () from /usr/lib/x86_64-linux-gnu/libgdk-3.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   gtk_widget_add_events () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
  Title: main.py crashed with SIGSEGV in gdk_window_get_events()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1290282/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1289267] Re: ibus-daemon crashed with SIGSEGV in invoke_set_property_in_idle_cb()

2014-07-27 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1289267

Title:
  ibus-daemon crashed with SIGSEGV in invoke_set_property_in_idle_cb()

Status in “ibus” package in Ubuntu:
  New

Bug description:
  dont know

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu2
  ProcVersionSignature: Ubuntu 3.13.0-16.36-generic 3.13.5
  Uname: Linux 3.13.0-16-generic i686
  ApportVersion: 2.13.2-0ubuntu5
  Architecture: i386
  CurrentDesktop: Unity
  Date: Fri Mar  7 11:32:37 2014
  Disassembly: = 0x10: Cannot access memory at address 0x10
  ExecutablePath: /usr/bin/ibus-daemon
  InstallationDate: Installed on 2014-03-03 (3 days ago)
  InstallationMedia: Ubuntu 12.04.4 LTS Precise Pangolin - Release i386 
(20140204)
  ProcCmdline: /usr/bin/ibus-daemon --daemonize --xim
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  SegvAnalysis:
   Segfault happened at: 0x10:  Cannot access memory at address 0x10
   PC (0x0010) not located in a known VMA region (needed executable region)!
  SegvReason: executing NULL VMA
  Signal: 11
  SourcePackage: ibus
  StacktraceTop:
   ?? ()
   ?? () from /usr/lib/i386-linux-gnu/libgio-2.0.so.0
   ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
   g_main_context_dispatch () from /lib/i386-linux-gnu/libglib-2.0.so.0
   ?? () from /lib/i386-linux-gnu/libglib-2.0.so.0
  Title: ibus-daemon crashed with SIGSEGV in g_main_context_dispatch()
  UpgradeStatus: Upgraded to trusty on 2014-03-03 (3 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1289267/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 819944] Re: ibus doesn't work in nautilus

2014-07-27 Thread Aron Xu
Cannot reproduce the problem, you might want to check if you have ibus
selected in language-selector.

** Changed in: ibus (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/819944

Title:
  ibus doesn't work in nautilus

Status in “ibus” package in Ubuntu:
  Invalid

Bug description:
  Can't rename my files. I use Ibus to input chinese, and when I need to
  create/rename a folder, ibus doesn't activate... so I can't use
  chinese.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/819944/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1295603] Re: ibus-daemon crashed with SIGABRT in g_assertion_message()

2014-07-27 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1295603

Title:
  ibus-daemon crashed with SIGABRT in g_assertion_message()

Status in “ibus” package in Ubuntu:
  New

Bug description:
  Seems related to other bugs of similar nature (#1048161, #1252666,
  #1266970) although in my case this happend while being logged in KDE.
  It was either when I've put my computer in sleep state through closing
  the lid or when I powered it back on (wakeup).  At wake-up time the
  crash window notifier was already there when I unlocked my session.

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu2
  ProcVersionSignature: Ubuntu 3.13.0-18.38-generic 3.13.6
  Uname: Linux 3.13.0-18-generic x86_64
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: amd64
  Date: Thu Mar 20 20:05:42 2014
  ExecutablePath: /usr/bin/ibus-daemon
  InstallationDate: Installed on 2014-03-16 (5 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Alpha amd64 (20140315)
  ProcCmdline: /usr/bin/ibus-daemon --daemonize --xim
  Signal: 6
  SourcePackage: ibus
  StacktraceTop:
   g_assertion_message () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_assertion_message_expr () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   ?? ()
   ?? ()
   ?? () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
  Title: ibus-daemon crashed with SIGABRT in g_assertion_message()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1295603/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1259728] Re: ibus-setup dialog has unusable layout

2014-07-27 Thread Aron Xu
** Changed in: ibus (Ubuntu)
   Status: Incomplete = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1259728

Title:
  ibus-setup dialog has unusable layout

Status in “ibus” package in Ubuntu:
  Fix Released

Bug description:
  The ibus preferences dialog for selecting a shortcut contains a list that is 
too narrow. It is impossible to read the selected list item or what else is in 
the list. Resizing the dialog does not stretch the list or spread the widgets 
equally over the available space (see image after resizing the dialog).
  Besides that, the widgets lack padding.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1259728/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1258778] Re: IBus input candidates not shown in GNOME Fallback session

2014-07-27 Thread Aron Xu
** Changed in: ibus (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1258778

Title:
  IBus input candidates not shown in GNOME Fallback session

Status in “ibus” package in Ubuntu:
  Fix Released

Bug description:
  I was able to add Chinese (Pinyin) as input method in Ubuntu 13.10's
  new Text Entry Settings. Switching between English (US) and
  Chinese entry works for me, generally. When I'm using the Ubuntu
  (Default) (Unity) session, input candidates are also properly shown
  (a little floating window that shows candidate Chinese characters
  while typing).

  However, when I use the GNOME Fallback or GNOME with Xmonad
  session, as I normally do, the candidates do not show up at all. This
  makes Pinyin input useless.

  OS and package versions:

  ke@apis:~$ lsb_release -rd
  Description:  Ubuntu 13.10
  Release:  13.10
  ke@apis:~$ apt-cache policy ibus
  ibus:
Installed: 1.5.3-6ubuntu2
Candidate: 1.5.3-6ubuntu2
Version table:
   *** 1.5.3-6ubuntu2 0
  500 http://nl.archive.ubuntu.com/ubuntu/ saucy/main amd64 Packages
  100 /var/lib/dpkg/status

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1258778/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1244554] Re: Digits 1-8 don't work in the Hebrew (lyx) input source

2014-07-27 Thread Aron Xu
** Package changed: ibus (Ubuntu) = gnome-settings-daemon (Ubuntu)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1244554

Title:
  Digits 1-8 don't work in the Hebrew (lyx) input source

Status in “gnome-settings-daemon” package in Ubuntu:
  New

Bug description:
  Worked find under Raring.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: ibus 1.5.3-6ubuntu2
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  Date: Fri Oct 25 10:17:41 2013
  InstallationDate: Installed on 2012-05-29 (513 days ago)
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  MarkForUpload: True
  SourcePackage: ibus
  UpgradeStatus: Upgraded to saucy on 2013-10-24 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1244554/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1236958] Re: software-center crashed with signal 5

2014-07-28 Thread Aron Xu
** Changed in: ubuntukylin
   Importance: Medium = Low

** Changed in: ubuntukylin
   Status: New = Triaged

** Changed in: ubuntukylin
 Assignee: Ma Jun (maclin.jun) = (unassigned)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/1236958

Title:
  software-center crashed with signal 5

Status in Ubuntu Kylin:
  Triaged
Status in “software-center” package in Ubuntu:
  Confirmed

Bug description:
  Crash

  ProblemType: Crash
  DistroRelease: Ubuntu 13.10
  Package: software-center 13.09-0ubuntu1
  ProcVersionSignature: Ubuntu 3.11.0-11.17-generic 3.11.3
  Uname: Linux 3.11.0-11-generic x86_64
  ApportVersion: 2.12.5-0ubuntu1
  Architecture: amd64
  Date: Tue Oct  8 18:53:20 2013
  Disassembly: = 0x7fc18fc223c9:   Cannot access memory at address 
0x7fc18fc223c9
  ExecutablePath: /usr/share/software-center/software-center
  InstallationDate: Installed on 2013-10-07 (1 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Alpha amd64 (20130819)
  InterpreterPath: /usr/bin/python2.7
  MarkForUpload: True
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  Signal: 5
  SourcePackage: software-center
  Stacktrace:
   #0  0x7fc18fc223c9 in ?? ()
   No symbol table info available.
   Cannot access memory at address 0x7fff51c6f510
  StacktraceTop: ?? ()
  ThreadStacktrace:
   .
   Thread 8 (LWP 2011):
   #0  0x7fc19167747d in ?? ()
   No symbol table info available.
   Cannot access memory at address 0x7fc187735e00
  Title: software-center crashed with signal 5
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntukylin/+bug/1236958/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1349465] [NEW] Please sync libxml2 (main) 2.9.1+dfsg1-4 from Debian testing (main)

2014-07-28 Thread Aron Xu
Public bug reported:

Please sync libxml2 (main) 2.9.1+dfsg1-4 from Debian testing (main)

Why Ubuntu delta can be dropped: all changes are merged into Debian.

libxml2 (2.9.1+dfsg1-4) unstable; urgency=low

  [ Christian Svensson ]
  * Do not build-depend on readline (Closes: #742350)

  [ Daniel Schepler ]
  * Patch to bootstrap without python (Closes: #738080)

  [ Helmut Grohne ]
  * Drop unneeded B-D on perl and binutils (Closes: #753005)

  [ Adam Conrad ]
  * Actually run dh_autoreconf, which the old/new mixed rules file misses.

  [ Matthias Klose ]
  * Add patch to fix python multiarch issue
  * Allow the package to cross-build by tweaking B-Ds on python
  * Set PYTHON_LIBS for cross builds

  [ Aron Xu ]
  * Use correct $CC
  * Configure udeb without python
  * New round of cherry-picking upstream fixes
- Includes fixes for CVE-2014-0191 (Closes: #747309).
  * Call prename with -vf
  * Require python-all-dev (= 2.7.5-5~)
  * Bump std-ver: 3.9.4 - 3.9.5, no change

 -- Aron Xu a...@debian.org  Wed, 09 Jul 2014 05:40:15 +0800

** Affects: libxml2 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libxml2 in Ubuntu.
https://bugs.launchpad.net/bugs/1349465

Title:
  Please sync libxml2 (main) 2.9.1+dfsg1-4 from Debian testing (main)

Status in “libxml2” package in Ubuntu:
  New

Bug description:
  Please sync libxml2 (main) 2.9.1+dfsg1-4 from Debian testing (main)

  Why Ubuntu delta can be dropped: all changes are merged into Debian.

  libxml2 (2.9.1+dfsg1-4) unstable; urgency=low

[ Christian Svensson ]
* Do not build-depend on readline (Closes: #742350)

[ Daniel Schepler ]
* Patch to bootstrap without python (Closes: #738080)

[ Helmut Grohne ]
* Drop unneeded B-D on perl and binutils (Closes: #753005)

[ Adam Conrad ]
* Actually run dh_autoreconf, which the old/new mixed rules file misses.

[ Matthias Klose ]
* Add patch to fix python multiarch issue
* Allow the package to cross-build by tweaking B-Ds on python
* Set PYTHON_LIBS for cross builds

[ Aron Xu ]
* Use correct $CC
* Configure udeb without python
* New round of cherry-picking upstream fixes
  - Includes fixes for CVE-2014-0191 (Closes: #747309).
* Call prename with -vf
* Require python-all-dev (= 2.7.5-5~)
* Bump std-ver: 3.9.4 - 3.9.5, no change

   -- Aron Xu a...@debian.org  Wed, 09 Jul 2014 05:40:15 +0800

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxml2/+bug/1349465/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1349751] Re: CTRL-space is a bad choice for shortcut as it is used by emacs

2014-07-29 Thread Aron Xu
*** This bug is a duplicate of bug 1278569 ***
https://bugs.launchpad.net/bugs/1278569

** This bug has been marked a duplicate of bug 1278569
   ibus breaks emacs and eclipse control-space keybinding

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1349751

Title:
  CTRL-space is a bad choice for shortcut as it is used by emacs

Status in “ibus” package in Ubuntu:
  New

Bug description:
  On what operating system?

  OS (Linux distributions, UNIX or ...):Linux Mint 17
  Architecture (i386, x86_64):x86_64
  IBus version:1.5.5
  Input method name and version:
  Python version:2.7.6
  dbus version:?
  dbus-python version:?
  gtk version (if bug is about gtk applications):
  qt version (if bug is about qt applications):

  What steps will reproduce the problem?

  1. Install Linux Mint XFCE
  2. Start emacs
  3. Mark a block using CTRL-space
  4. Get confused why CTRL-space does not work

  1. Go to duolingo.com
  2. Go to a listening lesson
  3. Press CTRL-space to listen to the audio at a slower speed
  4. Get confused why CTRL-space does not work

  What is the expected output? What do you see instead?

  I expect CTRL-space to be given to emacs/duolingo.

  I see that CTRL-space is intercepted.

  
  Please provide any additional information below.

  According to the ibus people
  http://code.google.com/p/ibus/issues/detail?id=1732#c4 the default
  shortcut is Super+space.

  Ubuntu uses a patch (debian/patches/ibus-xx-ctrl-space.patch) which
  changes the Super+space to CTRL+space.

  That is a bad choice as CTRL+space is also used alot in Emacs. I have
  been unable to find the rationale behind overriding the default of
  Super+space, and thus I will suggest you simply remove the patch.

  - o -

  The problem is that I as a user am not told which program intercepts
  CTRL-space, so it is very hard for me to figure out which program eats
  my CTRL-space. ibus does not give a warning, and if you (like me) have
  a single input method engine installed, you do not see any change from
  pressing CTRL-space - making it even harder to figure out. I spent 2
  frustrating hours figuring out what caused problem, and I expect other
  emacs/duolingo.com users will experience the same.

  There are several ways in which this could be improved:

  * Disable the shortcut if there is only one input method engine
  * Give a pop-up dialog box the first time the user activates the shortcut, so 
that the user is aware that this shortcut is run by ibus and how to disable it 
if that is not what the user wants.
  * Disable the shortcut by default - I would imagine the people that have the 
need for multiple input engines would have to select the input engines anyway, 
so they will see the preferences anyway and see that they can select a shortcut.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu3
  ProcVersionSignature: Ubuntu 3.13.0-32.57-lowlatency 3.13.11.4
  Uname: Linux 3.13.0-32-lowlatency x86_64
  ApportVersion: 2.14.1-0ubuntu3.2
  Architecture: amd64
  Date: Tue Jul 29 11:05:42 2014
  InstallationDate: Installed on 2013-10-10 (291 days ago)
  InstallationMedia: Linux Mint 15 Olivia - Release amd64 (20130520)
  ProcEnviron:
   LANGUAGE=
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ibus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1349751/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1278569] Re: ibus breaks emacs and eclipse control-space keybinding

2014-07-29 Thread Aron Xu
For MineCraft, there is problem in its keyboard handling code and no
input method is working with it, including other input fields within the
program cannot be working. It's a different issue that should be handled
by MineCraft.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1278569

Title:
  ibus breaks emacs and eclipse control-space keybinding

Status in “ibus” package in Ubuntu:
  Confirmed

Bug description:
  Installing ibus 1.5.5-1ubuntu1 breaks Emacs 24's control-space
  keybinding.  I generally have that bound to a custom lisp function,
  but by default (e.g. starting with `emacs -Q`) it is bound to set-
  mark-command.  After doing a dist-upgrade in Trusty which installs
  ibus 1.5.5-1ubuntu1, emacs no longer even sees the control-space key
  chord.  My guess is that ibus is consuming this event, preventing
  emacs from seeing it.  This is a critical regression that makes emacs
  almost unusable.

  By process of elimination, I've narrowed it down to one of these 4
  binary packages.

  gir1.2-ibus-1.0
  ibus
  ibus-gtk
  ibus-gtk3

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-8.27-generic 3.13.2
  Uname: Linux 3.13.0-8-generic x86_64
  ApportVersion: 2.13.2-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Feb 10 15:15:57 2014
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2013-12-06 (66 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  SourcePackage: ibus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1278569/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1278569] Re: ibus breaks emacs and eclipse control-space keybinding

2014-08-05 Thread Aron Xu
** Changed in: ibus (Ubuntu)
   Status: Confirmed = Triaged

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1278569

Title:
  ibus breaks emacs and eclipse control-space keybinding

Status in “ibus” package in Ubuntu:
  Triaged

Bug description:
  Installing ibus 1.5.5-1ubuntu1 breaks Emacs 24's control-space
  keybinding.  I generally have that bound to a custom lisp function,
  but by default (e.g. starting with `emacs -Q`) it is bound to set-
  mark-command.  After doing a dist-upgrade in Trusty which installs
  ibus 1.5.5-1ubuntu1, emacs no longer even sees the control-space key
  chord.  My guess is that ibus is consuming this event, preventing
  emacs from seeing it.  This is a critical regression that makes emacs
  almost unusable.

  By process of elimination, I've narrowed it down to one of these 4
  binary packages.

  gir1.2-ibus-1.0
  ibus
  ibus-gtk
  ibus-gtk3

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-8.27-generic 3.13.2
  Uname: Linux 3.13.0-8-generic x86_64
  ApportVersion: 2.13.2-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Feb 10 15:15:57 2014
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2013-12-06 (66 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  SourcePackage: ibus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1278569/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1352805] Re: please merge ibus from debian

2014-08-06 Thread Aron Xu
We (with my pkg-ime hat on) are still working on ibus 1.5.8 at Debian,
so there is changes coming in short time, please hold off for a while.

** Changed in: ibus (Ubuntu)
   Importance: Undecided = Medium

** Changed in: ibus (Ubuntu)
   Status: New = Triaged

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1352805

Title:
  please merge ibus from debian

Status in “ibus” package in Ubuntu:
  Triaged

Bug description:
  Would be nice to have at least 1.5.8 for utopic, because of the many fixes in 
the new release
  debdiff attached

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1352805/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1356757] Re: In-complete translation when installation.

2014-08-14 Thread Aron Xu
The strings shown in the first picture is already translated long ago
(before trusty's initial release). So the bug could be lying in ubiquity
or indicator-keyboard.

https://translations.launchpad.net/ubuntu/trusty/+source/indicator-
keyboard/+pots/indicator-keyboard/zh_CN/+translate

** No longer affects: ubuntu

** Changed in: ubuntu-translations
   Importance: Undecided = Medium

** Changed in: ubuntu-translations
   Status: New = Triaged

** Also affects: indicator-keyboard (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to indicator-keyboard in Ubuntu.
https://bugs.launchpad.net/bugs/1356757

Title:
  In-complete translation when installation.

Status in OEM Priority Project:
  New
Status in Ubuntu Translations:
  Triaged
Status in “indicator-keyboard” package in Ubuntu:
  New

Bug description:
  STEPS:
  1. Install system by usb disk.
  2. Choose Chinese as installation language.
  3. Observe the top right area should translate to Chinese fully.

  Expect result:
   The top right area should translate to Chinese fully.

  Actual result:
  The ibus, wireless, power, sound indicate icon are English not Chinese.

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1356757/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1356674] Re: Modify data/pkg_depends file for zh language

2014-08-15 Thread Aron Xu
Hi Gunnar,

I'm happy to keep those fonts if we can get related configuration fixed
by the time of release, but if it's not going to happen then just remove
them.

For the ibus and fcitx move, I prefer to hold for a moment. We are
working on the default IME issue and we'll deal with that if we really
get some change there.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to language-selector in Ubuntu.
https://bugs.launchpad.net/bugs/1356674

Title:
  Modify data/pkg_depends file for zh language

Status in “language-selector” package in Ubuntu:
  Incomplete

Bug description:
  When users installing the fonts-droid,fonts-arphic-uming,fonts-arphic-ukai 
pacakges, system fonts become not good-looking. So I suggest removing 
fonts-droid,fonts-arphic-uming,fonts-arphic-ukai pacakages for zh-hans and 
zh-hant.
  In addition,because Ubuntu Kylin integrate fictx ,so I suggest remove ibus 
for zh-hans and zh-hant.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/language-selector/+bug/1356674/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1298110] Re: ibus-engine-sunpinyin assert failure: ibus-engine-sunpinyin: src/sunpinyin_config.cpp:75: static void SunPinyinConfig::set_config(IBusConfig*): Assertion `config'

2014-11-20 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus-sunpinyin in Ubuntu.
https://bugs.launchpad.net/bugs/1298110

Title:
  ibus-engine-sunpinyin assert failure: ibus-engine-sunpinyin:
  src/sunpinyin_config.cpp:75: static void
  SunPinyinConfig::set_config(IBusConfig*): Assertion `config' failed.

Status in “ibus-sunpinyin” package in Ubuntu:
  New

Bug description:
  computer: Inspiron 15R-5537

  lspci:
  00:00.0 Host bridge: Intel Corporation Haswell-ULT DRAM Controller (rev 09)
  00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated 
Graphics Controller (rev 09)
  00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 
09)
  00:14.0 USB controller: Intel Corporation Lynx Point-LP USB xHCI HC (rev 04)
  00:16.0 Communication controller: Intel Corporation Lynx Point-LP HECI #0 
(rev 04)
  00:1b.0 Audio device: Intel Corporation Lynx Point-LP HD Audio Controller 
(rev 04)
  00:1c.0 PCI bridge: Intel Corporation Lynx Point-LP PCI Express Root Port 3 
(rev e4)
  00:1c.3 PCI bridge: Intel Corporation Lynx Point-LP PCI Express Root Port 4 
(rev e4)
  00:1c.4 PCI bridge: Intel Corporation Lynx Point-LP PCI Express Root Port 5 
(rev e4)
  00:1d.0 USB controller: Intel Corporation Lynx Point-LP USB EHCI #1 (rev 04)
  00:1f.0 ISA bridge: Intel Corporation Lynx Point-LP LPC Controller (rev 04)
  00:1f.2 SATA controller: Intel Corporation Lynx Point-LP SATA Controller 1 
[AHCI mode] (rev 04)
  00:1f.3 SMBus: Intel Corporation Lynx Point-LP SMBus Controller (rev 04)
  01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. 
RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 07)
  02:00.0 Network controller: Intel Corporation Wireless 7260 (rev 73)
  03:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Sun XT 
[Radeon HD 8670A/8670M/8690M]

  I am a newbie and I just know this. if you need some more information,
  pleace connection me: zwidnypub...@gmail.com

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: ibus-sunpinyin 2.0.3-5build1
  ProcVersionSignature: Ubuntu 3.13.0-18.38-generic 3.13.6
  Uname: Linux 3.13.0-18-generic x86_64
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: amd64
  AssertionMessage: ibus-engine-sunpinyin: src/sunpinyin_config.cpp:75: static 
void SunPinyinConfig::set_config(IBusConfig*): Assertion `config' failed.
  CurrentDesktop: Unity
  Date: Thu Mar 27 07:28:07 2014
  ExecutablePath: /usr/lib/ibus/ibus-engine-sunpinyin
  InstallationDate: Installed on 2014-03-21 (5 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Alpha amd64 (20140320)
  ProcCmdline: /usr/lib//ibus/ibus-engine-sunpinyin --ibus
  Signal: 6
  SourcePackage: ibus-sunpinyin
  StacktraceTop:
   __assert_fail_base (fmt=0x7fcb18fcd718 %s%s%s:%u: %s%sAssertion `%s' 
failed.\n%n, assertion=assertion@entry=0x41336a config, 
file=file@entry=0x413330 src/sunpinyin_config.cpp, line=line@entry=75, 
function=function@entry=0x413760 static void 
SunPinyinConfig::set_config(IBusConfig*)) at assert.c:92
   __GI___assert_fail (assertion=0x41336a config, file=0x413330 
src/sunpinyin_config.cpp, line=75, function=0x413760 static void 
SunPinyinConfig::set_config(IBusConfig*)) at assert.c:101
   ?? ()
   ?? ()
   __libc_start_main (main=0x405140, argc=2, argv=0x7fff01b10d08, 
init=optimized out, fini=optimized out, rtld_fini=optimized out, 
stack_end=0x7fff01b10cf8) at libc-start.c:287
  Title: ibus-engine-sunpinyin assert failure: ibus-engine-sunpinyin: 
src/sunpinyin_config.cpp:75: static void 
SunPinyinConfig::set_config(IBusConfig*): Assertion `config' failed.
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus-sunpinyin/+bug/1298110/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1240198] Re: Wrong keyboard layout active after booting into desktop

2014-12-01 Thread Aron Xu
** Also affects: ibus (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Also affects: indicator-keyboard (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Changed in: ibus (Ubuntu)
   Status: Triaged = Fix Released

** Changed in: indicator-keyboard (Ubuntu)
   Status: Triaged = Won't Fix

** Changed in: indicator-keyboard (Ubuntu Trusty)
   Status: New = Won't Fix

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1240198

Title:
  Wrong keyboard layout active after booting into desktop

Status in ibus package in Ubuntu:
  Fix Released
Status in indicator-keyboard package in Ubuntu:
  Won't Fix
Status in ibus source package in Trusty:
  New
Status in indicator-keyboard source package in Trusty:
  Won't Fix

Bug description:
  I upgraded from raring to saucy.

  After booting into the desktop (unity), the english keyboard layout is
  active, although everything on the system is set to be german
  (keyboard layout, language...)

  Switching to a virtual terminal (ctrl+alt+f1) fixes the problem and
  changes the layout to the german layout.

  all the time, the new input settings indicator says the german layout
  is active.

  locale says: 
  LANG=de_DE.UTF-8
  LANGUAGE=de_DE
  LC_CTYPE=de_DE.UTF-8
  LC_NUMERIC=de_DE.UTF-8
  LC_TIME=de_DE.UTF-8
  LC_COLLATE=de_DE.UTF-8
  LC_MONETARY=de_DE.UTF-8
  LC_MESSAGES=de_DE.UTF-8
  LC_PAPER=de_DE.UTF-8
  LC_NAME=de_DE.UTF-8
  LC_ADDRESS=de_DE.UTF-8
  LC_TELEPHONE=de_DE.UTF-8
  LC_MEASUREMENT=de_DE.UTF-8
  LC_IDENTIFICATION=de_DE.UTF-8
  LC_ALL=

  /etc/default/keyboard says:
  # Check /usr/share/doc/keyboard-configuration/README.Debian for
  # documentation on what to do after having modified this file.

  # The following variables describe your keyboard and can have the same
  # values as the XkbModel, XkbLayout, XkbVariant and XkbOptions options
  # in /etc/X11/xorg.conf.

  XKBMODEL=pc105
  XKBLAYOUT=de
  XKBVARIANT=
  XKBOPTIONS=

  # If you don't want to use the XKB layout on the console, you can
  # specify an alternative keymap.  Make sure it will be accessible
  # before /usr is mounted.
  # KMAP=/etc/console-setup/defkeymap.kmap.gz

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: indicator-keyboard 0.0.0+13.10.20131010.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  ApportVersion: 2.12.5-0ubuntu2
  Architecture: amd64
  Date: Tue Oct 15 20:49:03 2013
  InstallationDate: Installed on 2013-04-26 (171 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
  MarkForUpload: True
  SourcePackage: indicator-keyboard
  UpgradeStatus: Upgraded to saucy on 2013-10-13 (2 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1240198/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1240198] Re: [SRU]Wrong keyboard layout active after booting into desktop

2014-12-01 Thread Aron Xu
** Summary changed:

- Wrong keyboard layout active after booting into desktop
+ [SRU]Wrong keyboard layout active after booting into desktop

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1240198

Title:
  [SRU]Wrong keyboard layout active after booting into desktop

Status in ibus package in Ubuntu:
  Fix Released
Status in indicator-keyboard package in Ubuntu:
  Won't Fix
Status in ibus source package in Trusty:
  New
Status in indicator-keyboard source package in Trusty:
  Won't Fix

Bug description:
  I upgraded from raring to saucy.

  After booting into the desktop (unity), the english keyboard layout is
  active, although everything on the system is set to be german
  (keyboard layout, language...)

  Switching to a virtual terminal (ctrl+alt+f1) fixes the problem and
  changes the layout to the german layout.

  all the time, the new input settings indicator says the german layout
  is active.

  locale says: 
  LANG=de_DE.UTF-8
  LANGUAGE=de_DE
  LC_CTYPE=de_DE.UTF-8
  LC_NUMERIC=de_DE.UTF-8
  LC_TIME=de_DE.UTF-8
  LC_COLLATE=de_DE.UTF-8
  LC_MONETARY=de_DE.UTF-8
  LC_MESSAGES=de_DE.UTF-8
  LC_PAPER=de_DE.UTF-8
  LC_NAME=de_DE.UTF-8
  LC_ADDRESS=de_DE.UTF-8
  LC_TELEPHONE=de_DE.UTF-8
  LC_MEASUREMENT=de_DE.UTF-8
  LC_IDENTIFICATION=de_DE.UTF-8
  LC_ALL=

  /etc/default/keyboard says:
  # Check /usr/share/doc/keyboard-configuration/README.Debian for
  # documentation on what to do after having modified this file.

  # The following variables describe your keyboard and can have the same
  # values as the XkbModel, XkbLayout, XkbVariant and XkbOptions options
  # in /etc/X11/xorg.conf.

  XKBMODEL=pc105
  XKBLAYOUT=de
  XKBVARIANT=
  XKBOPTIONS=

  # If you don't want to use the XKB layout on the console, you can
  # specify an alternative keymap.  Make sure it will be accessible
  # before /usr is mounted.
  # KMAP=/etc/console-setup/defkeymap.kmap.gz

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: indicator-keyboard 0.0.0+13.10.20131010.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  ApportVersion: 2.12.5-0ubuntu2
  Architecture: amd64
  Date: Tue Oct 15 20:49:03 2013
  InstallationDate: Installed on 2013-04-26 (171 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
  MarkForUpload: True
  SourcePackage: indicator-keyboard
  UpgradeStatus: Upgraded to saucy on 2013-10-13 (2 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1240198/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1240198] Re: [SRU]Wrong keyboard layout active after booting into desktop

2014-12-01 Thread Aron Xu
** Description changed:

- I upgraded from raring to saucy.
+ [Impact]
  
- After booting into the desktop (unity), the english keyboard layout is
- active, although everything on the system is set to be german (keyboard
- layout, language...)
+ When first boot into Unity desktop, English keyboard layout is active
+ while all other parts of the system language settings are set to another
+ language (e.g. German).
  
- Switching to a virtual terminal (ctrl+alt+f1) fixes the problem and
- changes the layout to the german layout.
+ The bug is properly addressed in newer upstream releases in Vivid, but
+ the changes is too intrusive and not suitable for being back ported in
+ SRU. And changing the default to use system keyboard layout solves the
+ problem.
  
- all the time, the new input settings indicator says the german layout is
- active.
+ [Test Case]
  
- locale says: 
- LANG=de_DE.UTF-8
- LANGUAGE=de_DE
- LC_CTYPE=de_DE.UTF-8
- LC_NUMERIC=de_DE.UTF-8
- LC_TIME=de_DE.UTF-8
- LC_COLLATE=de_DE.UTF-8
- LC_MONETARY=de_DE.UTF-8
- LC_MESSAGES=de_DE.UTF-8
- LC_PAPER=de_DE.UTF-8
- LC_NAME=de_DE.UTF-8
- LC_ADDRESS=de_DE.UTF-8
- LC_TELEPHONE=de_DE.UTF-8
- LC_MEASUREMENT=de_DE.UTF-8
- LC_IDENTIFICATION=de_DE.UTF-8
- LC_ALL=
+ 1. Set the system language to something other than English, e.g. German.
+ 2. Create a new user, log in to the Unity desktop of the new user.
+ 3. Check the keyboard layout, it should be German instead of English.
  
- /etc/default/keyboard says:
- # Check /usr/share/doc/keyboard-configuration/README.Debian for
- # documentation on what to do after having modified this file.
+ [Regression Potential]
  
- # The following variables describe your keyboard and can have the same
- # values as the XkbModel, XkbLayout, XkbVariant and XkbOptions options
- # in /etc/X11/xorg.conf.
- 
- XKBMODEL=pc105
- XKBLAYOUT=de
- XKBVARIANT=
- XKBOPTIONS=
- 
- # If you don't want to use the XKB layout on the console, you can
- # specify an alternative keymap.  Make sure it will be accessible
- # before /usr is mounted.
- # KMAP=/etc/console-setup/defkeymap.kmap.gz
- 
- ProblemType: Bug
- DistroRelease: Ubuntu 13.10
- Package: indicator-keyboard 0.0.0+13.10.20131010.1-0ubuntu1
- ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
- Uname: Linux 3.11.0-12-generic x86_64
- ApportVersion: 2.12.5-0ubuntu2
- Architecture: amd64
- Date: Tue Oct 15 20:49:03 2013
- InstallationDate: Installed on 2013-04-26 (171 days ago)
- InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release amd64 (20130424)
- MarkForUpload: True
- SourcePackage: indicator-keyboard
- UpgradeStatus: Upgraded to saucy on 2013-10-13 (2 days ago)
+ Since this changes the default value of the keyboard layout settings by
+ using system defined as default, it avoids using ibus's built-in
+ keyboard layout related functionality, so that this could be a
+ regression for users rely on this certain behavior (e.g. use English
+ keyboard while want to keep the system language settings to German), but
+ such behavior is not expected for normal usage.

** Changed in: ibus (Ubuntu Trusty)
   Status: New = In Progress

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1240198

Title:
  [SRU]Wrong keyboard layout active after booting into desktop

Status in ibus package in Ubuntu:
  Fix Released
Status in indicator-keyboard package in Ubuntu:
  Won't Fix
Status in ibus source package in Trusty:
  In Progress
Status in indicator-keyboard source package in Trusty:
  Won't Fix

Bug description:
  [Impact]

  When first boot into Unity desktop, English keyboard layout is active
  while all other parts of the system language settings are set to
  another language (e.g. German).

  The bug is properly addressed in newer upstream releases in Vivid, but
  the changes is too intrusive and not suitable for being back ported in
  SRU. And changing the default to use system keyboard layout solves the
  problem.

  [Test Case]

  1. Set the system language to something other than English, e.g. German.
  2. Create a new user, log in to the Unity desktop of the new user.
  3. Check the keyboard layout, it should be German instead of English.

  [Regression Potential]

  Since this changes the default value of the keyboard layout settings
  by using system defined as default, it avoids using ibus's built-in
  keyboard layout related functionality, so that this could be a
  regression for users rely on this certain behavior (e.g. use English
  keyboard while want to keep the system language settings to German),
  but such behavior is not expected for normal usage.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1240198/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : 

[Desktop-packages] [Bug 1240198] Re: [SRU]Wrong keyboard layout active after booting into desktop

2014-12-02 Thread Aron Xu
Accepted in trusty-proposed, SRU verification needed.

** Changed in: ibus (Ubuntu Trusty)
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1240198

Title:
  [SRU]Wrong keyboard layout active after booting into desktop

Status in ibus package in Ubuntu:
  Fix Released
Status in indicator-keyboard package in Ubuntu:
  Won't Fix
Status in ibus source package in Trusty:
  Fix Committed
Status in indicator-keyboard source package in Trusty:
  Won't Fix

Bug description:
  [Impact]

  When first boot into Unity desktop, English keyboard layout is active
  while all other parts of the system language settings are set to
  another language (e.g. German).

  The bug is properly addressed in newer upstream releases in Vivid, but
  the changes is too intrusive and not suitable for being back ported in
  SRU. And changing the default to use system keyboard layout solves the
  problem.

  [Test Case]

  1. Set the system language to something other than English, e.g. German.
  2. Create a new user, log in to the Unity desktop of the new user.
  3. Check the keyboard layout, it should be German instead of English.

  [Regression Potential]

  Since this changes the default value of the keyboard layout settings
  by using system defined as default, it avoids using ibus's built-in
  keyboard layout related functionality, so that this could be a
  regression for users rely on this certain behavior (e.g. use English
  keyboard while want to keep the system language settings to German),
  but such behavior is not expected for normal usage.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1240198/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1315320] Re: Keyboard layout changes on restart

2014-12-02 Thread Aron Xu
*** This bug is a duplicate of bug 1240198 ***
https://bugs.launchpad.net/bugs/1240198

** This bug is no longer a duplicate of bug 1284635
   IBus does not support certain keyboard layouts
** This bug has been marked a duplicate of bug 1240198
   [SRU]Wrong keyboard layout active after booting into desktop

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/1315320

Title:
  Keyboard layout changes on restart

Status in unity package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  I am using Ubuntu 14.04 LTS and I am having a problem with my keyboard layout.
  My default keyboard layout is Croatian, but every time I restart/turn on my 
laptop keyboard layout changes to English, but on the top panel the icon shows 
that I am on Croatian.

  So I need first to click on English keyboard layout, and then click again to 
Croatian to change it.
  When I installed Ubuntu this happend just one time, but then after a while 
this is happening very time I turn my laptop on.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: unity 7.2.0+14.04.20140423-0ubuntu1.2
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CurrentDesktop: Unity
  Date: Fri May  2 11:57:06 2014
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2014-04-17 (14 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1315320/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1284635] Re: IBus does not support certain keyboard layouts

2014-12-02 Thread Aron Xu
*** This bug is a duplicate of bug 1240198 ***
https://bugs.launchpad.net/bugs/1240198

** This bug has been marked a duplicate of bug 1240198
   [SRU]Wrong keyboard layout active after booting into desktop

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1284635

Title:
  IBus does not support certain keyboard layouts

Status in ibus package in Ubuntu:
  Triaged
Status in ibus source package in Trusty:
  Triaged

Bug description:
  installed trusty beta1 with keyboard layout set correctly during
  install

  install completes, login to new install - layout as set during install

  once logged in - layout set to US and keyboard layout set during
  install is missing from list

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: keyboard-configuration 1.70ubuntu8
  ProcVersionSignature: Ubuntu 3.13.0-12.32-generic 3.13.4
  Uname: Linux 3.13.0-12-generic i686
  ApportVersion: 2.13.2-0ubuntu5
  Architecture: i386
  CurrentDesktop: XFCE
  Date: Tue Feb 25 12:55:56 2014
  InstallationDate: Installed on 2014-02-25 (0 days ago)
  InstallationMedia: Xubuntu 14.04 LTS Trusty Tahr - Alpha i386 (20140225)
  PackageArchitecture: all
  SourcePackage: console-setup
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1284635/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1363613] Re: ibus-ui-gtk3 crashed with SIGABRT

2014-12-02 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1363613

Title:
  ibus-ui-gtk3 crashed with SIGABRT

Status in ibus package in Ubuntu:
  Confirmed

Bug description:
  ??

  ProblemType: Crash
  DistroRelease: Ubuntu 14.10
  Package: ibus 1.5.8-2ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-12.17-generic 3.16.1
  Uname: Linux 3.16.0-12-generic x86_64
  ApportVersion: 2.14.7-0ubuntu1
  Architecture: amd64
  CrashCounter: 1
  CurrentDesktop: Unity
  Date: Sun Aug 31 11:22:04 2014
  Disassembly: = 0x7f552e268d27:   Cannot access memory at address 
0x7f552e268d27
  ExecutablePath: /usr/lib/ibus/ibus-ui-gtk3
  InstallationDate: Installed on 2014-07-20 (41 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 
(20131016.1)
  ProcCmdline: /usr/lib/ibus/ibus-ui-gtk3
  ProcEnviron:
   LANGUAGE=fr_FR
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  Signal: 6
  SourcePackage: ibus
  StacktraceTop:
   ?? ()
   ?? ()
   ?? ()
   ?? ()
   ?? ()
  Title: ibus-ui-gtk3 crashed with SIGABRT
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1363613/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1301178] Re: ibus-daemon crashed with signal 5 in g_main_context_new()

2014-12-02 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1301178

Title:
  ibus-daemon crashed with signal 5 in g_main_context_new()

Status in ibus package in Ubuntu:
  New

Bug description:
  When I start Gnome 3.12

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu3
  ProcVersionSignature: Ubuntu 3.13.0-20.42-generic 3.13.7
  Uname: Linux 3.13.0-20-generic x86_64
  ApportVersion: 2.14-0ubuntu1
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Wed Apr  2 08:35:09 2014
  ExecutablePath: /usr/bin/ibus-daemon
  InstallationDate: Installed on 2014-03-30 (2 days ago)
  InstallationMedia: Ubuntu-GNOME 14.04 LTS Trusty Tahr - Beta amd64 
(20140326.1)
  ProcCmdline: /usr/bin/ibus-daemon --daemonize --xim
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  Signal: 5
  SourcePackage: ibus
  StacktraceTop:
   ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_main_context_new () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libibus-1.0.so.5
   g_initable_new_valist () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
  Title: ibus-daemon crashed with signal 5 in g_main_context_new()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1301178/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1290692] Re: ibus-dconf crashed with SIGSEGV in ibus_service_service_get_property_cb()

2014-12-02 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1290692

Title:
  ibus-dconf crashed with SIGSEGV in
  ibus_service_service_get_property_cb()

Status in ibus package in Ubuntu:
  New

Bug description:
  no comments

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu2
  ProcVersionSignature: Ubuntu 3.13.0-16.36-generic 3.13.5
  Uname: Linux 3.13.0-16-generic i686
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: i386
  CurrentDesktop: Unity
  Date: Tue Mar 11 06:44:31 2014
  ExecutablePath: /usr/lib/ibus/ibus-dconf
  InstallationDate: Installed on 2014-02-01 (37 days ago)
  InstallationMedia: Ubuntu 12.04 Precise - Build i386 LIVE Binary 
20120426-12:41
  ProcCmdline: /usr/lib/ibus/ibus-dconf
  ProcEnviron:
   LANGUAGE=fr_FR
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  Signal: 11
  SourcePackage: ibus
  StacktraceTop:
   ?? () from /usr/lib/i386-linux-gnu/libibus-1.0.so.5
   ?? () from /usr/lib/i386-linux-gnu/libdconf.so.1
   ?? () from /usr/lib/i386-linux-gnu/libdconf.so.1
   g_simple_async_result_complete () from 
/usr/lib/i386-linux-gnu/libgio-2.0.so.0
   ?? () from /usr/lib/i386-linux-gnu/libgio-2.0.so.0
  Title: ibus-dconf crashed with SIGSEGV in g_simple_async_result_complete()
  UpgradeStatus: Upgraded to trusty on 2014-02-08 (30 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1290692/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1303748] Re: ibus-daemon crashed with signal 5 in g_cancellable_make_pollfd()

2014-12-02 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1303748

Title:
  ibus-daemon crashed with signal 5 in g_cancellable_make_pollfd()

Status in ibus package in Ubuntu:
  New

Bug description:
  Just crashed, without changing kbd layout or some other action.

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu3
  ProcVersionSignature: Ubuntu 3.13.0-23.45-generic 3.13.8
  Uname: Linux 3.13.0-23-generic x86_64
  ApportVersion: 2.14.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Apr  7 14:20:21 2014
  ExecutablePath: /usr/bin/ibus-daemon
  InstallationDate: Installed on 2014-03-27 (10 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Beta amd64 (20140326)
  ProcCmdline: /usr/bin/ibus-daemon --daemonize --xim
  Signal: 5
  SourcePackage: ibus
  StacktraceTop:
   ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
   g_cancellable_make_pollfd () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
   g_socket_condition_timed_wait () from 
/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
   g_socket_accept () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
  Title: ibus-daemon crashed with signal 5 in g_cancellable_make_pollfd()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1303748/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1196484] Re: package ibus 1.4.2-0ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2014-12-02 Thread Aron Xu
Ubuntu 13.04 is not supported anymore, thus close it.

** Changed in: ibus (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1196484

Title:
  package ibus 1.4.2-0ubuntu2 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 2

Status in ibus package in Ubuntu:
  Fix Released

Bug description:
  Recurring error during login

  ProblemType: Package
  DistroRelease: Ubuntu 13.04
  Package: ibus 1.4.2-0ubuntu2
  ProcVersionSignature: Ubuntu 3.8.0-25.37-generic 3.8.13
  Uname: Linux 3.8.0-25-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.9.2-0ubuntu8.1
  Architecture: amd64
  Date: Fri Jun 28 21:48:24 2013
  DuplicateSignature: package:ibus:1.4.2-0ubuntu2:subprocess installed 
post-installation script returned error exit status 2
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 2
  InstallationDate: Installed on 2012-07-28 (337 days ago)
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  MarkForUpload: True
  SourcePackage: ibus
  Title: package ibus 1.4.2-0ubuntu2 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 2
  UpgradeStatus: Upgraded to raring on 2013-06-23 (7 days ago)
  modified.conffile..etc.X11.xinit.xinput.d.ibus: [deleted]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1196484/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 535541] Re: IBus input method can't load, and Ctrl+Spacekey does't work

2014-12-02 Thread Aron Xu
Mark as Fix Released for bug report to release that's not supported
anymore, please open another report if it still exit.

** Changed in: ibus (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/535541

Title:
  IBus input method can't load,and Ctrl+Spacekey does't work

Status in ibus package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: ubuntuone-client

  when browser Internet, can't input Chinese in the Dialog Box;

  the Key Ctrl+Space isn't working.

  ProblemType: Bug
  .home.jeason..cache.ubuntuone.log.oauth.login.log:
   启动 Ubuntu One 客户端版本 1.0.2
   2010-03-10 11:48:05,784:784.111976624 UbuntuOne.Client.Applet 启动 Ubuntu One 
客户端版本 1.0.3
  .home.jeason..cache.ubuntuone.log.syncdaemon.exceptions.log:
   
  .home.jeason..config.ubuntuone.ubuntuone.client.conf:
   [ubuntuone]
   bookmarked = True
   connected = True
   connect = 0
   show_applet = 1
  Architecture: i386
  CheckboxSubmission: bab9a9a89b32ea6819c51e91a64c2872
  CheckboxSystem: f134069bba098730d27f59b402920826
  Date: Wed Mar 10 14:39:34 2010
  DistroRelease: Ubuntu 9.10
  InstallationMedia: Ubuntu-Netbook-Remix 9.10 Karmic Koala - Release i386 
(20091028.4)
  Package: ubuntuone-client 1.0.3-0ubuntu1
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=zh_CN.UTF-8
   LANG=zh_CN.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 2.6.31-20.57-generic
  SourcePackage: ubuntuone-client
  Tags:  ubuntu-unr
  Uname: Linux 2.6.31-20-generic i686

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/535541/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1313428] Re: hotkey doesn’t activate ibus

2014-12-02 Thread Aron Xu
** Changed in: ibus (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1313428

Title:
  hotkey doesn’t activate ibus

Status in ibus package in Ubuntu:
  Incomplete

Bug description:
  Ctrl-Space or Super-Space just do nothing. – For switching
  IMEs around, I have to go the systray icon in gnome-panel.

  On top there is no way to switch IME mode off.

  ibus-setup doesn’t show any hotkey configuration either, for that
  matter.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: ibus 1.5.5-1ubuntu3
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic i686
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: i386
  CurrentDesktop: Unity
  Date: Mon Apr 28 03:52:01 2014
  InstallationDate: Installed on 2009-12-23 (1586 days ago)
  InstallationMedia: Ubuntu-Netbook-Remix 9.10 Karmic Koala - Release i386 
(20091028.4)
  SourcePackage: ibus
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1313428/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1320456] Re: Wrong keyboard layout after login

2014-12-02 Thread Aron Xu
*** This bug is a duplicate of bug 1240198 ***
https://bugs.launchpad.net/bugs/1240198

** This bug has been marked a duplicate of bug 1240198
   [SRU]Wrong keyboard layout active after booting into desktop

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1320456

Title:
  Wrong keyboard layout after login

Status in ibus package in Ubuntu:
  Confirmed

Bug description:
  Hello,

  The keyboard layout is azerty (fr) in lightdm, but after login it
  switches to qwerty (en) and i need to click the first entry in the
  keyboard indicator to have it back to azerty. I do have only french
  and french variante layouts in the keyboard layout list.

  Side effect : Compiz has to be restarted to take the change for
  shortcuts like super-w.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: unity-settings-daemon 14.04.0+14.04.20140414-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-24.47-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sat May 17 11:51:52 2014
  ExecutablePath: /usr/lib/unity-settings-daemon/unity-settings-daemon
  InstallationDate: Installed on 2014-04-18 (28 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  ProcEnviron:
   PATH=(custom, no user)
   LANGUAGE=fr_FR
   XDG_RUNTIME_DIR=set
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  SourcePackage: unity-settings-daemon
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1320456/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1364238] Re: keyboard error

2014-12-02 Thread Aron Xu
** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to ibus in Ubuntu.
https://bugs.launchpad.net/bugs/1364238

Title:
  keyboard error

Status in ibus package in Ubuntu:
  New

Bug description:
  Application keyboard input method closed unnexpectedly

  ProblemType: Crash
  DistroRelease: Ubuntu 14.10
  Package: ibus 1.5.8-2ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-11.16-generic 3.16.1
  Uname: Linux 3.16.0-11-generic x86_64
  ApportVersion: 2.14.7-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Sep  2 07:25:44 2014
  Disassembly: = 0x7f58eaf51d27:   Cannot access memory at address 
0x7f58eaf51d27
  ExecutablePath: /usr/lib/ibus/ibus-ui-gtk3
  InstallationDate: Installed on 2014-05-27 (97 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
  ProcCmdline: /usr/lib/ibus/ibus-ui-gtk3
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  Signal: 6
  SourcePackage: ibus
  StacktraceTop:
   ?? ()
   ?? ()
   ?? ()
   ?? ()
   ?? ()
  Title: ibus-ui-gtk3 crashed with SIGABRT
  UpgradeStatus: Upgraded to utopic on 2014-09-01 (0 days ago)
  UserGroups: adm cdrom debian-tor dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1364238/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


  1   2   3   4   5   6   7   8   >