[Bug 908303] Re: smbd: vfs_shadow_copy2 module fails without wide links = yes

2011-12-25 Thread Robie Basak
** Changed in: samba (Ubuntu)
   Importance: Undecided = Low

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

Title:
  smbd: vfs_shadow_copy2 module fails without wide links = yes

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

-- 
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 908583] [NEW] Apache cache serving partial content 206 responses to requests for the full content

2011-12-25 Thread Henk Bokhoven
Public bug reported:

Apache is caching 206 responses.
This is a known bug: https://issues.apache.org/bugzilla/show_bug.cgi?id=49113
has been fixed in the trunk 
(http://svn.apache.org/viewvc?view=revisionrevision=933919) but not in 2.2.1x

[1]  Description:  Ubuntu 10.04.3 LTS, Release: 10.04
[2] Package: latest apache2 / apache2-mpm-worker 2.2.14-5ubuntu8.7
[3] Expected to happen: 
HEAD http://example.com/filename.swf;
200 OK
Cache-Control: max-age=604800
Connection: close

[4] What happened instead: 
HEAD http://example.com/filename.swf;
206 Partial Content
Cache-Control: max-age=604800

Cleaned up the cached file by hand from the CacheRoot

My advise:  apply the 2 patches as discussed here:

http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/STATUS?view=markuppathrev=1165626

That makes:  http://people.apache.org/~minfrin/httpd-cache-partial-2.2.patch
and
http://people.apache.org/~minfrin/httpd-cache-partial2-2.2.patch

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


** Tags: apache2 caching

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in Ubuntu.
https://bugs.launchpad.net/bugs/908583

Title:
  Apache cache serving partial content 206 responses to requests for the
  full content

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

-- 
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 531599] Re: device mappings for partitions not removed after build using --raw, leading to filesystem corruption

2011-12-25 Thread Simon Chan
The new fix 0.12.4+bzr475-0ubuntu1 seems to have created another bug:

Repoduce the Bug : Use vmbuilder to create VM, execution would terminate right 
at Unmounting target filesystem.
An error occurs when the system tries to unmount /dev/mapper/loop0pp1

It seems to be a typo, it should be /dev/mapper/loop0p1  (Only one 'p').

Rollbacked to 0.12.4+bzr471-0ubuntu1 and this problem is gone.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in Ubuntu.
https://bugs.launchpad.net/bugs/531599

Title:
  device mappings for partitions not removed after build using --raw,
  leading to filesystem corruption

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vm-builder/+bug/531599/+subscriptions

-- 
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 908605] [NEW] mod_wsgi fails to log python errors

2011-12-25 Thread Phil Stone
Public bug reported:

mod_wsgi based python apps that generate python errors, like divide by
zero, should send a 500 error to the browser and log the python errors
in the applications' log.

In Ubuntu 11.10 a regression was introduce where the Apache VirtualHost
must be specified as *:80 for this expected behavior to still work.
Anything else sends the 500 error to the browser, but leaves nothing in
the apache log file.

Here are the 2 files needed to reproduce the problem...  
To reproduce you also need an entry in /etc/hosts for www.hello.loc to be 
127.0.0.1,
and an otherwise working apache server.

---  The standard mod_wsgi Hello World App, modifed to force a divide by
zero error... ---

#!/usr/bin/python

def application(environ, start_response):

a = 5/0   # This line added to induce a deliberate error.  Hide this
line to always see Hello World! in browser.

status = '200 OK'
output = 'Hello World!'

response_headers = [('Content-type', 'text/plain'),
('Content-Length', str(len(output)))]
start_response(status, response_headers)

return [output]

--- The Apache Configuration file for this same application ---

WSGIRestrictEmbedded On

VirtualHost 127.0.0.1:80

ServerName www.hello.loc

WSGIProcessGrouphello.loc
WSGIDaemonProcess   hello.loc processes=1 threads=10 display-name=%{GROUP}
WSGIScriptAlias  /  /www/hello/website.py process-group=hello.loc 
application-group=${GLOBAL}

LogLevelwarn
ErrorLog/www/hello/logs/error.log
CustomLog   /www/hello/logs/access.log combined

/VirtualHost

--- NOTES ---

The 2 files given above are SUPPOSED to generate an internal error to the 
browser (a 500 error)
AND log into the error log the python traceback showing the line and file where 
the divide by zero
error happened.  

It does not work because of the 127.0.0.1 in the VirtualHost...

Also broke are Named Virtual Hosts of any form, as in...

VirtualHost local

The work around is to use * instead, as in...

VirtualHost *:80

I found this bug on an upgrade of Ubuntu Server to 11.10.

Note that the form that works, VirtualHost *:80 serves the site on all IP 
addresses on a
server.  This is the toy form of this command.  Real servers are often 
multi-homed.  
The parameter on the Virtual host when not *:80 is supposed to indicate the IP 
or named server that
is being used.

NOTE...  ONLY ERROR LOGGING is impacted by this bug, NOT normal display.

A website impacted by this bug, especially after a system upgrade to 11.10, 
will serve 
Internal Server Errors to client browsers and NOT log the error to the error 
logs 
for discovery later by an administrator.

(As I found out to my trouble on a much, much bigger system than this
example.)

Technically the work-around given above is a potential security issue depending 
on the networking 
involved, so be careful if you're reading this and hacking your server to get 
it working again.

** Affects: mod-wsgi (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mod-wsgi in Ubuntu.
https://bugs.launchpad.net/bugs/908605

Title:
  mod_wsgi fails to log python errors

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mod-wsgi/+bug/908605/+subscriptions

-- 
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 908614] [NEW] /run: Too many levels of symbolic links

2011-12-25 Thread Mike Mestnik
Public bug reported:

root@ubuntu:~# ls /run
ls: cannot access /run: Too many levels of symbolic links
root@ubuntu:~# ls -alrt /run /var/run 
lrwxrwxrwx 1 root root 8 Dec 24 14:58 /run - /var/run
lrwxrwxrwx 1 root root 4 Dec 25 14:42 /var/run - /run

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: dnsmasq-base 2.59-4
ProcVersionSignature: Ubuntu 3.2.0-6.12-generic-pae 3.2.0-rc6
Uname: Linux 3.2.0-6-generic-pae i686
ApportVersion: 1.90-0ubuntu1
Architecture: i386
CasperVersion: 1.296
Date: Sun Dec 25 20:54:20 2011
LiveMediaBuild: Ubuntu 12.04 LTS Precise Pangolin - Alpha i386 (20111220)
ProcEnviron:
 SHELL=/bin/bash
 PATH=(custom, no user)
 LANG=en_US.UTF-8
SourcePackage: dnsmasq
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: debian-base-files
 Importance: Undecided
 Status: New

** Affects: sysvinit
 Importance: Undecided
 Status: New

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


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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dnsmasq in Ubuntu.
https://bugs.launchpad.net/bugs/908614

Title:
  /run: Too many levels of symbolic links

To manage notifications about this bug go to:
https://bugs.launchpad.net/debian-base-files/+bug/908614/+subscriptions

-- 
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 908614] Re: /run: Too many levels of symbolic links

2011-12-25 Thread Mike Mestnik
** Also affects: debian-base-files
   Importance: Undecided
   Status: New

** Also affects: sysvinit
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dnsmasq in Ubuntu.
https://bugs.launchpad.net/bugs/908614

Title:
  /run: Too many levels of symbolic links

To manage notifications about this bug go to:
https://bugs.launchpad.net/debian-base-files/+bug/908614/+subscriptions

-- 
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 908614] Re: /run: Too many levels of symbolic links

2011-12-25 Thread Mike Mestnik
root@ubuntu:~# dpkg -S /var/run
base-files, initscripts: /run
base-files, dnsmasq-base: /var/run

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dnsmasq in Ubuntu.
https://bugs.launchpad.net/bugs/908614

Title:
  /run: Too many levels of symbolic links

To manage notifications about this bug go to:
https://bugs.launchpad.net/debian-base-files/+bug/908614/+subscriptions

-- 
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 192439] Re: vmhgfs mounting not enabled after install

