[Bug 382034] Re: Was attempting to install Samba

2009-06-01 Thread Thierry Carrez
Marking as Invalid, per reporter request

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

-- 
Was attempting to install Samba
https://bugs.launchpad.net/bugs/382034
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 372358] Re: Please merge openvpn 2.1~rc15-1 (main) from Debian unstable (main)

2009-06-01 Thread Thierry Carrez
Hey Andres, thank you for your work on this !

About testing:
Did you doublecheck that you can still start the password-protected VPNs 
manually (after boot) using sudo service openvpn start vpnname and entering 
the right password ?

About the changelog entries:
 * Do not use start-stop-daemon and use  /dev/null to avoid blocking boot
In fact you're now using start-stop-daemon so it should just read Use  
/dev/null to avoid blocking boot
 * Fix VPNs always reported started [ OK ]
This was a fix to our per-VPN patch so mentioning show per-VPN result 
messages is sufficient

A few more nitpicking comments:
 * There is some (unneeded) spacing difference in the first three lines of:
---pidfile /var/run/openvpn.$NAME.pid \
---exec $DAEMON -- $OPTARGS --writepid /var/run/openvpn.$NAME.pid \
-$DAEMONARG $STATUSARG --cd $CONFIG_DIR \
---config $CONFIG_DIR/$NAME.conf || STATUS=1
+   --pidfile /var/run/openvpn.$NAME.pid \
+   --exec $DAEMON -- $OPTARGS --writepid /var/run/openvpn.$NAME.pid \
+   $DAEMONARG $STATUSARG --cd $CONFIG_DIR \
+   --config $CONFIG_DIR/$NAME.conf $script_security  /dev/null || STATUS=1
It could probably be fixed so that the diff doesn't show the first three lines 
as different, something like:
---config $CONFIG_DIR/$NAME.conf || STATUS=1
+--config $CONFIG_DIR/$NAME.conf $script_security  /dev/null || 
STATUS=1

 * I would just drop the lsb-base (= 3.2-14) dependency in
debian/control to match what debian does (we have 3.2-20ubuntu4 in
karmic anyway)

In all cases I'm not a core-dev yet, so someone else still needs to
comment/sponsor this :)

-- 
Please merge openvpn 2.1~rc15-1 (main) from Debian unstable (main)
https://bugs.launchpad.net/bugs/372358
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 374819] Re: Missing dependency on update-inetd and other issues

2009-06-01 Thread Launchpad Bug Tracker
This bug was fixed in the package krb5 - 1.7dfsg~beta3-1

---
krb5 (1.7dfsg~beta3-1) unstable; urgency=low

  * New upstream release
  * Revert relaxation of Debian symbol versions introduced in
1.7dfsg~beta1-3 
  * Fix kproplog's manpage (LP: #374819)

krb5 (1.7dfsg~beta2-4) unstable; urgency=low

  * Upstream fixes to RT #6490, Closes: #528729
  - Use MS  usage 9 not 8 for tgs-rep encrypted in subkey
  - Do not use keyed checksum with RC4; WS2003  expects it to be
encrypted in the subsession key, everyone else expects the session
key.  Note that a keyed checksum for RC4 would work against WS2008.
  * Patch from Marc Dequ?nes (Duck)   for HURD portability, Closes:
#528828 

krb5 (1.7dfsg~beta2-3) unstable; urgency=low

  * Use correct enctype identifier in lucid security context export,
Closes: #528514 

 -- Ubuntu Archive Auto-Sync arch...@ubuntu.com   Mon,  01 Jun 2009
10:43:23 +0100

** Changed in: krb5 (Ubuntu)
   Status: New = Fix Released

-- 
Missing dependency on update-inetd and other issues
https://bugs.launchpad.net/bugs/374819
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 316441] Re: PHP session garbage collection

2009-06-01 Thread Phil Bayfield
If you edit /etc/cron.d/php5 you will have something like this:

# /etc/cron.d/php5: crontab fragment for php5
#  This purges session files older than X, where X is defined in seconds
#  as the largest value of session.gc_maxlifetime from all your php.ini
#  files, or 24 minutes if not defined.  See /usr/lib/php5/maxlifetime

# Look for and purge old sessions every 30 minutes
09,39 * * * * root   [ -x /usr/lib/php5/maxlifetime ]  [ -d 
/var/lib/php5 ]  find /var/lib/php5/ -type f -cmin 
+$(/usr/lib/php5/maxlifetime) -print0 | xargs -n 200 -r -0 rm

Just comment the last line to disable the cron job.

Then in /etc/php5/apache2/php.ini search for the [Session] section and
modify any of the following to your requirements:

session.save_handler = files

How php stores session data, leave this alone unless you want to change
the save handler, e.g. to memcache

;session.save_path = /var/lib/php5

Change the location of where php saves session files. Either a local
path for 'files' or a url in the form of tcp://1.2.3.4:11211/ for
memcache etc.

;session.gc_probability = 0
session.gc_divisor = 100

You will need to uncomment session.gc_probability and set it to 1 to
enable the default garbage collection behaviour of PHP. This means that
approx every 100 requests PHP will perform garbage collection, you could
decrease session.gc_divisor or increase session.gc_probability to
increase this but default should be fine.

session.gc_maxlifetime = 1440

This is how long sessions remain active, 1440 seconds is not long, only
about 20 mins (24 to be exact) so it is often worth increasing this
value, depending on your needs.

There are other variables in the [Session] section but you shouldn't
need to change them.

-- 
PHP session garbage collection
https://bugs.launchpad.net/bugs/316441
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 382117] Re: Renaming a file through Samba overwrites existing one

2009-06-01 Thread Thierry Carrez
Yes, it's normal behavior for mv to overwrite without warning in this case. Use 
mv -i to prompt on overwrite.
I'd say it's a bug in Nautilus, if any. Probably linked to bug 316653.

** Also affects: nautilus (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Renaming a file through Samba overwrites existing one
https://bugs.launchpad.net/bugs/382117
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


Re: [Bug 374819] Re: Missing dependency on update-inetd and other issues

2009-06-01 Thread Sam Hartman

As far as I can tell that was the only lintian error that represented
a real problem in the package.

-- 
Missing dependency on update-inetd and other issues
https://bugs.launchpad.net/bugs/374819
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 341526] Re: [Feature Request] Add support for Dell Driver Injection Disk

2009-06-01 Thread Bug Watch Updater
** Changed in: fedora
   Status: Fix Released = In Progress

-- 
[Feature Request] Add support for Dell Driver Injection Disk
https://bugs.launchpad.net/bugs/341526
You received this bug notification because you are a member of Ubuntu
Server Team, which is a direct subscriber.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 372358] Re: Please merge openvpn 2.1~rc15-1 (main) from Debian unstable (main)

2009-06-01 Thread Andres E. Rodriguez Lazo
Thierry:

 - About the testing: Yes I've tested everything you are mentioning and
it works the same way comparing Jaunty openvpn package and the Karmic
openvpn package I have on my ppa.

 - Changed those changelog entries.

 - Regarding the diff, it shows that difference because in Debian, they
are using whitespaces before the commands, and I'm using tabs, so that's
why it shows that they are different lines.

 - Now, before uploading the last debdiff, By dropping the lsb-base
dependency,  You mean I should drop the dependency as a whole, or just
drop the version restriction, since Debian does not include that
dependency. However, Isn't that dependency necessary for
status_of_proc() ??

Cheers.

-- 
Please merge openvpn 2.1~rc15-1 (main) from Debian unstable (main)
https://bugs.launchpad.net/bugs/372358
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openvpn in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 377555] Re: MySQL lacks IPv6 support

2009-06-01 Thread Mathias Gug
** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Importance: Undecided = Wishlist

** Changed in: mysql-dfsg-5.0 (Ubuntu)
   Status: New = Confirmed

-- 
MySQL lacks IPv6 support
https://bugs.launchpad.net/bugs/377555
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 382501] Re: CIFS File Transfer from Ubuntu to Windows Share results in 0 Bytes File ! The File is LOST

2009-06-01 Thread a-r-k-i-b-o-t-t
I want to add this detail. The File lenght on the Target Share was not
an issue. There were files in the same folder with longer filenames. But
some Filenames were truncated to 17 chars. Other Filenames survived with
'special' characters in the name. The bug must be in the deep logic and
may not be about filenames or whatever. Just to *not lead you onto the
wrong track.

-- 
CIFS File Transfer from Ubuntu to Windows Share results in 0 Bytes File ! The 
File is LOST
https://bugs.launchpad.net/bugs/382501
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


Re: [Bug 138931] Re: Can't use saslauthd to authenticate both postfix and cyrus due to /var/run/saslauthd being on tmpfs

