[Bug 817871] Re: gnome-settings-daemon crashed with SIGABRT in raise()

2011-07-29 Thread Rostislav Dzinko
*** This bug is a duplicate of bug 804896 ***
https://bugs.launchpad.net/bugs/804896


** Visibility changed to: Public

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

Title:
  gnome-settings-daemon crashed with SIGABRT in raise()

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

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


[Bug 704105] Re: Resize grip always appears in bottom right of GTK+2.0 windows

2011-07-29 Thread Mark__T
Wouldn't that help for most cases. + changing the default theme for
unity, that it shows them.

** Patch added: proposed change to 044_grips.patch
   
https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/704105/+attachment/2239822/+files/default_false.patch

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gtk+2.0 in Ubuntu.
https://bugs.launchpad.net/bugs/704105

Title:
  Resize grip always appears in bottom right of GTK+2.0 windows

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/704105/+subscriptions

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


[Bug 817874] Re: gnome-settings-daemon crashed with SIGABRT in raise()

2011-07-29 Thread Timo Aaltonen
** Visibility changed to: Public

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

Title:
  gnome-settings-daemon crashed with SIGABRT in raise()

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

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


[Bug 817871] Re: gnome-settings-daemon crashed with SIGABRT in raise()

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804896 ***
https://bugs.launchpad.net/bugs/804896

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #804896, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/817871/+attachment/2239823/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/817871/+attachment/2239824/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/817871/+attachment/2239825/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/817871/+attachment/2239826/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/817871/+attachment/2239827/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/817871/+attachment/2239828/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/817871/+attachment/2239829/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/817871/+attachment/2239830/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804896
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == 
dpy-xcb-pending_requests' failed.

** Tags removed: need-amd64-retrace

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

Title:
  gnome-settings-daemon crashed with SIGABRT in raise()

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

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


[Bug 817875] [NEW] vte with scrollbar keeps growing in width

2011-07-29 Thread vroetman
Public bug reported:

In Natty with thin scrollbars, a vte widget inside a Scrollwindow will keep 
incrementally growing wider and wider.
This only happens with no horizontal scrollbar and with vertical scrollbar, and 
it only happens with the thin scrollbars on Natty. If the old-style scrollbars 
are used, this is not a problem. The following code will show the problem:

-
#!/usr/bin/env python
import gtk
import vte
v = vte.Terminal()
v.connect (child-exited, lambda term: gtk.main_quit())
scroll = gtk.ScrolledWindow()
scroll.set_policy(gtk.POLICY_NEVER,gtk.POLICY_ALWAYS)
scroll.add(v)
window = gtk.Window()
window.add(scroll)
window.connect('delete-event', lambda window, event: gtk.main_quit())
window.show_all()
gtk.main()


If set_policy is (gtk.POLICY_ALWAYS,gtk.POLICY_ALWAYS)
or (gtk.POLICY_AUTOMATIC,gtk.POLICY_NEVER) then it is not a problem.

If it is (gtk.POLICY_NEVER,gtk.POLICY_NEVER) it has the same problem as 
Bug #635400 - could they be related?

libvte9 1:0.27.90-0ubuntu1
python-vte  1:0.27.90-0ubuntu1
python-gtk2 2.22.0-0ubuntu1.1
python2.7   2.7.1-5ubuntu2

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

** Description changed:

  In Natty with thin scrollbars, a vte widget inside a Scrollwindow will keep 
incrementally growing wider and wider.
  This only happens with no horizontal scrollbar and with vertical scrollbar, 
and it only happens with the thin scrollbars on Natty. If the old-style 
scrollbars are used, this is not a problem. The following code will show the 
problem:
  
  -
  #!/usr/bin/env python
  import gtk
  import vte
  v = vte.Terminal()
  v.connect (child-exited, lambda term: gtk.main_quit())
  scroll = gtk.ScrolledWindow()
  scroll.set_policy(gtk.POLICY_NEVER,gtk.POLICY_ALWAYS)
  scroll.add(v)
  window = gtk.Window()
  window.add(scroll)
  window.connect('delete-event', lambda window, event: gtk.main_quit())
  window.show_all()
  gtk.main()
  
- If set_policy is (gtk.POLICY_ALWAYS,gtk.POLICY_ALWAYS) or 
(gtk.POLICY_AUTOMATIC,gtk.NEVER) then it is not a problem.
  
- If it is (gtk.POLICY_NEVER,gtk.NEVER) it has the same problem as Bug
- #635400 - could they be related?
+ If set_policy is (gtk.POLICY_ALWAYS,gtk.POLICY_ALWAYS) 
+ or (gtk.POLICY_AUTOMATIC,gtk.POLICY_NEVER) then it is not a problem.
+ 
+ If it is (gtk.POLICY_NEVER,gtk.POLICY_NEVER) it has the same problem as
+ Bug #635400 - could they be related?
  
  libvte9   1:0.27.90-0ubuntu1
  python-vte1:0.27.90-0ubuntu1
  python-gtk2   2.22.0-0ubuntu1.1
  python2.7 2.7.1-5ubuntu2

** Description changed:

  In Natty with thin scrollbars, a vte widget inside a Scrollwindow will keep 
incrementally growing wider and wider.
  This only happens with no horizontal scrollbar and with vertical scrollbar, 
and it only happens with the thin scrollbars on Natty. If the old-style 
scrollbars are used, this is not a problem. The following code will show the 
problem:
  
  -
  #!/usr/bin/env python
  import gtk
  import vte
  v = vte.Terminal()
  v.connect (child-exited, lambda term: gtk.main_quit())
  scroll = gtk.ScrolledWindow()
  scroll.set_policy(gtk.POLICY_NEVER,gtk.POLICY_ALWAYS)
  scroll.add(v)
  window = gtk.Window()
  window.add(scroll)
  window.connect('delete-event', lambda window, event: gtk.main_quit())
  window.show_all()
  gtk.main()
  
  
- If set_policy is (gtk.POLICY_ALWAYS,gtk.POLICY_ALWAYS) 
+ If set_policy is (gtk.POLICY_ALWAYS,gtk.POLICY_ALWAYS)
  or (gtk.POLICY_AUTOMATIC,gtk.POLICY_NEVER) then it is not a problem.
  
- If it is (gtk.POLICY_NEVER,gtk.POLICY_NEVER) it has the same problem as
+ If it is (gtk.POLICY_NEVER,gtk.POLICY_NEVER) it has the same problem as 
  Bug #635400 - could they be related?
  
  libvte9   1:0.27.90-0ubuntu1
  python-vte1:0.27.90-0ubuntu1
  python-gtk2   2.22.0-0ubuntu1.1
  python2.7 2.7.1-5ubuntu2

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

Title:
  vte with scrollbar keeps growing in width

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

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


[Bug 459940] Re: Launching totem when frei0r-plugins is installed shows: Could not load classifier cascade

2011-07-29 Thread Jeremy Bicha
Never mind my last message. It looks like this was reported to Debian a
year ago.

We really need to fix this in Debian  Ubuntu, not just in a PPA. As of
yesterday, gnome-video-effects used by cheese depends on this package.

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

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

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

Title:
  Launching totem when frei0r-plugins is installed shows: Could not load
  classifier cascade

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

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


[Bug 459940] Re: Launching totem when frei0r-plugins is installed shows: Could not load classifier cascade

2011-07-29 Thread Jeremy Bicha
Marking as medium for now since cheese, gnome-video-effects, and frei0r-
plugins are not installed by default in Ubuntu 11.10.

** Changed in: frei0r (Ubuntu)
   Importance: Undecided = Medium

** Changed in: frei0r (Ubuntu)
   Status: Fix Committed = Triaged

** Changed in: frei0r (Ubuntu)
 Assignee: jaromil (jaromil) = (unassigned)

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

Title:
  Launching totem when frei0r-plugins is installed shows: Could not load
  classifier cascade

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

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


[Bug 817878] [NEW] vinagre cannot open same ip address ssh console

2011-07-29 Thread Yi Xuan Huang
Public bug reported:

