[Bug 507132] Re: eyeD3 doesn't parse certain id3 tags

2012-03-02 Thread ptitpoul
The problem appears with UserTextFrame and, when the option --strict is on, it 
appears also with LyricsFrame and CommentFrame. I had a hard time to find the 
reason. Here are the explanations taking for example CommentFrame.
Actually, the error does not raise from encode() but decode() which seems to be 
called by sys.stdout.write (called by printMsg, function which I don't see the 
usefulness compared to print) in eyeD3, line 995:
printMsg(%s: [Description: %s] [Lang: %s]\n%s %\
 (boldText(Comment), cDesc, cLang,
  cText.encode(ENCODING,replace)));
with printMsg(s) = sys.stdout.write(s + '\n').

The problem is linked to cDesc. The strings cDesc and cText are set as Unicode 
strings in frames.py, line 1076:
self.description = unicode(d, id3EncodingToString(self.encoding));
self.comment = unicode(c, id3EncodingToString(self.encoding));
but then,
if not strictID3():
self.description = cleanNulls(self.description)
self.comment = cleanNulls(self.comment)
with cleanNulls(s) = /.join([x for x in s.split('\x00') if x]), which does 
not return a Unicode string. Therefore, with the option --strict, at the 
printing, cDesc is a Unicode string but cText.encode(ENCODING,replace) is a 
byte string. A sample command showing the error is
 print %s %s %(u'', (u'é').encode(utf-8,replace))
Traceback (most recent call last):
File stdin, line 1, in module
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 0: 
ordinal not in range(128)
whereas
 print %s %s %('', (u'é').encode(utf-8,replace))
 é
 (u'é').encode(utf-8,replace) # returns a byte string
'\xc3\xa9'

In Python 2.x (maybe different in 3.x with the new str type), if there
is at least one Unicode string, the print formatting apparently tries to
convert all the byte strings, if any, to Unicode with decode() which by
default uses 'ascii' encoding, hence the UnicodeDecodeError.

I see two (explainable ;) ) ways out of the bug, either by modifying
cleanNulls(s) to return a Unicode string (maybe contrary to the purpose
of cleanNulls(s), I don't know), or by encoding cDesc at the printing
with cDesc.encode(ENCODING,replace), which the attached patch
accomplishes.

For UserTextFrame, the bug always appears because description is not
processed through cleanNulls() whatever --strict, which seems to be
another default compared to the behavior chosen for LyricsFrame and
CommentFrame.

** Patch added: fixes the format conversion of the description tag in printed 
messages
   
https://bugs.launchpad.net/ubuntu/+source/eyed3/+bug/507132/+attachment/2803977/+files/description-unicode-conversion.patch

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

Title:
  eyeD3 doesn't parse certain id3 tags

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

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

[Bug 769866] Re: tab completion no longer escapes filenames and completes dirnames incorrectly (space instead of slash)

2011-08-11 Thread ptitpoul
I can confirm #7, acroread.sh from the repository (9.4.2-0natty1, Ubuntu Natty 
64) works. I didn't change /etc/bash_completion. All application-specific 
completions works.
To #22 and #23, did you login in a new bash shell after removing acroread.sh to 
test completion?

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

Title:
  tab completion no longer escapes filenames and completes dirnames
  incorrectly (space instead of slash)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/769866/+subscriptions

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


[Bug 357965] Re: MASTER package nspluginwrapper 1.2.2-0ubuntu4 failed to install/upgrade: wrapper update crashes when gcu-plugin is installed

2011-06-28 Thread ptitpoul
Same here, removing google-talkplugin fixed the problem.

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

Title:
  MASTER package nspluginwrapper 1.2.2-0ubuntu4 failed to
  install/upgrade: wrapper update crashes when gcu-plugin is installed

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

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


[Bug 473197] Re: kcm-gtk writes settings into wrong file