2011-12-25 Thread Launchpad Bug Tracker
[Expired for open-vm-tools (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: open-vm-tools (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to open-vm-tools in Ubuntu.
https://bugs.launchpad.net/bugs/192439

Title:
  vmhgfs mounting not enabled after install

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/open-vm-tools/+bug/192439/+subscriptions

-- 
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 908392] Re: Initial size of palette dialog on Ubuntu too small

2011-12-25 Thread ~suv
** Summary changed:

- Initial size of palette dialog on Ubuntu too small Ubuntu
+ Initial size of palette dialog on Ubuntu too small

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

Title:
  Initial size of palette dialog on Ubuntu too small

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

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


[Bug 894515] Re: Samsung NP700Z5A elantech touchpad not fully recognised

2011-12-25 Thread Alexander Adam
Yay! I just tested v3.2-rc4-oneiric and v3.2-rc7-precise. In both
kernels the touchpad is really recognized as a touchpad and multitouch
gestures etc work *but* rightclick on the touchpad doesn't work
anymore!?

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

Title:
  Samsung NP700Z5A elantech touchpad not fully recognised

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

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


[Bug 884368] Re: unable to edit attributes in XML Editor

2011-12-25 Thread ~suv
Related issue:
Bug #908392 “Initial size of palette dialog on Ubuntu too small Ubuntu”
https://bugs.launchpad.net/inkscape/+bug/908392

Also affects:
- 'Description', 'Contributors' entry fields in 'File  Document Metadata…'
- Tree of devices in 'File  Input Devices  Hardware'
- List of font styles in 'Text  Glyphs…'
- 'Effect list' in 'Path  Path Effect Editor…'
- …

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

Title:
  unable to edit attributes in XML Editor

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

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

[Bug 830333] Re: randomly, update-apt-xapi will take 100% cpu for an extended period of time

2011-12-25 Thread Tal Liron
More information about the fix -- it helps, but does not solve the
problem.

I still get jittery video about once a day when using the netbook. I'm
sure a lot users on weaker machines are having this problem, but don't
know enough to diagnose what's causing it, and thus just think Ubuntu
is very slow.

This bug, including its older dupes, is *years* old. Can someone who
knows anything about Xapian fix this? Can we at least assign it to
someone who can help?

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

Title:
  randomly, update-apt-xapi will take 100% cpu for an extended period of
  time

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt-xapian-index/+bug/830333/+subscriptions

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


[Bug 821832] Re: indicator-weather disappears from panel randomly

2011-12-25 Thread Doug Morse
So, my confidence is now pretty high that this is due to a problem in
libdbusmenu, or some misuse of it by either Python itself or a Python
extension (but I  tend to doubt it's the latter two).

So, not sure I can go much further with this right now.  The next step I
would take would be download the lib*-dbg versions of the relevant
libraries and perhaps a dbg version of Python 4.7, and build a debug
version of indicator-weather from source code, and then run the debug
version of the indicator.  Unfortunately, that's beyond what I have time
for in the foreseeable future.  Moreover, I imagine (and hope) there are
developers much more familiar with the indicator API and libdbusmenu
than I who are already better setup to do so.

Thus, for now, I think I'm in wait on the developers mode on this,
unless someone can point out flaws in my reasoning or suggesting
something I can try in a reasonable amount of time.  I will continue to
submit all indicator-related crash reports, however.  I suspect the core
developers need this.

Finally, @John: Thanks again for you help and your posts!  One thing I
would caution you against in the future, though: Although it has been
very helpful to me, it's generally a bad idea to post crash reports
publicly.  To exchange them via email is one thing, but to have them
where anyone can download them is potentially a huge risk.  The crash
report, and the core dump in particular, might contain very sensitive
information, even cached, unencrypted passwords in RAM when the crash
occurs (less likely these days, though, many developers know better than
to do this).  So, while likely little harm done, I thought I'd mention
it, just FYI.  By default, with apport enabled, crash reports sent to
Launchpad are private and can only viewed by you and the developers with
access to it (who you can see listed there).  Thus, it's pretty safe to
send in crash reports, just not a great idea to post them publicly.

Happy Holidays!

Doug

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

Title:
  indicator-weather disappears from panel randomly

To manage notifications about this bug go to:
https://bugs.launchpad.net/weather-indicator/+bug/821832/+subscriptions

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


[Bug 908506] Re: microphone, screen dimentions, and closing X sign

2011-12-25 Thread Ubuntu Foundation's Bug Bot
** Package changed: ubuntu = alsa-driver (Ubuntu)

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

Title:
  microphone, screen dimentions,  and closing X sign

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/908506/+subscriptions

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


[Bug 884368] Re: unable to edit attributes in XML Editor

2011-12-25 Thread ~suv
Also affects (cont.):
- 'System Info' in 'File  Inkscape Preferences  Misc'

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

Title:
  unable to edit attributes in XML Editor

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

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


[Bug 690896] Re: Character duplication when changing windows

2011-12-25 Thread Hsin-Yi, Chen (hychen)
attached debdiff https://launchpad.net/~ossug-
hychen/+archive/ibus/+files/ibus-
chewing_1.3.9.2-3ubuntu2_1.3.9.2-3ubuntu3.diff.gz

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

Title:
  Character duplication when changing windows

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

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


[Bug 908515] [NEW] Ubuntu with Linux Generic 3.0.0-14-generic (recovery mode) does not have root permisions

2011-12-25 Thread Andrew Rogers
Public bug reported:

Using Ubuntu 11.10

While attempting to change my MAC address, I made it so Ubuntu could not
boot up. Going into the recovery mode (3.0.0-14-generic) to undo what I
had done, I discovered that I only had read permissions. Sudo did not
work, so I was unable to do anything in the recovery console. When I
went to an older recovery mode (2.6.38-11-generic), I had root
permissions again and was able to fix my problem.

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: bot-comment

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

Title:
  Ubuntu with Linux Generic 3.0.0-14-generic (recovery mode) does not
  have root permisions

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

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


[Bug 311869] Re: Add driver for Sentelic Touch pad

2011-12-25 Thread Bartosz Fenski
The guy from ArchLinux community contacted Sentelic company, and got some 
feedback and updates from them.
https://wiki.archlinux.org/index.php/Asus_Ux31#Sentelic_Touchpads
https://bbs.archlinux.org/viewtopic.php?id=125262p=2
http://fsp-lnxdrv.svn.sourceforge.net/viewvc/fsp-lnxdrv/trunk/doc/fsp_packet.txt?revision=43view=markup

I hope it's helpful for someone developing the driver ;)

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

Title:
  Add driver for Sentelic Touch pad

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/311869/+subscriptions

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


[Bug 908515]

2011-12-25 Thread Ubuntu Foundation's Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  It seems that your bug report is not filed about a
specific source package though, rather it is just filed against Ubuntu
in general.  It is important that bug reports be filed about source
packages so that people interested in the package can find the bugs
about it.  You can find some hints about determining what package your
bug might be about at https://wiki.ubuntu.com/Bugs/FindRightPackage.
You might also ask for help in the #ubuntu-bugs irc channel on Freenode.

To change the source package that this bug is filed about visit
https://bugs.launchpad.net/ubuntu/+bug/908515/+editstatus and add the
package name in the text box next to the word Package.

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: bot-comment

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

Title:
  Ubuntu with Linux Generic 3.0.0-14-generic (recovery mode) does not
  have root permisions

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

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


[Bug 690896] Re: Character duplication when changing windows

2011-12-25 Thread Hsin-Yi, Chen (hychen)
** Changed in: ibus-chewing (Ubuntu)
   Status: In Progress = Fix Committed

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

Title:
  Character duplication when changing windows

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

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


[Bug 821832] Re: indicator-weather disappears from panel randomly

2011-12-25 Thread Doug Morse
@John: Of course, I did *ask* you to add as attachment what you had
already posted. :)  Just goes to show how easy it is to overlook such
things. :)  Be well.  --Doug

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

Title:
  indicator-weather disappears from panel randomly

To manage notifications about this bug go to:
https://bugs.launchpad.net/weather-indicator/+bug/821832/+subscriptions

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


[Bug 335662] Re: [jaunty] hplip status service cannot find system tray

2011-12-25 Thread palitha
** Changed in: hplip
   Status: Confirmed = Fix Committed

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

Title:
  [jaunty] hplip status service cannot find system tray

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

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


[Bug 908517] [NEW] Upgrade to 0.5.26 or remove from precise

2011-12-25 Thread Micah Gersten
Public bug reported:

Already removed from Debian: http://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=633855

** Affects: cyphesis-cpp (Ubuntu)
 Importance: Medium
 Status: Triaged

** Affects: cyphesis-cpp (Ubuntu Precise)
 Importance: Medium
 Status: Triaged


** Tags: ftbfs

** Also affects: cyphesis-cpp (Ubuntu Precise)
   Importance: Medium
   Status: Triaged

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

Title:
  Upgrade to 0.5.26 or remove from precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cyphesis-cpp/+bug/908517/+subscriptions

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


[Bug 908516] [NEW] Dies connecting to wireless with ERROR:nm-utils.c:1231:nm_utils_security_valid: assertion failed: (have_ap)

2011-12-25 Thread Jani Uusitalo
Public bug reported:

This is a laptop where I've previously connected to another wireless
network (over a different router of the same model) successfully.

Now with a different router operating in another broadband connection,
when I try to connect to the wifi it provides, nm-applet disappears from
indicator area. If I run it from the command-line it outputs this:

jani@amilo:~$ nm-applet 
Gtk-Message: Failed to load module canberra-gtk-module
** Message: applet now removed from the notification area
** Message: No keyring secrets found for ElisaKoti48/802-11-wireless-security; 
asking user.
**
ERROR:nm-utils.c:1231:nm_utils_security_valid: assertion failed: (have_ap)
Aborted

Note that it doesn't actually ask me for the key but apparently fails
when trying to do so. With the previous wireless network I was in, the
key *was* requested, and the file describing that connection is still in
/etc/NetworkManager/system-connections/.

After doing the above once, there's also a definition for the non-
functioning connection in /etc/NetworkManager/system-connections/, and
all subsequent tries to start nm-applet immediately end in the error and
the applet vanishing. If I delete the definition it has created for this
non-functioning connection, the applet does appear again, but again when
I try to connect to this network, it dies and won't come back until I rm
the definition file.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: network-manager-gnome 0.9.1.90-0ubuntu6
ProcVersionSignature: Ubuntu 3.2.0-6.12-generic 3.2.0-rc6
Uname: Linux 3.2.0-6-generic i686
ApportVersion: 1.90-0ubuntu1
Architecture: i386
Date: Sun Dec 25 10:11:43 2011
EcryptfsInUse: Yes
IfupdownConfig:
 auto lo
 iface lo inet loopback
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
InterestingModules: b44
IpRoute:
 default via 192.168.100.1 dev eth0  proto static 
 169.254.0.0/16 dev eth0  scope link  metric 1000 
 192.168.100.0/24 dev eth0  proto kernel  scope link  src 192.168.100.12  
metric 1
NetworkManager.conf:
 [main]
 plugins=ifupdown,keyfile
 
 [ifupdown]
 managed=false
NetworkManager.state:
 [main]
 NetworkingEnabled=true
 WirelessEnabled=true
 WWANEnabled=true
 WimaxEnabled=true
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: network-manager-applet
UpgradeStatus: Upgraded to precise on 2011-12-09 (15 days ago)
nmcli-con:
 NAME  UUID   TYPE  
TIMESTAMPTIMESTAMP-REAL AUTOCONNECT   READONLY   
DBUS-PATH 
 Wired connection 12b1c0532-9770-4a0f-b8a0-340de92c20c0   
802-3-ethernet1324800498   su 25. joulukuuta 2011 10.08.18yes   
no /org/freedesktop/NetworkManager/Settings/1
 Elisa-16a0be1db15c-11f9-46df-abf1-c06be1e7c0bd   
802-11-wireless   1324650234   pe 23. joulukuuta 2011 16.23.54yes   
no /org/freedesktop/NetworkManager/Settings/0
 ElisaKoti48   2d08fb6a-35f3-4cca-b2a1-624a62ecc720   
802-11-wireless   0never  yes   
no /org/freedesktop/NetworkManager/Settings/4
nmcli-dev:
 DEVICE TYPE  STATE DBUS-PATH   
   
 eth0   802-3-ethernetconnected 
/org/freedesktop/NetworkManager/Devices/0  
 eth1   802-11-wireless   disconnected  
/org/freedesktop/NetworkManager/Devices/1
nmcli-nm:
 RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   WIFI  
 WWAN-HARDWARE   WWAN  
 running 0.9.3.0connected   enabled   enabled 
enabledenabled disabled

** Affects: network-manager-applet (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug driver-b44 i386 precise running-unity

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

Title:
  Dies connecting to wireless with ERROR:nm-
  utils.c:1231:nm_utils_security_valid: assertion failed: (have_ap)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/908516/+subscriptions

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


[Bug 908516] Re: Dies connecting to wireless with ERROR:nm-utils.c:1231:nm_utils_security_valid: assertion failed: (have_ap)

2011-12-25 Thread Jani Uusitalo
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/908516

Title:
  Dies connecting to wireless with ERROR:nm-
  utils.c:1231:nm_utils_security_valid: assertion failed: (have_ap)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/908516/+subscriptions

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


[Bug 908519] Re: unity-2d-places crashed with SIGSEGV in QDeclarativeExpression::hasError()

2011-12-25 Thread Daniel Winzen
** Visibility changed to: Public

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

Title:
  unity-2d-places crashed with SIGSEGV in
  QDeclarativeExpression::hasError()

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

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


[Bug 908520] Re: unity-2d-places crashed with SIGSEGV in QScriptValue::call()

2011-12-25 Thread Daniel Winzen
*** This bug is a duplicate of bug 862584 ***
https://bugs.launchpad.net/bugs/862584


** Visibility changed to: Public

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

Title:
  unity-2d-places crashed with SIGSEGV in QScriptValue::call()

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

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


[Bug 908518] Re: bzr-notify crashed with SIGSEGV in g_return_if_fail_warning()

2011-12-25 Thread Daniel Winzen
*** This bug is a duplicate of bug 903696 ***
https://bugs.launchpad.net/bugs/903696


** Visibility changed to: Public

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

Title:
  bzr-notify crashed with SIGSEGV in g_return_if_fail_warning()

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

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


[Bug 908517] Re: Upgrade to 0.5.26 or remove from precise

2011-12-25 Thread Micah Gersten
** Tags added: upgrade-software-version

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

Title:
  Upgrade to 0.5.26 or remove from precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cyphesis-cpp/+bug/908517/+subscriptions

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


[Bug 908520] Re: unity-2d-places crashed with SIGSEGV in QScriptValue::call()

2011-12-25 Thread Apport retracing service
*** This bug is a duplicate of bug 862584 ***
https://bugs.launchpad.net/bugs/862584

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #862584, 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/908520/+attachment/2646338/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/908520/+attachment/2646339/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/908520/+attachment/2646340/+files/Disassembly.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/908520/+attachment/2646342/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/908520/+attachment/2646343/+files/Registers.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/908520/+attachment/2646345/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 862584
   unity-2d-places crashed with SIGSEGV in QScriptValue::call()

** Tags removed: need-i386-retrace

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

Title:
  unity-2d-places crashed with SIGSEGV in QScriptValue::call()

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

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


[Bug 908519]

2011-12-25 Thread Apport retracing service
StacktraceTop:
 QDeclarativeExpression::hasError (this=0x4) at 
qml/qdeclarativeexpression.cpp:769
 QDeclarativeBoundSignal::qt_metacall (this=0x9fe2a40, 
c=QMetaObject::InvokeMetaMethod, id=4, a=0xbf84518c) at 
qml/qdeclarativeboundsignal.cpp:187
 metacall (argv=0xbf84518c, idx=4, cl=QMetaObject::InvokeMetaMethod, 
object=0x9fe2a40) at kernel/qmetaobject.cpp:237
 QMetaObject::metacall (object=0x9fe2a40, cl=QMetaObject::InvokeMetaMethod, 
idx=4, argv=0xbf84518c) at kernel/qmetaobject.cpp:232
 QMetaObject::activate (sender=0xa1b7478, m=0xa1b76a4, local_signal_index=2, 
argv=0xbf84518c) at kernel/qobject.cpp:3278

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

Title:
  unity-2d-places crashed with SIGSEGV in
  QDeclarativeExpression::hasError()

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

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


[Bug 908519] Stacktrace.txt

2011-12-25 Thread Apport retracing service
** Attachment added: Stacktrace.txt
   
https://bugs.launchpad.net/bugs/908519/+attachment/2646354/+files/Stacktrace.txt

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

Title:
  unity-2d-places crashed with SIGSEGV in
  QDeclarativeExpression::hasError()

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

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


[Bug 908519] ThreadStacktrace.txt

2011-12-25 Thread Apport retracing service
** Attachment added: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/908519/+attachment/2646355/+files/ThreadStacktrace.txt

** Attachment removed: CoreDump.gz
   https://bugs.launchpad.net/bugs/908519/+attachment/2646330/+files/CoreDump.gz

** Changed in: unity-2d (Ubuntu)
   Importance: Undecided = Medium

** Tags removed: need-i386-retrace

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

Title:
  unity-2d-places crashed with SIGSEGV in
  QDeclarativeExpression::hasError()

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

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


[Bug 908518] Re: bzr-notify crashed with SIGSEGV in g_return_if_fail_warning()

2011-12-25 Thread Apport retracing service
*** This bug is a duplicate of bug 903696 ***
https://bugs.launchpad.net/bugs/903696

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #903696, 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/908518/+attachment/2646322/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/908518/+attachment/2646323/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/908518/+attachment/2646324/+files/Disassembly.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/908518/+attachment/2646326/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/908518/+attachment/2646327/+files/Registers.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/908518/+attachment/2646329/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 903696
   bzr-notify crashed with SIGSEGV in g_return_if_fail_warning()

** Tags removed: need-i386-retrace

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

Title:
  bzr-notify crashed with SIGSEGV in g_return_if_fail_warning()

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

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


[Bug 908522] [NEW] NetworkManager ignoring cdc_ether interface usb0

2011-12-25 Thread Pali
Public bug reported:

NetworkManager ignoring cdc_ether interface usb0. In syslog is only this
outout:

Dec 25 09:51:29 Pali-EliteBook mtp-probe: checking bus 2, device 11: 
/sys/devices/pci:00/:00:1d.0/usb2/2-1/2-1.1
Dec 25 09:51:29 Pali-EliteBook kernel: [ 1801.528548] cdc_acm 2-1.1:1.6: This 
device cannot do calls on its own. It is not a modem.
Dec 25 09:51:29 Pali-EliteBook kernel: [ 1801.528784] cdc_acm 2-1.1:1.6: 
ttyACM0: USB ACM device
Dec 25 09:51:29 Pali-EliteBook mtp-probe: bus: 2, device: 11 was not an MTP 
device
Dec 25 09:51:29 Pali-EliteBook kernel: [ 1801.531506] cdc_ether 2-1.1:1.8: 
usb0: register 'cdc_ether' at usb-:00:1d.0-1.1, CDC Ethernet Device, 
76:61:7d:56:ed:da
Dec 25 09:51:29 Pali-EliteBook NetworkManager[4360]:SCPlugin-Ifupdown: 
devices added (path: 
/sys/devices/pci:00/:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.8/net/usb0, iface: 
usb0)
Dec 25 09:51:29 Pali-EliteBook NetworkManager[4360]:SCPlugin-Ifupdown: 
device added (path: 
/sys/devices/pci:00/:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.8/net/usb0, iface: 
usb0): no ifupdown configuration found.
Dec 25 09:51:29 Pali-EliteBook NetworkManager[4360]:SCPlugin-Ifupdown: 
devices added (path: 
/sys/devices/pci:00/:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/net/usbpn0, 
iface: usbpn0)
Dec 25 09:51:29 Pali-EliteBook NetworkManager[4360]:SCPlugin-Ifupdown: 
device added (path: 
/sys/devices/pci:00/:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/net/usbpn0, 
iface: usbpn0): no ifupdown configuration found

And NetworkManager totally ignored it.

On other side of usb cable is Linux device Nokia N900, where is runninf dhcp 
server, so NetworkManager should working fine with usb0 too. But output of
$ nmcli dev
does not contains any usb0 interface.

When I call manually:
$ sudo dhclient usb0
network connection is established and ip address assigned correctly (from dhcp 
server).

So why NM ignoring this interface? It is same as other eth0


In NM code in file src/nm-udev-manager.c line 507-517 is this:

 /* Ignore Nokia cdc-ether interfaces in PC-Suite mode since we need to
 * talk phonet to use them, which ModemManager doesn't do yet.
 */
tmp = g_udev_device_get_property (device, ID_VENDOR_ID);
if (g_strcmp0 (tmp, 0421) == 0) { /* Nokia vendor ID */
tmp = g_udev_device_get_property (device, ID_MODEL);
if (tmp  (strstr (tmp, PC-Suite) || strstr (tmp, PC 
Suite))) {
nm_log_dbg (LOGD_HW, ignoring Nokia PC-Suite ethernet 
interface);
return;
}
}

I think that this section ignoring my usb0 interface (is has really name
PC-Suite). Why is here this stupid checking? It should be commented,
because I (and other people too) cannot use phone as cdc_ether device...

Output from lsusb:
Bus 002 Device 011: ID 0421:01c8 Nokia Mobile Phones N900 (PC-Suite Mode)

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

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

Title:
  NetworkManager ignoring cdc_ether interface usb0

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

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


[Bug 853882] Re: gnome-shell-extension-tool crashed with NameError in __main__: name 'extensionjs_path' is not defined

2011-12-25 Thread vanlong
followed #9 and problem solved

at line 151:
subprocess.Popen(['gnome-open', extensionjs_path]) == 
subprocess.Popen(['gnome-open', extension_path])

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

Title:
  gnome-shell-extension-tool crashed with NameError in __main__: name
  'extensionjs_path' is not defined

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

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


[Bug 821832] Re: indicator-weather disappears from panel randomly

2011-12-25 Thread John Hagerman
** Visibility changed to: Private

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

Title:
  indicator-weather disappears from panel randomly

To manage notifications about this bug go to:
https://bugs.launchpad.net/weather-indicator/+bug/821832/+subscriptions

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


[Bug 908525] Re: software-center crashed with AttributeError in _decode_value(): 'NoneType' object has no attribute 'decode'

2011-12-25 Thread Daniel Winzen
*** This bug is a duplicate of bug 905762 ***
https://bugs.launchpad.net/bugs/905762


** Visibility changed to: Public

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

Title:
  software-center crashed with AttributeError in _decode_value():
  'NoneType' object has no attribute 'decode'

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

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


[Bug 908525] Re: software-center crashed with AttributeError in _decode_value(): 'NoneType' object has no attribute 'decode'

2011-12-25 Thread Apport retracing service
*** This bug is a duplicate of bug 905762 ***
https://bugs.launchpad.net/bugs/905762

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #905762, 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.

** Tags removed: need-duplicate-check

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/908525/+attachment/2646384/+files/Dependencies.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/908525/+attachment/2646386/+files/ProcStatus.txt

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

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

Title:
  software-center crashed with AttributeError in _decode_value():
  'NoneType' object has no attribute 'decode'

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

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


[Bug 908524] Re: nm-applet crashed with SIGABRT in __kernel_vsyscall()

2011-12-25 Thread Apport retracing service
*** This bug is a duplicate of bug 908380 ***
https://bugs.launchpad.net/bugs/908380

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #908380, 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/908524/+attachment/2646365/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/908524/+attachment/2646366/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/908524/+attachment/2646367/+files/Disassembly.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/908524/+attachment/2646377/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/908524/+attachment/2646378/+files/Registers.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/908524/+attachment/2646380/+files/ThreadStacktrace.txt

** Visibility changed to: Public

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

** Visibility changed to: Public

** Tags removed: need-i386-retrace

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

Title:
  nm-applet crashed with SIGABRT in __kernel_vsyscall()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-applet/+bug/908524/+subscriptions

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


[Bug 903396] Re: Keysonic usb did not work

2011-12-25 Thread EricDHH
kernel-unable-to-test-upstream

Don't know how to test, is there a ppa to download such test kernel? But
i found confirmations for this bug

http://comments.gmane.org/gmane.linux.kernel/1067120

http://kerneltrap.org/mailarchive/linux-kernel/2010/11/23/4650096

Did not work in ubuntu 11.10 i386 on my thinkpad t41

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

Title:
  Keysonic usb did not work

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

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


[Bug 908526] [NEW] Shutter indicator somtimes only visible in Expo view

2011-12-25 Thread Doug Morse
Public bug reported:

The Summary says it all. :)  See attached screenshots.

FWIW, I think this problem is most likely due to problems with the new
Unity indicator API than with Shutter itself.  I don't know how to
report a bug for an OS library, though, nor is it to clear to me what
libs are involved in the new indicator API.

Thanks.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: shutter 0.87.2-0ubuntu1
ProcVersionSignature: Ubuntu 3.0.0-14.23-generic 3.0.9
Uname: Linux 3.0.0-14-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 1.23-0ubuntu4
Architecture: amd64
Date: Sun Dec 25 03:23:26 2011
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
PackageArchitecture: all
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: shutter
UpgradeStatus: Upgraded to oneiric on 2011-10-14 (72 days ago)

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


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

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

Title:
  Shutter indicator somtimes only visible in Expo view

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

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


[Bug 908526] Re: Shutter indicator somtimes only visible in Expo view

2011-12-25 Thread Doug Morse
** Attachment added: Shutter in Normal View (indicator missing)
   
https://bugs.launchpad.net/bugs/908526/+attachment/2646391/+files/0001.jpg

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

Title:
  Shutter indicator somtimes only visible in Expo view

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

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


[Bug 908526] Re: Shutter indicator somtimes only visible in Expo view

2011-12-25 Thread Doug Morse
** Attachment added: Shutter in Expo View (indicator present)
   
https://bugs.launchpad.net/ubuntu/+source/shutter/+bug/908526/+attachment/2646393/+files/0013.jpg

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

Title:
  Shutter indicator somtimes only visible in Expo view

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

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


[Bug 821832] Re: indicator-weather disappears from panel randomly

2011-12-25 Thread John Hagerman
Thank you, Doug. As you see, I have returned this file to private,
which it was originally until I was asked to make it public.

I have been hoping since Natty somehow the developers would hit on the
solution, but every update is a disappointment. I do note, however,
indicator-weather never disappears from 11.10 in my netbook, which is
32-bit. That may only mean I don't usually have the netbook up all day,
but it's something I have wondered about. Netbook now up for the next
few days!

Merry Christmas (if you'll take that wish from an admirer of the late
Christopher Hitchens) and all the best for the New Year!

John

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

Title:
  indicator-weather disappears from panel randomly

To manage notifications about this bug go to:
https://bugs.launchpad.net/weather-indicator/+bug/821832/+subscriptions

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


[Bug 908465] Re: Hebrew Menus texts unreadable - characters show up as square blocks

2011-12-25 Thread Ilan Tal
Eli shalom,
On this system Use system font for user interface is checked and I can set 
Hebrew as the locale and all works perfectly well. Thus it seems in most cases 
the default Ubuntu font does indeed support Hebrew. On my friend's computer, on 
the other hand, there IS a  problem.
So maybe there are 2 different versions of the default Ubuntu font? On this 
computer there is a good one and on your computer and my friend's computer, a 
bad one? It sounds a bit far fetched, but how can one explain what we see?

In any case, I'll try the work around on my friend's computer.
Ilan

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

Title:
  Hebrew Menus texts unreadable - characters show up as square blocks

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

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


[Bug 752542] Re: ACPI DSDT info

2011-12-25 Thread Sergey K.
Toshiba QOSMIO F750-112 /  NVIDIA GeForce GT 540M + Intel HD Graphics
3000

Output:

QOSMIO F750
PQF75E-01N01DRU

00:02.0 VGA compatible controller [0300]: Intel Corporation 2nd Generation Core 
Processor Family Integrated Graphics Controller [8086:0116] (rev 09) (prog-if 
00 [VGA controller])
01:00.0 VGA compatible controller [0300]: nVidia Corporation GF106 [GeForce GT 
555M] [10de:0df4] (rev a1) (prog-if 00 [VGA controller])

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

Title:
  ACPI DSDT info

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

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


[Bug 786044]

2011-12-25 Thread timur
*** Bug 43545 has been marked as a duplicate of this bug. ***

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

Title:
  [Upstream] Comments are not saved in .docx format

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/786044/+subscriptions

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


[Bug 401003] Re: [upstream] Writer hangs indefinitely opening MS Word .doc

2011-12-25 Thread Bug Watch Updater
** Changed in: df-libreoffice
   Status: Confirmed = Incomplete

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

Title:
  [upstream] Writer hangs indefinitely opening MS Word .doc

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/401003/+subscriptions

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


[Bug 401003]

2011-12-25 Thread Björn Michaelsen
[This is an automated message.]
This bug was filed before the changes to Bugzilla on 2011-10-16. Thus it
started right out as NEW without ever being explicitly confirmed. The bug is
changed to state NEEDINFO for this reason. To move this bug from NEEDINFO back
to NEW please check if the bug still persists with the 3.5.0 beta1 or beta2 
prereleases.
Details on how to test the 3.5.0 beta1 can be found at:
http://wiki.documentfoundation.org/QA/BugHunting_Session_3.5.0.-1

more detail on this bulk operation: http://nabble.documentfoundation.org
/RFC-Operation-Spamzilla-tp3607474p3607474.html

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

Title:
  [upstream] Writer hangs indefinitely opening MS Word .doc

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/401003/+subscriptions

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


[Bug 282196] Re: pkcs15-tool fails with Cryptoflex e-gate 32 k in Broadcom 5800 cardreader

2011-12-25 Thread Ludovic Rousseau
Please follow http://pcsclite.alioth.debian.org/pcsclite.html#support to
generate pcscd logs and attach them to the bug report.

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

Title:
  pkcs15-tool fails with Cryptoflex e-gate 32 k in Broadcom 5800
  cardreader

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

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


[Bug 908528] [NEW] package linux-image-2.6.31-612-imx51 2.6.31-612.31 failed to install/upgrade: Unterprozess installiertes post-installation-Skript gab den Fehlerwert 1 zurück

2011-12-25 Thread Bernd Ihli
Public bug reported:

I have tryed the regular update funktion in the Ubuntu eCafé edition.

it hangs.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: linux-image-2.6.31-612-imx51 2.6.31-612.31
Uname: Linux 2.6.35.4-ecafe-v2 armv7l
Architecture: armel
Date: Sun Dec 25 10:33:57 2011
ErrorMessage: Unterprozess installiertes post-installation-Skript gab den 
Fehlerwert 1 zurück
InstallationMedia: Ubuntu-Netbook 10.04 LTS Lucid Lynx - Release armel+imx51 
(20100427.1)
SourcePackage: linux-fsl-imx51
Title: package linux-image-2.6.31-612-imx51 2.6.31-612.31 failed to 
install/upgrade: Unterprozess installiertes post-installation-Skript gab den 
Fehlerwert 1 zurück

** Affects: linux-fsl-imx51 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package armel lucid ubuntu-une

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

Title:
  package linux-image-2.6.31-612-imx51 2.6.31-612.31 failed to
  install/upgrade: Unterprozess installiertes post-installation-Skript
  gab den Fehlerwert 1 zurück

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-fsl-imx51/+bug/908528/+subscriptions

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

[Bug 908528] Re: package linux-image-2.6.31-612-imx51 2.6.31-612.31 failed to install/upgrade: Unterprozess installiertes post-installation-Skript gab den Fehlerwert 1 zurück

2011-12-25 Thread Bernd Ihli
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/908528

Title:
  package linux-image-2.6.31-612-imx51 2.6.31-612.31 failed to
  install/upgrade: Unterprozess installiertes post-installation-Skript
  gab den Fehlerwert 1 zurück

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-fsl-imx51/+bug/908528/+subscriptions

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

[Bug 908527] Re: software-center crashed with SIGSEGV in PyGILState_Ensure()

2011-12-25 Thread Apport retracing service
*** This bug is a duplicate of bug 893501 ***
https://bugs.launchpad.net/bugs/893501

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #893501, 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/908527/+attachment/2646394/+files/CoreDump.gz

** Attachment removed: Dependencies.txt
   
https://bugs.launchpad.net/bugs/908527/+attachment/2646395/+files/Dependencies.txt

** Attachment removed: Disassembly.txt
   
https://bugs.launchpad.net/bugs/908527/+attachment/2646396/+files/Disassembly.txt

** Attachment removed: ProcStatus.txt
   
https://bugs.launchpad.net/bugs/908527/+attachment/2646399/+files/ProcStatus.txt

** Attachment removed: Registers.txt
   
https://bugs.launchpad.net/bugs/908527/+attachment/2646400/+files/Registers.txt

** Attachment removed: ThreadStacktrace.txt
   
https://bugs.launchpad.net/bugs/908527/+attachment/2646403/+files/ThreadStacktrace.txt

** Visibility changed to: Public

** This bug has been marked a duplicate of bug 893501
   software-center crashed with SIGSEGV in new_threadstate()

** Visibility changed to: Public

** Tags removed: need-i386-retrace

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

Title:
  software-center crashed with SIGSEGV in PyGILState_Ensure()

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

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


[Bug 893330] Re: Left or right-clicking on 3MB or bigger svg file is unresponsive

2011-12-25 Thread awol
on a system that is much the same as the AMD64 described above EXCEPT
that it is i386 there is NO PROBLEM.

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

Title:
  Left or right-clicking on 3MB or bigger svg file is unresponsive

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

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


[Bug 902972] Re: objectoptimization section causes System.NullReferenceException

2011-12-25 Thread Andrew
1. rm -rf .config/OpenBve/
2. openbve
3. Start new game - browse - Birmingham_Cross-City_South - Day - 323 Summer 
2002 0931 Dry Clear.csv
4. Click start
5. Esc - Quit - Yes
6. Result on console:
FindNextFile: Bad encoding for '/home/andrewp/Music/Agnes Baltsa, Jos� Van Dam; 
Riccardo Muti_ Vienna Philharmonic Orchestra'
Consider using MONO_EXTERNAL_ENCODINGS

FindNextFile: Bad encoding for '/home/andrewp/Music/Blue �yster Cult'
Consider using MONO_EXTERNAL_ENCODINGS

FindNextFile: Bad encoding for '/home/andrewp/Music/Convivium Musicum M�nchen - 
Xaver Mayer'
Consider using MONO_EXTERNAL_ENCODINGS

FindNextFile: Bad encoding for '/home/andrewp/Music/Frank Peter Zimmermann, 
J�rg Faerber  W�rttembergisches Kammerorchester Heilbronn'
Consider using MONO_EXTERNAL_ENCODINGS

FindNextFile: Bad encoding for '/home/andrewp/Music/Franz Welser-M�st; 
Stockholm Chamber Orchestra'
Consider using MONO_EXTERNAL_ENCODINGS

FindNextFile: Bad encoding for '/home/andrewp/Music/Missy Elliott Feat. Beyonc�'
Consider using MONO_EXTERNAL_ENCODINGS

WatchdogExit: starting timer
6. openbve
7. Start new game - browse - already in correct directory -  323 Summer 2002 
0931 Dry Clear.csv
8. Immediately crashes (without clicking on Start or double clicking) console 
is:
System.NullReferenceException: Object reference not set to an instance of an 
object
  at System.Windows.Forms.ListView+ItemControl.ItemsMouseDown (System.Object 
sender, System.Windows.Forms.MouseEventArgs me) [0x0] in filename 
unknown:0 
  at System.Windows.Forms.Control.OnMouseDown 
(System.Windows.Forms.MouseEventArgs e) [0x0] in filename unknown:0 
  at System.Windows.Forms.Control.WmLButtonDown (System.Windows.Forms.Message 
m) [0x0] in filename unknown:0 
  at System.Windows.Forms.Control.WndProc (System.Windows.Forms.Message m) 
[0x0] in filename unknown:0 
  at System.Windows.Forms.ListView+ItemControl.WndProc 
(System.Windows.Forms.Message m) [0x0] in filename unknown:0 
  at System.Windows.Forms.Control+ControlWindowTarget.OnMessage 
(System.Windows.Forms.Message m) [0x0] in filename unknown:0 
  at System.Windows.Forms.Control+ControlNativeWindow.WndProc 
(System.Windows.Forms.Message m) [0x0] in filename unknown:0 
  at System.Windows.Forms.NativeWindow.WndProc (IntPtr hWnd, Msg msg, IntPtr 
wParam, IntPtr lParam) [0x0] in filename unknown:0 
WatchdogExit: starting timer


** Attachment added: options.cfg
   
https://bugs.launchpad.net/ubuntu/+source/openbve/+bug/902972/+attachment/2646429/+files/options.cfg

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

Title:
  objectoptimization section causes System.NullReferenceException

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

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

[Bug 902972] Re: objectoptimization section causes System.NullReferenceException

2011-12-25 Thread Andrew
** Attachment added: openbve-crash-config.tar.gz
   
https://bugs.launchpad.net/ubuntu/+source/openbve/+bug/902972/+attachment/2646430/+files/openbve-crash-config.tar.gz

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

Title:
  objectoptimization section causes System.NullReferenceException

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

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


[Bug 902972] Re: objectoptimization section causes System.NullReferenceException

2011-12-25 Thread Andrew
The workaround mentioned in the thread works for me: if I go up one
directory then back down to the correct directory then it works
correctly.

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

Title:
  objectoptimization section causes System.NullReferenceException

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

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


[Bug 902972] Re: objectoptimization section causes System.NullReferenceException

2011-12-25 Thread Andrew
There is also a report of this in the openbve forums:
http://openbve.freeforums.org/openbve-1-3-2-10-on-
ubuntu-11-10-sigsegv-t2486.html?e=0sid=8916ede1c9dab00c5921d3086f36a8ee

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

Title:
  objectoptimization section causes System.NullReferenceException

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

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


[Bug 821832] Re: indicator-weather disappears from panel randomly

2011-12-25 Thread Doug Morse
@John:  Sounds good, and Merry Christmas to you as well!

I didn't really read through all the previous posts in this thread until
just now, so wasn't aware Eliah had already cautioned you re: crash
reports.  I certainly will be more mindful of this issue in the future,
both in offering out my crash reports and in asking for them (e.g.,
asking someone to email me directly rather post somewhere).

Thanks for keeping your netbook up, that might be diagnostic.

For what it's worth, regarding Comment #27, the problem is that for some
reason the Package:  line was missing from your crash report (not sure
why).  All I did was add a line Package: indicator-weather after the
ExecutablePath: /usr/bin/indicator-weather in your _usr_bin_indicator-
weather.1000.crash file to correct the problem.  My crash report did
include the package line, as Package: indicator-weather
11.05.31-0ubuntu2.1.

Lastly, I'd encouraging hanging in there with Ubuntu.  I think they're
on the right path, but I'm sure both Canonical and volunteer developers
are inundated with trouble tickets.  They're building a whole new user
interface, a lot from the ground up, and it's natural for that to break
a lot things.  I discussed this a bit at this link, if you're
interested: http://ubuntuforums.org/showpost.php?p=11553934postcount=11

Alrightly, am soon off on a long drive to visit 70-year-old mother.
Take care!  --Doug

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

Title:
  indicator-weather disappears from panel randomly

To manage notifications about this bug go to:
https://bugs.launchpad.net/weather-indicator/+bug/821832/+subscriptions

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


[Bug 267420] Re: gvfsd-archive crashed with SIGSEGV in __archive_check_magic()

2011-12-25 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  gvfsd-archive crashed with SIGSEGV in __archive_check_magic()

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

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


[Bug 861061] Re: [regression] All apps have a lower frame rate under Unity.

2011-12-25 Thread EliCoten
After a little more testing, I have found that disabling the Unity
plugin from Compiz-Config Settings Manager still increases performance.

I don't have any scientific test or benchmark but I was running a video
totem and noticed the following observations:

**Unity Plugin Enabled**
-Video seems to play ok windowed but when I drag it around the screen it 
doesn't move smoothly (I have wobbly windows enabled and this really shows up 
the lag)
-Full screen video is not smooth