lsb_release -rd: 
Description:Ubuntu 11.04
Release:11.04
apt-cache policy pkgname:
vinagre:
  Installed: 2.30.3-1ubuntu2
  Candidate: 2.30.3-1ubuntu2
  Version table:
 *** 2.30.3-1ubuntu2 0
500 http://us.archive.ubuntu.com/ubuntu/ natty/main i386 Packages
100 /var/lib/dpkg/status

Symptom:
When I opened one ssh console in vinagre, I cannot open another with same ip in 
vinagre. 
However, I can open different ip address in another tab. 

Thanks,
Eugene

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: vinagre 2.30.3-1ubuntu2
ProcVersionSignature: Ubuntu 2.6.38-10.46-generic-pae 2.6.38.7
Uname: Linux 2.6.38-10-generic-pae i686
Architecture: i386
Date: Fri Jul 29 14:14:49 2011
ExecutablePath: /usr/bin/vinagre
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
ProcEnviron:
 LANGUAGE=en_US:en
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: vinagre
UpgradeStatus: No upgrade log present (probably fresh install)
XsessionErrors:
 (Do:2270): Wnck-CRITICAL **: wnck_set_client_type got called multiple times.
 (padevchooser:2257): Gdk-CRITICAL **: 
IA__gdk_window_thaw_toplevel_updates_libgtk_only: assertion 
`private-update_and_descendants_freeze_count  0' failed

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


** Tags: apport-bug apport-lpi i386 natty

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

Title:
  vinagre cannot open same ip address ssh console

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

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


[Bug 817878] Re: vinagre cannot open same ip address ssh console

2011-07-29 Thread Yi Xuan Huang
** Attachment added: two different ip can show in different tab
   
https://bugs.launchpad.net/bugs/817878/+attachment/2239859/+files/Screenshot-9.125.90.115%20-%20Remote%20Desktop%20Viewer.png

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

Title:
  vinagre cannot open same ip address ssh console

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

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


[Bug 817874] Re: gnome-settings-daemon crashed with SIGABRT in raise()

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804896 ***
https://bugs.launchpad.net/bugs/804896

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #805875, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/817874/+attachment/2239838/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/817874/+attachment/2239839/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/817874/+attachment/2239840/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/817874/+attachment/2239841/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/817874/+attachment/2239842/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/817874/+attachment/2239843/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/817874/+attachment/2239844/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/817874/+attachment/2239845/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804896
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == 
dpy-xcb-pending_requests' failed.

** Tags removed: need-amd64-retrace

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

Title:
  gnome-settings-daemon crashed with SIGABRT in raise()

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

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


[Bug 817888] Re: gnome-settings-daemon crashed with SIGABRT in raise()

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804896 ***
https://bugs.launchpad.net/bugs/804896

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #809716, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/817888/+attachment/2239926/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/817888/+attachment/2239927/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/817888/+attachment/2239928/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/817888/+attachment/2239929/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/817888/+attachment/2239930/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/817888/+attachment/2239931/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/817888/+attachment/2239932/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/817888/+attachment/2239933/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804896
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == 
dpy-xcb-pending_requests' failed.

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

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

Title:
  gnome-settings-daemon crashed with SIGABRT in raise()

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

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


[Bug 817894] Re: nautilus crashed with SIGSEGV in g_cclosure_marshal_VOID__VOID()

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 795708 ***
https://bugs.launchpad.net/bugs/795708

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #807875, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/817894/+attachment/2239947/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/817894/+attachment/2239948/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/817894/+attachment/2239949/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/817894/+attachment/2239950/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/817894/+attachment/2239951/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/817894/+attachment/2239952/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/817894/+attachment/2239953/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/817894/+attachment/2239954/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 795708
   nautilus crashed with SIGSEGV in nautilus_window_slot_get_current_uri()

** Visibility changed to: Public

** Tags removed: need-i386-retrace

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

Title:
  nautilus crashed with SIGSEGV in g_cclosure_marshal_VOID__VOID()

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

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


[Bug 817908] Re: totem crashed with SIGSEGV

2011-07-29 Thread Maróti Ádám
** Also affects: gstreamer
   Importance: Undecided
   Status: New

** Visibility changed to: Public

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

Title:
  totem crashed with SIGSEGV

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

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


[Bug 686313] Re: tab autocompletion not working

2011-07-29 Thread dedal
Add the following lines in /home/user/.bashrc

if [ $PS1 ]; then
complete -cf sudo
fi

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

Title:
  tab autocompletion not working

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

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


[Bug 45518] Re: Doesn't support gapless playback

2011-07-29 Thread Rüdiger Kupper
Although this bug has fix released, gapless playback does NOT work for flac 
files, neither in Banshee (2.0.0) with the gapless option enabled, nor in 
Quod Libet (2.2.1).  These are the versions released with natty.
Has there been a regression?

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

Title:
  Doesn't support gapless playback

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

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


[Bug 45518] Re: Doesn't support gapless playback

2011-07-29 Thread Rüdiger Kupper
Same problem in rhythmbox. This is probably a GStreamer issue?

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

Title:
  Doesn't support gapless playback

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

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


[Bug 772236] Re: Totem hangs when seeking within flac files (gstreamer)

2011-07-29 Thread Rüdiger Kupper
Confirmed for rhythmbox, banshee and quod libet in natty.

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

Title:
  Totem hangs when seeking within flac files (gstreamer)

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

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


[Bug 817921] [NEW] Communication with Exchange quietly hangs

2011-07-29 Thread Jonas Stenberg
Public bug reported:

Hi,

I use the Exchange MAPI plugin with Evolution. Sometimes it seems that
the communication with the Exchange server just quietly goes away and
Evolution is un-aware of new in-comming mails etc. When this happens it
is also not possible to send email and when I try to shut down Evolution
it just hangs and I have to kill the process explicitly. After re-
starting Evolution everything works fine again.

Best regards
Jonas Stenberg

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: evolution 2.32.2-0ubuntu7
ProcVersionSignature: Ubuntu 2.6.38-10.46-generic-pae 2.6.38.7
Uname: Linux 2.6.38-10-generic-pae i686
NonfreeKernelModules: nvidia wl
Architecture: i386
Date: Fri Jul 29 10:47:05 2011
ExecutablePath: /usr/bin/evolution
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
ProcEnviron:
 SHELL=/bin/bash
 LC_MESSAGES=en_US.UTF-8
 LANGUAGE=en_US:en
 LANG=sv_SE.UTF-8
SourcePackage: evolution
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug apport-lpi i386 natty

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

Title:
  Communication with Exchange quietly hangs

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

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


[Bug 817921] Re: Communication with Exchange quietly hangs

2011-07-29 Thread Jonas Stenberg
-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in Ubuntu.
https://bugs.launchpad.net/bugs/817921

Title:
  Communication with Exchange quietly hangs

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

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


[Bug 817908]

2011-07-29 Thread Apport retracing service
StacktraceTop:
 ?? ()
 ?? ()
 ?? ()
 ?? ()
 ?? ()

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

Title:
  totem crashed with SIGSEGV

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

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


[Bug 817908] ThreadStacktrace.txt

2011-07-29 Thread Apport retracing service
** Attachment added: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/817908/+attachment/2240037/+files/ThreadStacktrace.txt

** Tags added: apport-failed-retrace

** Tags removed: need-amd64-retrace

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

Title:
  totem crashed with SIGSEGV

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

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


[Bug 817902] Re: gnome-settings-daemon assert failure: gnome-settings-daemon: ../../src/xcb_io.c:515: _XReply: Assertion `!dpy-xcb-reply_data' failed.

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804221 ***
https://bugs.launchpad.net/bugs/804221

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #804221, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/817902/+attachment/2239991/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/817902/+attachment/2239992/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/817902/+attachment/2239993/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/817902/+attachment/2239994/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/817902/+attachment/2239995/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/817902/+attachment/2239996/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/817902/+attachment/2239997/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/817902/+attachment/2239998/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804221
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:515: _XReply: Assertion `!dpy-xcb-reply_data' failed.

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

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

Title:
  gnome-settings-daemon assert failure: gnome-settings-daemon:
  ../../src/xcb_io.c:515: _XReply: Assertion `!dpy-xcb-reply_data'
  failed.

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

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