2009-06-01 Thread Scott Kitterman
Teej: Do you have a reason to believe this is fixed? Did you try to 
replicate it?

-- 
Can't use saslauthd to authenticate both postfix and cyrus due to 
/var/run/saslauthd being on tmpfs
https://bugs.launchpad.net/bugs/138931
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to cyrus-sasl2 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 382501] Re: CIFS File Transfer from Ubuntu to Windows Share results in 0 Bytes File ! The File is LOST

2009-06-01 Thread a-r-k-i-b-o-t-t
Testcase that works to reproduce the error. This is not nautilus
related. To check this yourself try this:

Create or copy files to test the transfer with. 
Rename them to contain special characters. Especially files should contain the 
: 
Move / Copy them via mv cp or nautilus. 
Filenames containing : will get truncated there and those files will be empty 
on the target share.

Happy Bugfixing.

-- 
CIFS File Transfer from Ubuntu to Windows Share results in 0 Bytes File ! The 
File is LOST
https://bugs.launchpad.net/bugs/382501
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 382501] Re: CIFS File Transfer from Ubuntu to Windows Share results in 0 Bytes File ! The File is LOST

2009-06-01 Thread a-r-k-i-b-o-t-t
(By Special Character I only meant .. non-alphabetic ones.. not really
special..)

-- 
CIFS File Transfer from Ubuntu to Windows Share results in 0 Bytes File ! The 
File is LOST
https://bugs.launchpad.net/bugs/382501
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 138931] Re: Can't use saslauthd to authenticate both postfix and cyrus due to /var/run/saslauthd being on tmpfs

2009-06-01 Thread Teej
This bug hadn't been updated in 5 months, I was checking if it was still
active. If this could be tested in Jaunty/Karmic it would be great, as
it MAY have been fixed, but I wouldn't like to say for sure. I would try
to reproduce but do not have any server to try it on. Should this be
marked Medium so it's more visible to developers? :)

-- 
Can't use saslauthd to authenticate both postfix and cyrus due to 
/var/run/saslauthd being on tmpfs
https://bugs.launchpad.net/bugs/138931
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to cyrus-sasl2 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 374819] Re: Missing dependency on update-inetd and other issues

2009-06-01 Thread James Westby
Thanks for looking in to it.

James

-- 
Missing dependency on update-inetd and other issues
https://bugs.launchpad.net/bugs/374819
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 382601] Re: php5 does not build

2009-06-01 Thread Andrew Mitchell
r...@augustine:/# apt-get -o Debug::pkgProblemResolver=yes  build-dep php5
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Starting
Starting 2
Investigating libdb4.7-dev
Package libdb4.7-dev has broken dep on libdb4.6-dev
  Considering libdb4.6-dev 9998 as a solution to libdb4.7-dev -1
  Holding Back libdb4.7-dev rather than change libdb4.6-dev
Investigating libaprutil1-dev
Package libaprutil1-dev has broken dep on libdb4.7-dev
  Considering libdb4.7-dev -1 as a solution to libaprutil1-dev 1
  Holding Back libaprutil1-dev rather than change libdb4.7-dev
Investigating apache2-prefork-dev
Package apache2-prefork-dev has broken dep on libaprutil1-dev
  Considering libaprutil1-dev 1 as a solution to apache2-prefork-dev 
Reinst Failed because of protected libdb4.6-dev
Reinst Failed because of libdb4.7-dev
Done
E: Build-dependencies for php5 could not be satisfied.

-- 
php5 does not build
https://bugs.launchpad.net/bugs/382601
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 382311] [NEW] Please sync diffutils 2.8.1-13 (main) from Debian unstable (main).

2009-06-01 Thread Bhavani Shankar
Public bug reported:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 affects ubuntu/diffutils
 status new
 importance wishlist
 subscribe ubuntu-main-sponsors

Please sync diffutils 2.8.1-13 (main) from Debian unstable (main).


Explanation of the Ubuntu delta and why it can be dropped:

Debian has incorporated the patch from ubuntu to fix 
- --ignore-file-name-case. So the only ubuntu change can be dropped.

Changelog since current karmic version 2.8.1-12ubuntu1:

diffutils (2.8.1-13) unstable; urgency=low
 .
   * Fixed --ignore-file-name-case. Patch from Ubuntu. Closes: #300258.
   * Modified debian/rules to support cross-build. Closes: #451159.
   * Updated config.guess and config.sub.

diffutils (2.8.7.0-0.2) experimental; urgency=low

  * Test release for experimental (for diffutils 2.8.7).

 -- Santiago Vila sanv...@debian.org  Sun,  9 Jan 2005 14:21:08 +0100

diffutils (2.8.1-8) unstable; urgency=low

  * Repackaged source without the GFDL-covered manual. Closes: #212523.
  * Source is renamed to diffutils to make the archive scripts happy.
  * Removed texinfo and texi2html from Build-Depends, no longer needed.
  * Dropped diff-doc, will be generated from another source.
  * Added appropriate --build and --host options to ./configure call in
debian/rules to support cross-compilation. Closes: #283642.

 -- Santiago Vila sanv...@debian.org  Sat,  8 Jan 2005 19:09:00 +0100

diff (2.8.1-7) unstable; urgency=low

  * Moved info manual to diff-doc to address Bug#212523 partially.
  * Added appropriate Replaces field to diff-doc.
  * Updated config.guess and config.sub.

 -- Santiago Vila sanv...@debian.org  Wed, 24 Nov 2004 19:01:10 +0100