**Unity Plugin Disabled***
-Video plays fine and there is hardly any noticeable lag when wobbling/dragging 
the video round the screen
-Full screen video seems to be smooth

So the difference is certainly noticeable, at least under some
conditions. For everyday use, the difference is less noticeable but
Videos and Wobbly Windows are more noticeable when there's a lag.

So for me, this patch is a great improvement but I don't think it's
totally resolved yet.

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

Title:
  [regression] All apps have a lower frame rate under Unity.

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

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


[Bug 224486]

2011-12-25 Thread Runaway1956
Happy Holidays -- we have some great news to share.

We've just won two huge battles in the fight against Internet censorship --
*everything*you are doing is working!  First off, the House of
Representatives failed to move SOPA out of committee!  Why? Because their
offices got swamped with phone calls and overwhelmed by the snowballing
opposition.  Thank you for helping make that happen.

Second, in response to the boycott of GoDaddy, the web hosting company just
made a public announcement that it's dropping its support of SOPA.  Amazing
what you have made happen.

*Yet, we can't let GoDaddy off the hook just yet.  GoDaddy supports the
Senate version of SOPA, called the PROTECT IP Act (PIPA).  The boycott has
to continue -- Please click here to pledge to join
it.*http://act.fightforthefuture.org/page/m/2e1f2060/1d170b31/713b9071/f863e70/972113413/VEsH/

