[Bug 141458] Re: Please move gnome-control-center from Recommends to Suggests

2007-09-21 Thread Jérémie Corbier
Good point.  Sorry for the noise.

** Changed in: totem (Ubuntu)
   Status: Incomplete => Won't Fix

-- 
Please move gnome-control-center from Recommends to Suggests
https://bugs.launchpad.net/bugs/141458
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 141458] Re: Please move gnome-control-center from Recommends to Suggests

2007-09-21 Thread Jérémie Corbier
I use aptitude.  It looks like Jani decided to ship totem-xine instead.
This one does not recommend gnome-control-center.  I still think that it
should be a Suggests in totem-gstreamer.  Feel free to close this bug
report if you do not agree.

-- 
Please move gnome-control-center from Recommends to Suggests
https://bugs.launchpad.net/bugs/141458
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 141458] Please move gnome-control-center from Recommends to Suggests

2007-09-21 Thread Jérémie Corbier
Public bug reported:

Hi!

totem-gstreamer recommends gnome-control-center but this pulls in a
whole load of GNOME packages in Xubuntu on a dist-upgrade for instance.

Could it be moved to Suggests instead?

Thanks

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

-- 
Please move gnome-control-center from Recommends to Suggests
https://bugs.launchpad.net/bugs/141458
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug contact for totem in ubuntu.

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


[Bug 81751] Re: remove ekiga from default ubuntu-installation

2007-01-26 Thread Jérémie Corbier
** Changed in: ekiga (Ubuntu)
   Importance: Undecided => Wishlist

-- 
remove ekiga from default ubuntu-installation
https://launchpad.net/bugs/81751

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


[Bug 80764] Re: can't return to normal window manager

2007-01-24 Thread Jérémie Corbier
Fix uploaded. Please close this bug report (Fix Released) once it has
been built on all architectures and published. Thanks for your
contribution.

-- 
can't return to normal window manager
https://launchpad.net/bugs/80764

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


[Bug 57872] Re: regression: pressing power button no longer brings up logout dialog

2006-10-06 Thread Jérémie Corbier
Looks like we should keep the hunks with GNOME_INTERACT_NONE and remove
the one with GNOME_INTERACT_ANY.

-- 
regression: pressing power button no longer brings up logout dialog
https://launchpad.net/bugs/57872

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


[Bug 56671] Re: gnome-orca: Please sponsor upload for package update.

2006-08-17 Thread Jérémie Corbier
Uploaded. Thanks Luke.

** Changed in: gnome-orca (Ubuntu)
   Status: Needs Info => Fix Committed

-- 
gnome-orca: Please sponsor upload for package update.
https://launchpad.net/bugs/56671

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


[Bug 56671] Re: gnome-orca: Please sponsor upload for package update.

2006-08-17 Thread Jérémie Corbier
Luke, looks like the debdiff you attached is not the right one.

** Changed in: gnome-orca (Ubuntu)
   Status: Unconfirmed => Needs Info

-- 
gnome-orca: Please sponsor upload for package update.
https://launchpad.net/bugs/56671

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


[Bug 53568] Re: [Edgy] python-distutils class assumes pycentral if DEB_PYTHON_SYSTEM not defined

2006-07-21 Thread Jérémie Corbier
Nope. It doesn't work like that. Your patch modifies the new policy part
of python-distutils.mk:

--- 8< ---
ifndef DEB_PYTHON_SYSTEM
 old policy method 
(...)
else
 new policy methods 
(... patch applies here ...)
endif
--- 8< ---

And this part can only be reached if either pysupport or pycentral is
used.

-- 
[Edgy] python-distutils class assumes pycentral if DEB_PYTHON_SYSTEM not defined
https://launchpad.net/bugs/53568

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


[Bug 53563] Re: [Edgy] Bashism in python-distutils.mk

2006-07-20 Thread Jérémie Corbier
I've just spoken with one of the cdbs Debian maintainers who takes care
of python-distutils.mk and it's going to be quickly fixed in Debian. If
it breaks too many python packages a core dev may want to upload the
fix.

** Changed in: cdbs (Ubuntu)
   Importance: Untriaged => Low
   Status: Unconfirmed => In Progress

-- 
[Edgy] Bashism in python-distutils.mk
https://launchpad.net/bugs/53563

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


[Bug 53568] Re: [Edgy] python-distutils class assumes pycentral if DEB_PYTHON_SYSTEM not defined