2010-08-24 Thread ptitpoul
excepted for sudo account, /root/.gtkrc-2.0-kde4 (changed with kdesudo
kcmshell4 kcmgtk) is not used on my pc. I've added a symlink named
.gtkrc-2.0.

** Changed in: kcm-gtk (Ubuntu)
   Status: Incomplete = Confirmed

-- 
kcm-gtk writes settings into wrong file
https://bugs.launchpad.net/bugs/473197
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 473197] Re: kcm-gtk writes settings into wrong file

2010-08-24 Thread ptitpoul
what is the reason to use .gtkrc-2.0-kde4 instead of.gtkrc-2.0 which is
the default name hard coded in kde-base (according to
http://bugs.gentoo.org/330509)?

-- 
kcm-gtk writes settings into wrong file
https://bugs.launchpad.net/bugs/473197
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 259157] Re: [MASTER 0.7 regression] atheros/madwifi and orinoco drivers not supported

2010-08-20 Thread ptitpoul
my problem was not related to the driver but to an unresolved bug of 
knetworkmanager (network-manager-kde on Kubuntu), 
https://bugs.kde.org/show_bug.cgi?id=209673, which wrongly handles the 
certificate.

** Bug watch added: KDE Bug Tracking System #209673
   http://bugs.kde.org/show_bug.cgi?id=209673

-- 
[MASTER 0.7 regression] atheros/madwifi and orinoco drivers not supported
https://bugs.launchpad.net/bugs/259157
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 473197] Re: kcm-gtk writes settings into wrong file

2010-08-20 Thread ptitpoul
I think that the package kubuntu-default-settings installs /usr/share
/kubuntu-default-settings/gtk2-engines-qtcurve.rc.sh and copies it in
$HOME/.kde/env. This script contains export
GTK2_RC_FILES=$HOME/.gtkrc-2.0-kde4. A new installation of Lucid did
not present the issue.

-- 
kcm-gtk writes settings into wrong file
https://bugs.launchpad.net/bugs/473197
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 560492] [NEW] problem of sampling rate with default output

2010-04-11 Thread ptitpoul
Public bug reported:

I discovered the problem by listening a linear chirp on wikipedia,
http://en.wikipedia.org/wiki/File:Linchirp.ogg. At about 1 sec, a second
chirp can be heard. On the bad quality recording attached, it's hearable
from 1.5 sec. I recorded it with Audacity playing the chirp sound in the
same time. The playing device of ALSA in Audacity is set on default.
When I change it for dmix, the problem disappears. I observed the same
in VLC, when I change the output device for ALSA from predefined
(problem) to HDA Intel: ALC269 Analog (hw:0,0). I suspect a problem of
sampling rate, for example between 44100 and 48000 Hz, in alsa
configuration.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: alsa-base 1.0.22.1+dfsg-0ubuntu3
ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1
Uname: Linux 2.6.32-19-generic x86_64
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog]
   Subdevices: 0/1
   Subdevice #0: subdevice #0
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xfcbf4000 irq 22'
   Mixer name   : 'Realtek ALC269'
   Components   : 'HDA:10ec0269,10431483,0014'
   Controls  : 14
   Simple ctrls  : 9
Card1.Amixer.info:
 Card hw:1 'NVidia'/'HDA NVidia at 0xfe97c000 irq 16'
   Mixer name   : 'Nvidia ID b'
   Components   : 'HDA:10de000b,10de0101,00100100'
   Controls  : 0
   Simple ctrls  : 0
Card1.Amixer.values:
 
Date: Sun Apr 11 01:30:34 2010
InstallationMedia: Kubuntu 9.10 Karmic Koala - Release amd64 (20091027)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=fr_FR:fr:en_GB:en
 PATH=(custom, user)
 LANG=fr_FR.UTF-8
 SHELL=/bin/bash