Please join us in holding GoDaddy accountable, until they drop any and all
efforts to support not just SOPA, but also its Senate cousin, PIPA.  The
boycott already worked to get GoDaddy to change their position on SOPA, now
we urgently need to hear from GoDaddy about PIPA too.

*So what's next?*

The PIPA bill is still alive and strong in the Senate, and could be voted
on in January.  Like SOPA, it threatens free speech, innovation, and the
basic structure of the Internet.

*Keep transferring your domains from GoDaddy until they fully come out
against PIPA and SOPA.  They need to send a letter to Congress making their
opposition to both bills clear -- Click here to join the
cause.*http://act.fightforthefuture.org/page/m/2e1f2060/1d170b31/713b9071/f863e70/972113413/VEsE/

Thank you for all that you do -- it is working!

Tiffiniy  Phil

Fight for the Future

*P.S. Please use these links to ask your friends to hit GoDaddy where it
hurts, by pledging to join the boycott too:*

[image: Share on
Twitter]http://act.fightforthefuture.org/page/m/2e1f2060/1d170b31/713b9071/f863e71/972113413/VEsF/
 [image: Share on
FB]http://act.fightforthefuture.org/page/m/2e1f2060/1d170b31/713b9071/f863e7e/972113413/VEsC/

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

Title:
  Distribution upgrade to Hardy Heron

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

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