2006-07-20 Thread Jérémie Corbier
Thanks for your bug report. Please take a closer look at python-
distutils.mk.in and especially at the beginning of the file (starting
from line 51):

--- 8< ---
ifeq (pysupport, $(DEB_PYTHON_SYSTEM))
(...)
else
  ifeq (pycentral, $(DEB_PYTHON_SYSTEM))
(...)
  else
ifneq (, $(DEB_PYTHON_SYSTEM))
  $(error unsupported Python system: $(DEB_PYTHON_SYSTEM) (select either 
pysupport or pycentral))
else
(...)
  ifneq (, $(cdbs_use_xs_field))
$(error Your package uses the new Python policy; you must set 
DEB_PYTHON_SYSTEM to "pysupport" or "pycentral".)
  endif
(...)
endif # unknown method
  endif # pycentral
endif # pysupport
--- 8< ---

Therefore if you try to build a package following the new python policy
(e.g. if there's a debian/pycompat file) and without defining
DEB_PYTHON_SYSTEM the build will fail. If cdbs can't find a clue about
whether the package follows the new or the old policy and if
DEB_PYTHON_SYSTEM is not defined then the package will be built
following the old policy (and it will display a big fat warning ;))

** Changed in: cdbs (Ubuntu)
   Status: Unconfirmed => Rejected

-- 
[Edgy] python-distutils class assumes pycentral if DEB_PYTHON_SYSTEM not defined
https://launchpad.net/bugs/53568

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


[Bug 44454] Re: Markup problem while reading printers database