[Bug 817908] Stacktrace.txt

2011-07-29 Thread Apport retracing service
** Attachment added: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/817908/+attachment/2240036/+files/Stacktrace.txt

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

Title:
  totem crashed with SIGSEGV

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

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


[Bug 647127] Re: Persistent compositing glitches

2011-07-29 Thread Ivan Frederiks
Met same bug.
System: Natty (Ubuntu Classic session), i386, proprietary nVidia driver.
Screenshot attached.

** Attachment added: Shadow artifact in Natty
   
https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/647127/+attachment/2240040/+files/shadow-artifact.png

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

Title:
  Persistent compositing glitches

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

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


[Bug 815129] Re: Rhythmbox Doesn't escape some Special Charcters in file URI

2011-07-29 Thread Liron Tal
Filed a bug in bugzilla:
https://bugzilla.gnome.org/show_bug.cgi?id=68

** Bug watch added: GNOME Bug Tracker #68
   https://bugzilla.gnome.org/show_bug.cgi?id=68

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

Title:
  Rhythmbox Doesn't escape some Special Charcters in file URI

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

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


[Bug 815129] Re: Rhythmbox Doesn't escape some Special Charcters in file URI

2011-07-29 Thread Liron Tal
I solved this issue with a python script that stripped and replaced all the bad 
characters in my files  folders.. 
Really annoying and took something like 4 hours but it's a good workaround

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

Title:
  Rhythmbox Doesn't escape some Special Charcters in file URI

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

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


[Bug 815129] Re: Rhythmbox Doesn't escape some Special Charcters in file URI

2011-07-29 Thread Liron Tal
I solved this issue with a python script that stripped and replaced all the bad 
characters in my files  folders.. 
Really annoying and took something like 4 hours but it's a good workaround

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

Title:
  Rhythmbox Doesn't escape some Special Charcters in file URI

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

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


[Bug 647127] Re: Persistent compositing glitches

2011-07-29 Thread Ivan Frederiks
Artifacts mentioned above do not seem to be workflow-critical. But
there is other type of artifact related to metacity and shadows. It
appears when I expand tag list in Firefox bookmarking tool and seems to
be a little bit more nasty. See attached screenshot.

P.S.
With compositor disabled artifact disappears.

** Attachment added: Shadow artifact in Firefox
   
https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/647127/+attachment/2240074/+files/shadow-artifact-firefox.png

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

Title:
  Persistent compositing glitches

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

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


[Bug 817944] [NEW] gsettings.1.gz contains only 1 line

2011-07-29 Thread Doug McMahon
Public bug reported:

Which would be - 
Man  generation  disabled. Remove this file, configure with ‐‐enable‐man, and 
rebuild
Was a useful man page

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: libglib2.0-bin 2.29.14-0ubuntu1
ProcVersionSignature: Ubuntu 3.0.0-7.8-generic 3.0.0
Uname: Linux 3.0.0-7-generic i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Fri Jul 29 05:33:10 2011
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Alpha i386 (20110724)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: glib2.0
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: glib2.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 oneiric running-unity

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

Title:
  gsettings.1.gz contains only 1 line

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/817944/+subscriptions

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

[Bug 817944] Re: gsettings.1.gz contains only 1 line

2011-07-29 Thread Doug McMahon
-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to glib2.0 in Ubuntu.
https://bugs.launchpad.net/bugs/817944

Title:
  gsettings.1.gz contains only 1 line

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/817944/+subscriptions

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


[Bug 817929] Re: gnome-settings-daemon assert failure: gnome-settings-daemon: ../../src/xcb_io.c:515: _XReply: Assertion `!dpy-xcb-reply_data' failed.

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804221 ***
https://bugs.launchpad.net/bugs/804221

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #804221, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/817929/+attachment/2240058/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/817929/+attachment/2240059/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/817929/+attachment/2240060/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/817929/+attachment/2240061/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/817929/+attachment/2240062/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/817929/+attachment/2240063/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/817929/+attachment/2240064/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/817929/+attachment/2240065/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804221
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:515: _XReply: Assertion `!dpy-xcb-reply_data' failed.

** Visibility changed to: Public

** Tags removed: need-i386-retrace

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

Title:
  gnome-settings-daemon assert failure: gnome-settings-daemon:
  ../../src/xcb_io.c:515: _XReply: Assertion `!dpy-xcb-reply_data'
  failed.

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

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


[Bug 780747] Re: Window does not always close when running gnome-shell

2011-07-29 Thread Xavier Claessens
Note taht when you can't close it, if you go to overview rb window is
not shown.

Empathy had similar issue, the problem is the use of
gtk_window_iconify() that should be replaced with gtk_widget_hide().

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

Title:
  Window does not always close when running gnome-shell

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

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


[Bug 817953] Re: nautilus crashed with SIGSEGV in g_cclosure_marshal_VOID__VOID()

2011-07-29 Thread dino99
*** This bug is a duplicate of bug 795708 ***
https://bugs.launchpad.net/bugs/795708


** Visibility changed to: Public

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

Title:
  nautilus crashed with SIGSEGV in g_cclosure_marshal_VOID__VOID()

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

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


[Bug 817953] Re: nautilus crashed with SIGSEGV in g_cclosure_marshal_VOID__VOID()

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 795708 ***
https://bugs.launchpad.net/bugs/795708

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #807875, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/817953/+attachment/2240104/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/817953/+attachment/2240105/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/817953/+attachment/2240106/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/817953/+attachment/2240107/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/817953/+attachment/2240108/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/817953/+attachment/2240109/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/817953/+attachment/2240110/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/817953/+attachment/2240111/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 795708
   nautilus crashed with SIGSEGV in nautilus_window_slot_get_current_uri()

** Tags removed: need-i386-retrace

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

Title:
  nautilus crashed with SIGSEGV in g_cclosure_marshal_VOID__VOID()

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

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


[Bug 804435] Re: Wallpaper in Oneiric is not loaded correctly

2011-07-29 Thread Lucazade
disabling nautilus feature to draw wallpaper and icons on desktop the
issue is no more present (the wallpaper is painted instead by gnome-
session).

org.gnome.desktop.background show-desktop-icons from true to false.

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

Title:
  Wallpaper in Oneiric is not loaded correctly

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity-2d/+bug/804435/+subscriptions

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


[Bug 817958] Re: gnome-control-center crashed with SIGSEGV in g_timer_stop()

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804891 ***
https://bugs.launchpad.net/bugs/804891

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #806196, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/817958/+attachment/2240118/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/817958/+attachment/2240119/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/817958/+attachment/2240120/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/817958/+attachment/2240121/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/817958/+attachment/2240122/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/817958/+attachment/2240123/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/817958/+attachment/2240124/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/817958/+attachment/2240125/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804891
   nautilus crashed with SIGSEGV in g_timer_stop()

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

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

Title:
  gnome-control-center crashed with SIGSEGV in g_timer_stop()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/817958/+subscriptions

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


[Bug 780747] Re: Window does not always close when running gnome-shell

2011-07-29 Thread Xavier Claessens
I rb_shell_set_visibility() is dead code in upstream. That function does
lots of hacks to inconify the window, but a plain gtk_widget_hide()
works much better.

** Patch added: modified ubuntu patch
   
https://bugs.launchpad.net/ubuntu/+source/rhythmbox/+bug/780747/+attachment/2240172/+files/05_hide_on_quit.patch

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

Title:
  Window does not always close when running gnome-shell

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

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


[Bug 780747] Re: Window does not always close when running gnome-shell

2011-07-29 Thread Xavier Claessens
oh, and also fixed a leak: g_object_get() returns a ref !

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

Title:
  Window does not always close when running gnome-shell

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

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


[Bug 817976] [NEW] Installation: WARNING: Failed to parse default value `[????????? ???????; gnome-appearance-properties.desktop,????????? ???????????? ???????????; gnome-default-applications.desktop

2011-07-29 Thread Zoubidoo
Public bug reported:

Updating capplets-data results int the following message:

capplets-data (1:2.30.1-0ubuntu2) ...
WARNING: Failed to parse default value `[? 
???;gnome-appearance-properties.desktop,?  
???;gnome-default-applications.desktop,?? 
??;system-config-printer.desktop] ' for schema 
(/schemas/apps/control-center/cc_actions_list)

Platform: Ubuntu 10.04.3 LTS

Also reported by another user here:  http://forum.ubuntuusers.de/topic
/fehlermeldungen-beim-aptitude-safe-upgrade-am-/#post-3179102

** Affects: gnome-control-center (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Installation: WARNING: Failed to parse default value `[?
  ???;gnome-appearance-properties.desktop,? 
  ???;gnome-default-applications.desktop,??
  ??;system-config-printer.desktop] ' for schema (/schemas/apps
  /control-center/cc_actions_list)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/817976/+subscriptions

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