[Bug 414014] Re: .pot template is missing and conflicts with the other flex pacakge

2011-12-25 Thread Gabor Kelemen
According to https://launchpad.net/ubuntu/+source/flex-old this package
is in universe since Natty - invalid.

** Changed in: ubuntu-translations
   Status: Triaged = Invalid

** Changed in: flex-old (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  .pot template is missing and conflicts with the other flex pacakge

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

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


[Bug 858387] Re: Sub-menus of firefox / thunderbird are not shown on first invocation

2011-12-25 Thread IlyaGulya
*** This bug is a duplicate of bug 878165 ***
https://bugs.launchpad.net/bugs/878165

** This bug has been marked a duplicate of bug 878165
   Not working with firefox

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

Title:
  Sub-menus of firefox / thunderbird are not shown on first invocation

To manage notifications about this bug go to:
https://bugs.launchpad.net/plasma-widget-menubar/+bug/858387/+subscriptions

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


[Bug 411390] Re: Translations: po-python.pot template is missing, existing .po files useless

2011-12-25 Thread Gabor Kelemen
** Patch added: Add another intltool-update call to rules
   
https://bugs.launchpad.net/ubuntu-translations/+bug/411390/+attachment/2646440/+files/gen-pot-popython.patch

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

Title:
  Translations: po-python.pot template is missing, existing .po files
  useless

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

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


[Bug 409770] Re: Translations: gitk-git .pot template is missing, existing .po files useless

2011-12-25 Thread Gabor Kelemen
Adi was right, according to
http://packages.ubuntu.com/precise/all/gitk/filelist this package ships
translations in a custom format, this is not supported.

** Changed in: ubuntu-translations
   Status: Triaged = Invalid

** Changed in: git-core (Ubuntu)
   Status: New = Invalid

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

Title:
  Translations: gitk-git .pot template is missing, existing .po files
  useless

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

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


[Bug 311869] Re: Add driver for Sentelic Touch pad

2011-12-25 Thread Chris D
You can see the version of the touchpad when it's printed to the syslog
during boot. You should see something like Finger Sensing Pad, hw:
hardware version, sw: driver version, buttons: buttons

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

Title:
  Add driver for Sentelic Touch pad

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/311869/+subscriptions

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


[Bug 884234] Re: Compiz blur plugin mirrors transparent backgrounds vertically

2011-12-25 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  Compiz blur plugin mirrors transparent backgrounds vertically

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

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


[Bug 463217] Re: gedit crashes when opening wget.info

2011-12-25 Thread Denis LE FUR
Hello,
I have the same error.
This also happens with log files from LaTeX compilation including accents (I 
guess).

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

Title:
  gedit crashes when opening wget.info

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

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


[Bug 141481] Re: dash as #!/bin/sh introduces countless incompatibilities

2011-12-25 Thread Victor Mitin
There is one more DASH bug.

Described here:
http://groups.google.com/group/vim_use/browse_thread/thread/837988813a06c280/f8b4aadd575affaa?lnk=gstq=expect#f8b4aadd575affaa

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

Title:
  dash as #!/bin/sh introduces countless incompatibilities

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

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


[Bug 411390] Re: Translations: po-python.pot template is missing, existing .po files useless

2011-12-25 Thread Ubuntu Foundation's Bug Bot
The attachment Add another intltool-update call to rules of this bug
report has been identified as being a patch.  The ubuntu-reviewers team
has been subscribed to the bug report so that they can review the patch.
In the event that this is in fact not a patch you can resolve this
situation by removing the tag 'patch' from the bug report and editing
the attachment so that it is not flagged as a patch.  Additionally, if
you are member of the ubuntu-reviewers team please also unsubscribe the
team from this bug report.

[This is an automated message performed by a Launchpad user owned by
Brian Murray.  Please contact him regarding any issues with the action
taken in this bug report.]

** Tags added: patch

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

Title:
  Translations: po-python.pot template is missing, existing .po files
  useless

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

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


[Bug 296867] Re: empathy needs to support OTR encryption

2011-12-25 Thread Nils Toedtmann
+1

I am tired of pidgin and very interested in Empathy. But i depend on
OTR, so i cannot switch.

I know 5 others in my local geekosphere who have the same.

OTR is unaware of the layer below. That makes it clumsy or unelegant to
implement for an individual protocol like XMPP. But at the same thime
this is a strength: a multi-protocol IM client with OTR has end-to-end
security with the same key pair on all protocols used. And that is
elegant again :-) Calling that broken by design is a narrow view and
missing the point of OTR.

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