diff (2.8.1-6) unstable; urgency=low

  * Fixed sdiff manpage (Closes: #219166).

 -- Santiago Vila sanv...@debian.org  Wed,  5 Nov 2003 10:55:58 +0100

diff (2.8.1-5) unstable; urgency=low

  * Updated config.guess and config.sub for GNU/KFreeBSD (Closes:
#216779).

 -- Santiago Vila sanv...@debian.org  Tue, 21 Oct 2003 15:26:22 +0200

diff (2.8.1-4) unstable; urgency=low

  * Modified doc/Makefile.in so that it *never* uses install-info.
This is a workaround for an automake bug triggered by the fact that
install-info --version now outputs to stdout (Closes: #213495).

 -- Santiago Vila sanv...@debian.org  Wed,  1 Oct 2003 12:35:02 +0200

diff (2.8.1-3) unstable; urgency=low

  * Converted Debian changelog to UTF-8.
  * Made sdiff -E to work (Closes: #212954).

 -- Santiago Vila sanv...@debian.org  Mon, 29 Sep 2003 23:50:50 +0200

diff (2.8.1-2) unstable; urgency=low

  * Removed doc symlinks.
  * Updated DEB_BUILD_OPTIONS handling (added noopt, removed debug).
  * Updated config.sub/config.guess for netbsd (Closes: #179701).

 -- Santiago Vila sanv...@debian.org  Thu, 24 Apr 2003 22:17:04 +0200

diff (2.8.1-1) unstable; urgency=low

  * New upstream release.
  * There are upstream manpages now, generated by help2man.
  * The ranges feature by Peter Samuelson is now implemented upstream,
but using a slightly different syntax.

 -- Santiago Vila sanv...@debian.org  Sat, 20 Jul 2002 12:51:04 +0200

diff (2.7-29) unstable; urgency=low

  * The DIFF environment variable is now ignored by sdiff, this feature was
undocumented and will be removed in the next stable diffutils release.
Thanks to Patrik Hägglund (Closes: #66486).

 -- Santiago Vila sanv...@debian.org  Tue, 12 Mar 2002 00:40:34 +0100

diff (2.7-28) unstable; urgency=medium

  * Fixed yet another bug in the ranges feature, where cmp -i misreports
the byte number where files differ. Thanks to Tim Bell (Closes: #120583).

 -- Santiago Vila sanv...@debian.org  Fri, 23 Nov 2001 09:52:08 +0100

diff (2.7-27) unstable; urgency=low

  * Added support for DEB_BUILD_OPTIONS.

 -- Santiago Vila sanv...@debian.org  Wed, 21 Nov 2001 16:32:02 +0100

diff (2.7-26) unstable; urgency=medium

  * Fixed a bug (introduced in diff_2.7-24) where cmp reports the wrong char
number where files differ. Thanks to Gergely Risko (Closes: #109683).

 -- Santiago Vila sanv...@debian.org  Thu, 23 Aug 2001 12:55:33 +0200

diff (2.7-25) unstable; urgency=low

  * Rightly refer to the GNU General Public License in the copyright file.
Reported by André Dahlqvist (Closes: #102236).
  * Registered HTML docs using doc-base.

 -- Santiago Vila sanv...@debian.org  Thu, 28 Jun 2001 19:03:34 +0200

diff (2.7-24) unstable; urgency=low

  * Fixed a bug (introduced in diff_2.7-19) where cmp -l may misreport the
byte number of the differences it finds (Closes: #89755).
Thanks to Vasco Pedro v...@host.di.uevora.pt.

 -- Santiago Vila sanv...@debian.org  Sat, 17 Mar 2001 18:12:04 +0100

diff (2.7-23) unstable; urgency=low

  * Changed cmp doc to read 'byte number' instead of offset.
Patch by Peter Muir mu...@ieels.com. Closes: #59514.
  * Build-Depends: texinfo, since .texi source is now modified.
  * Build-Depends-Indep: texi2html, not tetex-bin. Closes: #86580.

 -- Santiago Vila sanv...@debian.org  Tue, 20 

[Bug 259255] Re: Firefox in Xubuntu doesn't have Thunderbird as a mailto handler

2009-06-01 Thread Micah Gersten
Moving to FF3 since no more work will be done on FF2.

** Package changed: firefox (Ubuntu) = firefox-3.0 (Ubuntu)

-- 
Firefox in Xubuntu doesn't have Thunderbird as a mailto handler
https://bugs.launchpad.net/bugs/259255
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 275571] Re: empathy crashed with SIGSEGV in g_main_context_dispatch()

2009-06-01 Thread Robert Ancell
Upstream closed the report as they reworked this code and expect the bug
to be fixed in the latest versions.

** Changed in: empathy (Ubuntu)
   Status: Triaged = Fix Released

-- 
empathy crashed with SIGSEGV in g_main_context_dispatch()
https://bugs.launchpad.net/bugs/275571
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 332368] Re: Make tooltip human understndable

2009-06-01 Thread Robert Ancell
** Changed in: empathy (Ubuntu)
   Importance: Low = Wishlist

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

** Summary changed:

- Make tooltip human understndable
+ Make menu short description refer to usage not technology

** Description changed:

  Binary package hint: empathy
  
  Empathy's tooltop in the applications menu reads, Send and receive
  instant messages but should say something like, “Talk to people on
  Google Talk, AIM, MSN, and Yahoo!”
+ 
+ See
+ https://wiki.ubuntu.com/EmpathyVsPidginUsability#Access%20and%20installation
+ for justification

-- 
Make menu short description refer to usage not technology
https://bugs.launchpad.net/bugs/332368
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 161961] Re: F10-key don't switch focus to menubar in Mozilla Firefox

2009-06-01 Thread Micah Gersten
Moving to FF3 as no more work will happen in FF2.

** Package changed: firefox (Ubuntu) = firefox-3.0 (Ubuntu)

-- 
F10-key don't switch focus to menubar in Mozilla Firefox
https://bugs.launchpad.net/bugs/161961
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 287515] Re: empathy crashed with SIGSEGV in g_type_check_instance_cast()

2009-06-01 Thread Robert Ancell
** Changed in: empathy (Ubuntu)
   Status: Triaged = Fix Committed

-- 
empathy crashed with SIGSEGV in g_type_check_instance_cast()
https://bugs.launchpad.net/bugs/287515
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 44987] Re: Can't open link in new tab for javascript/css menu

2009-06-01 Thread Micah Gersten
No more fixes will occur for FF2.

** Changed in: firefox (Ubuntu)
   Status: Triaged = Won't Fix

-- 
Can't open link in new tab for javascript/css menu
https://bugs.launchpad.net/bugs/44987
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 32891] Re: Improve support for non-gnome Input methods

2009-06-01 Thread Micah Gersten
No more fixes will occur for FF2.

** Changed in: firefox (Ubuntu)
   Status: Triaged = Won't Fix

-- 
Improve support for non-gnome Input methods
https://bugs.launchpad.net/bugs/32891
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 315491] Re: Empathy can't call a GTalk contact (some crashes might be related)

2009-06-01 Thread Robert Ancell
Was fixed in telepathy-gabble 0.7.19

** Package changed: empathy (Ubuntu) = telepathy-gabble (Ubuntu)

** Changed in: telepathy-gabble (Ubuntu)
   Status: New = Fix Released

-- 
Empathy can't call a GTalk contact (some crashes might be related)
https://bugs.launchpad.net/bugs/315491
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 78538] Re: Feature Request: Allow Firefox to work on multiple X11 screens

2009-06-01 Thread Micah Gersten
Moving to Firefox 3 as Firefox 2 will no longer receive any fixes.

** Package changed: firefox (Ubuntu) = firefox-3.0 (Ubuntu)

-- 
Feature Request:  Allow Firefox to work on multiple X11 screens
https://bugs.launchpad.net/bugs/78538
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 48445] Re: Proxy settings should be set to auto-detect by default

2009-06-01 Thread Micah Gersten
No more fixes will occur for Firefox 2.

** Changed in: firefox (Ubuntu)
   Status: Triaged = Won't Fix

-- 
Proxy settings should be set to auto-detect by default
https://bugs.launchpad.net/bugs/48445
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 25830] Re: Option to display file in browser, treat as text/plain

2009-06-01 Thread Micah Gersten
There will not be any more fixes for Firefox 2.

** Changed in: firefox (Ubuntu)
   Status: Triaged = Won't Fix

-- 
Option to display file in browser, treat as text/plain
https://bugs.launchpad.net/bugs/25830
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 274647] Re: Thunderbird fails to perform undo operations correctly

2009-06-01 Thread Micah Gersten
mozilla-thunderbird package is for Thunderbird 1.5

** Package changed: mozilla-thunderbird (Ubuntu) = thunderbird (Ubuntu)

-- 
Thunderbird fails to perform undo operations correctly
https://bugs.launchpad.net/bugs/274647
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 381550] Re: multi-selection does not work when holding shift-key down

2009-06-01 Thread Amedeo Capobianco
I can confirm. Shift left(right) arrow selection gets only the last
character. Used both 1.8 from repo and the latest 1.9.1  version.

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

-- 
multi-selection does not work when holding shift-key down
https://bugs.launchpad.net/bugs/381550
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382315] Re: cron.daily doesn't execute scheduled scripts

2009-06-01 Thread marco.pallotta
Some days ago I have started my PC and syslog sayd:

May 14 08:40:56 ramses anacron[6696]: Anacron 2.3 started on 2009-05-14
May 14 08:40:56 ramses anacron[6696]: Will run job `cron.daily' in 5 min.
...
...
May 14 08:45:56 ramses anacron[6696]: Job `cron.daily' started
May 14 08:45:56 ramses anacron[7302]: Updated timestamp for job `cron.daily' to 
2009-05-14

but then it seems that no scripts, in /etc/cron.daily, were executed (I also 
made a script that do a simple touch of a file in a directory but nor this was 
executed). Moreover  my anacrontab has a period of 1 day and my PC was off for 
about 3-4 days, so the jobs weren't executed for more than 1 day (that it seems 
the period after the which anacron starts the job) and they should have been 
run.
If I watched /var/spool/anacron/cron.daily file I could see the timestamp 
updated to 20090514 so anacron assumed that the jobs were executed but this 
wasn't.

-- 
cron.daily doesn't execute scheduled scripts
https://bugs.launchpad.net/bugs/382315
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382315] [NEW] cron.daily doesn't execute scheduled scripts

2009-06-01 Thread marco.pallotta
Public bug reported:

In my system (Hardy) the cron.daily scripts (etc/cron.daily/*) seems not
to be daily executed.

This is my /etc/crontab
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user command
17 * * * * root cd /  run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd /  run-parts --report 
/etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd /  run-parts --report 
/etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd /  run-parts --report 
/etc/cron.monthly )
#

This is my /etc/anacrontab

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# These replace cron's entries
1 5 cron.daily nice run-parts --report /etc/cron.daily
7 10 cron.weekly nice run-parts --report /etc/cron.weekly
@monthly 15 cron.monthly nice run-parts --report /etc/cron.monthly

In /var/log/syslog I correctly see
Apr 30 08:37:22 ramses anacron[6700]: Job `cron.daily' started
Apr 30 08:37:22 ramses anacron[7737]: Updated timestamp for job `cron.daily' to 
2009-04-30

but nothing seems having been executed.

If I manually launch
run-parts --report /etc/cron.daily
the scripts are correctly executed.

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

-- 
cron.daily doesn't execute scheduled scripts
https://bugs.launchpad.net/bugs/382315
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 330989] Re: Xorg crashed with SIGSEGV in DamageUnregister()

2009-06-01 Thread Bela Lubkin
** This bug is no longer a duplicate of bug 324137
   Xorg crashed with SIGSEGV in DamageUnregister() when using VirtualBox

-- 
Xorg crashed with SIGSEGV in DamageUnregister()
https://bugs.launchpad.net/bugs/330989
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 282576] Re: thunderbird-bin crashed with SIGSEGV in __kernel_vsyscall()

2009-06-01 Thread Steve McInerney
Still happening in Jaunty final. v 2.0.0.21.


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

-- 
thunderbird-bin crashed with SIGSEGV in __kernel_vsyscall()
https://bugs.launchpad.net/bugs/282576
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 133133] Re: Open containing folder is only working if nautilus is present

2009-06-01 Thread racerraul
I just tried it after I downloaded a BIOS update file... dos.exe type...
It attempted to run it with wine...

perhaps if you don't have any file types associated with the file it will do 
that?  Just guessing.
I also tried a .pls file from di.fm and it opened with xmms (my player of 
choice).

-- 
Open containing folder is only working if nautilus is present
https://bugs.launchpad.net/bugs/133133
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382163] Re: when notification pops up while watching a video desktop wallpaper is visible

2009-06-01 Thread Ara Pulido
Thanks for your bug report.

Are you watching the video in full-screen mode?


** Package changed: notification-daemon (Ubuntu) = notify-osd (Ubuntu)

** Changed in: notify-osd (Ubuntu)
   Status: New = Incomplete

-- 
when notification pops up while watching a video desktop wallpaper is visible
https://bugs.launchpad.net/bugs/382163
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 34813] Re: gedit fails to save files over smbfs/cifs

2009-06-01 Thread Alexander Menk
Some days ago I thought it is a good idea to use cifs/smbmount instead
of the gnome VFS to access our Debian based Samba shares (samba version
is 3.0.24-6etch4). I am using Ubuntu 9.04.

- Cannot save files with gedit
- When opening .odt with Open Office, the seem to be opened readonly.
- The same operations work fine, when accessing the share using gnome-vfs

-- 
gedit fails to save files over smbfs/cifs
https://bugs.launchpad.net/bugs/34813
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 382316] [NEW] failed rocksndiamonds during synaptic install

2009-06-01 Thread zman58
Public bug reported:

Binary package hint: rocksndiamonds

I am running Ubuntu 9.04 desktop 32-bit i386. I have a HP G60 244-DX
laptop. 3G RAM, Athlon 64 X2. I was installing rocksndiamonds using
Synaptic. I did not check all of the available games. I left the top two
unchecked during install. The install failed with errors. Later when I
tried to run rocksndiamonds, it complained about missing data files.

ProblemType: Package
Architecture: i386
DistroRelease: Ubuntu 9.04
ErrorMessage: subprocess post-installation script returned error exit status 2
NonfreeKernelModules: nvidia
Package: rocksndiamonds 3.2.6.0+dfsg-6
SourcePackage: rocksndiamonds
Title: package rocksndiamonds 3.2.6.0+dfsg-6 failed to install/upgrade: 
subprocess post-installation script returned error exit status 2
Uname: Linux 2.6.28-11-generic i686

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


** Tags: apport-package i386

-- 
failed rocksndiamonds during synaptic install
https://bugs.launchpad.net/bugs/382316
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382316] Re: failed rocksndiamonds during synaptic install

2009-06-01 Thread zman58

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

** Attachment added: DpkgTerminalLog.txt
   http://launchpadlibrarian.net/27353751/DpkgTerminalLog.txt

-- 
failed rocksndiamonds during synaptic install
https://bugs.launchpad.net/bugs/382316
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 381543] Re: OpenOffice Calc VLOOKUP function doesn't work like Excel

2009-06-01 Thread Adonis Papaderos
** Changed in: openoffice.org (Ubuntu)
   Status: New = Confirmed

-- 
OpenOffice Calc VLOOKUP function doesn't work like Excel
https://bugs.launchpad.net/bugs/381543
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 381590] Re: can't open webpage desktop shortcut containing character | in ubuntu

2009-06-01 Thread Adonis Papaderos
** Changed in: firefox-3.0 (Ubuntu)
   Status: New = Incomplete

-- 
can't open webpage desktop shortcut containing character | in ubuntu
https://bugs.launchpad.net/bugs/381590
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382318] Re: installation of grub2 freezes at Configuring grub-pc information panel

2009-06-01 Thread Kenny

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

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

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

-- 
installation of grub2 freezes at Configuring grub-pc information panel
https://bugs.launchpad.net/bugs/382318
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382317] [NEW] [needs packaging] libapache2-mod-nss for Ubuntu

2009-06-01 Thread Timothy Pearson
Public bug reported:

libapache2-mod-nss needs packaging.  This Apache module provides strong
cryptography for the Apache 2.0 webserver.

This package is required for Fedora Directory Server.

** Affects: ubuntu
 Importance: Undecided
 Assignee: Timothy Pearson (kb9vqf)
 Status: New


** Tags: needs-packaging

** Changed in: ubuntu
 Assignee: (unassigned) = Timothy Pearson (kb9vqf)

-- 
[needs packaging] libapache2-mod-nss for Ubuntu
https://bugs.launchpad.net/bugs/382317
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382318] [NEW] installation of grub2 freezes at Configuring grub-pc information panel

2009-06-01 Thread Kenny
Public bug reported:

Binary package hint: gnome-terminal

apt-get install grub2
Ubuntu 9.04
installation of grub2 freezes at Configuring grub-pc information panel
Quitting indicates that process is still running but it hahgs indefinitely

ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 9.04
ExecutablePath: /usr/bin/gnome-terminal
NonfreeKernelModules: nvidia
Package: gnome-terminal 2.26.0-0ubuntu2
ProcEnviron:
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-terminal
Uname: Linux 2.6.28-11-generic x86_64

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


** Tags: amd64 apport-bug

-- 
installation of grub2 freezes at Configuring grub-pc information panel
https://bugs.launchpad.net/bugs/382318
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382319] [NEW] kdebase-dev - Package not available

2009-06-01 Thread Sam Rog
Public bug reported:

Kubuntu 9.04 alpha-1 / KDE 4.3 beta 1

The package: kde-devel (5:48ubuntu1) has a dependency kdebase-dev (=
4:4.1.1) but the package is not available.

Commands  errors:

sudo apt-get install kde-devel
...
The following packages have unmet dependencies:
  kde-devel: Depends: kdebase-dev (= 4:4.1.1) but it is not installable
E: Broken packages

sudo apt-get install kdebase-dev
...
Package kdebase-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  libkonqsidebarplugin4-dev kdelibs4-dev
E: Package kdebase-dev has no installation candidate

** Affects: meta-kde (Ubuntu)
 Importance: Undecided
 Status: New

-- 
kdebase-dev - Package not available
https://bugs.launchpad.net/bugs/382319
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 369123] Re: Failed to load module canberra-gtk-module: /usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so

2009-06-01 Thread Abel O'Rian
a...@abel-laptop:~$ nautilus
Gtk-Message: Failed to load module canberra-gtk-module: 
libcanberra-gtk-module.so: no se puede abrír el archivo de objeto compartido: 
No existe el fichero ó directorio

-- 
Failed to load module canberra-gtk-module: 
/usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so
https://bugs.launchpad.net/bugs/369123
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 382321] [NEW] 0^0=0

2009-06-01 Thread Ansus
Public bug reported:

KCalc gives 0^0=0.

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

** Description changed:

- KCalc пшмуы 0^0=0.
+ KCalc gives 0^0=0.

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

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

[Bug 382320] [NEW] [needs packaging] libmozilla-ldap-perl for Ubuntu

2009-06-01 Thread Timothy Pearson
Public bug reported:

libmozilla-ldap-perl needs packaging.  libmozilla-ldap-perl consists of
set of modules to communicate with LDAP  (Lightweight Directory Access
Protocol) directory servers.

This package is required for Fedora Directory Server.

** Affects: ubuntu
 Importance: Undecided
 Assignee: Timothy Pearson (kb9vqf)
 Status: New


** Tags: needs-packaging

** Changed in: ubuntu
 Assignee: (unassigned) = Timothy Pearson (kb9vqf)

-- 
[needs packaging] libmozilla-ldap-perl for Ubuntu
https://bugs.launchpad.net/bugs/382320
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 374258] Re: VLC crashes: X11 request 132.19 failed with error code 11: BadAlloc (insufficient resources for operation)

2009-06-01 Thread Reinhard Tartler
from the bugtrail, this looks like a regression in the intel video
driver. reassigning accordingly.

for the noveau bug, I'd suggest to file a sperate bug to track it
independently

** Package changed: vlc (Ubuntu) = xserver-xorg-video-intel (Ubuntu)

** Changed in: xserver-xorg-video-intel (Ubuntu)
   Status: Incomplete = New

-- 
VLC crashes: X11 request 132.19 failed with error code 11: BadAlloc 
(insufficient resources for operation)
https://bugs.launchpad.net/bugs/374258
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 380011] Re: KDE translations: French words same as English are overriden by another language

2009-06-01 Thread Martin Pitt
K van Murfi [2009-05-31 17:58 -]:
 A question to Martin: what is the point of stripping identical strings?

A lot of people seemed to want to earn cheap Karma by translating all
the upstream English strings (C) into en_US (which is identical).
This causes language-pack-*-en to be very large without providing any
real value. CD space is precious, so we strip out the identical
strings to shrink them dramatically.

-- 
KDE translations: French words same as English are overriden by another language
https://bugs.launchpad.net/bugs/380011
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382323] [NEW] [needs packaging] mozilla-ldap-sdk for Ubuntu

2009-06-01 Thread Timothy Pearson
Public bug reported:

mozilla-ldap-sdk needs packaging.  The Mozilla LDAP C SDK is a set of
libraries that allow applications to communicate with LDAP (Lightweight
Directory Access Protocol) directory servers.

This package is required for Fedora Directory Server.

** Affects: ubuntu
 Importance: Undecided
 Assignee: Timothy Pearson (kb9vqf)
 Status: New


** Tags: needs-packaging

** Changed in: ubuntu
 Assignee: (unassigned) = Timothy Pearson (kb9vqf)

-- 
[needs packaging] mozilla-ldap-sdk for Ubuntu
https://bugs.launchpad.net/bugs/382323
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382321] Re: 0^0=0

2009-06-01 Thread slamdunk
gcalctool in jaunty returns 1 :)

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

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


[Bug 362075] Re: session logout after suspend

2009-06-01 Thread Daniele Depetrini
I've exactly the same problem. Both suspend on disk and suspend on RAM
will cause a (brutal) logout, so when the system resume I'll be brought
to main login page.

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

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


[Bug 25700] Re: sudo does not use /etc/environment on interactive logins (through pam_env)

2009-06-01 Thread Aidan Furlan
Another workaround is to become root with `sudo su` rather than `sudo
-i` or `sudo -u`.

-- 
sudo does not use /etc/environment on interactive logins (through pam_env)
https://bugs.launchpad.net/bugs/25700
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 379721] Re: Please update pidgin-facebookchat to version 1.50 from upstream.

2009-06-01 Thread Jonathan Davies
Confirmed - I will get to work on this as soon as I have time.

** Changed in: pidgin-facebookchat (Ubuntu)
   Importance: Undecided = Wishlist

** Changed in: pidgin-facebookchat (Ubuntu)
   Status: New = Confirmed

** Changed in: pidgin-facebookchat (Ubuntu)
 Assignee: (unassigned) = Jonathan Davies (jpds)

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

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

-- 
Please update pidgin-facebookchat to version 1.50 from upstream.
https://bugs.launchpad.net/bugs/379721
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382034] Re: Was attempting to install Samba

2009-06-01 Thread Thierry Carrez
Marking as Invalid, per reporter request

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

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

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


[Bug 342689] Re: PyCentralError, package has no field Python-Version

2009-06-01 Thread wl2776
Same thing on Ubuntu Intrepid.
Here is the result of aptitude safe-upgrade (related excerpts):

Setting up wx2.8-headers (2.8.10.1-0) ...
Traceback (most recent call last):   
  File /usr/bin/pycentral, line 1891, in module
main() 
  File /usr/bin/pycentral, line 1885, in main
rv = action.run(global_options)
  File /usr/bin/pycentral, line 1243, in run 
pkg.read_version_info()
  File /usr/bin/pycentral, line 707, in read_version_info
raise PyCentralError, package has no field Python-Version
__main__.PyCentralError: package has no field Python-Version   
dpkg: error processing wx2.8-headers (--configure):
 subprocess post-installation script returned error exit status 1
Setting up libwxbase2.8-0 (2.8.10.1-0) ...   

Setting up libwxgtk2.8-0 (2.8.10.1-0) ...

dpkg: dependency problems prevent configuration of libwxbase2.8-dev:
 libwxbase2.8-dev depends on wx2.8-headers (= 2.8.10.1-0); however: 
  Package wx2.8-headers is not configured yet.  
dpkg: error processing libwxbase2.8-dev (--configure):  
 dependency problems - leaving unconfigured 
No apport report written because the error message indicates its a followup 
error from a previous failure.

  dpkg: dependency problems prevent configuration of 
libwxgtk2.8-dev:
   
 libwxgtk2.8-dev depends on wx2.8-headers (= 2.8.10.1-0); however:  
  
  Package wx2.8-headers is not configured yet.  
  
 libwxgtk2.8-dev depends on libwxbase2.8-dev (= 2.8.10.1-0); however:   
  
  Package libwxbase2.8-dev is not configured yet.   
  
dpkg: error processing libwxgtk2.8-dev (--configure):   
  
 dependency problems - leaving unconfigured 
  
No apport report written because the error message indicates its a followup 
error from a previous failure.

  Setting up ntpdate (1:4.2.4p4+dfsg-6ubuntu2.3) ...


Setting up python-wxversion (2.8.10.1-0) ...
  

Setting up wx-common (2.8.10.1-0) ...
Processing triggers for libc6 ...
ldconfig deferred processing now taking place
Errors were encountered while processing:
 wx2.8-headers   
 libwxbase2.8-dev
 libwxgtk2.8-dev 
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:   
Setting up wx2.8-headers (2.8.10.1-0) ...  
Traceback (most recent call last): 
  File /usr/bin/pycentral, line 1891, in module
main() 
  File /usr/bin/pycentral, line 1885, in main
rv = action.run(global_options)
  File /usr/bin/pycentral, line 1243, in run
pkg.read_version_info()
  File /usr/bin/pycentral, line 707, in read_version_info
raise PyCentralError, package has no field Python-Version
__main__.PyCentralError: package has no field Python-Version
dpkg: error processing wx2.8-headers (--configure):
 subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of libwxbase2.8-dev:
 libwxbase2.8-dev depends on wx2.8-headers (= 2.8.10.1-0); however:
  Package wx2.8-headers is not configured yet.
dpkg: error processing libwxbase2.8-dev (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libwxgtk2.8-dev:
 libwxgtk2.8-dev depends on wx2.8-headers (= 2.8.10.1-0); however:
  Package wx2.8-headers is not configured yet.
 libwxgtk2.8-dev depends on libwxbase2.8-dev (= 2.8.10.1-0); however:
  Package libwxbase2.8-dev is not configured yet.
dpkg: error processing libwxgtk2.8-dev (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 wx2.8-headers
 libwxbase2.8-dev
 libwxgtk2.8-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initializing package states... Done

-- 
PyCentralError, package has no field Python-Version

[Bug 27463] Re: [needs-packaging] Fedora Directory Server for Ubuntu

2009-06-01 Thread Timothy Pearson
Rebuild for Karmic is OK

Most packages are now available on REVU and in my PPA

A slew of new needs-packaging bugs were filed for the support packages--those 
packages are also up on REVU:
Bug 382261
Bug 382263
Bug 382264
Bug 382302
Bug 382317
Bug 382320
Bug 382323

-- 
[needs-packaging] Fedora Directory Server for Ubuntu
https://bugs.launchpad.net/bugs/27463
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 371574] Re: [PATCH] appletouch reports multiple fingers when only one is pressed

2009-06-01 Thread Jeremy Huddleston
BTW, I did sent it to linux-input.

-- 
[PATCH] appletouch reports multiple fingers when only one is pressed
https://bugs.launchpad.net/bugs/371574
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 258778] Re: Firefox 3 in Ubuntu- No text, just lines showing on most web sites e.g. google

2009-06-01 Thread LowLightImages
Problem solved:

I had simply copied the MS TT fonts to a font folder on the Linux
machine  run font update. Looking at the other fonts in the folder I
noticed that the filenames either had a tt- prefix to the font name or
nothing - i.e. no .ttf postfix.

I renamed all the files from .ttf to tt-, re-ran the cache
update and everything now works :) The fonts are all available in OO3
Writer etc. I'm guessing there's a piece of code somewhere that doesn't
like filenames with a full stop in them :) If I get time, I'll try 
find it  fix it but as I don't know my way around the X11 font system
at all, don't hold your breath!

As usual, my thanks to all the people who do work on OO software

-- 
Firefox 3 in Ubuntu- No text, just lines showing on most web sites e.g. google
https://bugs.launchpad.net/bugs/258778
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 204834] Re: wubi and umenu executables are not signed with a code signing certificate

2009-06-01 Thread Evan Dandrea
The stable symlink for 9.04 is static.  We're not going to re-roll CDs
as it's not an LTS, so updating it does not make sense.

As our current workflow requires someone from IS to sign the executable
for us (for security reasons) I am keen to avoid signing it until we are
at the 9.10 Release Candidate.

-- 
wubi and umenu executables are not signed with a code signing certificate
https://bugs.launchpad.net/bugs/204834
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 376374] Re: [NOTDUPE 345627] Crackling audio, especially from DVDs [karmic regression]

2009-06-01 Thread jaanusrk
The ffmpeg change helps VLC media player, only when computer is idle.
Small load causes problems.
totem hangs immediately (as always)

I'm testing with Dell latitude D420.

-- 
[NOTDUPE 345627] Crackling audio, especially from DVDs [karmic regression]
https://bugs.launchpad.net/bugs/376374
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 27463] Re: [needs-packaging] Fedora Directory Server for Ubuntu

2009-06-01 Thread Timothy Pearson
All packages are now up on REVU and are built for both Intrepid and
Karmic in my PPA.

Hopefully the approval process can now start and we can get the Fedora
Directory Server into Karmic!

** Changed in: ubuntu
   Status: Confirmed = In Progress

-- 
[needs-packaging] Fedora Directory Server for Ubuntu
https://bugs.launchpad.net/bugs/27463
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 348443] Re: Firefox at-spi hierarchy is not exposed

2009-06-01 Thread Ginn
Javier,

The patch was committed to Firefox 3.0.11 not 3.0.10.

-- 
Firefox at-spi hierarchy is not exposed
https://bugs.launchpad.net/bugs/348443
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 204834] Re: wubi and umenu executables are not signed with a code signing certificate

2009-06-01 Thread Evan Dandrea
** Changed in: wubi
   Status: Fix Committed = Fix Released

-- 
wubi and umenu executables are not signed with a code signing certificate
https://bugs.launchpad.net/bugs/204834
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382324] Re: package libgmime2.2a-cil 2.2.22-2ubuntu1 failed to install/upgrade: subprocess post-installation script killed by signal (Interrupt)

2009-06-01 Thread H3g3m0n

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

** Attachment added: DpkgTerminalLog.gz
   http://launchpadlibrarian.net/27354827/DpkgTerminalLog.gz

-- 
package libgmime2.2a-cil 2.2.22-2ubuntu1 failed to install/upgrade: subprocess 
post-installation script killed by signal (Interrupt)
https://bugs.launchpad.net/bugs/382324
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382324] [NEW] package libgmime2.2a-cil 2.2.22-2ubuntu1 failed to install/upgrade: subprocess post-installation script killed by signal (Interrupt)

2009-06-01 Thread H3g3m0n
Public bug reported:

When trying to install Tomboy on Xubuntu 9.04, following message then it
locks up and needs a ctrl+c:

** (/usr/lib/mono/2.0/gacutil.exe:26381): WARNING **: The following assembly 
referenced from /usr/lib/mono/2.0/gacutil.exe could not be loaded:
 Assembly:   Mono.Security(assemblyref_index=1)
 Version:2.0.0.0
 Public Key: 0738eb9f132ed756
The assembly was not found in the Global Assembly Cache, a path listed in the 
MONO_PATH environment variable, or in the location of the executing assembly 
(/usr/lib/mono/2.0).


** (/usr/lib/mono/2.0/gacutil.exe:26381): WARNING **: Could not load file or 
assembly 'Mono.Security, Version=2.0.0.0, Culture=neutral, 
PublicKeyToken=0738eb9f132ed756' or one of its dependencies.

ProblemType: Package
Architecture: i386
DistroRelease: Ubuntu 9.04
ErrorMessage: subprocess post-installation script killed by signal (Interrupt)
Package: libgmime2.2a-cil 2.2.22-2ubuntu1
PackageArchitecture: all
SourcePackage: gmime2.2
Title: package libgmime2.2a-cil 2.2.22-2ubuntu1 failed to install/upgrade: 
subprocess post-installation script killed by signal (Interrupt)
Uname: Linux 2.6.28-11-generic i686

** Affects: gmime2.2 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386

-- 
package libgmime2.2a-cil 2.2.22-2ubuntu1 failed to install/upgrade: subprocess 
post-installation script killed by signal (Interrupt)
https://bugs.launchpad.net/bugs/382324
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 312113] Re: Kernel stops booting 2.6.24-21

2009-06-01 Thread David Horváth
I've solved it. I had a dream, and as i've blacklisted the integrated
845 video chip, the nvidia card in agp is working well. I think this
should be solved. Its not right that if somebody wants to use an
external card has to go into terminal and blacklist hardware. Should be
done automatically. Maybe some filtering, that if there is a card in agp
what is in use, than look for intel chips and if there are any,
automatically blacklist them. Opinion?

-- 
Kernel stops booting 2.6.24-21
https://bugs.launchpad.net/bugs/312113
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 370287] Re: skge module stops transmitting

2009-06-01 Thread Ike Panhc
Hi DM,

I check the source code of v2.6.29.3. Unfortunately it contains the
commit.

Thanks for your response.

I will read the log you attach and see if there is any hint with it

-- 
skge module stops transmitting
https://bugs.launchpad.net/bugs/370287
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 382325] [NEW] Packet manager crashes

2009-06-01 Thread MattiasA
Public bug reported:

'E:Encountered a section with no Package: header, E:Problem with
MergeList /var/lib/apt/lists/se.archive.ubuntu
.com_ubuntu_dists_jaunty_universe_binary-i386_Packages, E:The package
lists or status file could not be parsed or opened.'

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

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


[Bug 369375] Re: Jaunty: very slow video playback using xv with proprietary Radeon HD 2400 driver

2009-06-01 Thread LostinSpacetime
I just found out that the HD 3200 is based on the HD 2400. So it makes
sense that theses two cards are affected by this bug.

-- 
Jaunty: very slow video playback using xv with proprietary Radeon HD 2400 driver
https://bugs.launchpad.net/bugs/369375
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 312113] Re: Kernel stops booting 2.6.24-21

2009-06-01 Thread David Horváth
*** This bug is a duplicate of bug 111057 ***
https://bugs.launchpad.net/bugs/111057

** This bug has been marked a duplicate of bug 111057
   nvidia gf7300 feisty install cd fails

-- 
Kernel stops booting 2.6.24-21
https://bugs.launchpad.net/bugs/312113
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382327] [NEW] (UXA) 945GM [8086:27a2] (rev 03): Resolution width is limited to 2048

2009-06-01 Thread cgrushko
Public bug reported:

Binary package hint: xserver-xorg-video-intel

Running on a laptop and attaching an external monitor,
if the combined resolution is more than 2048, X-server will not
start.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
Package: xserver-xorg-video-intel 2:2.7.1-0ubuntu1~xup~1
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersion: Linux version 2.6.28-11-generic (bui...@palmer) (gcc version 4.3.3 
(Ubuntu 4.3.3-5ubuntu4) ) #42-Ubuntu SMP Fri Apr 17 01:57:59 UTC 2009
SourcePackage: xserver-xorg-video-intel
Uname: Linux 2.6.28-11-generic i686
UnreportableReason: This is not a genuine Ubuntu package
xkbcomp:

** Affects: xserver-xorg-video-intel (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
(UXA) 945GM [8086:27a2] (rev 03): Resolution width is limited to 2048
https://bugs.launchpad.net/bugs/382327
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382327] Re: (UXA) 945GM [8086:27a2] (rev 03): Resolution width is limited to 2048

2009-06-01 Thread cgrushko

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

** Attachment added: LsHal.txt
   http://launchpadlibrarian.net/27355221/LsHal.txt

** Attachment added: LsMod.txt
   http://launchpadlibrarian.net/27355222/LsMod.txt

** Attachment added: LsPci.txt
   http://launchpadlibrarian.net/27355223/LsPci.txt

** Attachment added: XorgConf.txt
   http://launchpadlibrarian.net/27355224/XorgConf.txt

** Attachment added: XorgLog.txt
   http://launchpadlibrarian.net/27355225/XorgLog.txt

** Attachment added: XorgLogOld.txt
   http://launchpadlibrarian.net/27355226/XorgLogOld.txt

** Attachment added: Xrandr.txt
   http://launchpadlibrarian.net/27355227/Xrandr.txt

** Attachment added: glxinfo.txt
   http://launchpadlibrarian.net/27355228/glxinfo.txt

** Attachment added: monitors.xml.txt
   http://launchpadlibrarian.net/27355230/monitors.xml.txt

** Attachment added: setxkbmap.txt
   http://launchpadlibrarian.net/27355231/setxkbmap.txt

** Attachment added: system.txt
   http://launchpadlibrarian.net/27355232/system.txt

** Attachment added: xdpyinfo.txt
   http://launchpadlibrarian.net/27355233/xdpyinfo.txt

-- 
(UXA) 945GM [8086:27a2] (rev 03): Resolution width is limited to 2048
https://bugs.launchpad.net/bugs/382327
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382326] [NEW] Touchpad not recognized - Gericom Phantom XXL 3180

2009-06-01 Thread cheffe76
Public bug reported:

Binary package hint: xserver-xorg-input-synaptics

The touchpad is not recognized properly, hence it is not working at all.

From my research I found out that Gericom usually uses Synaptics
touchpads. As I dont have access to a data sheet of the Gericom Phantom
XXL 3180, I am not sure weather this notebook has built in a touchpad
from a different manufacturer or not.

** Affects: xserver-xorg-input-synaptics (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Touchpad not recognized - Gericom Phantom XXL 3180
https://bugs.launchpad.net/bugs/382326
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382326] Re: Touchpad not recognized - Gericom Phantom XXL 3180

2009-06-01 Thread cheffe76

** Attachment added: dmesg
   http://launchpadlibrarian.net/27355116/dmesg

-- 
Touchpad not recognized - Gericom Phantom XXL 3180
https://bugs.launchpad.net/bugs/382326
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382326] Re: Touchpad not recognized - Gericom Phantom XXL 3180

2009-06-01 Thread cheffe76

** Attachment added: gconftool-2
   http://launchpadlibrarian.net/27355124/gconftool-2

-- 
Touchpad not recognized - Gericom Phantom XXL 3180
https://bugs.launchpad.net/bugs/382326
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382326] Re: Touchpad not recognized - Gericom Phantom XXL 3180

2009-06-01 Thread cheffe76

** Attachment added: laptop
   http://launchpadlibrarian.net/27355129/laptop

-- 
Touchpad not recognized - Gericom Phantom XXL 3180
https://bugs.launchpad.net/bugs/382326
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382326] Re: Touchpad not recognized - Gericom Phantom XXL 3180

2009-06-01 Thread cheffe76

** Attachment added: lshal
   http://launchpadlibrarian.net/27355132/lshal

-- 
Touchpad not recognized - Gericom Phantom XXL 3180
https://bugs.launchpad.net/bugs/382326
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382326] Re: Touchpad not recognized - Gericom Phantom XXL 3180

2009-06-01 Thread cheffe76

** Attachment added: lspci-vvnn
   http://launchpadlibrarian.net/27355144/lspci-vvnn

-- 
Touchpad not recognized - Gericom Phantom XXL 3180
https://bugs.launchpad.net/bugs/382326
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382326] Re: Touchpad not recognized - Gericom Phantom XXL 3180

2009-06-01 Thread cheffe76

** Attachment added: uname-a
   http://launchpadlibrarian.net/27355156/uname-a

-- 
Touchpad not recognized - Gericom Phantom XXL 3180
https://bugs.launchpad.net/bugs/382326
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382326] Re: Touchpad not recognized - Gericom Phantom XXL 3180

2009-06-01 Thread cheffe76

** Attachment added: version_signature
   http://launchpadlibrarian.net/27355169/version_signature

-- 
Touchpad not recognized - Gericom Phantom XXL 3180
https://bugs.launchpad.net/bugs/382326
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382326] Re: Touchpad not recognized - Gericom Phantom XXL 3180

2009-06-01 Thread cheffe76

** Attachment added: xprop
   http://launchpadlibrarian.net/27355205/xprop

-- 
Touchpad not recognized - Gericom Phantom XXL 3180
https://bugs.launchpad.net/bugs/382326
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382326] Re: Touchpad not recognized - Gericom Phantom XXL 3180

2009-06-01 Thread cheffe76

** Attachment added: ~xinput
   http://launchpadlibrarian.net/27355210/%7Exinput

-- 
Touchpad not recognized - Gericom Phantom XXL 3180
https://bugs.launchpad.net/bugs/382326
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382326] Re: Touchpad not recognized - Gericom Phantom XXL 3180

2009-06-01 Thread cheffe76

** Attachment added: Xorg.0.log
   http://launchpadlibrarian.net/27355179/Xorg.0.log

-- 
Touchpad not recognized - Gericom Phantom XXL 3180
https://bugs.launchpad.net/bugs/382326
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 329298] Re: Please upgrade to Gnucash 2.2.9

2009-06-01 Thread Loïc Martin
Saïvann: I checked the bug report before starting to work on the package
- the bug has been open since November 2008 (more than 6 month).

Last message from the pacckager was Thu, 19 Feb 2009 11:52:19 -0800
 I expect to upload a new version this weekend.

Now let's check for how long we've been out of date
   gnucash | 2.2.4-1ubuntu1 | hardy/universe | source, amd64, i386
   gnucash | 2.2.6-2ubuntu3 | intrepid/universe | source, amd64, i386
   gnucash | 2.2.6-2ubuntu5 | jaunty/universe | source, amd64, i386
   gnucash | 2.2.6-3ubuntu1 | karmic/universe | source, amd64, i386
Gnucash 2.2.7 was released in September 2008.

Waiting more could mean we'll get in a situation where because of DIF,
FF or anything else, gnucash will still be outdated in Karmic.

I kept the Debian packaging intact - didn't correct any of the lintian
errors or packaging mistakes, so we can just sync with Debian when
somehow the package gets updated in Debian. We do that quite often
actually, and for gnucash, if you check the changelog, the package was
already modified in Ubuntu - 2.2.9, since the patches are already there,
can actually drop the modifications and make it simpler to sync with
Debian.

2.2.6 also suffers from a bug (a patch has been in Debian,
reverted/fixed upstream because buggy, but never fixed in
Debian/Ubuntu), so keeping 2.2.6 in Karmic serves no purpose.

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

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

[Bug 238629] Re: [i965] Java plugin causes massive Xorg CPU usage, fixed with XAA (UXA/EXA)

2009-06-01 Thread Ramon Casha
Any way to apply the latest solutions to Jaunty?

-- 
[i965] Java plugin causes massive Xorg CPU usage, fixed with XAA (UXA/EXA)
https://bugs.launchpad.net/bugs/238629
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 379721] Re: Please update pidgin-facebookchat to version 1.50 from upstream.

2009-06-01 Thread Bug Watch Updater
** Changed in: pidgin-facebookchat (Debian)
   Status: Unknown = New

-- 
Please update pidgin-facebookchat to version 1.50 from upstream.
https://bugs.launchpad.net/bugs/379721
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382329] Re: pidgin is disconnected from XMPP if sending large gif animation as a smile

2009-06-01 Thread Zebra

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

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

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

-- 
pidgin is disconnected from XMPP if sending large gif animation as a smile
https://bugs.launchpad.net/bugs/382329
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 329298] Re: Please upgrade to Gnucash 2.2.9

2009-06-01 Thread Loïc Martin
Saïvann: note that it could also help Debian to update its package.
Since all patches are upstream, and my changelog details it, it should
be really straightforward. However, in case there's a delay, we'd get it
in Ubuntu at least, can't do anything more for Debian.

Also, version in Ubuntu is 2.2.9-0ubuntu1, Debian would be 2.2.9-1, it's
made like that so we can update from upstream while posing no problem
with Debian sync/merge.

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

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

[Bug 382329] [NEW] pidgin is disconnected from XMPP if sending large gif animation as a smile

2009-06-01 Thread Zebra
Public bug reported:

Binary package hint: pidgin

XML not well formed

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
ExecutablePath: /usr/bin/pidgin
Package: pidgin 1:2.5.5-1ubuntu8
ProcEnviron:
 PATH=(cususername, user)
 LANG=cs_CZ.UTF-8
 SHELL=/bin/bash
SourcePackage: pidgin
Uname: Linux 2.6.28-11-generic i686

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


** Tags: apport-bug i386

-- 
pidgin is disconnected from XMPP if sending large gif animation as a smile
https://bugs.launchpad.net/bugs/382329
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 381644] Re: upgrade to 2.27.2

2009-06-01 Thread Nicolò Chieffo
Thank you very much! but we need also a libtelepathy-glib version
bump, otherwise we still get empathy 2.26

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

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


[Bug 292517] Re: Add a torrent file dialog unusable

2009-06-01 Thread Paul Crawford
I was suffering from what I think is the same problem with interpid
8.10, but followed the advice here to get the latest version of
Transmission:

http://forum.transmissionbt.com/viewtopic.php?f=13t=5604

First edit the config file with a command like this:

gksudo gedit /etc/apt/sources.list

Then add the appropriate lines (here 'intrepid' = 8.10 version etc) to
the end of the file:

deb http://ppa.launchpad.net/transmissionbt/ubuntu intrepid main
deb-src http://ppa.launchpad.net/transmissionbt/ubuntu intrepid main

Save file then exit editor. Then add the keys with these two commands:

gpg --keyserver keyserver.ubuntu.com --recv 976b5901365c5ca1
gpg --export --armor 976b5901365c5ca1 | sudo apt-key add -

Then start the System - Administration - Software sources and I un-
ticked the new entry in Third Party Software for the transmission source
(did not need it anyway) then on 'Close' it updated the package lists
and then the orange star appears (top task-bar right hand side) with the
option to update the version of the Transmission BitTorrent client. That
now seems to work fine.

I also edited the basic settings to make it more friendly to my ISP's
cough fair use policy by configuring as follows Edit - Preferances:

Torrents (change to dedicated directory, not Desktop, for output)
Peers (enable block list, change to encryption required)
Speed (enable speed limit mode 8:30 to 21:00 with down=20k  up = 15k)
Network (incomming post checked / enabled in router for forwarding)

Hope this helps.

-- 
Add a torrent file dialog unusable
https://bugs.launchpad.net/bugs/292517
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 229681] Re: Aeskulap images not seen

2009-06-01 Thread David S.
Oops, nevermind.  The problem is much less severe than I thought.
DICOMDIR files (and the images they contain) can be opened (on either
the Jaunty or Karmic versions).  You just have to load them through the
following two-step process.

1) File menu - DicomDir - select the DICOMDIR, and click Open.  This should 
make a new folder (representing the contents of the dicomdir) appear in Study 
Manger view. 
2) Double-click on this folder in Study Manager view to load in all of the 
images contained in the dicomdir.  (You have to double-click on the folder, not 
any of the enclosed series.)

I just didn't realize the second step was necessary.  My bad.

There is still a slight bug here, in that when you try to open
individual DICOM files through File-Open, it doesn't see any dicom
files unless you change the file type selector from DICOM files to
Any files.  But it will open them once you do that.  So not a critical
bug, but it would be nice to have it fixed at some point.

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

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


[Bug 382331] [NEW] Please update libcairo2-dev to match with installed version of libcairo2

2009-06-01 Thread patrix
Public bug reported:

Release : Ubuntu 8.10

Package Version :

libcairo2-dev:
  Installed: (none)
  Candidate: 1.8.0-0ubuntu1
  Version table:
 1.8.0-0ubuntu1 0
500 http://de.archive.ubuntu.com intrepid/main Packages

I am unable to install libcario2-dev (  other developer packages
dependent on it, like libpango1.0-dev libgtk2.0-dev), because of
dependency discrepancy  between libcairo2-dev and libcairo2

libcairo2:
  Installed: 1.8.0-0ubuntu1.1
  Candidate: 1.8.0-0ubuntu1.1
  Version table:
 *** 1.8.0-0ubuntu1.1 0
100 /var/lib/dpkg/status
 1.8.0-0ubuntu1 0
500 http://de.archive.ubuntu.com intrepid/main Packages

The version of libcairo2 present in repository is 1.8.0-0ubuntu1.1 ,
where version of libcairo2-dev is 1.8.0-0ubuntu1, which is dependent on
same version of libcairo2 as shown below

$ aptitude show libcairo2-dev
Package: libcairo2-dev
State: not installed
Version: 1.8.0-0ubuntu1
Priority: optional
Section: libdevel
Maintainer: Ubuntu Core Developers ubuntu-devel-disc...@lists.ubuntu.com
Uncompressed Size: 1171k
Depends: libcairo2 (= 1.8.0-0ubuntu1), libfontconfig1-dev (= 2.5.92),
 libfreetype6-dev (= 2.3.0), libxrender-dev (= 0.6.0), libpng12-dev,
 libsm-dev, libpixman-1-dev (= 0.11.2), libxcb1-dev,
 libxcb-render0-dev, libxcb-render-util0-dev
Suggests: libcairo2-doc
Conflicts: libcairo-dev, libcairo0.5.1-dev, libcairo0.6.0-dev, libcairo0.9.0-dev
Replaces: libcairo0.5.1-dev, libcairo0.6.0-dev, libcairo0.9.0-dev
Provides: libcairo-dev
Description: Development files for the Cairo 2D graphics library
 Cairo is a multi-platform library providing anti-aliased vector-based rendering
 for multiple target backends. 


As we can see the dependency libcairo2 (= 1.8.0-0ubuntu1) is in conflict 
because present version in repository and also installed on my machine is 
libcairo2 (1.8.0-0ubuntu1.1) .  This also results in dependency problems for 
other developer packages libgtk2.0-dev and libpango1.0-dev as shown below

Package: libgtk2.0-dev
State: not installed
Version: 2.14.4-0ubuntu1
Depends: libgtk2.0-0 (= 2.14.4-0ubuntu1), libgtk2.0-common, libc6 (= 2.0),
 libglib2.0-0 (= 2.17.6), libglib2.0-dev (= 2.17.6), libpango1.0-dev
 (= 1.20), libatk1.0-dev (= 1.13.0), libcairo2-dev, libx11-dev (=
 2:1.0.0-6), libxext-dev (= 1:1.0.1-2), libxinerama-dev (=
 1:1.0.1-4.1), libxi-dev (= 1:1.0.1-4), libxrandr-dev (= 1:1.0.2-2),
 libxcursor-dev, libxfixes-dev (= 1:3.0.0-3), libxcomposite-dev (=
 1:0.2.0-3), libxdamage-dev (= 1:1.0.1-3), pkg-config

Package: libpango1.0-dev
State: not installed
Version: 1.22.2-0ubuntu1.1
Depends: libc6 (= 2.4), libcairo2 (= 1.7.6), libfontconfig1 (= 2.4.0),
 libfreetype6 (= 2.3.5), libglib2.0-0 (= 2.17.3), libpixman-1-0,
 libpng12-0 (= 1.2.13-4), libx11-6, libxcb-render-util0,
 libxcb-render0, libxcb1, libxft2 ( 2.1.1), libxrender1, zlib1g (=
 1:1.1.4), libpango1.0-0 (= 1.22.2-0ubuntu1.1), libglib2.0-dev (=
 2.12.0), libfreetype6-dev (= 2.1.3), libx11-dev, libxrender-dev,
 pkg-config, libxft-dev, libfontconfig1-dev (= 2.1.91), libcairo2-dev
 (= 1.7.6)

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


** Tags: intrepid libcairo2

-- 
Please update libcairo2-dev to match with installed version of libcairo2
https://bugs.launchpad.net/bugs/382331
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382330] [NEW] mlocate can't search from database file for unmounted drive

2009-06-01 Thread PGScooter
Public bug reported:

Binary package hint: mlocate

I built a database file using updatedb. I then unmounted the drive and tried to 
search that file using the command
sudo locate -d extwd -i *.mp3

This yielded no results. By chance I tried the exact same command later
and it worked because the drive was mounted. It appears as though the -e
option were being implemented.

Please see this thread for reference:
http://ubuntuforums.org/showthread.php?t=1174996

I'm using Ubuntu 64-bit 9.04.
version of mlocate: 0.21.1

Thank you.

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

-- 
mlocate can't search from database file for unmounted drive
https://bugs.launchpad.net/bugs/382330
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382328] Re: wrong timezone +2 for Spain

2009-06-01 Thread Matthew East
This is not an ubuntu-website bug, I'm changing the task to an Ubuntu
bug.

I think that Spanish time is currently GMT+2, because during the summer,
the local time shifts a further one hour ahead for daylight saving,
whereas GMT does not change.

For example, the time in London now is currently GMT+1.

** Also affects: tzdata (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: ubuntu-website
   Status: New = Invalid

-- 
wrong timezone +2 for Spain 
https://bugs.launchpad.net/bugs/382328
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 374097] Re: Pan saves some files as executable

2009-06-01 Thread Paul Crawford
OK I agree it is low priority (given you have to try and run the
resulting download afterwards) but given it is a very simple fix that
also would work on the Ubuntu patched version of 0.132, then why not?

-- 
Pan saves some files as executable
https://bugs.launchpad.net/bugs/374097
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 346840] Re: Buddy List taskbar icon shows on all virtual desktops

2009-06-01 Thread theclaw
I can confirm this bug, however it doesn't show up if compiz isn't used.
That is, when compiz is enabled selecting Only on this workspace in
Pidgin doesn't have any effect, it does when compiz is disabled.

-- 
Buddy List taskbar icon shows on all virtual desktops
https://bugs.launchpad.net/bugs/346840
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 382332] Re: firefox crashes when using drop-down-box while printing progress window is on screen

2009-06-01 Thread janning

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

** Attachment added: ExtensionSummary.txt
   http://launchpadlibrarian.net/27355699/ExtensionSummary.txt

** Attachment added: profiles.ini.txt
   http://launchpadlibrarian.net/27355700/profiles.ini.txt

-- 
firefox crashes when using drop-down-box while printing progress window is on 
screen 
https://bugs.launchpad.net/bugs/382332
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


  1   2   3   4   5   6   7   8   9   10   >