[Bug 817972] Re: gnome-settings-daemon assert failure: gnome-settings-daemon: ../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == dpy-xcb-pending_requests' failed.

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804896 ***
https://bugs.launchpad.net/bugs/804896

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #804896, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/817972/+attachment/2240164/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/817972/+attachment/2240165/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/817972/+attachment/2240166/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/817972/+attachment/2240167/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/817972/+attachment/2240168/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/817972/+attachment/2240169/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/817972/+attachment/2240170/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/817972/+attachment/2240171/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804896
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == 
dpy-xcb-pending_requests' failed.

** Visibility changed to: Public

** Tags removed: need-i386-retrace

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

Title:
  gnome-settings-daemon assert failure: gnome-settings-daemon:
  ../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req ==
  dpy-xcb-pending_requests' failed.

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

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


Re: [Bug 459940] Re: Launching totem when frei0r-plugins is installed shows: Could not load classifier cascade

2011-07-29 Thread jaromil
On Fri, 29 Jul 2011, Jeremy Bicha wrote:

 Marking as medium for now since cheese, gnome-video-effects, and
 frei0r- plugins are not installed by default in Ubuntu 11.10.

 ** Changed in: frei0r (Ubuntu)
Importance: Undecided = Medium

ACK

 ** Changed in: frei0r (Ubuntu)
Status: Fix Committed = Triaged

what does this means?

 ** Changed in: frei0r (Ubuntu)
  Assignee: jaromil (jaromil) = (unassigned)

why de-assign it?

I've fixed the bug already since long time.

I don't understand what is the workflow, who has the power to upload
and how that can be transferred. providing the fixed package on my PPA
is all what i can do. please if you have time and patience explain me
how this works. i would like to have this fixed, but there seems to be
some beaurocracy i still can't figure out.

thanks

--
jaromil,  dyne.org developer,  http://jaromil.dyne.org
GPG: B2D9 9376 BFB2 60B7 601F 5B62 F6D3 FBD9 C2B6 8E39

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

Title:
  Launching totem when frei0r-plugins is installed shows: Could not load
  classifier cascade

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

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


[Bug 817983] [NEW] gdmsetup missing in ubuntu gdm 3.0.4-0ubuntu6

2011-07-29 Thread Andrei Emeltchenko
Public bug reported:

gdmsetup is missing in new Ubuntu

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

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

Title:
  gdmsetup missing in ubuntu gdm 3.0.4-0ubuntu6

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

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


[Bug 817976] Re: Installation: WARNING: Failed to parse default value `[????????? ???????; gnome-appearance-properties.desktop,????????? ???????????? ???????????; gnome-default-applications.desktop,?

2011-07-29 Thread Zoubidoo
I accidentally chopped off the beginning of the message.  Here is the
complete context:


$ sudo apt-get upgrade
[...]
Setting up libgnome-window-settings1 (1:2.30.1-0ubuntu2) ...

Setting up capplets-data (1:2.30.1-0ubuntu2) ...
WARNING: Failed to parse default value `[? 
???;gnome-appearance-properties.desktop,?  
???;gnome-default-applications.desktop,?? 
??;system-config-printer.desktop] ' for schema 
(/schemas/apps/control-center/cc_actions_list)

Setting up gnome-control-center (1:2.30.1-0ubuntu2) ...

Setting up linux-headers-2.6.32-33 (2.6.32-33.71) ...

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