Title:
  empathy needs to support OTR encryption

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

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


[Bug 908541] [NEW] Unable to drag windows through top and bottom edges

2011-12-25 Thread Marcos Diaz
Public bug reported:

Operative system:
GNU/Linux Ubuntu 11.10 desktop 32bits.

Related packages:
Gnome-shell 3.2.1
Libgtk 3.2.0
Mutter 3.2.1
Clutter 1.0

Issue:
Unable to move windows to prev/next desktop dragging it to top/bottom edge into 
activities mode, in preceding Ubuntu and Shell versions this just works.

Reproduce:
Open an application, go to activities mode, drag window to bottom edge.

Expected:
Window should be moved to next desktop.

Obtained:
Nothing.

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

** Description changed:

- Operative system: 
+ Operative system:
  GNU/Linux Ubuntu 11.10 desktop 32bits.
  
- Related packages: 
+ Related packages:
  Gnome-shell 3.2.1
  Libgtk 3.2.0
  Mutter 3.2.1
  Clutter 1.0
  
- Issue: 
- Unable to move windows to prev/next desktop dragging it to top/bottom edge 
into activities move, in preceding Ubuntu and Shell versions this just works.
+ Issue:
+ Unable to move windows to prev/next desktop dragging it to top/bottom edge 
into activities mode, in preceding Ubuntu and Shell versions this just works.
  
- Reproduce: 
+ Reproduce:
  Open an application, go to activities move, drag window to bottom edge.
  
  Expected:
  Window should be moved to next desktop.
  
  Obtained:
  Nothing.

** Description changed:

  Operative system:
  GNU/Linux Ubuntu 11.10 desktop 32bits.
  
  Related packages:
  Gnome-shell 3.2.1
  Libgtk 3.2.0
  Mutter 3.2.1
  Clutter 1.0
  
  Issue:
  Unable to move windows to prev/next desktop dragging it to top/bottom edge 
into activities mode, in preceding Ubuntu and Shell versions this just works.
  
  Reproduce:
- Open an application, go to activities move, drag window to bottom edge.
+ Open an application, go to activities mode, drag window to bottom edge.
  
  Expected:
  Window should be moved to next desktop.
  
  Obtained:
  Nothing.

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

Title:
  Unable to drag windows through top and bottom edges

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

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


[Bug 793291] Re: window manager crash with extremely long window name

2011-12-25 Thread Robert Roth
Somehow the character limit to reproduce this bug seems to vary: with
795 chars the dialog still opens, but with 796 I get the corruption, and
above 1000 the corruption is not displayed anymore.

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

Title:
  window manager crash with extremely long window name

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

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


[Bug 793291] Re: window manager crash with extremely long window name

2011-12-25 Thread Robert Roth
More precisely, I get the corruption if using any number between 796 and
808 inclusive. Below 796 everything works fine, above 808 nothing is
displayed, and no corruption visible.

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

Title:
  window manager crash with extremely long window name

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

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


[Bug 824613] Re: Dragging Gimp's Toolbox to the edge of the screen expands it to half the screen (edge snap)

2011-12-25 Thread Robert Roth
Can you still reproduce this using an up-to-date oneiric? I have tried,
but using Gimp 2.6.11-2ubuntu4, compiz 1:0.9.6+bzr20110929-0ubuntu6 and
unity  4.24.0-0ubuntu2b1 this doesn't happen anymore, the toolbox window
is not snapped, so maybe this has been fixed.

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

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

Title:
  Dragging Gimp's Toolbox to the edge of the screen expands it to half
  the screen (edge snap)

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

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


[Bug 908542] [NEW] Switching outputdevice awfully slow and sometimes leads to unusable displays

2011-12-25 Thread Christoph Keller
Public bug reported:

I'm running ubuntu 11.10 on my thinkpad w520 (nvidia quadro 2000m,
nvidia-current drivers). Switching outputdevices is awfully slow no
matter how it do it. Same problem with keyboard shortcut, nvidia's
settings tool and disper. It takes 30 seconds at best to bring back any
kind of output. Sometimes it doesn't work at all (black screen until
reboot). All i see during this time is my mouse cursor which is moving
really laggy. could also be related to unity i guess. didn't have any of
these problems on arch linux using xfce.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: nvidia-current 280.13-0ubuntu6
ProcVersionSignature: Ubuntu 3.0.0-14.23-generic 3.0.9
Uname: Linux 3.0.0-14-generic x86_64
NonfreeKernelModules: nvidia
.proc.driver.nvidia.gpus.0: Error: [Errno 21] Ist ein Verzeichnis: 
'/proc/driver/nvidia/gpus/0'
.proc.driver.nvidia.registry: Binary: 
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  280.13  Wed Jul 27 16:53:56 
PDT 2011
 GCC version:  gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3)
.tmp.unity.support.test.0:
 
ApportVersion: 1.23-0ubuntu4
Architecture: amd64
CompizPlugins: 
[core,bailer,detection,composite,opengl,compiztoolbox,decor,snap,vpswitch,imgpng,gnomecompat,unitymtgrabhandles,place,grid,mousepoll,move,wall,resize,session,regex,animation,fade,expo,ezoom,workarounds,scale,unityshell]
CompositorRunning: compiz
Date: Sun Dec 25 13:21:37 2011
DistUpgraded: Fresh install
DistroCodename: oneiric
DistroVariant: ubuntu
DkmsStatus:
 nvidia-current, 280.13, 3.0.0-14-generic, x86_64: installed
 nvidia-current-updates, 280.13, 3.0.0-14-generic, x86_64: installed
 virtualbox, 4.1.2, 3.0.0-14-generic, x86_64: installed
GraphicsCard:
 nVidia Corporation GF106 [Quadro 2000M] [10de:0dda] (rev a1) (prog-if 00 [VGA 
controller])
   Subsystem: Lenovo Device [17aa:21cf]
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
JockeyStatus:
 xorg:nvidia_current - Beschleunigter Grafiktreiber von NVIDIA (Proprietär, 
Deaktiviert, Nicht benutzt)
 xorg:nvidia_current_updates - NVIDIAs beschleunigte Grafiktreiber 
(Nachträgliche Aktualisierungen) (Proprietär, Aktiviert, In Benutzung)
MachineType: LENOVO 428449G
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.0.0-14-generic 
root=UUID=996921a8-04c0-41f8-813b-5ff5a0447897 ro 
crashkernel=384M-2G:64M,2G-:128M pci=noacpi
SourcePackage: nvidia-graphics-drivers
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 11/02/2011
dmi.bios.vendor: LENOVO
dmi.bios.version: 8BET54WW (1.34 )
dmi.board.asset.tag: Not Available
dmi.board.name: 428449G
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr8BET54WW(1.34):bd11/02/2011:svnLENOVO:pn428449G:pvrThinkPadW520:rvnLENOVO:rn428449G:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 428449G
dmi.product.version: ThinkPad W520
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.6+bzr20110929-0ubuntu6
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.26-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 7.11-0ubuntu3
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 7.11-0ubuntu3
version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
version.xserver-xorg: xserver-xorg 1:7.6+7ubuntu7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.6.0-1ubuntu13
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20110811.g93fc084-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.15.901-1ubuntu2.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110411+8378443-1