SourcePackage: alsa-driver
dmi.bios.date: 11/24/2009
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 208
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: UL80VT
dmi.board.vendor: ASUSTeK Computer Inc.
dmi.board.version: 1.0
dmi.chassis.asset.tag: ATN12345678901234567
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK Computer Inc.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr208:bd11/24/2009:svnASUSTeKComputerInc.:pnUL80VT:pvr1.0:rvnASUSTeKComputerInc.:rnUL80VT:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr1.0:
dmi.product.name: UL80VT
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK Computer Inc.

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug lucid

-- 
problem of sampling rate with default output
https://bugs.launchpad.net/bugs/560492
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 560492] Re: problem of sampling rate with default output

2010-04-11 Thread ptitpoul

** Attachment added: recording of 
http://en.wikipedia.org/wiki/File:Linchirp.ogg;
   http://launchpadlibrarian.net/43752151/alsa-default.ogg

** Attachment added: AlsaDevices.txt
   http://launchpadlibrarian.net/43751542/AlsaDevices.txt

** Attachment added: AudioDevicesInUse.txt
   http://launchpadlibrarian.net/43751543/AudioDevicesInUse.txt

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/43751544/BootDmesg.txt

** Attachment added: Card0.Amixer.values.txt
   http://launchpadlibrarian.net/43751545/Card0.Amixer.values.txt

** Attachment added: Card0.Codecs.codec.0.txt
   http://launchpadlibrarian.net/43751546/Card0.Codecs.codec.0.txt

** Attachment added: Card1.Codecs.codec.0.txt
   http://launchpadlibrarian.net/43751547/Card1.Codecs.codec.0.txt

** Attachment added: Card1.Codecs.codec.1.txt
   http://launchpadlibrarian.net/43751548/Card1.Codecs.codec.1.txt

** Attachment added: Card1.Codecs.codec.2.txt
   http://launchpadlibrarian.net/43751549/Card1.Codecs.codec.2.txt

** Attachment added: Card1.Codecs.codec.3.txt
   http://launchpadlibrarian.net/43751550/Card1.Codecs.codec.3.txt

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/43751551/CurrentDmesg.txt

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

** Attachment added: PciMultimedia.txt
   http://launchpadlibrarian.net/43751553/PciMultimedia.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/43751554/ProcCpuinfo.txt

-- 
problem of sampling rate with default output
https://bugs.launchpad.net/bugs/560492
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 560492] Re: problem of sampling rate with default output

2010-04-11 Thread ptitpoul
But I don't use pulseaudio, I'm on Kubuntu; phonon-backend-xine and
phonon-backend-gstreamer are installed and the problem occurs with both.
I installed pulseaudio to test with it and the problem did not occur
with pulseaudio (so I think that the report from paplay won't be useful
here, but I may be wrong).

-- 
problem of sampling rate with default output
https://bugs.launchpad.net/bugs/560492
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 453025] Re: Internal Microphone bug

2010-04-11 Thread ptitpoul
Differences between bug #453018, bug #453020, and bug #453025 is
CheckboxTest which is respectively alsa_record_playback_bluetooth,
alsa_record_playback_external, and alsa_record_playback_internal.
Perhaps, they could be merged.

** This bug has been marked a duplicate of bug 453020
   Microphone bug

** This bug is no longer a duplicate of bug 453020
   Microphone bug

-- 
Internal Microphone bug
https://bugs.launchpad.net/bugs/453025
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 453025] Re: Internal Microphone bug

2010-04-11 Thread ptitpoul
idem with Bug #453016, alsa_record_playback_alternates

-- 
Internal Microphone bug
https://bugs.launchpad.net/bugs/453025
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 549827] Re: ath9k: Sometimes cannot establish wireless connection on the first attempt after login

2010-04-07 Thread ptitpoul
Is it a WPA enterprise?

-- 
ath9k: Sometimes cannot establish wireless connection on the first attempt 
after login
https://bugs.launchpad.net/bugs/549827
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 259157] Re: [MASTER 0.7 regression] atheros/madwifi and orinoco drivers not supported