Title:
  Installation: WARNING: Failed to parse default value `[?
  ???;gnome-appearance-properties.desktop,? 
  ???;gnome-default-applications.desktop,??
  ??;system-config-printer.desktop] ' for schema (/schemas/apps
  /control-center/cc_actions_list)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/817976/+subscriptions

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


[Bug 817991] [NEW] Cannot change screen brightness after upgrading gnome-power-manager

2011-07-29 Thread Bowmore
Public bug reported:

The screen brightness can no longer be adjusted using the Fn+arrow keys.

This feature is gone for:
gnome-power-manager (3.1.3-0ubuntu1/0ubuntu2)

Workaround is to downgrade to:
gnome-power-manager (3.1.2-0ubuntu1)


Furthermore, the brightness cannot be adjusted in the gnome control center
Command: gnome-control-center screen

This feature also is gone for:
gnome-control-center (1:3.1.4-0ubuntu1/0ubuntu2)

Workaround is to downgrade to:
gnome-control-center (1:3.1.3-0ubuntu5)
gnome-control-center-data (1:3.1.3-0ubuntu5)
libgnome-control-center1 (1:3.1.3-0ubuntu5)

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: gnome-power-manager 3.1.3-0ubuntu1
ProcVersionSignature: Ubuntu 3.0.0-7.8-generic 3.0.0
Uname: Linux 3.0.0-7-generic x86_64
NonfreeKernelModules: nvidia
Architecture: amd64
Date: Fri Jul 29 13:21:24 2011
GnomeSessionIdleInhibited: No
GnomeSessionInhibitors: None
GnomeSessionSuspendInhibited: No
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
MachineType: SAMSUNG ELECTRONICS CO., LTD. R580/R590
ProcEnviron:
 PATH=(custom, user)
 LANG=sv_SE.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.0.0-7-generic 
root=UUID=52c4a378-4960-4eb5-b56e-fd789daaa5fb ro quiet splash vt.handoff=7
SourcePackage: gnome-power-manager
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/22/2010
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: 11JB.M044.20100622.hkk
dmi.board.asset.tag: Tag 12345
dmi.board.name: R580/R590
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: Not Applicable
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvr11JB.M044.20100622.hkk:bd06/22/2010:svnSAMSUNGELECTRONICSCO.,LTD.:pnR580/R590:pvrNotApplicable:rvnSAMSUNGELECTRONICSCO.,LTD.:rnR580/R590:rvrNotApplicable:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvrN/A:
dmi.product.name: R580/R590
dmi.product.version: Not Applicable
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.
gnome-power-bugreport: Error: [Errno 2] Filen eller katalogen finns inte

** Affects: gnome-power-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug oneiric regression running-unity

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

Title:
  Cannot change screen brightness after upgrading gnome-power-manager

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/817991/+subscriptions

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


[Bug 817991] Re: Cannot change screen brightness after upgrading gnome-power-manager

2011-07-29 Thread Bowmore
** Tags added: regression

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

Title:
  Cannot change screen brightness after upgrading gnome-power-manager

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/817991/+subscriptions

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


[Bug 817984] Re: gnome-settings-daemon crashed with signal 5 in xkl_process_error()

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 805894 ***
https://bugs.launchpad.net/bugs/805894

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #805894, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/817984/+attachment/2240223/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/817984/+attachment/2240224/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/817984/+attachment/2240225/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/817984/+attachment/2240226/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/817984/+attachment/2240227/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/817984/+attachment/2240228/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/817984/+attachment/2240229/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/817984/+attachment/2240230/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 805894

** Visibility changed to: Public

** Tags removed: need-i386-retrace

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

Title:
  gnome-settings-daemon crashed with signal 5 in xkl_process_error()

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

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


[Bug 817976] Re: Installation: WARNING: Failed to parse default value `[????????? ???????; gnome-appearance-properties.desktop,????????? ???????????? ???????????; gnome-default-applications.desktop,?

2011-07-29 Thread Marc Hill
Same here on all my 32 and 64bits Ubuntu 10.04.3 LTS systems and I have a bunch 
of them.
Appeared yesterday, Thursday July 28th ...

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

Title:
  Installation: WARNING: Failed to parse default value `[?
  ???;gnome-appearance-properties.desktop,? 
  ???;gnome-default-applications.desktop,??
  ??;system-config-printer.desktop] ' for schema (/schemas/apps
  /control-center/cc_actions_list)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/817976/+subscriptions

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


[Bug 817976] Re: Installation: WARNING: Failed to parse default value `[????????? ???????; gnome-appearance-properties.desktop,????????? ???????????? ???????????; gnome-default-applications.desktop,?

2011-07-29 Thread Zoubidoo
A similar bug here: https://bugs.launchpad.net/gnome-control-center/+bug/276272
It seems to be related to translation.

It took 2.5 years to fix :-(

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

Title:
  Installation: WARNING: Failed to parse default value `[?
  ???;gnome-appearance-properties.desktop,? 
  ???;gnome-default-applications.desktop,??
  ??;system-config-printer.desktop] ' for schema (/schemas/apps
  /control-center/cc_actions_list)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/817976/+subscriptions

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


[Bug 459940] Re: Launching totem when frei0r-plugins is installed shows: Could not load classifier cascade

2011-07-29 Thread Jeremy Bicha
The general workflow is documented at
https://wiki.ubuntu.com/Bugs/HowToFix

Specifically, to get a brand new version into the current development
release (Oneiric) you would do something like:

bzr init-repo frei0r
cd frei0r
bzr branch ubuntu:frei0r oneiric
cd oneiric

Make sure the watch file is up-to-date (in this case, add the appropriate 
watchfile)
If you had to make changes, then you'll need to bzr commit

bzr merge-upstream
Make any additional changes to the debian/ directory
dch -e to edit the changelog ( update the timestamp automatically)
I then usually do bzr uncommit to undo the commit necessary to run the bzr 
merge-upstream command

bzr commit

bzr push lp:~jaromil/ubuntu/frei0r/oneiric/frei0r-1.3.1 (the last part
can be named whatever)

Then visit https://code.launchpad.net/~jaromil/ in your web browser
Click the propose merge button and submit the merge proposal.

Then find someone with commit access to review your submission.

If you have any questions, feel free to ask in #ubuntu-motu

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

Title:
  Launching totem when frei0r-plugins is installed shows: Could not load
  classifier cascade

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

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


[Bug 262017] Re: gnome-panel crashed with SIGSEGV in g_type_instance_get_private()

2011-07-29 Thread Jamie Strandboge
Thank you for reporting this bug to Ubuntu. 8.10 reached EOL. Please see this 
document for currently supported Ubuntu releases:
https://wiki.ubuntu.com/Releases

Please either a) upgrade and test or b) increase the verbosity of the
steps to recreate it so we can try again.

Please feel free to report any other bugs you may find.


** Changed in: libsoup2.4 (Ubuntu)
   Status: Triaged = Invalid

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

Title:
  gnome-panel crashed with SIGSEGV in g_type_instance_get_private()

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

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


[Bug 817861] Re: nautilus crashed with SIGABRT in raise()

2011-07-29 Thread Pedro Villavicencio
** Visibility changed to: Public

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

Title:
  nautilus crashed with SIGABRT in raise()

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

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


[Bug 238608] Re: missing yelp, and help files, won't install, dependency problem, broken packages.

2011-07-29 Thread trina jackson
** Also affects: yelp-tools (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  missing yelp, and  help files, won't install, dependency problem,
  broken packages.

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

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


[Bug 818018] [NEW] gnome-keyring-daemon refuses to start

2011-07-29 Thread Pete Goodall
Public bug reported:

I have just done a fresh install of Ubuntu 11.10 from the daily live CD
from 29th July 2011.  After installation, I could not connect to any
wireless network or even my mobile broadband connection.  I restored my
home directory to see if maybe it was just the lack of a keyring and
that still didn't help.  Checking the wireless connections I noticed
that a) none of my previously saved networks were listed and b) the one
I had been trying to connect to was listed, but had no password filled
in.  I filled in the password for the WPA2 network and connected just
fine.  I checked seahorse to see if the password was saved and was
informed seahorse couldn't connect to gnome-keyring-daemon.  When I try
to start the gnome-keyring-daemon from the command line, here is what I
get:


$ gnome-keyring-daemon 
gnome-keyring-daemon: error getting process capabilities, aborting

I'm not sure how to debug this, so please let me know what other
information I can give you.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: gnome-keyring 3.1.1-0ubuntu2
ProcVersionSignature: Ubuntu 3.0.0-7.8-generic 3.0.0
Uname: Linux 3.0.0-7-generic x86_64
Architecture: amd64
Date: Fri Jul 29 13:21:10 2011
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Alpha amd64 (20110728)
ProcEnviron:
 LANGUAGE=en_GB:en
 PATH=(custom, user)
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-keyring
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: gnome-keyring (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug oneiric running-unity

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

Title:
  gnome-keyring-daemon refuses to start

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

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


[Bug 818018] Re: gnome-keyring-daemon refuses to start

2011-07-29 Thread Pete Goodall
-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-keyring in Ubuntu.
https://bugs.launchpad.net/bugs/818018

Title:
  gnome-keyring-daemon refuses to start

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

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


[Bug 777953] Re: Google Contacts don't work in Evolution: Cannot authenticate user: Invalid query

2011-07-29 Thread Launchpad Bug Tracker
*** This bug is a duplicate of bug 755043 ***
https://bugs.launchpad.net/bugs/755043

** Changed in: evolution (Ubuntu)
   Status: New = Confirmed

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

Title:
  Google Contacts don't work in Evolution: Cannot authenticate user:
  Invalid query

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

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


[Bug 769827] Re: poppler cannot parse font weight Medium

2011-07-29 Thread Nobuto MURATA
The patch was committed in upstream as
http://cgit.freedesktop.org/poppler/poppler/commit/?id=e2fa8a2ca8459d19c0f9dca445a2399b9a3d483d
and as a part of the bug
https://bugs.freedesktop.org/show_bug.cgi?id=36474

The patch in Ubuntu can be dropped if upstream does a new release.

** Also affects: poppler via
   http://bugs.freedesktop.org/show_bug.cgi?id=36474
   Importance: Unknown
   Status: Unknown

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

Title:
  poppler cannot parse font weight Medium

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

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


[Bug 818013] Re: gnome-settings-daemon assert failure: gnome-settings-daemon: ../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == dpy-xcb-pending_requests' failed.

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804896 ***
https://bugs.launchpad.net/bugs/804896

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #804896, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/818013/+attachment/2240467/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/818013/+attachment/2240468/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/818013/+attachment/2240469/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/818013/+attachment/2240470/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/818013/+attachment/2240471/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/818013/+attachment/2240472/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/818013/+attachment/2240473/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/818013/+attachment/2240474/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804896
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == 
dpy-xcb-pending_requests' failed.

** Visibility changed to: Public

** Tags removed: need-i386-retrace

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

Title:
  gnome-settings-daemon assert failure: gnome-settings-daemon:
  ../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req ==
  dpy-xcb-pending_requests' failed.

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

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


[Bug 817861] Re: nautilus crashed with SIGABRT in raise()

2011-07-29 Thread Pedro Villavicencio
Thank you for your bug report. This bug has been reported to the
developers of the software. You can track it and make comments at:
https://bugzilla.gnome.org/show_bug.cgi?id=655576

** Bug watch added: GNOME Bug Tracker #655576
   https://bugzilla.gnome.org/show_bug.cgi?id=655576

** Changed in: nautilus (Ubuntu)
   Status: New = Triaged

** Also affects: nautilus via
   https://bugzilla.gnome.org/show_bug.cgi?id=655576
   Importance: Unknown
   Status: Unknown

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

Title:
  nautilus crashed with SIGABRT in raise()

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

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


[Bug 818027] [NEW] package gdm 2.32.1-0ubuntu3.2 failed to install/upgrade: ErrorMessage: subprocess vecchio script di post-installation was killed by signal (Errore di segmentazione)

2011-07-29 Thread Riccardo Orfei
Public bug reported:

while upgrading from 10.10.

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: gdm 2.32.1-0ubuntu3.2
ProcVersionSignature: Ubuntu 2.6.31-11.154-rt
Uname: Linux 2.6.31-11-rt i686
Architecture: i386
Date: Fri Jul 29 13:27:53 2011
ErrorMessage: ErrorMessage: subprocess vecchio script di post-installation was 
killed by signal (Errore di segmentazione)
InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release i386 (20100816.1)
SourcePackage: gdm
Title: package gdm 2.32.1-0ubuntu3.2 failed to install/upgrade: ErrorMessage: 
subprocess vecchio script di post-installation was killed by signal (Errore di 
segmentazione)
UpgradeStatus: Upgraded to natty on 2011-07-29 (0 days ago)

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


** Tags: apport-package i386 natty

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

Title:
  package gdm 2.32.1-0ubuntu3.2 failed to install/upgrade: ErrorMessage:
  subprocess vecchio script di post-installation was killed by signal
  (Errore di segmentazione)

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

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


[Bug 818027] Re: package gdm 2.32.1-0ubuntu3.2 failed to install/upgrade: ErrorMessage: subprocess vecchio script di post-installation was killed by signal (Errore di segmentazione)

2011-07-29 Thread Riccardo Orfei
-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in Ubuntu.
https://bugs.launchpad.net/bugs/818027

Title:
  package gdm 2.32.1-0ubuntu3.2 failed to install/upgrade: ErrorMessage:
  subprocess vecchio script di post-installation was killed by signal
  (Errore di segmentazione)

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

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


[Bug 675108] Re: gnome-power-manager adds battery to indicator twice when battery hot-unplugged and plugged back in

2011-07-29 Thread Marc Deslauriers
SRU request:

Impact: Users running natty get a duplicate battery in the power icon
when unplugging and replugging either a battery, or the AC power cable.
This is a regression from previous releases.

Problem has been addressed with a minimal patch, and update has been
uploaded to natty-proposed.

Thanks.

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

Title:
  gnome-power-manager adds battery to indicator twice when battery hot-
  unplugged and plugged back in

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-power/+bug/675108/+subscriptions

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


[Bug 818018] Re: gnome-keyring-daemon refuses to start

2011-07-29 Thread Sebastien Bacher
Hey Pete, that seems similar to bug #813755, could you try if the workaround on 
https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/813755/comments/5
is working for you?

** Changed in: gnome-keyring (Ubuntu)
   Importance: Undecided = Low

** Changed in: gnome-keyring (Ubuntu)
   Status: New = Incomplete

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

Title:
  gnome-keyring-daemon refuses to start

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

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


[Bug 815129] Re: Rhythmbox Doesn't escape some Special Charcters in file URI

2011-07-29 Thread Pedro Villavicencio
** Bug watch added: GNOME Bug Tracker #655560
   https://bugzilla.gnome.org/show_bug.cgi?id=655560

** Also affects: rhythmbox via
   https://bugzilla.gnome.org/show_bug.cgi?id=655560
   Importance: Unknown
   Status: Unknown

** Changed in: rhythmbox (Ubuntu)
   Status: New = Triaged

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

Title:
  Rhythmbox Doesn't escape some Special Charcters in file URI

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

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


[Bug 817921] Re: Communication with Exchange quietly hangs

2011-07-29 Thread Pedro Villavicencio
** Package changed: evolution (Ubuntu) = evolution-mapi (Ubuntu)

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

Title:
  Communication with Exchange quietly hangs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution-mapi/+bug/817921/+subscriptions

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


Re: [Bug 777712] Re: password dialog doesn't appear when screensaver ends

2011-07-29 Thread JR
no, it's a single monitor, but I only had this once.

Am Mittwoch 27 Juli 2011, 18:24:46 schrieben Sie:
 Are you using multiple monitors (laptop lcd + external for example)? At
 least for me the password dialog appears sometimes in wrong (detached)
 display. Also I sometimes have witnessed dialog not being shown on
 single display setup, but when I enter my password to this non-visible
 dialog I can still unlock the desktop.

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

Title:
  password dialog doesn't appear when screensaver ends

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

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


[Bug 774487] Re: Totem goes to background when full-screen and out of focus

2011-07-29 Thread Didier Roche
** Changed in: unity
   Status: New = Confirmed

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

Title:
  Totem goes to background when full-screen and out of focus

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

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


[Bug 615859] Re: Select windows when the mouse moves over them is incompatible with global menu bar

2011-07-29 Thread Matthew Paul Thomas
** Changed in: ayatana-design
   Status: New = Fix Released

** Changed in: gnome-control-center (Ubuntu)
   Status: Incomplete = New

** Changed in: gnome-control-center (Ubuntu Natty)
   Status: Incomplete = New

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

Title:
  Select windows when the mouse moves over them is incompatible with
  global menu bar

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/615859/+subscriptions

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


[Bug 818035] Re: gnome-settings-daemon assert failure: gnome-settings-daemon: ../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == dpy-xcb-pending_requests' failed.

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804896 ***
https://bugs.launchpad.net/bugs/804896

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #804896, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/818035/+attachment/2240553/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/818035/+attachment/2240554/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/818035/+attachment/2240555/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/818035/+attachment/2240556/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/818035/+attachment/2240557/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/818035/+attachment/2240558/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/818035/+attachment/2240559/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/818035/+attachment/2240560/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804896
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == 
dpy-xcb-pending_requests' failed.

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

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

Title:
  gnome-settings-daemon assert failure: gnome-settings-daemon:
  ../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req ==
  dpy-xcb-pending_requests' failed.

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

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


[Bug 817697] Re: evolution will not automatically use password

2011-07-29 Thread Pedro Villavicencio
** Changed in: evolution (Ubuntu)
   Importance: Undecided = Low

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

Title:
  evolution will not automatically use password

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

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


[Bug 818077] Re: gnome-settings-daemon assert failure: gnome-settings-daemon: ../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == dpy-xcb-pending_requests' failed.

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804896 ***
https://bugs.launchpad.net/bugs/804896

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #804896, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/818077/+attachment/2240745/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/818077/+attachment/2240746/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/818077/+attachment/2240747/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/818077/+attachment/2240748/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/818077/+attachment/2240749/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/818077/+attachment/2240750/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/818077/+attachment/2240751/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/818077/+attachment/2240752/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804896
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == 
dpy-xcb-pending_requests' failed.

** Visibility changed to: Public

** Tags removed: need-i386-retrace

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

Title:
  gnome-settings-daemon assert failure: gnome-settings-daemon:
  ../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req ==
  dpy-xcb-pending_requests' failed.

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

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


[Bug 818066] Re: gnome-settings-daemon assert failure: gnome-settings-daemon: ../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == dpy-xcb-pending_requests' failed.

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804896 ***
https://bugs.launchpad.net/bugs/804896

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #804896, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/818066/+attachment/2240693/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/818066/+attachment/2240694/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/818066/+attachment/2240695/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/818066/+attachment/2240696/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/818066/+attachment/2240697/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/818066/+attachment/2240698/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/818066/+attachment/2240699/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/818066/+attachment/2240700/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804896
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == 
dpy-xcb-pending_requests' failed.

** Visibility changed to: Public

** Tags removed: need-i386-retrace

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

Title:
  gnome-settings-daemon assert failure: gnome-settings-daemon:
  ../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req ==
  dpy-xcb-pending_requests' failed.

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

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


[Bug 818083] Re: gnome-settings-daemon assert failure: gnome-settings-daemon: ../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == dpy-xcb-pending_requests' failed.

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804896 ***
https://bugs.launchpad.net/bugs/804896

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #804896, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/818083/+attachment/2240758/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/818083/+attachment/2240759/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/818083/+attachment/2240760/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/818083/+attachment/2240761/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/818083/+attachment/2240762/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/818083/+attachment/2240763/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/818083/+attachment/2240764/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/818083/+attachment/2240765/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804896
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req == 
dpy-xcb-pending_requests' failed.

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

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

Title:
  gnome-settings-daemon assert failure: gnome-settings-daemon:
  ../../src/xcb_io.c:140: dequeue_pending_request: Assertion `req ==
  dpy-xcb-pending_requests' failed.

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

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


[Bug 817849] Re: nautilus-sendto crashed with SIGSEGV in g_slice_alloc()

2011-07-29 Thread Pedro Villavicencio
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  Please try to obtain a valgrind log following the
instructions at https://wiki.ubuntu.com/Valgrind and attach the file to
the bug report. This will greatly help us in tracking down your problem.

** Visibility changed to: Public

** Changed in: nautilus-sendto (Ubuntu)
   Status: Confirmed = Incomplete

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

Title:
  nautilus-sendto crashed with SIGSEGV in g_slice_alloc()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus-sendto/+bug/817849/+subscriptions

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


[Bug 817697] Re: evolution will not automatically use password

2011-07-29 Thread Pedro Villavicencio
could you get a debug log? please run evolution as : CAMEL_DEBUG=all
evolution  evolution-debug.txt ; reproduce the issue andattach that
resulting log file to the report, thanks.

** Changed in: evolution (Ubuntu)
   Status: New = Incomplete

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

Title:
  evolution will not automatically use password

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

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


[Bug 816250] Re: nautilus-sendto assert failure: *** glibc detected *** nautilus-sendto: free(): invalid pointer: 0x091e7610 ***

2011-07-29 Thread Pedro Villavicencio
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  Please try to obtain a valgrind log following the
instructions at https://wiki.ubuntu.com/Valgrind and attach the file to
the bug report. This will greatly help us in tracking down your problem.

** Visibility changed to: Public

** Changed in: nautilus-sendto (Ubuntu)
   Status: New = Incomplete

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

Title:
  nautilus-sendto assert failure: *** glibc detected *** nautilus-
  sendto: free(): invalid pointer: 0x091e7610 ***

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus-sendto/+bug/816250/+subscriptions

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


[Bug 780747] Re: Window does not always close when running gnome-shell

2011-07-29 Thread Rico Tzschichholz
Update to a new git snapshot which also includes the updated patch for
this bug.

rhythmbox (2.90.1~20110727-0ubuntu1) oneiric; urgency=low

  * New upstream git snapshot.
  * debian/control.in:
- rename gir-package to gir1.2-rb-3.0
- add libdiscid0-dev, libpeas-dev (= 0.7.3)
- drop libgnome-media-profiles-dev
- bump gstreamer dependencies (= 0.10.32)
- disable rhythmbox-plugin-coherence package
  * debian/*.install:
- update for new source
  * debian/patches:
- refreshed as needed
- drop 00git-daap-password-handling.patch and 00git-dacp-enums.patch
- fix 05_hide_on_quit.patch (LP: #780747)

 -- Rico Tzschichholz ric...@ubuntu.com  Fri, 29 Jul 2011 16:41:38
+0200

Package files are locate here:
http://people.ubuntu.com/~ricotz/rhythmbox/

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

Title:
  Window does not always close when running gnome-shell

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

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


[Bug 814019] Re: empathy-chat crashed with SIGSEGV in gtk_widget_hide()

2011-07-29 Thread Cristian Aravena
https://bugzilla.gnome.org/show_bug.cgi?id=655036#c2

Maciej Piechotka [developer]:
When I DND the tab in epiphany I get the similar crash. I suspect problem is 
with gtk.

** Package changed: empathy (Ubuntu) = gtk+3.0 (Ubuntu)

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

Title:
  empathy-chat crashed with SIGSEGV in gtk_widget_hide()

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

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


[Bug 817778] Re: the Brasero Normalize Plugin should Not be enabled by default

2011-07-29 Thread Pedro Villavicencio
** Changed in: brasero (Ubuntu)
   Importance: Undecided = Wishlist

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

Title:
  the Brasero Normalize Plugin should Not be enabled by default

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

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


[Bug 817991] Re: Cannot change screen brightness after upgrading gnome-power-manager

2011-07-29 Thread Pedro Villavicencio
only change there was:
  * debian/gnome-power-manager.gsettings-override: Dropped
- Upstream doesn't ship this preference any more
did you upgraded your kernel perhaps? i don't think that patch make gpm to not 
work.

** Changed in: gnome-power-manager (Ubuntu)
   Importance: Undecided = Low

** Changed in: gnome-power-manager (Ubuntu)
   Status: New = Incomplete

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

Title:
  Cannot change screen brightness after upgrading gnome-power-manager

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/817991/+subscriptions

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


[Bug 817875] Re: vte with scrollbar keeps growing in width

2011-07-29 Thread Pedro Villavicencio
idon't see the problem here on Oneiric, could you perhaps try the same
on a Oneiric installation? Thanks.

** Changed in: vte (Ubuntu)
   Importance: Undecided = Low

** Changed in: vte (Ubuntu)
   Status: New = Incomplete

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

Title:
  vte with scrollbar keeps growing in width

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

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


[Bug 818116] Re: metacity crashed with SIGABRT in raise()

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804702 ***
https://bugs.launchpad.net/bugs/804702

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #804702, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/818116/+attachment/2240894/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/818116/+attachment/2240895/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/818116/+attachment/2240896/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/818116/+attachment/2240897/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/818116/+attachment/2240898/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/818116/+attachment/2240899/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/818116/+attachment/2240900/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/818116/+attachment/2240901/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804702
   metacity crashed with SIGABRT in raise()

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

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

Title:
  metacity crashed with SIGABRT in raise()

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

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


[Bug 818145] [NEW] Screensaver displays the time in UTC

2011-07-29 Thread Michael Bienia
Public bug reported:

The top bar of the screensaver displays the time in UTC. While the normal clock 
display e.g. 18:03 (local time) the screensaver displays 16:03 (UTC as my 
timezone is +2).
My clock runs on UTC (UTC=yes in /etc/default/rcS) and my timezone should be 
properly configured as date displays the time correctly.
This is with gnome-screensaver 3.0.0-2ubuntu2 from oneiric.

** Affects: gnome-screensaver (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Screensaver displays the time in UTC

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

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


[Bug 818157] [NEW] Evolution Backup Files Incorrectly Reported (AGAIN)

2011-07-29 Thread Kevin P. Munn
Public bug reported:

When using the Back Evolution Settings.. for the Weekly Back Up, USED to 
produce a viable file to restore from.
The file was about 11Mb in size, an has proved reliable when needing to 
restore, or when starting afresh.
Now the evolution-backup.tar.gz product is 332Kb in size.
The last time it was this size ANY Restore failed, REPEATEDLY.
This seemed to have been a recent (Since beginning of June) issue, and as it is 
REQUIRED as a Work Application it is of concern.
Tried a Terminal Text-As-Command Work-Around, but this also Fails.

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

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

Title:
  Evolution Backup Files Incorrectly Reported (AGAIN)

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

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


[Bug 818148] Re: gnome-settings-daemon assert failure: gnome-settings-daemon: ../../src/xcb_io.c:515: _XReply: asserzione \!dpy-xcb-reply_data\ non riuscita.

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804221 ***
https://bugs.launchpad.net/bugs/804221

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #812377, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/818148/+attachment/2241068/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/818148/+attachment/2241069/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/818148/+attachment/2241070/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/818148/+attachment/2241071/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/818148/+attachment/2241072/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/818148/+attachment/2241073/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/818148/+attachment/2241074/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/818148/+attachment/2241075/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804221
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:515: _XReply: Assertion `!dpy-xcb-reply_data' failed.

** Visibility changed to: Public

** Tags removed: need-i386-retrace

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

Title:
  gnome-settings-daemon assert failure: gnome-settings-daemon:
  ../../src/xcb_io.c:515: _XReply: asserzione \!dpy-xcb-reply_data\
  non riuscita.

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

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


[Bug 743696] Re: gcalctool crashed with SIGABRT in g_simple_async_result_complete()

2011-07-29 Thread Phani
I got this error only once when I was trying Ubuntu 11.04 Live CD. I
could not reproduce it later.

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

Title:
  gcalctool crashed with SIGABRT in g_simple_async_result_complete()

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

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


[Bug 642792] Re: ALT+PrtSc not recognised: breaks built-in screenshot function

2011-07-29 Thread Launchpad Bug Tracker
** Changed in: linux (Ubuntu Maverick)
   Status: New = Confirmed

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

Title:
  ALT+PrtSc not recognised: breaks built-in screenshot function

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/642792/+subscriptions

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


[Bug 818163] [NEW] text in eclipse doesn't update properly using metacity

2011-07-29 Thread Bryan
Public bug reported:

ubuntu 10.10
metacity 1:2.30.2-0ubuntu1
eclipse 3.5.2-6ubuntu1.1

Steps to reproduce:
1. install the version of eclipse that comes in the ubuntu repository (sudo 
aptitude install eclipse)
2. use metacity window manager (System -- Preferences -- Appearance -- 
Visual Effects -- None -- Close)
3. open a file in eclipse where the text is wider than the window
4. drag the horizontal scrollbar to the right, and then back to the left.  do 
it a bunch of times for a more dramatic effect
5. the text will be all messed up (see attached screenshot)

The same thing doesn't happen using compiz, which is why I'm guessing
it's a metacity bug.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: metacity 1:2.30.2-0ubuntu1
ProcVersionSignature: Ubuntu 2.6.35-30.54-generic 2.6.35.13
Uname: Linux 2.6.35-30-generic x86_64
NonfreeKernelModules: fglrx
Architecture: amd64
Date: Fri Jul 29 11:59:42 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: metacity

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


** Tags: amd64 apport-bug maverick

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

Title:
  text in eclipse doesn't update properly using metacity

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

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


[Bug 818163] Re: text in eclipse doesn't update properly using metacity

2011-07-29 Thread Bryan
-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in Ubuntu.
https://bugs.launchpad.net/bugs/818163

Title:
  text in eclipse doesn't update properly using metacity

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

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


[Bug 817991] Re: Cannot change screen brightness after upgrading gnome-power-manager

2011-07-29 Thread Bowmore
The problem occurred on upgrading from 3.1.2-0ubuntu1 to 3.1.3-0ubuntu1
and the log for 3.1.3-0ubuntu1 says:

gnome-power-manager (3.1.3-0ubuntu1) oneiric; urgency=low

  * New upstream release
  * debian/rules:
  * debian/patches/08-desktop-bugreport-path.patch:
- Remove mentions of no longer existing gnome-power-bugreport.sh and 
autostart
  * debian/patches/02_autostart_init.patch:
  * debian/patches/14_fix_no_xbacklight_crash.patch:
  * debian/patches/14-critical-message-timeout.patch:
  * debian/patches/15-nodisplay-autostart.patch:
- Remove obsolete patches
  * debian/patches/16-onlyshowin-unity.patch:
- Remove upstreamed patch

and I guess it has to do with this change:

  * debian/patches/14_fix_no_xbacklight_crash.patch:

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

Title:
  Cannot change screen brightness after upgrading gnome-power-manager

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/817991/+subscriptions

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


[Bug 817991] Re: Cannot change screen brightness after upgrading gnome-power-manager

2011-07-29 Thread Bowmore
Just adding that I have the exact same problem on two installations,
this one originating from Natty and another clean alpha2 install.

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

Title:
  Cannot change screen brightness after upgrading gnome-power-manager

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/817991/+subscriptions

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


[Bug 743696] Re: gcalctool crashed with SIGABRT in g_simple_async_result_complete()

2011-07-29 Thread Sebastien Bacher
We are closing this bug report as it lacks the information, described in
the previous comments, we need to investigate the problem further.
However, please reopen it if you can give us the missing information and
don't hesitate to submit bug reports in the future.

** Changed in: gcalctool (Ubuntu)
   Status: Incomplete = Invalid

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

Title:
  gcalctool crashed with SIGABRT in g_simple_async_result_complete()

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

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


[Bug 818163] Re: text in eclipse doesn't update properly using metacity

2011-07-29 Thread Bryan
this is what it looks like

** Attachment added: example
   
https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/818163/+attachment/2241183/+files/metacity%20eclipse%20messed%20up%20text.png

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

Title:
  text in eclipse doesn't update properly using metacity

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

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


[Bug 774417] Re: gapless playback does not work in rhythmbox

2011-07-29 Thread Launchpad Bug Tracker
** Changed in: gstreamer0.10 (Ubuntu)
   Status: New = Confirmed

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

Title:
  gapless playback does not work in rhythmbox

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gstreamer0.10/+bug/774417/+subscriptions

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


[Bug 706436] Re: Safely remove drive is not safe for SD card readers

2011-07-29 Thread FERNmann
** Also affects: hundredpapercuts
   Importance: Undecided
   Status: New

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

Title:
  Safely remove drive is not safe for SD card readers

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

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


[Bug 704105] Re: Resize grip always appears in bottom right of GTK+2.0 windows

2011-07-29 Thread Brian Murray
** Tags added: patch

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gtk+2.0 in Ubuntu.
https://bugs.launchpad.net/bugs/704105

Title:
  Resize grip always appears in bottom right of GTK+2.0 windows

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/704105/+subscriptions

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


[Bug 817697] Re: evolution will not automatically use password

2011-07-29 Thread Doug McMahon
** Attachment added: evolution-debug.txt
   
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/817697/+attachment/2241205/+files/evolution-debug.txt

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

Title:
  evolution will not automatically use password

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

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


[Bug 818164] Re: nautilus crashed with SIGSEGV in g_main_context_dispatch()

2011-07-29 Thread Apport retracing service
*** This bug is a duplicate of bug 804133 ***
https://bugs.launchpad.net/bugs/804133

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #804724, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/818164/+attachment/2241173/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/818164/+attachment/2241174/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/818164/+attachment/2241175/+files/Disassembly.txt

** Attachment removed: ProcMaps.txt
   
https://bugs.launchpad.net/bugs/818164/+attachment/2241176/+files/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/818164/+attachment/2241177/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/818164/+attachment/2241178/+files/Registers.txt

** Attachment removed: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/818164/+attachment/2241179/+files/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/818164/+attachment/2241180/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 804133
   Segmentation fault: nautilus_icon_container_search_entry_flush_timeout

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

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

Title:
  nautilus crashed with SIGSEGV in g_main_context_dispatch()

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

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


[Bug 791082] Re: Battery monitor doesn't show level on ThinkPad X220

2011-07-29 Thread Uncle Pedro
Confirming #8 -- resolved on X220T (tablet) as well.

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

Title:
  Battery monitor doesn't show level on ThinkPad X220

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/791082/+subscriptions

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


[Bug 817650] Re: gnome-settings-daemon assert failure: gnome-settings-daemon: ../../src/xcb_io.c:571: _XReply: Assertion `(((long) (req-sequence) - (long) (dpy-request)) = 0)' failed.

2011-07-29 Thread Pedro Villavicencio
*** This bug is a duplicate of bug 804472 ***
https://bugs.launchpad.net/bugs/804472

** This bug is no longer a duplicate of private bug 805693
** This bug has been marked a duplicate of bug 804472
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:221: poll_for_event: Assertion `(((long) (event_sequence) - 
(long) (dpy-request)) = 0)' failed.

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

Title:
  gnome-settings-daemon assert failure: gnome-settings-daemon:
  ../../src/xcb_io.c:571: _XReply: Assertion `(((long) (req-sequence) -
  (long) (dpy-request)) = 0)' failed.

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

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


[Bug 817020] Re: gnome-settings-daemon crashed with SIGABRT in raise()

2011-07-29 Thread Pedro Villavicencio
*** This bug is a duplicate of bug 804472 ***
https://bugs.launchpad.net/bugs/804472

** This bug is no longer a duplicate of private bug 805693
** This bug has been marked a duplicate of bug 804472
   gnome-settings-daemon assert failure: gnome-settings-daemon: 
../../src/xcb_io.c:221: poll_for_event: Assertion `(((long) (event_sequence) - 
(long) (dpy-request)) = 0)' failed.

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

Title:
  gnome-settings-daemon crashed with SIGABRT in raise()

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

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


  1   2   >