** Affects: nvidia-graphics-drivers (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug compiz-0.9 oneiric running-unity ubuntu

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

Title:
  Switching outputdevice awfully slow and sometimes leads to unusable
  displays

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/908542/+subscriptions

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

[Bug 908542] Re: Switching outputdevice awfully slow and sometimes leads to unusable displays

2011-12-25 Thread Christoph Keller
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/908542

Title:
  Switching outputdevice awfully slow and sometimes leads to unusable
  displays

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/908542/+subscriptions

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


[Bug 840859] Re: In Expo mode, indicator do not work

2011-12-25 Thread Robert Roth
*** This bug is a duplicate of bug 758517 ***
https://bugs.launchpad.net/bugs/758517

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug #758517, so it 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. Feel free to continue to report any other bugs you may
find.

** This bug has been marked a duplicate of bug 758517
   indicators do not work in expo mode

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

Title:
  In Expo mode, indicator do not work

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

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


[Bug 886321] Re: Upstart issue and mythbackend

2011-12-25 Thread monochromec
This gets even stranger. After instrumentation, the .conf file looks
like this (just to be on the safe side...):

# MythTV Backend service

description MythTV Backend
author  Mario Limonciello supe...@ubuntu.com

start on (local-filesystems and net-device-up IFACE!=lo and started udev-finish)
stop on runlevel [016]

#expect fork 
respawn
respawn limit 2 3600

pre-start script
logger -t Myth upstart: before mysqld
[ -x /usr/sbin/mysqld ] || exit 0
logger -t Myth upstart: after mysqld
for i in `seq 1 30` ; do
logger -t Myth upstart: i=$i
   /usr/bin/mysqladmin --defaults-file=/etc/mysql/debian.cnf ping  exit 0
   sleep .5
done
end script

script
test -f /etc/default/locale  . /etc/default/locale || true
logger -t Myth upstart `date`
LANG=$LANG /usr/bin/mythbackend --logfile 
/var/log/mythtv/mythbackend.log --user mythtv
end script

The only output in the syslog is like this after a reboot:

Dec 25 13:22:25 htpc Myth upstart: Sun Dec 25 13:22:25 CET 2011
Dec 25 13:22:29 htpc Myth upstart: Sun Dec 25 13:22:29 CET 2011
Dec 25 13:22:29 htpc Myth upstart: Sun Dec 25 13:22:29 CET 2011

upstart respawns the job as defined in the stanza, but the pre-start
script apparently is never executed and the backend just exits without
logging anything.

Could this be an upstart bug?!?

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

Title:
  Upstart issue and mythbackend

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

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


[Bug 898087] Re: Move window to workspace 1 shortcut doesn't work

2011-12-25 Thread Robert Roth
Assigning the compiz task to didrocks as it was in bug #897829, marked
as a duplicate of this one, as this has tasks for both compiz and
control center, while the other only had for compiz.

** Changed in: compiz (Ubuntu)
 Assignee: (unassigned) = Didier Roche (didrocks)

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

Title:
  Move window to workspace 1 shortcut doesn't work

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

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


[Bug 897829] Re: Assigning shortcut to Move window to workspace X doesn't ever take effect

2011-12-25 Thread Robert Roth
*** This bug is a duplicate of bug 898087 ***
https://bugs.launchpad.net/bugs/898087

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug #898087, so it 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. Feel free to continue to report any other bugs you may
find.

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

** This bug has been marked a duplicate of bug 898087
   Move window to workspace 1 shortcut doesn't work

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

Title:
  Assigning shortcut to Move window to workspace X doesn't ever take
  effect

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

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


[Bug 899446] Re: Ubuntu Software Center refreshes itself constantly while uninstalling multiple packages

2011-12-25 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: software-center (Ubuntu)
   Status: New = Confirmed

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

Title:
  Ubuntu Software Center refreshes itself constantly while uninstalling
  multiple packages

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

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


[Bug 898252] Re: Keyboard-Settings - Shortcuts - Navigation - Switch windows of an application shows disabled

2011-12-25 Thread Robert Roth
Bug #898087 is also about compiz=g-c-c keybindings integration, so
these two should be fixed together.

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

Title:
  Keyboard-Settings - Shortcuts - Navigation - Switch windows of an
  application shows disabled

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

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


[Bug 887529] Re: Option --command-fd no longer present in dpkg but shows up in completion

2011-12-25 Thread Pallavi Kumari Jha
** Changed in: bash-completion (Ubuntu)
 Assignee: (unassigned) = Pallavi Kumari Jha (pallavikumarijha)

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

Title:
  Option --command-fd no longer present in dpkg but shows up in
  completion

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

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


[Bug 159162] Re: Resize window color does not match GNOME theme

2011-12-25 Thread Robert Roth
Can you still reproduce this using Oneiric? I get an orange resize
rectangle when resizing, so maybe this has been fixed and should be set
to Fix Released.

** Changed in: compiz (Ubuntu)
   Status: Triaged = Incomplete

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

Title:
  Resize window color does not match GNOME theme

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

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


[Bug 757945] Re: Some small translation errors: 'A edge binding …', 'A edge bunding …', 'A button bunding …'

2011-12-25 Thread Launchpad Bug Tracker
** Branch linked: lp:~evfool/ubuntu/precise/compiz/lp757945

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

Title:
  Some small translation errors: 'A edge binding …', 'A edge bunding …',
  'A button bunding …'

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

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

[Bug 515499] Re: gtkspell's pot file needs to be regenerated at build time

2011-12-25 Thread Gabor Kelemen
An update on this:
- A pot file is now being generated, since this commit: 
http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/precise/gtkspell/precise/revision/8#debian/rules
- unfortunately, the generated file is named .pot, because configure.ac uses 
GETTEXT_PACKAGE=$PACKAGE, but PACKAGE is not defined.

So, we can either use this .pot file in LP as the pot file instead of
gtkspell.pot, or patch the configure.ac. As gtkspell development is
stalled  and the upstream gtkspell.pot is up-to-date, this is not so
urgent to do.

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

Title:
  gtkspell's pot file needs to be regenerated at build time

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

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


[Bug 515499] Re: gtkspell's pot file needs to be regenerated at build time

2011-12-25 Thread Gabor Kelemen
** Patch added: Generate a gtkspell.pot file
   
https://bugs.launchpad.net/ubuntu-translations/+bug/515499/+attachment/2646476/+files/fix-i18n.patch

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

Title:
  gtkspell's pot file needs to be regenerated at build time

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

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


[Bug 908474] Re: FTBFS: Needs porting to new layout of libnl3 package

2011-12-25 Thread Mathieu Trudel-Lapierre
A new iw (3.2) should be sponsored shortly to hit Debian unstable. I
think it would be best to wait a day or two, but I'm not against someone
sponsoring this patch right away either, looks correct. I can't sponsor
it though :)

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

Title:
  FTBFS: Needs porting to new layout of libnl3 package

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

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


[Bug 908548] [NEW] Sync tcos-configurator 1.22 (universe) from Debian testing (main)

2011-12-25 Thread mariodebian
Public bug reported:

Please sync tcos-configurator 1.22 (universe) from Debian testing (main)

All changelog entries:

tcos-configurator (1.22) unstable; urgency=low

  * tcos-configurator.desktop: change gksu with su-to-root
  * debian/changelog: split a very long line
  * debian/control: 
- Add python to Depends
- Use debhelper =7.0.50 for dh7 package

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Wed, 07 Dec
2011 23:32:24 +0100

tcos-configurator (1.21) unstable; urgency=low

  * Promoted by Antonio Pérez-Aranda ant3...@gmail.com
 from Yaco Sistemas SL www.yaco.es
  * Convert glade to gtkbuilder
  * tcos-configurator: Change glade to GtkBuilder 
and ask before overwriting files
  * setup.py: Install ui instead of glade
  * Update translations
  * Delete debian/py* files
  * Add man page
  * Switch to 3.0 (native)
  * Switch from CDBS to dh7

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Mon, 21 Nov
2011 20:31:45 +0100

tcos-configurator (1.20) unstable; urgency=low

  * Add option 16 (swap-server) used by udhcpc
  * Makefile: Add Debian Squeeze
  * debian/copyright: Machine readable debian/copyright format
  * update debian/copyright
  * setu.py add license
  * tcos-configurator: fix combo_interface_change() nm iface detection
  * tcos-configurator: add --simulate option and don't write gateway 
if not needed

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Fri, 25 Feb
2011 22:40:56 +0100

tcos-configurator (1.19) unstable; urgency=low

  * check for /etc/gdm3 dir, schemas is moved to /usr/share/gdm
  * debian/control: Update GIT URL
  * tcos-configurator: Use /var/lib/max-netboot as TFTPBOOT if exists

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Sat, 18 Dec
2010 15:36:21 +0100

tcos-configurator (1.18) unstable; urgency=low

  * tcos-configurator: use bigger limits to allow more clients in GDM
  * Makefile: add jaunty karmic and lucid patch
  * setup.py: read version from debian/changelog to use in setup class
  * put option 49 xserver and 48 font-servers, and create
/etc/gdm3/daemon.log
  * fix GDM_CONFIG var and add all xdmcp settings when enabling

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Thu, 17 Jun
2010 22:17:29 +0200

tcos-configurator (1.17) unstable; urgency=low

  * Use MaxSessions=30 as default for GDM
  * Create empty /etc/gdm/custom.conf if gdm.schemas is found

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Tue, 06 Apr
2010 17:41:20 +0200

tcos-configurator (1.16) unstable; urgency=low

  * support configuration of KDM, update Spanish translation

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Sun, 08 Nov
2009 14:49:55 +0100

tcos-configurator (1.15) unstable; urgency=low

  * fix exception when gateway is empty

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Sun, 04 Oct
2009 16:11:25 +0200

tcos-configurator (1.14) unstable; urgency=low

  * Remove obsolete patch targets
  * Add support for detcet Backharddi-NG

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Fri, 25 Sep
2009 23:52:06 +0200

tcos-configurator (1.13) unstable; urgency=low

  * Add support to configure dnsmasq daemon instead of dhcp3-server
  * Update translation template and Spanish translation
  * Update debian/copyright

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Wed, 02 Sep
2009 18:48:54 +0200

tcos-configurator (1.12) unstable; urgency=low

  * Fix lines error
  * Create users from 01 not 02

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Wed, 02 Sep
2009 14:16:12 +0200

tcos-configurator (1.11) unstable; urgency=low

  * Remove obsolete popen2 module and use subprocess
  * Don't show interfaces in HIDDEN_INTERFACES var

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Mon, 01 Jun
2009 12:30:29 +0200

tcos-configurator (1.10) unstable; urgency=low

  * Add authorative in dhcpd.conf and remove some old and commented code

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Wed, 04 Mar
2009 20:52:43 +0100

tcos-configurator (1.9) unstable; urgency=low

  * Set ipname in /etc/hosts write loop

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Fri, 27 Feb
2009 14:43:52 +0100

tcos-configurator (1.8) unstable; urgency=low

  * Update Vcs- debian/control headers to new GIT repos
  * Add patch_lenny

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Sun, 15 Feb
2009 20:20:33 +0100