2010-04-07 Thread ptitpoul
Like ryuhayabusa, it doesn't work for WPA Enterprise PEAP, mschapv2. My
card is an Atheros AR9285. I tried with linux-backports-modules-
wireless-2.6.32-19-generic on Lucid, or with compat-wireless-2.6.33 of
2010-03-01, not  better.

[ 1094.467322] wlan0: direct probe to AP 00:1a:1e:eb:8a:21 (try 1)
[ 1094.660105] wlan0: direct probe to AP 00:1a:1e:eb:8a:21 (try 2)
[ 1094.663747] wlan0: direct probe responded
[ 1094.663754] wlan0: authenticate with AP 00:1a:1e:eb:8a:21 (try 1)
[ 1094.665619] wlan0: authenticated
[ 1094.665668] wlan0: associate with AP 00:1a:1e:eb:8a:21 (try 1)
[ 1094.669132] wlan0: RX AssocResp from 00:1a:1e:eb:8a:21 (capab=0x431 status=0 
aid=1)
[ 1094.669138] wlan0: associated
[ 1096.722630] wlan0: deauthenticating from 00:1a:1e:eb:8a:21 by local choice 
(reason=3)
[ 1096.967156] ath9k: Two wiphys trying to scan at the same time

-- 
[MASTER 0.7 regression] atheros/madwifi and orinoco drivers not supported
https://bugs.launchpad.net/bugs/259157
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 470424] Re: [kde] python2.6 crashed with UnicodeDecodeError in decode()

2010-03-28 Thread ptitpoul
I think it's a duplicate of bug #133937, however I have had the same problem, 
even after upgrading to lucid beta 1:
~$ kdesudo software-properties-kde 
Traceback (most recent call last):
  File /usr/bin/software-properties-kde, line 122, in module
app = SoftwarePropertiesKDE(datadir=data_dir, options=options, file=file, 
attachWinID=attachWinID)
  File 
/usr/lib/python2.6/dist-packages/softwareproperties/kde/SoftwarePropertiesKDE.py,
 line 128, in __init__
self.init_distro()
  File 
/usr/lib/python2.6/dist-packages/softwareproperties/kde/SoftwarePropertiesKDE.py,
 line 209, in init_distro
text = _(%s updates) % self.distro.id
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 6: ordinal 
not in range(128)

** Attachment added: sources.list
   http://launchpadlibrarian.net/42338253/sources.list

-- 
[kde] python2.6 crashed with UnicodeDecodeError in decode()
https://bugs.launchpad.net/bugs/470424
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 470424] Re: [kde] python2.6 crashed with UnicodeDecodeError in decode()

2010-03-28 Thread ptitpoul
This bug reports same debug info as bug #133937, I mark it as a
duplicate. Actually my bug seems different and is already reported as
Bug #545927.

-- 
[kde] python2.6 crashed with UnicodeDecodeError in decode()
https://bugs.launchpad.net/bugs/470424
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 464364] Re: python2.6 crashed with UnicodeDecodeError in decode()

2010-03-28 Thread ptitpoul
*** This bug is a duplicate of bug 133937 ***
https://bugs.launchpad.net/bugs/133937

** This bug is no longer a duplicate of bug 470424
   [kde] python2.6 crashed with UnicodeDecodeError in decode()
** This bug has been marked a duplicate of bug 133937
   software-properties-kde crashed with error  'utf8' codec can't decode bytes 
in position 27-28

-- 
python2.6 crashed with UnicodeDecodeError in decode()
https://bugs.launchpad.net/bugs/464364
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 470424] Re: [kde] python2.6 crashed with UnicodeDecodeError in decode()

2010-03-28 Thread ptitpoul
*** This bug is a duplicate of bug 133937 ***
https://bugs.launchpad.net/bugs/133937

** This bug has been marked a duplicate of bug 133937
   software-properties-kde crashed with error  'utf8' codec can't decode bytes 
in position 27-28

-- 
[kde] python2.6 crashed with UnicodeDecodeError in decode()
https://bugs.launchpad.net/bugs/470424
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 464441] Re: python2.6 crashed with UnicodeDecodeError in decode()

2010-03-28 Thread ptitpoul
*** This bug is a duplicate of bug 133937 ***
https://bugs.launchpad.net/bugs/133937

** This bug is no longer a duplicate of bug 470424
   [kde] python2.6 crashed with UnicodeDecodeError in decode()
** This bug has been marked a duplicate of bug 133937
   software-properties-kde crashed with error  'utf8' codec can't decode bytes 
in position 27-28

-- 
python2.6 crashed with UnicodeDecodeError in decode()
https://bugs.launchpad.net/bugs/464441
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 375891] Re: [kubuntu] OpenOffice Impress: Movies do not play

2010-01-31 Thread ptitpoul
With a fresh karmic kubuntu, I installed the package phonon-backend-
gstreamer (which installed other gstreamer dependences) and videos whose
codec (gstreamer0.10-...) is installed are displayed in the slideshow.
The toolbar Media player with media buttons does not work, I suppose
this is a java player (--com.sun.star.media.Manager_GStreamer uno
reference).

-- 
[kubuntu] OpenOffice Impress: Movies do not play
https://bugs.launchpad.net/bugs/375891
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 375891] Re: [kubuntu] OpenOffice Impress: Movies do not play

2010-01-31 Thread ptitpoul
Unfortunately, videos are displayed like in overlay, they are always
above other objects. And the video automatically starts when the slide
appears. If you don't want this, a trick is to add a stop media effect
at the beginning of the slide.

-- 
[kubuntu] OpenOffice Impress: Movies do not play
https://bugs.launchpad.net/bugs/375891
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 308605] Re: [MASTER]Firefox is already running message

2009-10-31 Thread ptitpoul
No more problem on kubuntu Karmic.

-- 
[MASTER]Firefox is already running message
https://bugs.launchpad.net/bugs/308605
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 375891] Re: [kubuntu] OpenOffice Impress: Movies do not play

2009-10-21 Thread ptitpoul
On Kubunty Karmic, openoffice.org 3.1.1-4ubuntu2, I always have 
--com.sun.star.media.Manager_GStreamer uno reference, even with all gstreamer 
packages installed.
I tried with JMF without success, still the same 
--com.sun.star.media.Manager_GStreamer uno reference message.

I tried with the community version. Without JMF, I had
--com.sun.star.media.Manager_Java uno reference. With JMF installed
(and Fobs4JMF for more codecs), it worked, at last.

-- 
[kubuntu] OpenOffice Impress: Movies do not play
https://bugs.launchpad.net/bugs/375891
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 432931] [NEW] tools toolbar not completely displayed

2009-09-19 Thread ptitpoul
Public bug reported:

Binary package hint: kile

with Karmic package, when kile is launched, the tools toolbar displays only 
quickpreview icons and skip the rest (in my case, pdflatex, bibtex, viewpdf, 
separators and pstopdf). Each time I launch Kile, I have to go in the Configure 
Toolbars panel, change something in the Tools toolbar to activate the apply 
button, apply and then the whole toolbar appears.
Version : 1:2.1.0~svn1014763beta2-1ubuntu1

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

-- 
tools toolbar not completely displayed
https://bugs.launchpad.net/bugs/432931
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 419484] Re: Embedded viewer reset toolbars

2009-09-06 Thread ptitpoul
This bug is not present in karmic (kile 2.1.0~svn1014763beta2-1ubuntu1).
In jaunty, it's kile 2.1.0~svn942443-0ubuntu4.1.

-- 
Embedded viewer reset toolbars
https://bugs.launchpad.net/bugs/419484
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kile in ubuntu.

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