2006-07-20 Thread Jérémie Corbier
** Changed in: gnome-cups-manager (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
Markup problem while reading printers database
https://launchpad.net/bugs/44454

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


[Bug 50828] Re: simple-patchsys patching annoyance

2006-07-04 Thread Jérémie Corbier
Fixed in edgy.

** Bug watch added: Debian Bug tracker #281982
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=281982

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

** Changed in: cdbs (Ubuntu)
   Importance: Untriaged => Low
   Status: Unconfirmed => Fix Released

-- 
simple-patchsys patching annoyance
https://launchpad.net/bugs/50828

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


[Bug 49391] Re: Saving GNOME session on logout

2006-06-11 Thread Jérémie Corbier
** Changed in: Ubuntu
Sourcepackagename: None => gnome-session

-- 
Saving GNOME session on logout
https://launchpad.net/bugs/49391

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


[Bug 49370] Re: Disks manager too short

2006-06-11 Thread Jérémie Corbier
*** This bug is a duplicate of bug 19489 ***

Thanks for your bug report. I'm rejecting it as it is a duplicate. Feel
free to add any further comments to the other bug report.

** Changed in: Ubuntu
Sourcepackagename: None => gnome-system-tools

** This bug has been marked a duplicate of bug 19489
   Disks Manager: wrong display

** Changed in: gnome-system-tools (Ubuntu)
   Status: Confirmed => Rejected

-- 
Disks manager too short
https://launchpad.net/bugs/49370

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


[Bug 19489] Re: Disks Manager: wrong display

2006-06-11 Thread Jérémie Corbier
** Bug 49370 has been marked a duplicate of this bug

-- 
Disks Manager: wrong display
https://launchpad.net/bugs/19489

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


[Bug 49348] Re: List view in Nautilus does not allow dragging a selection by mouse

2006-06-11 Thread Jérémie Corbier
** Changed in: Ubuntu
Sourcepackagename: None => nautilus
   Importance: Untriaged => Wishlist

-- 
List view in Nautilus does not allow dragging a selection by mouse
https://launchpad.net/bugs/49348

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


[Bug 49207] Re: gnome-session-properties is quite broken

2006-06-10 Thread Jérémie Corbier
** Changed in: Ubuntu
Sourcepackagename: None => gnome-session
 Assignee: (unassigned) => Ubuntu Desktop Bugs

-- 
gnome-session-properties is quite broken
https://launchpad.net/bugs/49207

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


[Bug 48641] Re: evince does not handle transparency in PDF files

2006-06-06 Thread Jérémie Corbier
Please consider upgrading to Ubuntu Dapper Drake. This particular bug
has been fixed in the latest evince version.

** Changed in: evince (Ubuntu)
   Status: Unconfirmed => Fix Released

-- 
evince does not handle transparency in PDF files
https://launchpad.net/bugs/48641

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


[Bug 44487] Re: upgrade to firefox 1.5.dfsg+1.5.0.3-0ubuntu2 fails

2006-05-19 Thread Jérémie Corbier
** Bug 45596 has been marked a duplicate of this bug

-- 
upgrade to firefox 1.5.dfsg+1.5.0.3-0ubuntu2 fails
https://launchpad.net/bugs/44487

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


[Bug 45596] Re: firefox_1.5.dfsg+1.5.0.3-0ubuntu2 is not installable

2006-05-19 Thread Jérémie Corbier
*** This bug is a duplicate of bug 44487 ***

Thanks for your bug report. This particular issue has already been
reported. Feel free to add any further comment to bug 44487.

** This bug has been marked a duplicate of bug 44487
   upgrade to firefox 1.5.dfsg+1.5.0.3-0ubuntu2 fails

** Changed in: firefox (Ubuntu)
   Status: Unconfirmed => Rejected

-- 
firefox_1.5.dfsg+1.5.0.3-0ubuntu2 is not installable
https://launchpad.net/bugs/45596

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


[Bug 44937] Re: disks-admin bugs (user interface design problem) with other languages

2006-05-16 Thread Jérémie Corbier
Same bug for me.

** Changed in: Ubuntu
Sourcepackagename: None => gnome-system-tools
 Assignee: (unassigned) => Ubuntu Desktop Bugs
   Status: Unconfirmed => Confirmed

-- 
disks-admin bugs (user interface design problem) with other languages
https://launchpad.net/bugs/44937

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


[Bug 43703] Re: slight French translation error

2006-05-13 Thread Jérémie Corbier
Corrected in language-pack-gnome-fr-base-6.06+20060511.

** Changed in: language-pack-gnome-fr-base (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
slight French translation error
https://launchpad.net/bugs/43703

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


[Bug 43703] Re: slight French translation error

2006-05-10 Thread Jérémie Corbier
It's a language-pack issue.

** Changed in: gedit (Ubuntu)
   Status: Unconfirmed => Rejected

** Changed in: language-pack-gnome-fr-base (Ubuntu)
   Status: Unconfirmed => Fix Committed

-- 
slight French translation error
https://launchpad.net/bugs/43703

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


[Bug 43703] Re: slight French translation error

2006-05-09 Thread Jérémie Corbier
I've just uploaded the updated .po file.

** Changed in: gedit (Ubuntu)
   Status: Unconfirmed => Fix Committed

-- 
slight French translation error
https://launchpad.net/bugs/43703

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


[Bug 43273] Re: [Gnome nautilus] bad display of 'Octal Permissions'

2006-05-06 Thread Jérémie Corbier
According to the Desktop User Guide in Nautilus Preferences/List Columns 
Preferences:

"Octal Permissions: Choose this option to display the permissions of the item 
in octal notation, for example 764."

I think it would be more « user friendly » to only show the first four octal 
digits (I don't know if we can speak about user-friendliness when it comes to 
octal digits though ^^).

Moreover it would follow what's done with "Permisions" column.

** Attachment added: "A temporary fix I used for my own Nautilus"
   http://librarian.launchpad.net/2515137/octal_perms.diff

-- 
[Gnome nautilus] bad display of 'Octal Permissions'
https://launchpad.net/bugs/43273

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


[Bug 43273] Re: [Gnome nautilus] bad display of 'Octal Permissions'

2006-05-06 Thread Jérémie Corbier
Same behaviour for me.

** Changed in: nautilus (Ubuntu)
   Status: Unconfirmed => Confirmed

** Changed in: nautilus (Ubuntu)
 Assignee: (unassigned) => Ubuntu Desktop Bugs

-- 
[Gnome nautilus] bad display of 'Octal Permissions'
https://launchpad.net/bugs/43273

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


[Bug 38967] Re: Translation mistake we can't find in Rosetta

2006-05-06 Thread Jérémie Corbier
Fixed in language-pack-gnome-fr-base-6.06+20060427.

** Changed in: language-pack-gnome-fr-base (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
Translation mistake we can't find in Rosetta
https://launchpad.net/bugs/38967

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


[Bug 43036] Re: Composing a new mail, you cannot drag a picture file to attachment bar.

2006-05-04 Thread Jérémie Corbier
** Changed in: Ubuntu
Sourcepackagename: None => evolution
 Assignee: (unassigned) => Ubuntu Desktop Bugs

-- 
Composing a new mail, you cannot drag a picture file to attachment bar.
https://launchpad.net/bugs/43036

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


[Bug 42746] Re: Cannot delete or edit sessions

2006-05-03 Thread Jérémie Corbier
Same bug for me.

** Changed in: Ubuntu
Sourcepackagename: None => gnome-session
   Status: Unconfirmed => Confirmed

-- 
Cannot delete or edit sessions
https://launchpad.net/bugs/42746

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


[Bug 33549] Re: evolution doesn't shutdown when Draft, Junk, Sent items, Trash e-mail folder is selected

2006-05-03 Thread Jérémie Corbier
I'm closing this bug. Feel free to reopen it with an attached backtrace
if this issue still occurs.

** Changed in: evolution (Ubuntu)
   Status: Needs Info => Rejected

-- 
evolution doesn't shutdown when Draft, Junk, Sent items, Trash e-mail folder is 
selected
https://launchpad.net/bugs/33549

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


[Bug 35052] Re: GStreamer/Totem crashes when seeking in H264 video's

2006-04-28 Thread Jérémie Corbier
Then I think a nice MOTU can upload a -dbg package as Sebastien
suggested :)

-- 
GStreamer/Totem crashes when seeking in H264 video's
https://launchpad.net/bugs/35052

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


[Bug 35052] Re: GStreamer/Totem crashes when seeking in H264 video's

2006-04-28 Thread Jérémie Corbier
On Fri, Apr 28, 2006 at 08:54:42AM -, Sander van Loon wrote:
> A debug build? Not that I don't want to do it, but I have no idea how I
> would do that. Can I download a debug package from the APT repository,
> or do I have to compile it myself? What do I need for it?

https://wiki.ubuntu.com/DebuggingProgramCrash explains how to do it ;)

-- 
Jérémie

-- 
GStreamer/Totem crashes when seeking in H264 video's
https://launchpad.net/bugs/35052

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


[Bug 41065] Re: Window selector: sort items by recent usage

2006-04-24 Thread Jérémie Corbier
** Changed in: gnome-panel (Ubuntu)
 Severity: Normal => Wishlist

-- 
Window selector: sort items by recent usage
https://launchpad.net/bugs/41065

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


[Bug 40946] Re: Highlight menu bar on mouseover

2006-04-23 Thread Jérémie Corbier
** Changed in: gtk+2.0 libgtk2.0-0 (Ubuntu)
 Severity: Normal => Wishlist

-- 
Highlight menu bar on mouseover
https://launchpad.net/bugs/40946

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


[Bug 40945] Re: Improve highlighting on mouseover

2006-04-23 Thread Jérémie Corbier
** Changed in: nautilus (Ubuntu)
 Severity: Normal => Wishlist

-- 
Improve highlighting on mouseover
https://launchpad.net/bugs/40945

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


[Bug 35052] Re: GStreamer/Totem crashes when seeking in H264 video's

2006-04-07 Thread Jérémie Corbier
The problem only occurs with totem-xine. It works fine with totem-gstreamer.
-- 
GStreamer/Totem crashes when seeking in H264 video's
https://launchpad.net/malone/bugs/35052

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


[Bug 35052] Re: GStreamer/Totem crashes when seeking in H264 video's

2006-04-07 Thread Jérémie Corbier
Same issue with every h264 videos I have tested so far. Totem plays the video 
normally then a few seconds later it takes a lot of time to respond to 
keyboard/mouse input then if I don't try to do anything it gets back to its 
normal behaviour until the next freeze. During the whole test the video is 
played without any problems. I am trying to determine what's wrong.

** Changed in: totem (Ubuntu)
   Status: Unconfirmed => Confirmed
-- 
GStreamer/Totem crashes when seeking in H264 video's
https://launchpad.net/malone/bugs/35052

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


[Bug 24203] segfaults on ACPI?

2006-03-29 Thread Jérémie Corbier
Public bug report changed:
https://launchpad.net/malone/bugs/24203

Task: ubuntu xserver-xorg-driver-i810
 Status: Unconfirmed => Confirmed

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


[Bug 33549] evolution doesn't shutdown when Draft, Junk, Sent items, Trash e-mail folder is selected

2006-03-22 Thread Jérémie Corbier
Public bug report changed:
https://launchpad.net/malone/bugs/33549

Comment:
I can't reproduce this bug with evolution 2.6.0-0ubuntu3 on my amd64
box.

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