tcos-configurator (1.7) unstable; urgency=low

  * Update pt_BR translation
  * Set verbose compile translations

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Wed, 14 Jan
2009 20:13:01 +0100

tcos-configurator (1.6) unstable; urgency=low

  * debian/rules:
- Move tcos-configurator to usr/sbin

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Tue, 14 Oct
2008 11:31:19 +0200

tcos-configurator (1.5) unstable; urgency=low

  * Now Depends on python-netifaces
  * Change ifaces detection code to use netifaces module
  * Hide como_boot_mode (and 

[Bug 757945] Re: Some small translation errors: 'A edge binding …', 'A edge bunding …', 'A button bunding …'

2011-12-25 Thread Robert Roth
** Changed in: compiz (Ubuntu)
 Assignee: (unassigned) = Robert Roth (evfool)

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

Title:
  Some small translation errors: 'A edge binding …', 'A edge bunding …',
  'A button bunding …'

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

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

[Bug 908551] [NEW] Sync tcosmonitor 0.2.43 (universe) from Debian testing (main)

2011-12-25 Thread mariodebian
Public bug reported:

Please sync tcosmonitor 0.2.43 (universe) from Debian testing (main)

All changelog entries:

tcosmonitor (0.2.43) unstable; urgency=low

  * Promoted by Antonio Pérez-Aranda ant3...@gmail.com
 from Yaco Sistemas SL www.yaco.es
  * Remove 'op' Depends (breaks nmap mode)

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Tue, 06 Sep
2011 17:02:52 +0200

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  Sync tcosmonitor 0.2.43 (universe) from Debian testing (main)

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

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

[Bug 908464] Re: FTBFS with new layout of libnl3

2011-12-25 Thread Mathieu Trudel-Lapierre
Was this tested? It looks to me like you'd be missing changes to CFLAGS,
since the libnl3 headers have now moved to /usr/include/libnl3 (from
/usr/include).

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

Title:
  FTBFS with new layout of libnl3

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

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


[Bug 908549] [NEW] Sync tcosconfig 0.3.30 (universe) from Debian testing (main)

2011-12-25 Thread mariodebian
Public bug reported:

Please sync tcosconfig 0.3.30 (universe) from Debian testing (main)

All changelog entries:

tcosconfig (0.3.30) unstable; urgency=low

  * ConfigReader.py: Disable kernel version check (allow 3.0 kernels)
  * setup.py: process __VERSION__ in script file

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Wed, 06 Jul
2011 14:38:47 +0200

tcosconfig (0.3.29) unstable; urgency=low

  * TcosChrootBuilder.py: remove Ubuntu Jaunty and Karmic, add squeeze
as stable alias

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Sun, 12 Jun
2011 13:49:25 +0200

tcosconfig (0.3.28) unstable; urgency=low

  * debian/copyright: Machine readable debian/copyright format
  * update debian/copyright
  * global license headers fix
  * add .gitignore for .pyc files
  * ConfigReader.py: copy /etc/tcos/hacking/* files in chroot
  * TcosChrootBuilder.py TcosGui.py: hide some ugly lines in output
  * shared.py TcosGui.py: Use TCOS_XORG_VIDEO_DRIVER=xorgauto by default if 
supported
  * TcosChrootBuilder.py: change unstable kernel and set testing-wheezy alias
  * po/es.po: Fix Spanish translation of 'Select distro version'

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Fri, 25 Feb
2011 22:54:06 +0100

tcosconfig (0.3.27) unstable; urgency=low

  * TcosChrootBuilder.py: use print_debug instead of print in
populate_select()
  * ui/tcosconfig.ui: fix 'GtkWarning: GtkSpinButton: setting an
adjustment with non-zero page size is deprecated'
  * Remove obsolete references to glade files
  * remove glade references (part II)
  * update pot and po files
  * TcosChrootBuilder.py: Add Debian Squeeze

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Sat, 05 Feb
2011 16:07:18 +0100

tcosconfig (0.3.26) unstable; urgency=low

  * shared.py: change /usr/share/initramfs-tools-tcos = /usr/share/tcos
  * debian/control: update dependes version initramfs-tools-tcos

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Thu, 25 Nov
2010 15:59:25 +0100

tcosconfig (0.3.25) unstable; urgency=low

  * debian/control: Update GIT URL and remove obsolete depends python-
glade2, python-vte

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Thu, 25 Nov
2010 13:31:44 +0100

tcosconfig (0.3.24) unstable; urgency=low

  * ConfigReader.py: add chroot path when detecting usplash or plymouth
  * TcosChrootBuilder.py: remove obsolete versions and fix
lucid=maverick typo

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Fri, 05 Nov
2010 16:19:33 +0100

tcosconfig (0.3.23.1) unstable; urgency=low

  * Add Ubuntu maverick and update Ubuntu Lucid kernel

 -- Mario Izquierdo Rodríguez (Thinetic Systems SLNE)
mario.izquie...@thinetic.es  Fri, 15 Oct 2010 17:54:33 +0200

tcosconfig (0.3.23) unstable; urgency=low

  * add xorgauto
  * update translations
  * Update Ubuntu Lucid kernel to 2.6.32-23

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Tue, 13 Jul
2010 12:03:44 +0200

tcosconfig (0.3.22) unstable; urgency=low

  * TcosGui.py: fix crash if index is  0
  * TcosChrootBuilder.py: update kernels

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Thu, 17 Jun
2010 22:46:59 +0200

tcosconfig (0.3.21) unstable; urgency=low

  [ Mario Izquierdo (mariodebian) ]
  * TcosGui.py: disable printing if no debug

  [ Ignacio Vidal ]
  * INSTALL: change gtk.glade with gtk2
  * tcos.conf: Add PLYMOUTH vars
  * shared.py: Add PLYMOUTH and new Xorg detection fullauto
  * ConfigReader.py: Search plymouth or usplash themes NOT COMPLETE
  * Makefile: clean, remove install target and patch_*
  * ui/tcos-chrootbuilder.ui: remove model adjustments
  * ui/tcosconfig.ui: Remove adjustments and add TCOS_XORG_DRI_MATROX
and PLYMOUTH hbox
  * setup.py: clean old code
  * TcosChrootBuilder.py: update Lucid kernel
  * TcosGui.py: add PLYMOUTH stuff

  [ Mario Izquierdo (mariodebian) ]
  * Update translations template and spanish
  * ui/tcosconfig.ui: Add adjustments for all GtkSpinButtons
  * Release 0.3.21

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Sat, 17 Apr
2010 16:03:20 +0200

tcosconfig (0.3.20) unstable; urgency=low

  * Add IMG_DIR to images path
  * work with no usplash and use gtk.Buildable to get widget names

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Tue, 30 Mar
2010 17:42:32 +0200

tcosconfig (0.3.19) unstable; urgency=low

  * add TCOS_COMPOSITE
  * Update gtk.glade to gtk.Builder
  * Update translations

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Mon, 22 Mar
2010 11:51:43 +0100

tcosconfig (0.3.18) unstable; urgency=low

  * Fix typo in Spanish translation
  * Update kernel versions and add Ubuntu Lucid

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Sun, 22 Nov
2009 17:29:10 +0100

tcosconfig (0.3.17) unstable; urgency=low

  * Add NTFS-3G checkbox
  * Support Brasil keyboard layout=br model=abnt2,
see new bin/configurexorg for forcing it

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Fri, 25 Sep
2009 23:54:09 

[Bug 908552] [NEW] Sync tcos 0.89.86 (universe) from Debian testing (main)

2011-12-25 Thread mariodebian
Public bug reported:

Please sync tcos 0.89.86 (universe) from Debian testing (main)

All changelog entries:

tcos (0.89.86) unstable; urgency=low

  * Change 'xvnc4viewer | xvncviewer' with 
xtightvncviewer (avalaible in armel) (closes: #651188)
  * debian/changelog: split a very long line

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Wed, 07 Dec
2011 23:24:48 +0100

tcos (0.89.85) unstable; urgency=low

  * common.mk: Update kernel versions (add 2 last Ubuntus)
  * tcos-standalone.init 45wakeonlan: Support old and new ethtool paths
  * Makefile: disable openvpn install target
  * hooks-addons/45wakeonlan: Fix OR = AND in ethtool paths
  * tnc/tcos-net-controller.c: Remove not needed include, 
fix hurd-i386 build
  * tcos-standalone: move ethtool from Depends to Recommends
  * debian/tcos-standalone.init: Check if ethtool bin exists before run 
wakeonlan
  * hooks-addons/45wakeonlan: refactor ethtool cpifexists
  * Change Priority to extra, we depend on some extra packages
  * move from CDBS to dh7
  * hooks-addons/50xorg: Remove nVIDIA libs in multiarch paths too
  * hooks-addons/21pulseaudio: No install filter, equalizer or rygel modules

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Thu, 24 Nov
2011 16:02:16 +0100

tcos (0.89.84) unstable; urgency=low

  * Promoted by Antonio Pérez-Aranda ant3...@gmail.com
 from Yaco Sistemas SL www.yaco.es
  * hooks-addons/00main: really fix libgssapi_krb5

 -- Mario Izquierdo (mariodebian) mariodeb...@gmail.com  Thu, 15 Sep
2011 15:43:18 +0200

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  Sync tcos 0.89.86 (universe) from Debian testing (main)

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

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

[Bug 881813] Re: Mozilla Thunderbird Crashes suddenly on opening

2011-12-25 Thread Vibhav Pant
Thanks Chris , this solved the problem

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

Title:
  Mozilla Thunderbird Crashes suddenly on opening

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

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


[Bug 908555] [NEW] BLUETOOTH IN HP DM-1 3210 AU NOT WORKING

2011-12-25 Thread Mrs Umang
Public bug reported:

BLUETOOTH IN HP DM-1 3210 AU NOT WORKING. I HAVE UBUNTU 11.10 VERSION..
IT ONLY SEARCHES CONTINUOSLY AND DO NOT SHOW ANY DEVICE.BUT WIRELESS
NETWORKING IS WORKING WELL.

MAY I HAVE SOLUTION.

THANKS AND REGARDS..

MRS UMANG..

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  BLUETOOTH IN HP DM-1 3210 AU NOT WORKING

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

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


[Bug 845449] Re: seahorse crashed with SIGSEGV in on_prefs_add_keyserver_uri_changed()

2011-12-25 Thread Vibhav Pant
seems that this bug is not present in 12.04 Alpha 1

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

Title:
  seahorse crashed with SIGSEGV in on_prefs_add_keyserver_uri_changed()

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

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


  1   2   3   4   5   6   >