[Bug 419484] Re: Embedded viewer reset toolbars

2009-09-06 Thread ptitpoul
Is it worth that I report that abbreviation completion is absent (in
Edit menu and shortcuts) in the jaunty version but is present and works
in the development release ?

-- 
Embedded viewer reset toolbars
https://bugs.launchpad.net/bugs/419484
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 419484] [NEW] Embedded viewer reset toolbars

2009-08-26 Thread ptitpoul
Public bug reported:

Binary package hint: kile

When viewing the output file in the embedded viewer (okularpart), the
configuration of toolbars (orientation, text position, icon size) is
reseted.

Version 2.0.81
Using KDE 4.3.00 (KDE 4.3.0)
on Kubuntu Jaunty

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

-- 
Embedded viewer reset toolbars
https://bugs.launchpad.net/bugs/419484
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 313504] Re: Scanimage/usbfs device IO error with Canon MP700 scanner

2009-07-28 Thread ptitpoul
The version 1.0.17-1 does not contain libsane-pixma. I have the same problem 
with a Canon MP360. I did not succeed to scan with modprobe trick. I still have 
usbfs: process 3022 (scanimage) did not claim interface 0 before use messages.
The only way I succeeded with is to use the version from 
http://home.arcor.de/wittawat/pixma/

-- 
Scanimage/usbfs device IO error with Canon MP700 scanner
https://bugs.launchpad.net/bugs/313504
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 313504] Re: Scanimage/usbfs device IO error with Canon MP700 scanner

2009-07-28 Thread ptitpoul
And the problem continues with the 1.0.20-4ubuntu2 version in Karmic.

-- 
Scanimage/usbfs device IO error with Canon MP700 scanner
https://bugs.launchpad.net/bugs/313504
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 308605] Re: [MASTER]Firefox is already running message

2009-05-09 Thread ptitpoul
Me too in Kubuntu Jaunty.

My backtrace is not very useful as most symbols are missing:
(gdb) bt
#0  0xb7feb430 in __kernel_vsyscall ()  
#1  0xb7fc5cf9 in __lll_lock_wait () from /lib/tls/i686/cmov/libpthread.so.0
#2  0xb7fc1129 in _L_lock_89 () from /lib/tls/i686/cmov/libpthread.so.0 
#3  0xb7fc0a32 in pthread_mutex_lock () from /lib/tls/i686/cmov/libpthread.so.0
#4  0xb63f468f in xcb_writev () from /usr/lib/libxcb.so.1  
#5  0xb6a98afa in _XSend () from /usr/lib/libX11.so.6
#6  0xb6a98c23 in _XReply () from /usr/lib/libX11.so.6
#7  0xb6a8c507 in XSync () from /usr/lib/libX11.so.6
#8  0xb6b4c282 in XRenderFindDisplay () from /usr/lib/libXrender.so.1
#9  0xb6b49f25 in XRenderFreePicture () from /usr/lib/libXrender.so.1
#10 0xb4840f49 in ?? () from /usr/lib/libQtGui.so.4
#11 0xb484178d in ?? () from /usr/lib/libQtGui.so.4
#12 0xb4830d97 in QPixmap::deref () from /usr/lib/libQtGui.so.4
#13 0xb48311a0 in QPixmap::~QPixmap () from /usr/lib/libQtGui.so.4
#14 0xb45713fa in ?? () from /usr/lib/kde4/plugins/styles/oxygen.so
#15 0xb457df27 in ?? () from /usr/lib/kde4/plugins/styles/oxygen.so
#16 0xb457ec55 in ?? () from /usr/lib/kde4/plugins/styles/oxygen.so
#17 0xb4594aeb in ?? () from /usr/lib/kde4/plugins/styles/oxygen.so
#18 0xb7d5bbb9 in exit () from /lib/tls/i686/cmov/libc.so.6
#19 0xb7d4377d in __libc_start_main () from /lib/tls/i686/cmov/libc.so.6
#20 0x08048d11 in ?? ()

-- 
[MASTER]Firefox is already running message
https://bugs.launchpad.net/bugs/308605
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 368908] [NEW] amarok2 command line doesn't load playlist

2009-04-28 Thread ptitpoul
Public bug reported:

Binary package hint: amarok

on Kubuntu 9.04, Amarok 2.0.2 does not load a playlist file with the command 
amarok -l playlist.m3u.
m3u or pls, load or append action: same reaction.

Can you confirm this ?

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

-- 
amarok2 command line doesn't load playlist
https://bugs.launchpad.net/bugs/368908
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to amarok in ubuntu.

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


[Bug 360087] Re: bootloader.pot not present in the binary package

2009-04-15 Thread ptitpoul
http://packages.ubuntu.com/hardy/i386/gfxboot-theme-ubuntu/filelist
http://packages.ubuntu.com/intrepid/i386/gfxboot-theme-ubuntu/filelist
http://packages.ubuntu.com/jaunty/i386/gfxboot-theme-ubuntu/filelist

-- 
bootloader.pot not present in the binary package
https://bugs.launchpad.net/bugs/360087
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 360087] [NEW] bootloader.pot not present in the binary package

2009-04-12 Thread ptitpoul
Public bug reported:

Binary package hint: gfxboot-theme-ubuntu

The po/bootloader.pot file is not present in the binary package, whereas it's 
present in source and in other gfxboot-theme binary packages.
This bug appears in hardy, intrepid and jaunty.

** Affects: gfxboot-theme-ubuntu (Ubuntu)
 Importance: Undecided
 Status: New

-- 
bootloader.pot not present in the binary package
https://bugs.launchpad.net/bugs/360087
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 69045] Re: kdm fails with us-intl keyboard layout set by installer

2008-09-10 Thread ptitpoul
I have almost the same problem: the difference is that it appears after
I log out my session. My password contains a # character, entered using
« AltGr +  » on a fr layout. If I restart X (Ctrl+Alt+Backspace), the
password field works with AltGr.

Kubuntu Hardy with KDE 3.5.9

-- 
kdm fails with us-intl keyboard layout set by installer
https://bugs.launchpad.net/bugs/69045
You received this bug notification because you are a member of Almost
Kubuntu Bugs, which is subscribed to kdebase in ubuntu.

-- 
kubuntu-bugs mailing list
[EMAIL PROTECTED]
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 212226] Re: Hardy: Kernel Oopses in sound driver

2008-04-05 Thread ptitpoul
I have the problem too, I think it's a same bug as
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/212100.

-- 
Hardy: Kernel Oopses in sound driver
https://bugs.launchpad.net/bugs/212226
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 108596] Re: Blender crashes, when starting game-engine

2008-03-28 Thread ptitpoul
No crash with blender 2.45-3ubuntu1 in Hardy , with nvidia drivers and
a GeForce2 MX.

-- 
Blender crashes, when starting game-engine
https://bugs.launchpad.net/bugs/108596
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 160477] Re: conflict with etc/apt/apt.conf.d/01ubuntu for Recommends

2007-11-14 Thread ptitpoul
*** This bug is a duplicate of bug 128681 ***
https://bugs.launchpad.net/bugs/128681

** Summary changed:

- conflict with etc/apt/apt.conf.d/01ubuntu from apt
+ conflict with etc/apt/apt.conf.d/01ubuntu for Recommends

** Description changed:

+ binary package hint : aptitude 0.4.6.1-1ubuntu3 (gutsy)
+ 
  for metapackages (like (k)ubuntu-desktop), aptitude doesn't care about
  the --without-recommends option because of the
- etc/apt/apt.conf.d/01ubuntu file, which contains the recent APT
- ::Install-Recommends-Sections.
+ etc/apt/apt.conf.d/01ubuntu file (so I deleted it), which contains the
+ recent APT::Install-Recommends-Sections option.
  
  I don't know if it's a bug or an intended choice.

-- 
conflict with etc/apt/apt.conf.d/01ubuntu for Recommends
https://bugs.launchpad.net/bugs/160477
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 160477] Re: conflict with etc/apt/apt.conf.d/01ubuntu for Recommends

2007-11-14 Thread ptitpoul
*** This bug is a duplicate of bug 128681 ***
https://bugs.launchpad.net/bugs/128681

** This bug has been marked a duplicate of bug 128681
   [gutsy] Aptitude doesn't honour recommended packages properly

-- 
conflict with etc/apt/apt.conf.d/01ubuntu for Recommends
https://bugs.launchpad.net/bugs/160477
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 145026] Re: kdiff3plugin absent of the package

2007-11-07 Thread ptitpoul
Eike Sauer, the debian maintainer, will correct this bug in one or two
weeks (in the debian package).

-- 
kdiff3plugin absent of the package
https://bugs.launchpad.net/bugs/145026
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 160477] conflict with etc/apt/apt.conf.d/01ubuntu from apt

2007-11-06 Thread ptitpoul
Public bug reported:

for metapackages (like (k)ubuntu-desktop), aptitude doesn't care about
the --without-recommends option because of the
etc/apt/apt.conf.d/01ubuntu file, which contains the recent APT
::Install-Recommends-Sections.

I don't know if it's a bug or an intended choice.

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

-- 
conflict with etc/apt/apt.conf.d/01ubuntu from apt
https://bugs.launchpad.net/bugs/160477
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 145026] kdiff3plugin absent of the package

2007-09-25 Thread ptitpoul
Public bug reported:

Binary package hint: kdiff3

kdiff3plugin for konqueror is not present in the Gutsy package, whereas
it is in the source.

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

** Description changed:

  Binary package hint: kdiff3
  
- kdiff3plugin for konqueror is not present in the Gutsy package, where it
- is in the source.
+ kdiff3plugin for konqueror is not present in the Gutsy package, whereas
+ it is in the source.

-- 
kdiff3plugin absent of the package
https://bugs.launchpad.net/bugs/145026
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 108596] Re: Blender crashes, when starting game-engine

2007-05-04 Thread ptitpoul
I confirm this bug on feisty and blender 2.43-0ubuntu3, using an intel
945G chipset : blender crashes on the second time I quit the game mode.
Note that this bug doesn't happen with the package from blender.org
(http://download.blender.org/release/Blender2.43/blender-2.43-linux-
glibc232-py24-i386.tar.bz2).

I get this error :
/usr/bin/blender: line 46:   773 Erreur de segmentation  (core dumped) 
blender-bin $@

Maybe this bug is a clone of Bug #46691
(https://bugs.launchpad.net/ubuntu/+source/blender/+bug/46691).

-- 
Blender crashes, when starting game-engine
https://bugs.launchpad.net/bugs/108596
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 66004] Re: .bash_profile is not sources when X session starts

2007-01-23 Thread ptitpoul
For gdm, at the top of /etc/X11/gdm/Xsession, there is
PROGNAME=Xsession, so another solution is to add this condition before
including ~/.bashrc in ~/.bash_profile :

# include .bashrc if it exists
if [ $PROGNAME != Xsession -a -f ~/.bashrc ]; then
. ~/.bashrc
fi

and create a link ~/.profile to ~/.bash_profile.

-- 
.bash_profile is not sources when X session starts
https://launchpad.net/bugs/66004

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


[Bug 53334] lack of consolefonts

2006-07-18 Thread ptitpoul
Public bug reported:

I think the package does not contain, although it should, several
consolefonts like lat9u-16.psf.gz . These files were in previous builds.

** Affects: console-data (Ubuntu)
 Importance: Untriaged
 Status: Unconfirmed

-- 
lack of consolefonts
https://launchpad.net/bugs/53334

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