[Bug 1419252] [NEW] The GUI of Apport quits with an error message needs PID

2015-02-07 Thread Roland Illig
Public bug reported:

When I start Apport to report a bug, I have two choices:

1. Run ubuntu-bug packagename
2. Run ubuntu-bug

I chose the latter case.

I was then asked whether my bug falls into one of a few obscure
categories. None of them sounded likely, so I chose other.

Then, Apport just displayed an error message, saying it needs a PID or
something. I have no idea what a PID is, so how am I supposed to
continue filing a bug report?

Instead, Apport should have offered me to pick an application from the list of 
currently running applications.
Or, to enter a package name.
Or, to enter the name of an executable. (In the case of Apport, ubuntu-bug 
ubuntu-bug doesn't work, which surprised me a lot.)
Or, to enter just a search term, and then choose from a list of packages or 
executables.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: apport 2.14.1-0ubuntu3.2
ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4
Uname: Linux 3.13.0-32-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
CurrentDesktop: Unity
Date: Sat Feb  7 11:40:47 2015
InstallationDate: Installed on 2015-02-07 (0 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 (20140722.2)
PackageArchitecture: all
SourcePackage: apport
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: apport (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug trusty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1419252

Title:
  The GUI of Apport quits with an error message needs PID

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1419253] [NEW] Language Support displays a tooltip that is too large to be read

2015-02-07 Thread Roland Illig
Public bug reported:

The tooltip (see the attached screenshot) is so large that I didn't
manage to read it. The line length should have been limited to about 66
characters.

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Attachment added: Screenshot from 2015-02-07 11:27:55.png
   
https://bugs.launchpad.net/bugs/1419253/+attachment/4314167/+files/Screenshot%20from%202015-02-07%2011%3A27%3A55.png

** Package changed: apport (Ubuntu) = ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1419253

Title:
  Language Support displays a tooltip that is too large to be read

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 338717] Re: unwanted pause between songs

2009-03-06 Thread Roland Illig

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/23546521/Dependencies.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/23546522/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/23546523/ProcStatus.txt

-- 
unwanted pause between songs
https://bugs.launchpad.net/bugs/338717
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 338717] [NEW] unwanted pause between songs

2009-03-06 Thread Roland Illig
Public bug reported:

Binary package hint: rhythmbox

When I play a ripped CD on which the songs are seamless, rhythmbox still
pauses for the small part of a second, which disturbs the continuous
sound. ogg123 doesn't do this pause, and rhythmbox also shouldn't.

ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 8.10
ExecutablePath: /usr/bin/rhythmbox
Package: rhythmbox 0.11.6svn20081008-0ubuntu4.3
ProcEnviron:
 SHELL=/bin/bash
 
PATH=/home/username/bin:/home/username/usr.local/bin:/home/username/usr.local/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/pkg/bin:/usr/pkg/sbin
 LANG=de_DE.UTF-8
SourcePackage: rhythmbox
Uname: Linux 2.6.27-11-generic x86_64

** Affects: rhythmbox (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
unwanted pause between songs
https://bugs.launchpad.net/bugs/338717
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 307987] [NEW] fgetwc returns various errors when it shouldn't

2008-12-14 Thread Roland Illig
Public bug reported:

$ cat wcw.c
#define _GNU_SOURCE

#include errno.h
#include locale.h
#include stdio.h
#include stdlib.h
#include wchar.h

int
main(void)
{
wint_t c;

if (!setlocale(LC_CTYPE, )) {
perror(setlocale);
exit(EXIT_FAILURE);
}

while ((errno = 0, c = fgetwc(stdin)) != WEOF) {
printf(U+%04x has width %d\n, (unsigned)c, wcwidth(c));
}

if (errno != 0) {
fprintf(stderr, errno = %d\n, errno);
perror(fgetwc);
exit(EXIT_FAILURE);
}
return 0;
}

$ cc -Wall -W wcw.c -o wcw
$ ./wcw  empty
$ ./wcw  /dev/null
errno = 25
fgetwc: Inappropriate ioctl for device
$ cat /dev/null | ./wcw 
errno = 29
fgetwc: Illegal seek

On the other hand, on Solaris 10, I get the following behavior, which
lets me distinguish EOF from errors:

$ ./wcw  empty
$ ./wcw  /de
$ ./wcw  /dev/null
$ cat empty | ./wcw

** Affects: glibc (Ubuntu)
 Importance: Undecided
 Status: New

-- 
fgetwc returns various errors when it shouldn't
https://bugs.launchpad.net/bugs/307987
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs