[Desktop-packages] [Bug 1933803] [NEW] No notifications on events of Gnome Calendar on XUbuntu

2021-06-28 Thread Volodya
Public bug reported:

To reproduce:
1. Create an event
2. Add a 5 minute before the event reminder
3. Wait 5 minutes until the event

What happens:
* Nothing

What i expect to happen:
* Some sort of notification, preferably with sound

Gnome Calendar version: 3.36.2

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: gnome-calendar 3.36.2-0ubuntu1
ProcVersionSignature: Ubuntu 5.4.0-74.83-generic 5.4.114
Uname: Linux 5.4.0-74-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27.18
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: XFCE
Date: Mon Jun 28 11:00:14 2021
InstallationDate: Installed on 2021-01-13 (165 days ago)
InstallationMedia: Xubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
SourcePackage: gnome-calendar
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug focal third-party-packages

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

Title:
  No notifications on events of Gnome Calendar on XUbuntu

Status in gnome-calendar package in Ubuntu:
  New

Bug description:
  To reproduce:
  1. Create an event
  2. Add a 5 minute before the event reminder
  3. Wait 5 minutes until the event

  What happens:
  * Nothing

  What i expect to happen:
  * Some sort of notification, preferably with sound

  Gnome Calendar version: 3.36.2

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: gnome-calendar 3.36.2-0ubuntu1
  ProcVersionSignature: Ubuntu 5.4.0-74.83-generic 5.4.114
  Uname: Linux 5.4.0-74-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27.18
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: XFCE
  Date: Mon Jun 28 11:00:14 2021
  InstallationDate: Installed on 2021-01-13 (165 days ago)
  InstallationMedia: Xubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 
(20200731)
  SourcePackage: gnome-calendar
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1819712] [NEW] It would be significantly better to save image files in reverse order

2019-03-12 Thread Volodya
Public bug reported:

Use case:
Scan enough pages for your XUbuntu to start dumping memory into swap
Save as image files

What happens:
You first wait for the last pages to be swapped out and first pages converted
You then wait for the opposite thing

What would be significantly better:
You can write later pages first, using the fact that it is already in the 
memory at the end


I believe that it can be done as easily as changing the line 224 in book.vala

from:
for (var i = 0; i < n_pages; i++)
to:
for (var i = n_pages; i >= ; --i)

But i cannot test it, being unable to compile

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: simple-scan 3.28.0-0ubuntu1
ProcVersionSignature: Ubuntu 4.15.0-46.49-generic 4.15.18
Uname: Linux 4.15.0-46-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.5
Architecture: amd64
CurrentDesktop: XFCE
Date: Tue Mar 12 17:51:03 2019
InstallationDate: Installed on 2018-11-24 (107 days ago)
InstallationMedia: Xubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 
(20180725)
MachineType: ASUSTeK COMPUTER INC. N76VB
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.15.0-46-generic 
root=/dev/mapper/xubuntu--vg-root ro quiet splash vt.handoff=1
SourcePackage: simple-scan
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/24/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: N76VB.205
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: N76VB
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.family: N
dmi.product.name: N76VB
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.

** Affects: simple-scan (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug bionic

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1819712

Title:
  It would be significantly better to save image files in reverse order

Status in simple-scan package in Ubuntu:
  New

Bug description:
  Use case:
  Scan enough pages for your XUbuntu to start dumping memory into swap
  Save as image files

  What happens:
  You first wait for the last pages to be swapped out and first pages converted
  You then wait for the opposite thing

  What would be significantly better:
  You can write later pages first, using the fact that it is already in the 
memory at the end

  
  I believe that it can be done as easily as changing the line 224 in book.vala

  from:
  for (var i = 0; i < n_pages; i++)
  to:
  for (var i = n_pages; i >= ; --i)

  But i cannot test it, being unable to compile

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: simple-scan 3.28.0-0ubuntu1
  ProcVersionSignature: Ubuntu 4.15.0-46.49-generic 4.15.18
  Uname: Linux 4.15.0-46-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.5
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Tue Mar 12 17:51:03 2019
  InstallationDate: Installed on 2018-11-24 (107 days ago)
  InstallationMedia: Xubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 
(20180725)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.15.0-46-generic 
root=/dev/mapper/xubuntu--vg-root ro quiet splash vt.handoff=1
  SourcePackage: simple-scan
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.family: N
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/simple-scan/+bug/1819712/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245627] Re: Opening a directory with thousands images kills nautilus

2019-01-24 Thread Volodya
I'll check in 5 years or so.

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

Title:
  Opening a directory with thousands images kills nautilus

Status in nautilus package in Ubuntu:
  Incomplete

Bug description:
  This maybe related to Bug #243336 but i am not sure.

  Opening a directory with thousands of image files locks Nautilus.
  Pressing 'go back' or 'go one level up' does nothing until all the files are 
actually loaded.

  It would be just an inconvenience, but this also happens in the Open a
  File Dialogue, making it impossible to (for example) upload anything
  from that directory (i can switch the file browser to view the
  directory, but can't chose to use a different open file dialog.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1744871] Re: Watch directory feature produces 'torrent file contains invalid data' error

2018-01-24 Thread Volodya
Here's the screenshot

** Attachment added: "Screenshot_2018-01-24_17-07-58.png"
   
https://bugs.launchpad.net/ubuntu/+source/transmission/+bug/1744871/+attachment/5042258/+files/Screenshot_2018-01-24_17-07-58.png

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

Title:
  Watch directory feature produces 'torrent file contains invalid data'
  error

Status in transmission package in Ubuntu:
  New

Bug description:
  To reproduce:
  1: Download a torrent file (i used the file from https://xubuntu.org/download 
to test)
  2: Add it manually to Transmission
  3: Everything works fine
  4: In preferences set up a directory in the 'Automatically add .torrent files 
from:' setting
  5: Place that very same file in the directory you have selected
  6: Note the error message

  What i expect to happen:
  The torrent file should be added to the download and start downloading 
normally. No difference between adding manually and automatically should be 
there.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: transmission-gtk 2.92-2ubuntu3.1
  ProcVersionSignature: Ubuntu 4.13.0-25.29-generic 4.13.13
  Uname: Linux 4.13.0-25-generic x86_64
  ApportVersion: 2.20.7-0ubuntu3.7
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Tue Jan 23 10:02:18 2018
  InstallationDate: Installed on 2017-12-14 (39 days ago)
  InstallationMedia: Xubuntu 17.10 "Artful Aardvark" - Release amd64 
(20171017.1)
  SourcePackage: transmission
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1744871] Re: Watch directory feature produces 'torrent file contains invalid data' error

2018-01-24 Thread Volodya
sudo systemctl status transmission-daemon.service
Unit transmission-daemon.service could not be found.

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

Title:
  Watch directory feature produces 'torrent file contains invalid data'
  error

Status in transmission package in Ubuntu:
  New

Bug description:
  To reproduce:
  1: Download a torrent file (i used the file from https://xubuntu.org/download 
to test)
  2: Add it manually to Transmission
  3: Everything works fine
  4: In preferences set up a directory in the 'Automatically add .torrent files 
from:' setting
  5: Place that very same file in the directory you have selected
  6: Note the error message

  What i expect to happen:
  The torrent file should be added to the download and start downloading 
normally. No difference between adding manually and automatically should be 
there.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: transmission-gtk 2.92-2ubuntu3.1
  ProcVersionSignature: Ubuntu 4.13.0-25.29-generic 4.13.13
  Uname: Linux 4.13.0-25-generic x86_64
  ApportVersion: 2.20.7-0ubuntu3.7
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Tue Jan 23 10:02:18 2018
  InstallationDate: Installed on 2017-12-14 (39 days ago)
  InstallationMedia: Xubuntu 17.10 "Artful Aardvark" - Release amd64 
(20171017.1)
  SourcePackage: transmission
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1744871] [NEW] Watch directory feature produces 'torrent file contains invalid data' error

2018-01-22 Thread Volodya
Public bug reported:

To reproduce:
1: Download a torrent file (i used the file from https://xubuntu.org/download 
to test)
2: Add it manually to Transmission
3: Everything works fine
4: In preferences set up a directory in the 'Automatically add .torrent files 
from:' setting
5: Place that very same file in the directory you have selected
6: Note the error message

What i expect to happen:
The torrent file should be added to the download and start downloading 
normally. No difference between adding manually and automatically should be 
there.

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: transmission-gtk 2.92-2ubuntu3.1
ProcVersionSignature: Ubuntu 4.13.0-25.29-generic 4.13.13
Uname: Linux 4.13.0-25-generic x86_64
ApportVersion: 2.20.7-0ubuntu3.7
Architecture: amd64
CurrentDesktop: XFCE
Date: Tue Jan 23 10:02:18 2018
InstallationDate: Installed on 2017-12-14 (39 days ago)
InstallationMedia: Xubuntu 17.10 "Artful Aardvark" - Release amd64 (20171017.1)
SourcePackage: transmission
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug artful

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

Title:
  Watch directory feature produces 'torrent file contains invalid data'
  error

Status in transmission package in Ubuntu:
  New

Bug description:
  To reproduce:
  1: Download a torrent file (i used the file from https://xubuntu.org/download 
to test)
  2: Add it manually to Transmission
  3: Everything works fine
  4: In preferences set up a directory in the 'Automatically add .torrent files 
from:' setting
  5: Place that very same file in the directory you have selected
  6: Note the error message

  What i expect to happen:
  The torrent file should be added to the download and start downloading 
normally. No difference between adding manually and automatically should be 
there.

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: transmission-gtk 2.92-2ubuntu3.1
  ProcVersionSignature: Ubuntu 4.13.0-25.29-generic 4.13.13
  Uname: Linux 4.13.0-25-generic x86_64
  ApportVersion: 2.20.7-0ubuntu3.7
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Tue Jan 23 10:02:18 2018
  InstallationDate: Installed on 2017-12-14 (39 days ago)
  InstallationMedia: Xubuntu 17.10 "Artful Aardvark" - Release amd64 
(20171017.1)
  SourcePackage: transmission
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 67691] Re: Nautilus can leave half-copied files on the target on error or cancel

2017-09-02 Thread Volodya
Why was this changed to 'Invalid'. Was there some information that
wasn't provided? If so what else is needed?

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

Title:
  Nautilus can leave half-copied files on the target on error or cancel

Status in One Hundred Papercuts:
  Invalid
Status in Nautilus:
  Invalid
Status in nautilus package in Ubuntu:
  Triaged

Bug description:
  If a file move/copy is stopped half way through (eg due to pressing
  cancel or volume full error), Nautilus advises there was an error but
  does not try to delete the half-copied file, leaving the impression to
  a user on the target file system that the file was successfully
  copied.

  When you do the copy again and press "Skip all existing" this will
  lead to data loss.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1668976] [NEW] Gimp forgets the font in the text layer

2017-03-01 Thread Volodya
Public bug reported:

I have recorded a quick video of this bug:
https://www.youtube.com/watch?v=x9A6bP1s8_o

To summarise:
After setting the font of the text in the text layer, the correct font and 
colour are not being displayed. Justification is displayed correctly.

When i type in the centre of the text, everything is normal.
When i substitute the entire text or begin to type at the first character mark, 
the incorrect font is used.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: gimp 2.8.16-1ubuntu1.1
ProcVersionSignature: Ubuntu 4.4.0-64.85-generic 4.4.44
Uname: Linux 4.4.0-64-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
CurrentDesktop: XFCE
Date: Wed Mar  1 15:50:21 2017
InstallationDate: Installed on 2015-01-19 (772 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140723)
SourcePackage: gimp
UpgradeStatus: Upgraded to xenial on 2016-07-29 (215 days ago)

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


** Tags: amd64 apport-bug xenial

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

Title:
  Gimp forgets the font in the text layer

Status in gimp package in Ubuntu:
  New

Bug description:
  I have recorded a quick video of this bug:
  https://www.youtube.com/watch?v=x9A6bP1s8_o

  To summarise:
  After setting the font of the text in the text layer, the correct font and 
colour are not being displayed. Justification is displayed correctly.

  When i type in the centre of the text, everything is normal.
  When i substitute the entire text or begin to type at the first character 
mark, the incorrect font is used.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: gimp 2.8.16-1ubuntu1.1
  ProcVersionSignature: Ubuntu 4.4.0-64.85-generic 4.4.44
  Uname: Linux 4.4.0-64-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Wed Mar  1 15:50:21 2017
  InstallationDate: Installed on 2015-01-19 (772 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  SourcePackage: gimp
  UpgradeStatus: Upgraded to xenial on 2016-07-29 (215 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1662435] [NEW] Chromium stops XUbuntu 16.04 from going into a screensaver

2017-02-06 Thread Volodya
Public bug reported:

My computer is going into the locked screen of Light Locker just fine if
Chromium is turned off. However, if it is running, the computer will
*not* turn the screensaver on, regardless of the length of time.

Youtube and similar video sites are not loaded into any of the tabs, so
it's not a feature that might have been useful.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: chromium-browser 55.0.2883.87-0ubuntu0.16.04.1263
ProcVersionSignature: Ubuntu 4.4.0-59.80-generic 4.4.35
Uname: Linux 4.4.0-59-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
CurrentDesktop: XFCE
DRM.card0-DP-1:
 edid-base64: 
 dpms: Off
 modes: 
 enabled: disabled
 status: disconnected
DRM.card0-HDMI-A-1:
 edid-base64: 
 dpms: Off
 modes: 
 enabled: disabled
 status: disconnected
DRM.card0-LVDS-1:
 edid-base64: 
AP///wAGr50hAAAWAQSQJhV4AsiVnldUkiYPUFQBAQEBAQEBAQEBAQEBAQEBFDeAwHA4IEAwZDYAfdYQAAAYDwAg/gBBVU8KICAgICAgICAg/gBCMTczSFcwMiBWMSAKAFE=
 dpms: On
 modes: 1920x1080
 enabled: enabled
 status: connected
DRM.card0-VGA-1:
 edid-base64: 
 dpms: Off
 modes: 
 enabled: disabled
 status: disconnected
Date: Tue Feb  7 09:55:49 2017
Desktop-Session:
 'xubuntu'
 '/etc/xdg/xdg-xubuntu:/usr/share/upstart/xdg:/etc/xdg:/etc/xdg'
 
'/usr/share/xubuntu:/usr/share/xfce4:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop:/usr/share'
DetectedPlugins:
 
Env:
 'None'
 'None'
InstallationDate: Installed on 2015-01-19 (749 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140723)
Load-Avg-1min: 2.50
Load-Processes-Running-Percent:   0.1%
MachineType: ASUSTeK COMPUTER INC. N76VB
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-59-generic 
root=/dev/mapper/xubuntu--vg-root ro quiet splash vt.handoff=7
SourcePackage: chromium-browser
UpgradeStatus: Upgraded to xenial on 2016-07-29 (192 days ago)
dmi.bios.date: 05/24/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: N76VB.205
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: N76VB
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.name: N76VB
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.
etcconfigcpepperflashpluginnonfree:
 flashso="/usr/lib/pepperflashplugin-nonfree/libpepflashplayer.so"
 flashversion=`strings $flashso 2> /dev/null | grep LNX | cut -d ' ' -f 2 | sed 
-e "s/,/./g"`
 CHROMIUM_FLAGS="$CHROMIUM_FLAGS --ppapi-flash-path=$flashso 
--ppapi-flash-version=$flashversion"
gconf-keys: /desktop/gnome/applications/browser/exec = 
b'/usr/bin/chromium-browser\n'/desktop/gnome/url-handlers/https/command = 
b'/usr/bin/chromium-browser %s\n'/desktop/gnome/url-handlers/https/enabled = 
b'true\n'/desktop/gnome/url-handlers/http/command = b'/usr/bin/chromium-browser 
%s\n'/desktop/gnome/url-handlers/http/enabled = 
b'true\n'/desktop/gnome/session/required_components/windowmanager = 
b''/apps/metacity/general/compositing_manager = 
b''/desktop/gnome/interface/icon_theme = 
b'gnome\n'/desktop/gnome/interface/gtk_theme = b'Clearlooks\n'
modified.conffile..etc.chromium-browser.default: [modified]
modified.conffile..etc.default.chromium-browser: [deleted]
mtime.conffile..etc.chromium-browser.default: 2015-01-19T17:52:56.396931

** Affects: chromium-browser (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1662435

Title:
  Chromium stops XUbuntu 16.04 from going into a screensaver

Status in chromium-browser package in Ubuntu:
  New

Bug description:
  My computer is going into the locked screen of Light Locker just fine
  if Chromium is turned off. However, if it is running, the computer
  will *not* turn the screensaver on, regardless of the length of time.

  Youtube and similar video sites are not loaded into any of the tabs,
  so it's not a feature that might have been useful.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: chromium-browser 55.0.2883.87-0ubuntu0.16.04.1263
  ProcVersionSignature: Ubuntu 4.4.0-59.80-generic 4.4.35
  Uname: Linux 4.4.0-59-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  CurrentDesktop: XFCE
  DRM.card0-DP-1:
   edid-base64: 
   dpms: Off
   modes: 
   enabled: disabled
   status: disconnected
  DRM.card0-HDMI-A-1:
   edid-base64: 
   dpms: Off
   modes: 
   enabled: disabled
   status: disconnected
  DRM.card0-LVDS-1:
   edid-base64: 

[Desktop-packages] [Bug 1658739] [NEW] Javascript "Slow script" message blocks Firefox exit

2017-01-23 Thread Volodya
Public bug reported:

If the computer is running out of memory and one attempts to shut down
Firefox while there're some scripts that are running continously(*) you
get the "Do you want to stop the script?" message. And that message
actually blocks Firefox from exiting despite the fact that the exit was
initiated before the message appeared.

(*) In my case the script was the Chat-Window script on VK.com (Russian
social media site).

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: firefox 50.1.0+build2-0ubuntu0.16.04.1
ProcVersionSignature: Ubuntu 4.4.0-59.80-generic 4.4.35
Uname: Linux 4.4.0-59-generic x86_64
AddonCompatCheckDisabled: False
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   volodya2950 F...m pulseaudio
 /dev/snd/controlC0:  volodya2950 F pulseaudio
BuildID: 20161209095719
Channel: Unavailable
CurrentDesktop: XFCE
Date: Mon Jan 23 20:13:28 2017
DefaultProfileIncompatibleExtensions:
 English (South Africa) Language Pack - langpack-en...@firefox.mozilla.org
 Russian (RU) Language Pack - langpack...@firefox.mozilla.org
 English (GB) Language Pack - langpack-en...@firefox.mozilla.org
 Default - {972ce4c6-7e08-4474-a285-3208198ce6fd}
DefaultProfilePlugins:
 Google Talk Plugin - /opt/google/talkplugin/libnpgoogletalk.so 
(google-talkplugin)
 Google Talk Plugin Video Renderer - /opt/google/talkplugin/libnpo1d.so 
(google-talkplugin)
 Shockwave Flash - /usr/lib/adobe-flashplugin/libflashplayer.so 
(adobe-flashplugin)
DefaultProfilePrefSources: prefs.js
ForcedLayersAccel: False
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
InstallationDate: Installed on 2015-01-19 (735 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140723)
IpRoute:
 default via 192.168.1.1 dev wlan0  proto static  metric 600 
 169.254.0.0/16 dev wlan0  scope link  metric 1000 
 192.168.1.0/24 dev wlan0  proto kernel  scope link  src 192.168.1.5  metric 600
MostRecentCrashID: bp-f36c5229-fdc5-4162-8935-6cbb22150802
Profile1Extensions: extensions.sqlite corrupt or missing
Profile1IncompatibleExtensions: Unavailable (corrupt or non-existant 
compatibility.ini or extensions.sqlite)
Profile1Locales: extensions.sqlite corrupt or missing
Profile1PrefSources: prefs.js
Profile1Themes: extensions.sqlite corrupt or missing
Profiles:
 Profile0 (Default) - LastVersion=50.1.0/20161209095719
 Profile1 - LastVersion=30.0/20140608211208 (Out of date)
RelatedPackageVersions:
 google-talkplugin 5.41.3.0-1
 adobe-flashplugin 1:20170110.1-0ubuntu0.16.04.1
RunningIncompatibleAddons: True
SourcePackage: firefox
SubmittedCrashIDs: bp-f36c5229-fdc5-4162-8935-6cbb22150802
UpgradeStatus: Upgraded to xenial on 2016-07-29 (178 days ago)
dmi.bios.date: 05/24/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: N76VB.205
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: N76VB
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.name: N76VB
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.

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


** Tags: amd64 apport-bug xenial

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

Title:
  Javascript "Slow script" message blocks Firefox exit

Status in firefox package in Ubuntu:
  New

Bug description:
  If the computer is running out of memory and one attempts to shut down
  Firefox while there're some scripts that are running continously(*)
  you get the "Do you want to stop the script?" message. And that
  message actually blocks Firefox from exiting despite the fact that the
  exit was initiated before the message appeared.

  (*) In my case the script was the Chat-Window script on VK.com
  (Russian social media site).

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: firefox 50.1.0+build2-0ubuntu0.16.04.1
  ProcVersionSignature: Ubuntu 4.4.0-59.80-generic 4.4.35
  Uname: Linux 4.4.0-59-generic x86_64
  AddonCompatCheckDisabled: False
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   volodya2950 F...m pulseaudio
   /dev/snd/controlC0:  volodya2950 F pulseaudio
  BuildID: 20161209095719
  Channel: Unavailable
  CurrentDesktop: XFCE
  Date: Mon Jan 23 20:13:28 2017
  DefaultProfileIncompatibleExtensions:
   English (South Africa) Language Pack - langpack-en...@firefox.mozilla.org

[Desktop-packages] [Bug 1658620] Re: Memory leak when scanning and deleting pages

2017-01-23 Thread Volodya
Note: If you do "New Document" the memory does get freed up as expected,
but on deletion it is "stuck".

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1658620

Title:
  Memory leak when scanning and deleting pages

Status in simple-scan package in Ubuntu:
  New

Bug description:
  To reproduce:
  1. Scan a few pages
  2. Note the memory useage
  3. Delete those pages (right click delete)
  4. Note the memory useage

  You can repeat those steps and note that the more and more memory is
  being used, even after you delete those pages. The memory doesn't get
  freed.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: simple-scan 3.20.0-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-59.80-generic 4.4.35
  Uname: Linux 4.4.0-59-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Mon Jan 23 12:10:01 2017
  InstallationDate: Installed on 2015-01-19 (734 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-59-generic 
root=/dev/mapper/xubuntu--vg-root ro quiet splash vt.handoff=7
  SourcePackage: simple-scan
  UpgradeStatus: Upgraded to xenial on 2016-07-29 (177 days ago)
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/simple-scan/+bug/1658620/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1658620] [NEW] Memory leak when scanning and deleting pages

2017-01-23 Thread Volodya
Public bug reported:

To reproduce:
1. Scan a few pages
2. Note the memory useage
3. Delete those pages (right click delete)
4. Note the memory useage

You can repeat those steps and note that the more and more memory is
being used, even after you delete those pages. The memory doesn't get
freed.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: simple-scan 3.20.0-0ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-59.80-generic 4.4.35
Uname: Linux 4.4.0-59-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
CurrentDesktop: XFCE
Date: Mon Jan 23 12:10:01 2017
InstallationDate: Installed on 2015-01-19 (734 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140723)
MachineType: ASUSTeK COMPUTER INC. N76VB
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-59-generic 
root=/dev/mapper/xubuntu--vg-root ro quiet splash vt.handoff=7
SourcePackage: simple-scan
UpgradeStatus: Upgraded to xenial on 2016-07-29 (177 days ago)
dmi.bios.date: 05/24/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: N76VB.205
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: N76VB
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.name: N76VB
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.

** Affects: simple-scan (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to simple-scan in Ubuntu.
https://bugs.launchpad.net/bugs/1658620

Title:
  Memory leak when scanning and deleting pages

Status in simple-scan package in Ubuntu:
  New

Bug description:
  To reproduce:
  1. Scan a few pages
  2. Note the memory useage
  3. Delete those pages (right click delete)
  4. Note the memory useage

  You can repeat those steps and note that the more and more memory is
  being used, even after you delete those pages. The memory doesn't get
  freed.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: simple-scan 3.20.0-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-59.80-generic 4.4.35
  Uname: Linux 4.4.0-59-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.5
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Mon Jan 23 12:10:01 2017
  InstallationDate: Installed on 2015-01-19 (734 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-59-generic 
root=/dev/mapper/xubuntu--vg-root ro quiet splash vt.handoff=7
  SourcePackage: simple-scan
  UpgradeStatus: Upgraded to xenial on 2016-07-29 (177 days ago)
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/simple-scan/+bug/1658620/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1638465] [NEW] TEXT ignores 0 (naught)

2016-11-01 Thread Volodya
Public bug reported:

To reproduce:
Type the following formula into a cell:
=TEXT(0;"#")
Note that there is an output of an empty text.

What i expect to happen:
When naught is translated into the text, i would expect the output to be "0". 
This causes strange behaviour in more complicated formula.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: libreoffice-calc 1:5.1.4-0ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-43.63-generic 4.4.21
Uname: Linux 4.4.0-43-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CurrentDesktop: XFCE
Date: Wed Nov  2 08:43:12 2016
InstallationDate: Installed on 2015-01-19 (652 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140723)
SourcePackage: libreoffice
UpgradeStatus: Upgraded to xenial on 2016-07-29 (95 days ago)

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


** Tags: amd64 apport-bug xenial

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

Title:
  TEXT ignores 0 (naught)

Status in libreoffice package in Ubuntu:
  New

Bug description:
  To reproduce:
  Type the following formula into a cell:
  =TEXT(0;"#")
  Note that there is an output of an empty text.

  What i expect to happen:
  When naught is translated into the text, i would expect the output to be "0". 
This causes strange behaviour in more complicated formula.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: libreoffice-calc 1:5.1.4-0ubuntu1
  ProcVersionSignature: Ubuntu 4.4.0-43.63-generic 4.4.21
  Uname: Linux 4.4.0-43-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Wed Nov  2 08:43:12 2016
  InstallationDate: Installed on 2015-01-19 (652 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  SourcePackage: libreoffice
  UpgradeStatus: Upgraded to xenial on 2016-07-29 (95 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1626882] Re: pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0' failed.

2016-09-23 Thread Volodya
After updating to the latest version of telegram-purple the issue has
disappeared.

** Changed in: pidgin (Ubuntu)
   Status: New => Invalid

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

Title:
  pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0'
  failed.

Status in pidgin package in Ubuntu:
  Invalid

Bug description:
  Pidgin is unable to start. When i attempt to do that via a terminal i get:
  $ pidgin 
  pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0' failed.
  Aborted (core dumped)

  The error has first occured last night, this morning i have updated
  the whole system via apt-get dist-upgrade and it persists.

  No new configurations were made to pidgin or libpurple prior to this.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: pidgin 1:2.10.12-0ubuntu5.1
  ProcVersionSignature: Ubuntu 4.4.0-38.57-generic 4.4.19
  Uname: Linux 4.4.0-38-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Fri Sep 23 10:45:03 2016
  InstallationDate: Installed on 2015-01-19 (612 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  SourcePackage: pidgin
  UpgradeStatus: Upgraded to xenial on 2016-07-29 (55 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1626882] Re: pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0' failed.

2016-09-23 Thread Volodya
I've submitted the bug to telegram-purple:
https://github.com/majn/telegram-purple/issues/311

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

Title:
  pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0'
  failed.

Status in pidgin package in Ubuntu:
  New

Bug description:
  Pidgin is unable to start. When i attempt to do that via a terminal i get:
  $ pidgin 
  pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0' failed.
  Aborted (core dumped)

  The error has first occured last night, this morning i have updated
  the whole system via apt-get dist-upgrade and it persists.

  No new configurations were made to pidgin or libpurple prior to this.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: pidgin 1:2.10.12-0ubuntu5.1
  ProcVersionSignature: Ubuntu 4.4.0-38.57-generic 4.4.19
  Uname: Linux 4.4.0-38-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Fri Sep 23 10:45:03 2016
  InstallationDate: Installed on 2015-01-19 (612 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  SourcePackage: pidgin
  UpgradeStatus: Upgraded to xenial on 2016-07-29 (55 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1626882] Re: pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0' failed.

2016-09-23 Thread Volodya
I have disabled connection to the telegram, and it starts up correctly,
but as soon as i turn it back on Pidgin crashes.

** Bug watch added: github.com/majn/telegram-purple/issues #311
   https://github.com/majn/telegram-purple/issues/311

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

Title:
  pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0'
  failed.

Status in pidgin package in Ubuntu:
  New

Bug description:
  Pidgin is unable to start. When i attempt to do that via a terminal i get:
  $ pidgin 
  pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0' failed.
  Aborted (core dumped)

  The error has first occured last night, this morning i have updated
  the whole system via apt-get dist-upgrade and it persists.

  No new configurations were made to pidgin or libpurple prior to this.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: pidgin 1:2.10.12-0ubuntu5.1
  ProcVersionSignature: Ubuntu 4.4.0-38.57-generic 4.4.19
  Uname: Linux 4.4.0-38-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Fri Sep 23 10:45:03 2016
  InstallationDate: Installed on 2015-01-19 (612 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  SourcePackage: pidgin
  UpgradeStatus: Upgraded to xenial on 2016-07-29 (55 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1626882] Re: pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0' failed.

2016-09-23 Thread Volodya
Another strange thing that happens. After the crash for about 30 seconds
i get about 300k download useage and about 50k upload (and that's my top
useage, yes, i have crap internet).

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

Title:
  pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0'
  failed.

Status in pidgin package in Ubuntu:
  New

Bug description:
  Pidgin is unable to start. When i attempt to do that via a terminal i get:
  $ pidgin 
  pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0' failed.
  Aborted (core dumped)

  The error has first occured last night, this morning i have updated
  the whole system via apt-get dist-upgrade and it persists.

  No new configurations were made to pidgin or libpurple prior to this.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: pidgin 1:2.10.12-0ubuntu5.1
  ProcVersionSignature: Ubuntu 4.4.0-38.57-generic 4.4.19
  Uname: Linux 4.4.0-38-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Fri Sep 23 10:45:03 2016
  InstallationDate: Installed on 2015-01-19 (612 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  SourcePackage: pidgin
  UpgradeStatus: Upgraded to xenial on 2016-07-29 (55 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1626882] Re: pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0' failed.

2016-09-23 Thread Volodya
$ pidgin -d
(10:49:47) prefs: Reading /home/volodya/.purple/prefs.xml
(10:49:47) prefs: Finished reading /home/volodya/.purple/prefs.xml
(10:49:47) prefs: purple_prefs_get_path: Unknown pref /pidgin/browsers/command
(10:49:47) dbus: okkk
(10:49:47) plugins: probing /usr/lib/pidgin/timestamp_format.so
(10:49:47) plugins: probing /usr/lib/pidgin/xmppconsole.so
(10:49:47) plugins: probing /usr/lib/pidgin/pidgin-otr.so
(10:49:47) plugins: probing /usr/lib/pidgin/xmppdisco.so
(10:49:47) plugins: probing /usr/lib/pidgin/markerline.so
(10:49:47) plugins: probing /usr/lib/pidgin/extplacement.so
(10:49:47) plugins: probing /usr/lib/pidgin/sendbutton.so
(10:49:47) plugins: probing /usr/lib/pidgin/history.so
(10:49:47) plugins: probing /usr/lib/pidgin/unity.so
(10:49:47) plugins: probing /usr/lib/pidgin/convcolors.so
(10:49:47) plugins: probing /usr/lib/pidgin/themeedit.so
(10:49:47) plugins: probing /usr/lib/pidgin/iconaway.so
(10:49:47) plugins: probing /usr/lib/pidgin/vvconfig.so
(10:49:47) plugins: probing /usr/lib/pidgin/gtkbuddynote.so
(10:49:47) plugins: probing /usr/lib/pidgin/pidginrc.so
(10:49:47) plugins: probing /usr/lib/pidgin/timestamp.so
(10:49:47) plugins: probing /usr/lib/pidgin/gestures.so
(10:49:47) plugins: probing /usr/lib/pidgin/spellchk.so
(10:49:47) plugins: probing /usr/lib/pidgin/cap.so
(10:49:47) plugins: probing /usr/lib/pidgin/notify.so
(10:49:47) plugins: probing /usr/lib/pidgin/musicmessaging.so
(10:49:47) plugins: probing /usr/lib/pidgin/ticker.so
(10:49:47) plugins: probing /usr/lib/purple-2/joinpart.so
(10:49:47) plugins: probing /usr/lib/purple-2/libyahoojp.so
(10:49:47) plugins: probing /usr/lib/purple-2/libbonjour.so
(10:49:47) plugins: probing /usr/lib/purple-2/libjabber.so
(10:49:47) plugins: /usr/lib/purple-2/libjabber.so is not usable because the 
'purple_init_plugin' symbol could not be found.  Does the plugin call the 
PURPLE_INIT_PLUGIN() macro?
(10:49:47) plugins: probing /usr/lib/purple-2/pidgin-libnotify.so
(10:49:47) plugins: probing /usr/lib/purple-2/libsametime.so
(10:49:47) plugins: /usr/lib/purple-2/libsametime.so has a prefs_info, but is a 
prpl. This is no longer supported.
(10:49:47) plugins: probing /usr/lib/purple-2/perl.so
(10:49:47) plugins: probing /usr/lib/purple-2/libicq.so
(10:49:47) plugins: probing /usr/lib/purple-2/psychic.so
(10:49:47) plugins: probing /usr/lib/purple-2/statenotify.so
(10:49:47) plugins: probing /usr/lib/purple-2/offlinemsg.so
(10:49:47) plugins: probing /usr/lib/purple-2/libmyspace.so
(10:49:47) plugins: probing /usr/lib/purple-2/nss-prefs.so
(10:49:47) plugins: probing /usr/lib/purple-2/buddynote.so
(10:49:47) plugins: probing /usr/lib/purple-2/tcl.so
(10:49:47) plugins: probing /usr/lib/purple-2/log_reader.so
(10:49:47) plugins: probing /usr/lib/purple-2/idle.so
(10:49:47) plugins: probing /usr/lib/purple-2/libirc.so
(10:49:47) plugins: probing /usr/lib/purple-2/autoaccept.so
(10:49:47) plugins: probing /usr/lib/purple-2/libyahoo.so
(10:49:47) plugins: probing /usr/lib/purple-2/libxmpp.so
(10:49:47) plugins: probing /usr/lib/purple-2/libnovell.so
(10:49:47) plugins: probing /usr/lib/purple-2/libmsn.so
(10:49:47) plugins: probing /usr/lib/purple-2/liboscar.so
(10:49:47) plugins: /usr/lib/purple-2/liboscar.so is not usable because the 
'purple_init_plugin' symbol could not be found.  Does the plugin call the 
PURPLE_INIT_PLUGIN() macro?
(10:49:47) plugins: probing /usr/lib/purple-2/libsimple.so
(10:49:47) plugins: probing /usr/lib/purple-2/libgg.so
(10:49:47) plugins: probing /usr/lib/purple-2/newline.so
(10:49:47) plugins: probing /usr/lib/purple-2/ssl-nss.so
(10:49:47) plugins: probing /usr/lib/purple-2/libzephyr.so
(10:49:47) plugins: probing /usr/lib/purple-2/dbus-example.so
(10:49:47) plugins: probing /usr/lib/purple-2/ssl.so
(10:49:47) plugins: probing /usr/lib/purple-2/libaim.so
(10:49:47) plugins: probing /usr/lib/purple-2/telegram-purple.so
(10:49:47) plugins: probing /usr/lib/purple-2/libmxit.so
(10:49:47) prpl-loubserp-mxit: Loading MXit libPurple plugin...
(10:49:47) plugins: probing /usr/lib/purple-2/libymsg.so
(10:49:47) plugins: /usr/lib/purple-2/libymsg.so is not usable because the 
'purple_init_plugin' symbol could not be found.  Does the plugin call the 
PURPLE_INIT_PLUGIN() macro?
(10:49:47) util: Reading file xmpp-caps.xml from directory /home/volodya/.purple
(10:49:47) jabber: creating hash tables for data objects
(10:49:47) gg: Loading Gadu-Gadu protocol plugin with libgadu 1.12.1...
(10:49:47) prefs: /purple/status/scores/offline changed, scheduling save.
(10:49:47) prefs: /purple/status/scores/available changed, scheduling save.
(10:49:47) prefs: /purple/status/scores/invisible changed, scheduling save.
(10:49:47) prefs: /purple/status/scores/away changed, scheduling save.
(10:49:47) prefs: /purple/status/scores/extended_away changed, scheduling save.
(10:49:47) prefs: /purple/status/scores/idle changed, scheduling save.
(10:49:47) prefs: /purple/status/scores/offline_msg changed, scheduling save.
(10:49:47

[Desktop-packages] [Bug 1626882] [NEW] pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0' failed.

2016-09-23 Thread Volodya
Public bug reported:

Pidgin is unable to start. When i attempt to do that via a terminal i get:
$ pidgin 
pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0' failed.
Aborted (core dumped)

The error has first occured last night, this morning i have updated the
whole system via apt-get dist-upgrade and it persists.

No new configurations were made to pidgin or libpurple prior to this.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: pidgin 1:2.10.12-0ubuntu5.1
ProcVersionSignature: Ubuntu 4.4.0-38.57-generic 4.4.19
Uname: Linux 4.4.0-38-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CurrentDesktop: XFCE
Date: Fri Sep 23 10:45:03 2016
InstallationDate: Installed on 2015-01-19 (612 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140723)
SourcePackage: pidgin
UpgradeStatus: Upgraded to xenial on 2016-07-29 (55 days ago)

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


** Tags: amd64 apport-bug xenial

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

Title:
  pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0'
  failed.

Status in pidgin package in Ubuntu:
  New

Bug description:
  Pidgin is unable to start. When i attempt to do that via a terminal i get:
  $ pidgin 
  pidgin: structures.c:1205: tglf_fetch_message_media: Assertion `0' failed.
  Aborted (core dumped)

  The error has first occured last night, this morning i have updated
  the whole system via apt-get dist-upgrade and it persists.

  No new configurations were made to pidgin or libpurple prior to this.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: pidgin 1:2.10.12-0ubuntu5.1
  ProcVersionSignature: Ubuntu 4.4.0-38.57-generic 4.4.19
  Uname: Linux 4.4.0-38-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Fri Sep 23 10:45:03 2016
  InstallationDate: Installed on 2015-01-19 (612 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  SourcePackage: pidgin
  UpgradeStatus: Upgraded to xenial on 2016-07-29 (55 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1540759] Re: Mouse cursor appears in the wrong position in Gimp

2016-02-03 Thread Volodya
In that case this is something that i do not have.

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

Title:
  Mouse cursor appears in the wrong position in Gimp

Status in gimp package in Ubuntu:
  New

Bug description:
  If you take a look at this video:
  https://www.youtube.com/watch?v=48XLvblnz7A i show there what the
  problem is.

  But i'll describe it textually here:

  What i do:
  Open any image in Gimp
  Select any tool and try to work with it on the image
  The cursor that is applying that tool is not where the mouse cursor of the 
Operating System is

  It should be noted that i'm on a dual monitor machine and that the
  "fake" cursor moves slower than the real one. So it maybe related to
  that.

  I am yet to find a workaround this problem (apart from opening the
  window on both screens and hoping to be able to hit the right spot.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gimp 2.8.10-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-74.118-generic 3.13.11-ckt30
  Uname: Linux 3.13.0-74-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Tue Feb  2 09:09:18 2016
  InstallationDate: Installed on 2015-01-19 (378 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  SourcePackage: gimp
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1540759] Re: Mouse cursor appears in the wrong position in Gimp

2016-02-02 Thread Volodya
I should clarify that no such things happen in any other application.

My hardware section has: Additional Drivers, Bluetooth Manager, Display,
Keyboard, Mouse and Touchpad, Network Connections, Power Manager,
Printers, Removable Drives and Media. None of these can be abbreviated
as ARandR, so i don't understand what i should be checking.

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

Title:
  Mouse cursor appears in the wrong position in Gimp

Status in gimp package in Ubuntu:
  New

Bug description:
  If you take a look at this video:
  https://www.youtube.com/watch?v=48XLvblnz7A i show there what the
  problem is.

  But i'll describe it textually here:

  What i do:
  Open any image in Gimp
  Select any tool and try to work with it on the image
  The cursor that is applying that tool is not where the mouse cursor of the 
Operating System is

  It should be noted that i'm on a dual monitor machine and that the
  "fake" cursor moves slower than the real one. So it maybe related to
  that.

  I am yet to find a workaround this problem (apart from opening the
  window on both screens and hoping to be able to hit the right spot.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gimp 2.8.10-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-74.118-generic 3.13.11-ckt30
  Uname: Linux 3.13.0-74-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Tue Feb  2 09:09:18 2016
  InstallationDate: Installed on 2015-01-19 (378 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  SourcePackage: gimp
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1540759] [NEW] Mouse cursor appears in the wrong position in Gimp

2016-02-01 Thread Volodya
Public bug reported:

If you take a look at this video:
https://www.youtube.com/watch?v=48XLvblnz7A i show there what the
problem is.

But i'll describe it textually here:

What i do:
Open any image in Gimp
Select any tool and try to work with it on the image
The cursor that is applying that tool is not where the mouse cursor of the 
Operating System is

It should be noted that i'm on a dual monitor machine and that the
"fake" cursor moves slower than the real one. So it maybe related to
that.

I am yet to find a workaround this problem (apart from opening the
window on both screens and hoping to be able to hit the right spot.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: gimp 2.8.10-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-74.118-generic 3.13.11-ckt30
Uname: Linux 3.13.0-74-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
CurrentDesktop: XFCE
Date: Tue Feb  2 09:09:18 2016
InstallationDate: Installed on 2015-01-19 (378 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140723)
SourcePackage: gimp
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug trusty

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

Title:
  Mouse cursor appears in the wrong position in Gimp

Status in gimp package in Ubuntu:
  New

Bug description:
  If you take a look at this video:
  https://www.youtube.com/watch?v=48XLvblnz7A i show there what the
  problem is.

  But i'll describe it textually here:

  What i do:
  Open any image in Gimp
  Select any tool and try to work with it on the image
  The cursor that is applying that tool is not where the mouse cursor of the 
Operating System is

  It should be noted that i'm on a dual monitor machine and that the
  "fake" cursor moves slower than the real one. So it maybe related to
  that.

  I am yet to find a workaround this problem (apart from opening the
  window on both screens and hoping to be able to hit the right spot.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gimp 2.8.10-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-74.118-generic 3.13.11-ckt30
  Uname: Linux 3.13.0-74-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Tue Feb  2 09:09:18 2016
  InstallationDate: Installed on 2015-01-19 (378 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  SourcePackage: gimp
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1500719] [NEW] Gimp crashes if one closes the window before export completes

2015-09-29 Thread Volodya
Public bug reported:

To reproduce:

1. Create an image
2. Create a second image
2. Press Ctrl+Shift+E to export (but don't export yet)
3. Close the window with the image that you are exporting.
4. Complete the export save.


What happens:

GIMP crashes after a few seconds of trying to figure stuff out.

What i expect to happen:

Either don't allow me to close the window, while dialog is running, or
recover by assuming that the window was closed normally.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: gimp 2.8.10-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-63.103-generic 3.13.11-ckt25
Uname: Linux 3.13.0-63-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.15
Architecture: amd64
CurrentDesktop: XFCE
Date: Tue Sep 29 09:24:51 2015
InstallationDate: Installed on 2015-01-19 (252 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140723)
SourcePackage: gimp
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug trusty

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

Title:
  Gimp crashes if one closes the window before export completes

Status in gimp package in Ubuntu:
  New

Bug description:
  To reproduce:

  1. Create an image
  2. Create a second image
  2. Press Ctrl+Shift+E to export (but don't export yet)
  3. Close the window with the image that you are exporting.
  4. Complete the export save.

  
  What happens:

  GIMP crashes after a few seconds of trying to figure stuff out.

  What i expect to happen:

  Either don't allow me to close the window, while dialog is running, or
  recover by assuming that the window was closed normally.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gimp 2.8.10-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-63.103-generic 3.13.11-ckt25
  Uname: Linux 3.13.0-63-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.15
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Tue Sep 29 09:24:51 2015
  InstallationDate: Installed on 2015-01-19 (252 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140723)
  SourcePackage: gimp
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 357722] Re: Maximise does not show hot-key

2015-08-28 Thread Volodya
Is this Ubuntu policy now?

Step 1, get a bug.
Step 2, wait a few years.
Step 3, close the bug, since it is old.

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

Title:
  Maximise does not show hot-key

Status in metacity package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: gnome

  To reproduce:
  Start an application (almost any one)
  Make sure it's not maximised
  Press Alt+Space

  Minimise, Move, and Resize will show their hot-keys, but Maximise will
  not show its

  Expected behaviour:
  Maximise menu item should display Alt+F10 on its right.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1455918] Re: After changing password via icq.com, i am unable to login to ICQ network via pidgin

2015-08-22 Thread Volodya
Changed my password to have exactly 8 characters (not 8 or more, but 8
exactly) and the problem disappears.

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

Title:
  After changing password via icq.com, i am unable to login to ICQ
  network via pidgin

Status in pidgin package in Ubuntu:
  Confirmed

Bug description:
  Everything worked fine, and then i went to icq.com and changed my icq
  password from there.  Pidgin stopped letting me in with Incorrect
  password error.

  I have attempted several times to change the password to different
  values, even trying to change it to the exact same password that
  worked before. Nothing helps.

  I am able to login to the Web ICQ available on the site, i am able
  to get into the profile settings on icq.com, the password is valid.

  It does not consist of any strange characters. Only latin letters and
  numbers are used.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: pidgin 1:2.10.9-0ubuntu3.2
  ProcVersionSignature: Ubuntu 3.13.0-49.83-generic 3.13.11-ckt17
  Uname: Linux 3.13.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.10
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Sun May 17 17:00:49 2015
  InstallationDate: Installed on 2015-01-19 (118 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140723)
  SourcePackage: pidgin
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1468778] [NEW] Unable to login to ICQ after changing pass/attaching email

2015-06-25 Thread Volodya
Public bug reported:

I have changed a password via the website (icq.com) and have also
attached the e-mail from there.

Since then i am unable to login via pidgin.

I have tried to login via ICQ number and via Email. Both were
unsuccessful.

The error message is incorrect password.


Perhaps the upgrade to 2.10.11 is needed. 
https://www.mail-archive.com/debian-bugs-closed@lists.debian.org/msg472701.html

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: pidgin 1:2.10.9-0ubuntu3.2
ProcVersionSignature: Ubuntu 3.13.0-54.91-generic 3.13.11-ckt20
Uname: Linux 3.13.0-54-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: amd64
CurrentDesktop: XFCE
Date: Thu Jun 25 17:14:29 2015
InstallationDate: Installed on 2015-01-19 (157 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS Trusty Tahr - Release amd64 (20140723)
SourcePackage: pidgin
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug trusty

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

Title:
  Unable to login to ICQ after changing pass/attaching email

Status in pidgin package in Ubuntu:
  New

Bug description:
  I have changed a password via the website (icq.com) and have also
  attached the e-mail from there.

  Since then i am unable to login via pidgin.

  I have tried to login via ICQ number and via Email. Both were
  unsuccessful.

  The error message is incorrect password.

  
  Perhaps the upgrade to 2.10.11 is needed. 
https://www.mail-archive.com/debian-bugs-closed@lists.debian.org/msg472701.html

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: pidgin 1:2.10.9-0ubuntu3.2
  ProcVersionSignature: Ubuntu 3.13.0-54.91-generic 3.13.11-ckt20
  Uname: Linux 3.13.0-54-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Thu Jun 25 17:14:29 2015
  InstallationDate: Installed on 2015-01-19 (157 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140723)
  SourcePackage: pidgin
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1468778] Re: Unable to login to ICQ after changing pass/attaching email

2015-06-25 Thread Volodya
Resolved the issue by changing the password to *exactly* 8 characters in
length.

But this bug should be fixed!

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

Title:
  Unable to login to ICQ after changing pass/attaching email

Status in pidgin package in Ubuntu:
  New

Bug description:
  I have changed a password via the website (icq.com) and have also
  attached the e-mail from there.

  Since then i am unable to login via pidgin.

  I have tried to login via ICQ number and via Email. Both were
  unsuccessful.

  The error message is incorrect password.

  
  Perhaps the upgrade to 2.10.11 is needed. 
https://www.mail-archive.com/debian-bugs-closed@lists.debian.org/msg472701.html

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: pidgin 1:2.10.9-0ubuntu3.2
  ProcVersionSignature: Ubuntu 3.13.0-54.91-generic 3.13.11-ckt20
  Uname: Linux 3.13.0-54-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Thu Jun 25 17:14:29 2015
  InstallationDate: Installed on 2015-01-19 (157 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140723)
  SourcePackage: pidgin
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1455918] [NEW] After changing password via icq.com, i am unable to login to ICQ network via pidgin

2015-05-17 Thread Volodya
Public bug reported:

Everything worked fine, and then i went to icq.com and changed my icq
password from there.  Pidgin stopped letting me in with Incorrect
password error.

I have attempted several times to change the password to different
values, even trying to change it to the exact same password that worked
before. Nothing helps.

I am able to login to the Web ICQ available on the site, i am able to
get into the profile settings on icq.com, the password is valid.

It does not consist of any strange characters. Only latin letters and
numbers are used.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: pidgin 1:2.10.9-0ubuntu3.2
ProcVersionSignature: Ubuntu 3.13.0-49.83-generic 3.13.11-ckt17
Uname: Linux 3.13.0-49-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.10
Architecture: amd64
CurrentDesktop: XFCE
Date: Sun May 17 17:00:49 2015
InstallationDate: Installed on 2015-01-19 (118 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS Trusty Tahr - Release amd64 (20140723)
SourcePackage: pidgin
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug trusty

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

Title:
  After changing password via icq.com, i am unable to login to ICQ
  network via pidgin

Status in pidgin package in Ubuntu:
  New

Bug description:
  Everything worked fine, and then i went to icq.com and changed my icq
  password from there.  Pidgin stopped letting me in with Incorrect
  password error.

  I have attempted several times to change the password to different
  values, even trying to change it to the exact same password that
  worked before. Nothing helps.

  I am able to login to the Web ICQ available on the site, i am able
  to get into the profile settings on icq.com, the password is valid.

  It does not consist of any strange characters. Only latin letters and
  numbers are used.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: pidgin 1:2.10.9-0ubuntu3.2
  ProcVersionSignature: Ubuntu 3.13.0-49.83-generic 3.13.11-ckt17
  Uname: Linux 3.13.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.10
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Sun May 17 17:00:49 2015
  InstallationDate: Installed on 2015-01-19 (118 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140723)
  SourcePackage: pidgin
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1447023] [NEW] --save doesn't work

2015-04-22 Thread Volodya
Public bug reported:

From the man page:

   Bug reports can be written to a file by using the --save option  or  by
   using apport-cli.

Trying

apport-bug --save xbill

I get
 ** (apport-gtk:4640): WARNING **: Couldn't connect to accessibility bus: 
Failed to connect to socket /tmp/dbus-p4EPhzpDoP: Connection refused

And there is nothing in the temp directory that resembles the saved
apport report.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: apport 2.14.1-0ubuntu3.8
ProcVersionSignature: Ubuntu 3.13.0-49.83-generic 3.13.11-ckt17
Uname: Linux 3.13.0-49-generic x86_64
ApportLog:
 
ApportVersion: 2.14.1-0ubuntu3.8
Architecture: amd64
CrashReports:
 640:0:116:205680:2015-04-20 09:19:52.441119670 +0300:2015-04-20 
09:19:53.441119670 +0300:/var/crash/_usr_sbin_openvpn.0.crash
 640:1000:116:47294681:2015-04-20 02:39:01.812246799 +0300:2015-04-20 
02:39:23.220247497 
+0300:/var/crash/_usr_lib_chromium-browser_chromium-browser.1000.crash
 640:1000:116:19874991:2015-04-16 12:48:40.704705953 +0300:2015-04-16 
12:48:41.704705953 +0300:/var/crash/_usr_games_glob2.1000.crash
CurrentDesktop: XFCE
Date: Wed Apr 22 11:50:02 2015
InstallationDate: Installed on 2015-01-19 (92 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS Trusty Tahr - Release amd64 (20140723)
PackageArchitecture: all
SourcePackage: apport
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug trusty

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

Title:
  --save doesn't work

Status in apport package in Ubuntu:
  New

Bug description:
  From the man page:

 Bug reports can be written to a file by using the --save option  or  by
 using apport-cli.

  Trying

  apport-bug --save xbill

  I get
   ** (apport-gtk:4640): WARNING **: Couldn't connect to accessibility bus: 
Failed to connect to socket /tmp/dbus-p4EPhzpDoP: Connection refused

  And there is nothing in the temp directory that resembles the saved
  apport report.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: apport 2.14.1-0ubuntu3.8
  ProcVersionSignature: Ubuntu 3.13.0-49.83-generic 3.13.11-ckt17
  Uname: Linux 3.13.0-49-generic x86_64
  ApportLog:
   
  ApportVersion: 2.14.1-0ubuntu3.8
  Architecture: amd64
  CrashReports:
   640:0:116:205680:2015-04-20 09:19:52.441119670 +0300:2015-04-20 
09:19:53.441119670 +0300:/var/crash/_usr_sbin_openvpn.0.crash
   640:1000:116:47294681:2015-04-20 02:39:01.812246799 +0300:2015-04-20 
02:39:23.220247497 
+0300:/var/crash/_usr_lib_chromium-browser_chromium-browser.1000.crash
   640:1000:116:19874991:2015-04-16 12:48:40.704705953 +0300:2015-04-16 
12:48:41.704705953 +0300:/var/crash/_usr_games_glob2.1000.crash
  CurrentDesktop: XFCE
  Date: Wed Apr 22 11:50:02 2015
  InstallationDate: Installed on 2015-01-19 (92 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140723)
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 997934] Re: Spellcheck does not detect any mis-spelled words on 12.04

2014-12-27 Thread Volodya
what's incomplete

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

Title:
  Spellcheck does not detect any mis-spelled words on 12.04

Status in LibreOffice Productivity Suite:
  Incomplete
Status in libreoffice package in Ubuntu:
  Confirmed

Bug description:
  This has been the case since Beta 2.

  To reproduce:

  1) Type out a load of rubbish on the keyboard as well as a few correctly 
spelled words. I used vmw;qbjk aoeuasnth aoeu house in the street
  2) Press F7 to initiate the spell check.

  Actual Result: The spell check notifies the user of completion without any 
recognition of errors.
  Expected Result: The spell check should highlight each misspelled word and 
offer alternatives.

  WORKAROUND: Open the dash and run Language Support
  2) Under the 'Language' tab, choose another variant of English and drag it 
above the US English so it takes precedence.
  3) Click Apply System-wide and log out.

  On logging back in, spell check will work.

  Not reproducible in Xubuntu 32-bit.

  lsb_release -rd
  Description:  Ubuntu 12.04 LTS
  Release:  12.04

  apt-cache policy libreoffice-writer
  libreoffice-writer:
Installed: 1:3.5.3-0ubuntu1
Candidate: 1:3.5.3-0ubuntu1
Version table:
   *** 1:3.5.3-0ubuntu1 0
  500 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main i386 
Packages
  100 /var/lib/dpkg/status
   1:3.5.2-2ubuntu1 0
  500 http://us.archive.ubuntu.com/ubuntu/ precise/main i386 Packages

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: libreoffice-writer 1:3.5.3-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-24.37-generic-pae 3.2.14
  Uname: Linux 3.2.0-24-generic-pae i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: i386
  Date: Fri May 11 08:53:51 2012
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Beta i386 (20120328)
  ProcEnviron:
   LANGUAGE=en_IE:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_IE.UTF-8
   SHELL=/bin/bash
  SourcePackage: libreoffice
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1394497] Re: MKV files display subtitles, despite the metadata requesting otherwise

2014-12-25 Thread Volodya
This is still happening with Ubuntu 14.10

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

Title:
  MKV files display subtitles, despite the metadata requesting otherwise

Status in gstreamer1.0 package in Ubuntu:
  New

Bug description:
  I have Matroska files with the subtitles in them. The subtitles are
  clearly marked as not playable by default (unless chosen). The extract
  from the mkvinfo is:

  | + A track
  |  + Track number: 3 (track ID for mkvmerge  mkvextract: 2)
  |  + Track UID: 2415072177
  |  + Track type: subtitles
  |  + Default flag: 0
  |  + Lacing flag: 0
  |  + Codec ID: S_TEXT/UTF8

  As you can see default flag is 0.

  What happens:
  Subtitles begin to display when the file is played, i then am forced to turn 
them off.

  What i expect to happen:
  Totem should respect the flags set in the Matroska metadata and only display 
by default that which should be displayed by default.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: libgstreamer1.0-0 1.2.4-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-39.66-generic 3.13.11.8
  Uname: Linux 3.13.0-39-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.5
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Nov 20 11:38:38 2014
  InstallationDate: Installed on 2014-10-02 (48 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140722.2)
  SourcePackage: gstreamer1.0
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1405094] [NEW] Laptop screen stops working when DVI screen is connected at boot

2014-12-23 Thread Volodya
Public bug reported:

This problem is new with 14.10, did not exist with 14.04

What i do to reproduce:

Turn laptop off
Connect a screen via DVI
Turn computer on

What happens:

Laptop screen stops working as soon as the OS begins to boot
Once i login, it's clear that the OS thinks that the screen is working, since i 
can move my mouse into the area of that screen and move it around there. I can 
drag windows there and if i can grab them afterwards, i can move them back into 
the visible DVI screen.
Disconnecting DVI screen does *not* turn on the Laptop screen
The only way to get laptop screen to work is to boot and login without DVI and 
connect it only afterwards.

What i expect to happen:

When booting with two screens, both should work with the settings in
place.

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: unity 7.3.1+14.10.20141016-0ubuntu1
ProcVersionSignature: Ubuntu 3.16.0-29.39-generic 3.16.7-ckt2
Uname: Linux 3.16.0-29-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.7-0ubuntu8
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Tue Dec 23 11:52:55 2014
DistUpgraded: Fresh install
DistroCodename: utopic
DistroVariant: ubuntu
GraphicsCard:
 Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] (rev 
09) (prog-if 00 [VGA controller])
   Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
   Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
InstallationDate: Installed on 2014-12-22 (0 days ago)
InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Release amd64 (20141022.1)
MachineType: ASUSTeK COMPUTER INC. N76VB
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.16.0-29-generic 
root=UUID=c1b99000-5c86-4711-946a-ba820ac888d0 ro quiet splash vt.handoff=7
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/24/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: N76VB.205
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: N76VB
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.name: N76VB
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.
version.compiz: compiz 1:0.9.12+14.10.20140918-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.56-1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.3.2-0ubuntu0.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.3.2-0ubuntu0.1
version.xserver-xorg-core: xserver-xorg-core 2:1.16.0-1ubuntu1.2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.4.0-2ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.914-1~exp1ubuntu4.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.11-1ubuntu2
xserver.bootTime: Mon Dec 22 21:31:52 2014
xserver.configfile: default
xserver.errors:
 Failed to load module nvidia (module does not exist, 0)
 Failed to load module nvidia (module does not exist, 0)
 NOUVEAU(G0): [XvMC] Failed to initialize extension.
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id8605 
 vendor AUO
xserver.version: 2:1.16.0-1ubuntu1.2

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


** Tags: amd64 apport-bug compiz-0.9 ubuntu utopic

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/1405094

Title:
  Laptop screen stops working when DVI screen is connected at boot

Status in unity package in Ubuntu:
  New

Bug description:
  This problem is new with 14.10, did not exist with 14.04

  What i do to reproduce:

  Turn laptop off
  Connect a screen via DVI
  Turn computer on

  What happens:

  Laptop screen stops working as soon as the OS begins to boot
  Once i login, it's clear that the OS thinks that the screen is working, since 
i can move my mouse into the area of that screen and move it around there. I 
can drag windows there and if i can grab them afterwards, i can move them back 
into the visible DVI screen.
  Disconnecting DVI screen does *not* turn on the Laptop screen
  The only way to get laptop screen to work is to boot and login without DVI 
and connect it only afterwards.

  What i expect to happen:

  When booting with two screens, both should work with the 

[Desktop-packages] [Bug 1384909] Re: Always on top windows go into the background after the dialog

2014-12-09 Thread Volodya
Seems to have been fixed in the latest 14.04

** Changed in: unity (Ubuntu)
   Status: Incomplete = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/1384909

Title:
  Always on top windows go into the background after the dialog

Status in Unity:
  Incomplete
Status in unity package in Ubuntu:
  Fix Released

Bug description:
  Here i will us specific applications as an example, but i have checked
  with others as well. Using specific ones for clarity.

  To replicate:

  Open a file manager
  Start a video in VLC
  Set Always on top on VLC window
  Observe that you can continue browsing files in the file manager, and the VLC 
window will remain on top of the file manager
  Press delete on any file
  The dialog box to confirm the deletion will open

  What happens:

  VLC window will go below the file manager window, and will stay below
  even after the dialog will go away

  What i expect to happen:

  Dialog should go over the VLC window, but the file manager should not
  go over it.

  alternatively if that isn't possible

  VLC window should become visible again as soon as the dialog gets
  dismissed.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: unity 7.2.2+14.04.20140714-0ubuntu1.1
  ProcVersionSignature: Ubuntu 3.13.0-37.64-generic 3.13.11.7
  Uname: Linux 3.13.0-37-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.5
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CurrentDesktop: Unity
  Date: Fri Oct 24 00:20:15 2014
  InstallationDate: Installed on 2014-10-02 (21 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140722.2)
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1394497] [NEW] MKV files display subtitles, despite the metadata requesting otherwise

2014-11-20 Thread Volodya
Public bug reported:

I have Matroska files with the subtitles in them. The subtitles are
clearly marked as not playable by default (unless chosen). The extract
from the mkvinfo is:

| + A track
|  + Track number: 3 (track ID for mkvmerge  mkvextract: 2)
|  + Track UID: 2415072177
|  + Track type: subtitles
|  + Default flag: 0
|  + Lacing flag: 0
|  + Codec ID: S_TEXT/UTF8

As you can see default flag is 0.

What happens:
Subtitles begin to display when the file is played, i then am forced to turn 
them off.

What i expect to happen:
Totem should respect the flags set in the Matroska metadata and only display by 
default that which should be displayed by default.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: libgstreamer1.0-0 1.2.4-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-39.66-generic 3.13.11.8
Uname: Linux 3.13.0-39-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.5
Architecture: amd64
CurrentDesktop: Unity
Date: Thu Nov 20 11:38:38 2014
InstallationDate: Installed on 2014-10-02 (48 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 (20140722.2)
SourcePackage: gstreamer1.0
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug trusty

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

Title:
  MKV files display subtitles, despite the metadata requesting otherwise

Status in “gstreamer1.0” package in Ubuntu:
  New

Bug description:
  I have Matroska files with the subtitles in them. The subtitles are
  clearly marked as not playable by default (unless chosen). The extract
  from the mkvinfo is:

  | + A track
  |  + Track number: 3 (track ID for mkvmerge  mkvextract: 2)
  |  + Track UID: 2415072177
  |  + Track type: subtitles
  |  + Default flag: 0
  |  + Lacing flag: 0
  |  + Codec ID: S_TEXT/UTF8

  As you can see default flag is 0.

  What happens:
  Subtitles begin to display when the file is played, i then am forced to turn 
them off.

  What i expect to happen:
  Totem should respect the flags set in the Matroska metadata and only display 
by default that which should be displayed by default.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: libgstreamer1.0-0 1.2.4-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-39.66-generic 3.13.11.8
  Uname: Linux 3.13.0-39-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.5
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Nov 20 11:38:38 2014
  InstallationDate: Installed on 2014-10-02 (48 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140722.2)
  SourcePackage: gstreamer1.0
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 358391] Re: Window games should start in the centre of the screen

2014-11-19 Thread Volodya
** Changed in: zblast (Ubuntu)
   Status: New = Invalid

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

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

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

** Changed in: billard-gl (Ubuntu)
   Status: New = Invalid

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

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

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

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

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

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

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

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

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

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

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

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

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

** Changed in: gnome-sudoku (Ubuntu)
   Status: New = Invalid

** Changed in: hex-a-hop (Ubuntu)
   Status: New = Invalid

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

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

Title:
  Window games should start in the centre of the screen

Status in “alienblaster” package in Ubuntu:
  Invalid
Status in “amphetamine” package in Ubuntu:
  Invalid
Status in “anagramarama” package in Ubuntu:
  Invalid
Status in “atomix” package in Ubuntu:
  Won't Fix
Status in “battleball” package in Ubuntu:
  Invalid
Status in “billard-gl” package in Ubuntu:
  Invalid
Status in “biloba” package in Ubuntu:
  Invalid
Status in “blobwars” package in Ubuntu:
  Invalid
Status in “bomberclone” package in Ubuntu:
  Invalid
Status in “boswars” package in Ubuntu:
  Invalid
Status in “burgerspace” package in Ubuntu:
  Invalid
Status in “defendguin” package in Ubuntu:
  Invalid
Status in “einstein” package in Ubuntu:
  Invalid
Status in “freedoom” package in Ubuntu:
  Invalid
Status in “glchess” package in Ubuntu:
  Invalid
Status in “gmult” package in Ubuntu:
  Invalid
Status in “gnome-games” package in Ubuntu:
  Invalid
Status in “gnome-sudoku” package in Ubuntu:
  Invalid
Status in “gnujump” package in Ubuntu:
  Invalid
Status in “gnurobots” package in Ubuntu:
  Invalid
Status in “gravitywars” package in Ubuntu:
  Invalid
Status in “gunroar” package in Ubuntu:
  Invalid
Status in “hex-a-hop” package in Ubuntu:
  Invalid
Status in “pacman” package in Ubuntu:
  Invalid
Status in “pathological” package in Ubuntu:
  Invalid
Status in “pingus” package in Ubuntu:
  Invalid
Status in “singularity” package in Ubuntu:
  Invalid
Status in “slingshot” package in Ubuntu:
  Won't Fix
Status in “spider” package in Ubuntu:
  Invalid
Status in “xconq” package in Ubuntu:
  Invalid
Status in “xdigger” package in Ubuntu:
  Invalid
Status in “zblast” package in Ubuntu:
  Invalid

Bug description:
  To reporduce:
  Start a game
  Note that (most) games will start in the upper-left corner of the screen, 
which is not very visually appealing.

  Expected behaviour:
  Games should start at the centre of the screen.

  Games which need to be fixed:
  Alien Blaster
  Amphetamine
  Anagramarama
  Atomic Tanks
  Atomix
  Battleball
  BilliardGL
  Biloba
  Black Jack (partially)
  Blobwars
  Bomberclone
  Bos Wars
  Burger Space
  Defendguin
  Einstein (when in Window mode clearly)
  Emilia Pinball
  Five or More
  Four-in-a-Row
  FreeCell
  FreeDoom
  glChess
  Gnometris
  GNUjump
  Gravity Wars
  Gunroar
  Hex-a-Hop
  lagno
  Klotski
  Majjongg (solitaire)
  Mines
  Multiplication Puzzle
  Nibbles
  Pacman (sort of... it's close to centre, but not there)
  Pathological
  Pingus
  Robots
  Same Gnome
  Singularity
  Slingshot
  Spider
  Sudoku
  Tali
  Tetravex
  Ur-Quan Masters
  xConq
  xDigger
  ZBlast

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1384909] [NEW] Always on top windows go into the background after the dialog

2014-10-23 Thread Volodya
Public bug reported:

Here i will us specific applications as an example, but i have checked
with others as well. Using specific ones for clarity.

To replicate:

Open a file manager
Start a video in VLC
Set Always on top on VLC window
Observe that you can continue browsing files in the file manager, and the VLC 
window will remain on top of the file manager
Press delete on any file
The dialog box to confirm the deletion will open

What happens:

VLC window will go below the file manager window, and will stay below
even after the dialog will go away

What i expect to happen:

Dialog should go over the VLC window, but the file manager should not go
over it.

alternatively if that isn't possible

VLC window should become visible again as soon as the dialog gets
dismissed.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: unity 7.2.2+14.04.20140714-0ubuntu1.1
ProcVersionSignature: Ubuntu 3.13.0-37.64-generic 3.13.11.7
Uname: Linux 3.13.0-37-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.5
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CurrentDesktop: Unity
Date: Fri Oct 24 00:20:15 2014
InstallationDate: Installed on 2014-10-02 (21 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 (20140722.2)
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug trusty

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/1384909

Title:
  Always on top windows go into the background after the dialog

Status in “unity” package in Ubuntu:
  New

Bug description:
  Here i will us specific applications as an example, but i have checked
  with others as well. Using specific ones for clarity.

  To replicate:

  Open a file manager
  Start a video in VLC
  Set Always on top on VLC window
  Observe that you can continue browsing files in the file manager, and the VLC 
window will remain on top of the file manager
  Press delete on any file
  The dialog box to confirm the deletion will open

  What happens:

  VLC window will go below the file manager window, and will stay below
  even after the dialog will go away

  What i expect to happen:

  Dialog should go over the VLC window, but the file manager should not
  go over it.

  alternatively if that isn't possible

  VLC window should become visible again as soon as the dialog gets
  dismissed.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: unity 7.2.2+14.04.20140714-0ubuntu1.1
  ProcVersionSignature: Ubuntu 3.13.0-37.64-generic 3.13.11.7
  Uname: Linux 3.13.0-37-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.5
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CurrentDesktop: Unity
  Date: Fri Oct 24 00:20:15 2014
  InstallationDate: Installed on 2014-10-02 (21 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140722.2)
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1380906] [NEW] Middle-mouse-button paste no longer works in 14.04

2014-10-14 Thread Volodya
Public bug reported:

After the upgrade to 14.04 the paste of the previously highlighted text
no longer seems to work. And since it is a rather important feature for
me, it makes my job much more difficult.

What i do:

Highlight some text
Press middle button on the mouse

What i expect to happen:
The highlighted text needs to appear where i click

What actually happens:
/dev/null

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: unity 7.2.2+14.04.20140714-0ubuntu1.1
ProcVersionSignature: Ubuntu 3.13.0-37.64-generic 3.13.11.7
Uname: Linux 3.13.0-37-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.5
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CurrentDesktop: Unity
Date: Tue Oct 14 10:12:26 2014
InstallationDate: Installed on 2014-10-02 (11 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 (20140722.2)
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug trusty

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to unity in Ubuntu.
Matching subscriptions: dp-unity
https://bugs.launchpad.net/bugs/1380906

Title:
  Middle-mouse-button paste no longer works in 14.04

Status in “unity” package in Ubuntu:
  New

Bug description:
  After the upgrade to 14.04 the paste of the previously highlighted
  text no longer seems to work. And since it is a rather important
  feature for me, it makes my job much more difficult.

  What i do:

  Highlight some text
  Press middle button on the mouse

  What i expect to happen:
  The highlighted text needs to appear where i click

  What actually happens:
  /dev/null

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: unity 7.2.2+14.04.20140714-0ubuntu1.1
  ProcVersionSignature: Ubuntu 3.13.0-37.64-generic 3.13.11.7
  Uname: Linux 3.13.0-37-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.5
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CurrentDesktop: Unity
  Date: Tue Oct 14 10:12:26 2014
  InstallationDate: Installed on 2014-10-02 (11 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS Trusty Tahr - Release amd64 
(20140722.2)
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] Re: Keyboard layout does not change when typing the password during return to work

2014-10-04 Thread Volodya
installed 14.04

The issue seems to have been fixed.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Expired

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  ---
  .tmp.unity.support.test.0:

  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
     Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
     Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] Re: Keyboard layout does not change when typing the password during return to work

2014-07-24 Thread Volodya
apport information

** Description changed:

  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)
  
  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped, sorry.
  
  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).
  
  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.
  
  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.
  
  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1
+ --- 
+ ApportVersion: 2.12.5-0ubuntu2.2
+ Architecture: i386
+ DistroCodename: saucy
+ DistroRelease: Ubuntu 13.10
+ DistroVariant: ubuntu
+ InstallationDate: Installed on 2013-12-22 (213 days ago)
+ InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
+ MarkForUpload: True
+ Package: xorg-server (not installed)
+ ProcVersionSignature: Ubuntu 3.11.0-26.45-generic 3.11.10.12
+ Tags:  saucy ubuntu
+ Uname: Linux 3.11.0-26-generic i686
+ UnreportableReason: Unsupported Ubuntu Release
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

** Attachment added: ProcEnviron.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4161882/+files/ProcEnviron.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.

[Desktop-packages] [Bug 1252687] Re: Keyboard layout does not change when typing the password during return to work

2014-07-15 Thread Volodya
Could you explain what is needed to complete?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] Re: Keyboard layout does not change when typing the password during return to work

2014-07-14 Thread Volodya
It is still happening.

** Changed in: xorg-server (Ubuntu)
   Status: Expired = Confirmed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Confirmed

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] Re: Keyboard layout does not change when typing the password during return to work

2014-05-14 Thread Volodya
This is still happening, nothing has changed.

** Changed in: xorg-server (Ubuntu)
   Status: Expired = New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  New

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] Re: Keyboard layout does not change when typing the password during return to work

2014-03-13 Thread Volodya
apport information

** Tags added: apport-collected compiz-0.9 saucy ubuntu

** Description changed:

  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)
  
  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped, sorry.
  
  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).
  
  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.
  
  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.
  
  This worked in 12.04, this is a regression.
+ --- 
+ .tmp.unity.support.test.0:
+  
+ ApportVersion: 2.12.5-0ubuntu2.2
+ Architecture: i386
+ CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
+ CompositorRunning: compiz
+ CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
+ CompositorUnredirectFSW: true
+ DistUpgraded: Fresh install
+ DistroCodename: saucy
+ DistroRelease: Ubuntu 13.10
+ DistroVariant: ubuntu
+ ExtraDebuggingInterest: Yes
+ GraphicsCard:
+  Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
+Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
+Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
+ InstallationDate: Installed on 2013-12-22 (80 days ago)
+ InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
+ MachineType: ASUSTeK COMPUTER INC. N76VB
+ MarkForUpload: True
+ Package: xorg-server (not installed)
+ ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
+ Tags:  saucy ubuntu compiz-0.9
+ Uname: Linux 3.11.0-18-generic i686
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ dmi.bios.date: 05/24/2013
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: N76VB.205
+ dmi.board.asset.tag: ATN12345678901234567
+ dmi.board.name: N76VB
+ dmi.board.vendor: ASUSTeK COMPUTER INC.
+ dmi.board.version: 1.0
+ dmi.chassis.asset.tag: No Asset Tag
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: ASUSTeK COMPUTER INC.
+ dmi.chassis.version: 1.0
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
+ dmi.product.name: N76VB
+ dmi.product.version: 1.0
+ dmi.sys.vendor: ASUSTeK COMPUTER INC.
+ version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
+ version.libdrm2: libdrm2 2.4.46-1ubuntu1
+ version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
+ version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
+ version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
+ version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
+ version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
+ version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
+ version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
+ version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
+ xserver.bootTime: Wed Mar 12 23:48:07 2014
+ xserver.configfile: default
+ xserver.errors:
+  Failed to load module nvidia (module does not exist, 0)
+  Failed to load module nvidia (module does not exist, 0)
+  NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
+  NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
+ xserver.logfile: /var/log/Xorg.0.log
+ xserver.outputs:
+  product id8605 
+  vendor AUO
+ xserver.version: 2:1.14.5-1ubuntu2~saucy1

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021464/+files/BootDmesg.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on 

[Desktop-packages] [Bug 1252687] CurrentDmesg.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021466/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] LightdmDisplayLog.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: LightdmDisplayLog.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021469/+files/LightdmDisplayLog.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] LightdmGreeterLog.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: LightdmGreeterLog.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021470/+files/LightdmGreeterLog.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] DpkgLog.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: DpkgLog.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021467/+files/DpkgLog.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] BootLog.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: BootLog.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021465/+files/BootLog.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] GconfCompiz.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: GconfCompiz.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021468/+files/GconfCompiz.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] xserver.devices.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: xserver.devices.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021487/+files/xserver.devices.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] ProcCpuinfo.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021476/+files/ProcCpuinfo.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] XorgLog.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: XorgLog.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021483/+files/XorgLog.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] ProcInterrupts.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021478/+files/ProcInterrupts.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] ProcEnviron.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: ProcEnviron.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021477/+files/ProcEnviron.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] Xrandr.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: Xrandr.txt
   https://bugs.launchpad.net/bugs/1252687/+attachment/4021485/+files/Xrandr.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] Lspci.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/1252687/+attachment/4021473/+files/Lspci.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] LightdmLog.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: LightdmLog.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021472/+files/LightdmLog.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] UdevLog.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: UdevLog.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021481/+files/UdevLog.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] XorgLogOld.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: XorgLogOld.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021484/+files/XorgLogOld.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] Lsusb.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/1252687/+attachment/4021474/+files/Lsusb.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] UnitySupportTest.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: UnitySupportTest.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021482/+files/UnitySupportTest.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] xdpyinfo.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: xdpyinfo.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021486/+files/xdpyinfo.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] LightdmGreeterLogOld.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: LightdmGreeterLogOld.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021471/+files/LightdmGreeterLogOld.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] UdevDb.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/1252687/+attachment/4021480/+files/UdevDb.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] MonitorsUser.xml.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: MonitorsUser.xml.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021475/+files/MonitorsUser.xml.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] ProcModules.txt

2014-03-13 Thread Volodya
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/1252687/+attachment/4021479/+files/ProcModules.txt

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroRelease: Ubuntu 13.10
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
 Subsystem: ASUSTeK Computer Inc. Device [1043:1477]
  InstallationDate: Installed on 2013-12-22 (80 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MachineType: ASUSTeK COMPUTER INC. N76VB
  MarkForUpload: True
  Package: xorg-server (not installed)
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-18-generic 
root=UUID=6ffb525f-8987-4985-bf49-0fa4acf97fb8 ro splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.11.0-18.32-generic 3.11.10.4
  Tags:  saucy ubuntu compiz-0.9
  Uname: Linux 3.11.0-18-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 05/24/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: N76VB.205
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: N76VB
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrN76VB.205:bd05/24/2013:svnASUSTeKCOMPUTERINC.:pnN76VB:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnN76VB:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: N76VB
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.10+13.10.20131113-0ubuntu1ppa1
  version.libdrm2: libdrm2 2.4.46-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2.1-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2.1-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2~saucy1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.904-0ubuntu2.1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Wed Mar 12 23:48:07 2014
  xserver.configfile: default
  xserver.errors:
   Failed to load module nvidia (module does not exist, 0)
   Failed to load module nvidia (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id8605 
   vendor AUO
  xserver.version: 2:1.14.5-1ubuntu2~saucy1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] Re: Keyboard layout does not change when typing the password during return to work

2014-03-08 Thread Volodya
Still an issue

** Changed in: xorg-server (Ubuntu)
   Status: Expired = New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  New

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1251798] Re: No way to add custom command as a default browser

2014-03-05 Thread Volodya
apport information

** Tags added: apport-collected saucy third-party-packages

** Description changed:

  After upgrading to 13.10 from 12.04 the custom command option is gone
  from System Settings - Details - Default Applications
  
  This is a necessary feature if one is to add IceCat to be a default
  browser.
  
  P.S. Sorry i do not know the package name.
+ --- 
+ ApportVersion: 2.12.5-0ubuntu2.2
+ Architecture: i386
+ DistroRelease: Ubuntu 13.10
+ InstallationDate: Installed on 2013-12-22 (73 days ago)
+ InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
+ MarkForUpload: True
+ Package: gnome-control-center 1:3.6.3-0ubuntu45.2
+ PackageArchitecture: i386
+ ProcVersionSignature: Ubuntu 3.11.0-17.31-generic 3.11.10.3
+ Tags: saucy third-party-packages
+ Uname: Linux 3.11.0-17-generic i686
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ usr_lib_gnome-control-center:
+  activity-log-manager  0.9.7-0ubuntu4
+  deja-dup  27.3.1-0ubuntu1
+  gnome-control-center-datetime 13.10.0+13.10.20131023.2-0ubuntu1
+  gnome-control-center-signon   0.1.7~+13.10.20130724.1-0ubuntu1
+  gnome-control-center-unity1.3+13.10.20131004-0ubuntu1

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/1251798/+attachment/4008590/+files/Dependencies.txt

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

Title:
  No way to add custom command as a default browser

Status in “gnome-control-center” package in Ubuntu:
  Incomplete

Bug description:
  After upgrading to 13.10 from 12.04 the custom command option is gone
  from System Settings - Details - Default Applications

  This is a necessary feature if one is to add IceCat to be a default
  browser.

  P.S. Sorry i do not know the package name.
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2013-12-22 (73 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  Package: gnome-control-center 1:3.6.3-0ubuntu45.2
  PackageArchitecture: i386
  ProcVersionSignature: Ubuntu 3.11.0-17.31-generic 3.11.10.3
  Tags: saucy third-party-packages
  Uname: Linux 3.11.0-17-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  usr_lib_gnome-control-center:
   activity-log-manager  0.9.7-0ubuntu4
   deja-dup  27.3.1-0ubuntu1
   gnome-control-center-datetime 13.10.0+13.10.20131023.2-0ubuntu1
   gnome-control-center-signon   0.1.7~+13.10.20130724.1-0ubuntu1
   gnome-control-center-unity1.3+13.10.20131004-0ubuntu1

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1251798] ProcEnviron.txt

2014-03-05 Thread Volodya
apport information

** Attachment added: ProcEnviron.txt
   
https://bugs.launchpad.net/bugs/1251798/+attachment/4008591/+files/ProcEnviron.txt

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

Title:
  No way to add custom command as a default browser

Status in “gnome-control-center” package in Ubuntu:
  Incomplete

Bug description:
  After upgrading to 13.10 from 12.04 the custom command option is gone
  from System Settings - Details - Default Applications

  This is a necessary feature if one is to add IceCat to be a default
  browser.

  P.S. Sorry i do not know the package name.
  --- 
  ApportVersion: 2.12.5-0ubuntu2.2
  Architecture: i386
  DistroRelease: Ubuntu 13.10
  InstallationDate: Installed on 2013-12-22 (73 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release i386 (20131016.1)
  MarkForUpload: True
  Package: gnome-control-center 1:3.6.3-0ubuntu45.2
  PackageArchitecture: i386
  ProcVersionSignature: Ubuntu 3.11.0-17.31-generic 3.11.10.3
  Tags: saucy third-party-packages
  Uname: Linux 3.11.0-17-generic i686
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  usr_lib_gnome-control-center:
   activity-log-manager  0.9.7-0ubuntu4
   deja-dup  27.3.1-0ubuntu1
   gnome-control-center-datetime 13.10.0+13.10.20131023.2-0ubuntu1
   gnome-control-center-signon   0.1.7~+13.10.20130724.1-0ubuntu1
   gnome-control-center-unity1.3+13.10.20131004-0ubuntu1

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1165609] Re: There is no apparent way to stop Orca.

2014-02-03 Thread Volodya
Behaviour still exists. Ubuntu 13.10 all updates installed.

To add to what Vladimir Rutsky has said, you may need to first turn the
reader on, before turning it off. So it is already reading, but you
first press Alt+Super+S to start it (again?) and then again to turn it
finally off.

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

Title:
  There is no apparent way to stop Orca.

Status in “gnome-orca” package in Ubuntu:
  Confirmed

Bug description:
  The Orca Screen Reader icon in the Dash is a trap. If a user
  accidentally opens it, the only apparent recourse for the incessant
  jabber is to either mute the volume system-wide or log out. This makes
  for a very poor user experience.

  Orca could avoid this situation by providing at least one of the
  following:

1) A notification of how to stop it, if there is a way to stop it.
2) A confirmation prompt prior to starting.
3) A quit option in a standard location such as the indicator menu.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: gnome-orca 3.8.0-0ubuntu1
  ProcVersionSignature: Ubuntu 3.8.0-16.26-generic 3.8.5
  Uname: Linux 3.8.0-16-generic x86_64
  ApportVersion: 2.9.2-0ubuntu5
  Architecture: amd64
  Date: Sat Apr  6 18:35:02 2013
  InstallationDate: Installed on 2013-04-06 (0 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Alpha amd64 (20130402.1)
  MarkForUpload: True
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-orca
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] Re: Keyboard layout does not change when typing the password during return to work

2014-01-07 Thread Volodya
Definitely still an issue.

At this time i am unable to try development releases, but i am running
13.10 with all the updates installed and i am unable to change the
layout in the return to work dialog.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  Incomplete

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1264669] Re: Webcam is detected only when using live cd (usb boot)

2013-12-28 Thread Volodya
Filed bug 1264690

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

Title:
  Webcam is detected only when using live cd (usb boot)

Status in “libusb” package in Ubuntu:
  Incomplete

Bug description:
  I have an ASUS N76V notebook. The webcam is working fine when i start
  with the usb stick and try to do system testing, i can see a single
  image and also sequantial images during the test.

  However, after the installation process webcam seems to be not
  present. Test fails, camorama doesn't start, skype doesn't see the
  webcam.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1261811] [NEW] Thunderbird crashes when replying to a message with segmentation fault

2013-12-17 Thread Volodya
Public bug reported:

To reproduce:

I open thunderbird, select the message, click reply. Some short time
passes, window becomes gray and then crashes.

$ thunderbird --debug
GNU gdb (GDB) 7.6.1-ubuntu
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i686-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/lib/thunderbird/thunderbird...(no debugging symbols 
found)...done.
(gdb) run
Starting program: /usr/lib/thunderbird/thunderbird 
[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/i386-linux-gnu/libthread_db.so.1.

(process:3641): GLib-CRITICAL **: g_slice_set_config: assertion
'sys_page_size == 0' failed

(thunderbird:3641): GLib-GObject-WARNING **: Attempt to add property
GnomeProgram::sm-connect after class was initialised

(thunderbird:3641): GLib-GObject-WARNING **: Attempt to add property
GnomeProgram::show-crash-dialog after class was initialised

(thunderbird:3641): GLib-GObject-WARNING **: Attempt to add property
GnomeProgram::display after class was initialised

(thunderbird:3641): GLib-GObject-WARNING **: Attempt to add property 
GnomeProgram::default-icon after class was initialised
[New Thread 0xb2effb40 (LWP 3646)]
[New Thread 0xb1e10b40 (LWP 3647)]
[New Thread 0xb12ffb40 (LWP 3648)]
[New Thread 0xb0afeb40 (LWP 3649)]
[New Thread 0xb02fdb40 (LWP 3650)]
[New Thread 0xaf64eb40 (LWP 3651)]
[New Thread 0xaee4db40 (LWP 3652)]
[New Thread 0xae542b40 (LWP 3653)]
[New Thread 0xadd41b40 (LWP 3654)]
[New Thread 0xad540b40 (LWP 3655)]
[New Thread 0xac8ffb40 (LWP 3657)]
[Thread 0xadd41b40 (LWP 3654) exited]
[New Thread 0xadd41b40 (LWP 3658)]
enigmail.js: Registered components
[New Thread 0xa73ffb40 (LWP 3659)]
[New Thread 0xa66ffb40 (LWP 3660)]
[New Thread 0xa51ffb40 (LWP 3661)]
[New Thread 0xa49feb40 (LWP 3662)]
[Thread 0xa51ffb40 (LWP 3661) exited]
[New Thread 0xa41fdb40 (LWP 3663)]
[New Thread 0xa39fcb40 (LWP 3664)]
[Thread 0xadd41b40 (LWP 3658) exited]
[Thread 0xa39fcb40 (LWP 3664) exited]
[New Thread 0xadd41b40 (LWP 3665)]
mimeVerify.jsm: module initialized
[New Thread 0xa39fcb40 (LWP 3666)]
[New Thread 0xa51ffb40 (LWP 3667)]
[New Thread 0xa0292b40 (LWP 3668)]
[New Thread 0x9fa91b40 (LWP 3669)]
[New Thread 0x9ebffb40 (LWP 3674)]
[New Thread 0x9e3feb40 (LWP 3675)]
[New Thread 0x9dbfdb40 (LWP 3676)]
[New Thread 0x9d1ffb40 (LWP 3677)]
[Thread 0xa41fdb40 (LWP 3663) exited]
[New Thread 0xa41fdb40 (LWP 3678)]
[New Thread 0x9c7ffb40 (LWP 3680)]
[New Thread 0x9bffeb40 (LWP 3684)]
[New Thread 0x9b7fdb40 (LWP 3686)]
[New Thread 0x9b4ffb40 (LWP 3687)]
[New Thread 0x9a3ffb40 (LWP 3688)]

Program received signal SIGSEGV, Segmentation fault.
0xb593f2da in ?? () from /usr/lib/thunderbird/libxul.so

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

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

Title:
  Thunderbird crashes when replying to a message with segmentation fault

Status in “thunderbird” package in Ubuntu:
  New

Bug description:
  To reproduce:

  I open thunderbird, select the message, click reply. Some short time
  passes, window becomes gray and then crashes.

  $ thunderbird --debug
  GNU gdb (GDB) 7.6.1-ubuntu
  Copyright (C) 2013 Free Software Foundation, Inc.
  License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
  This is free software: you are free to change and redistribute it.
  There is NO WARRANTY, to the extent permitted by law.  Type show copying
  and show warranty for details.
  This GDB was configured as i686-linux-gnu.
  For bug reporting instructions, please see:
  http://www.gnu.org/software/gdb/bugs/...
  Reading symbols from /usr/lib/thunderbird/thunderbird...(no debugging symbols 
found)...done.
  (gdb) run
  Starting program: /usr/lib/thunderbird/thunderbird 
  [Thread debugging using libthread_db enabled]
  Using host libthread_db library /lib/i386-linux-gnu/libthread_db.so.1.

  (process:3641): GLib-CRITICAL **: g_slice_set_config: assertion
  'sys_page_size == 0' failed

  (thunderbird:3641): GLib-GObject-WARNING **: Attempt to add property
  GnomeProgram::sm-connect after class was initialised

  (thunderbird:3641): GLib-GObject-WARNING **: Attempt to add property
  GnomeProgram::show-crash-dialog after class was initialised

  (thunderbird:3641): GLib-GObject-WARNING **: Attempt to add property
  GnomeProgram::display after class was initialised

  (thunderbird:3641): GLib-GObject-WARNING **: Attempt to add property 
GnomeProgram::default-icon after class was initialised
  [New Thread 0xb2effb40 (LWP 3646)]
  [New Thread 

[Desktop-packages] [Bug 1261811] Re: Thunderbird crashes when replying to a message with segmentation fault

2013-12-17 Thread Volodya
Ok, i think it has something to do with replying to a message that is a
reply to a GPG signed message. Because if i select a non-signature part
of the message and click reply, then there is no crash.

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

Title:
  Thunderbird crashes when replying to a message with segmentation fault

Status in “thunderbird” package in Ubuntu:
  New

Bug description:
  To reproduce:

  I open thunderbird, select the message, click reply. Some short time
  passes, window becomes gray and then crashes.

  $ thunderbird --debug
  GNU gdb (GDB) 7.6.1-ubuntu
  Copyright (C) 2013 Free Software Foundation, Inc.
  License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
  This is free software: you are free to change and redistribute it.
  There is NO WARRANTY, to the extent permitted by law.  Type show copying
  and show warranty for details.
  This GDB was configured as i686-linux-gnu.
  For bug reporting instructions, please see:
  http://www.gnu.org/software/gdb/bugs/...
  Reading symbols from /usr/lib/thunderbird/thunderbird...(no debugging symbols 
found)...done.
  (gdb) run
  Starting program: /usr/lib/thunderbird/thunderbird 
  [Thread debugging using libthread_db enabled]
  Using host libthread_db library /lib/i386-linux-gnu/libthread_db.so.1.

  (process:3641): GLib-CRITICAL **: g_slice_set_config: assertion
  'sys_page_size == 0' failed

  (thunderbird:3641): GLib-GObject-WARNING **: Attempt to add property
  GnomeProgram::sm-connect after class was initialised

  (thunderbird:3641): GLib-GObject-WARNING **: Attempt to add property
  GnomeProgram::show-crash-dialog after class was initialised

  (thunderbird:3641): GLib-GObject-WARNING **: Attempt to add property
  GnomeProgram::display after class was initialised

  (thunderbird:3641): GLib-GObject-WARNING **: Attempt to add property 
GnomeProgram::default-icon after class was initialised
  [New Thread 0xb2effb40 (LWP 3646)]
  [New Thread 0xb1e10b40 (LWP 3647)]
  [New Thread 0xb12ffb40 (LWP 3648)]
  [New Thread 0xb0afeb40 (LWP 3649)]
  [New Thread 0xb02fdb40 (LWP 3650)]
  [New Thread 0xaf64eb40 (LWP 3651)]
  [New Thread 0xaee4db40 (LWP 3652)]
  [New Thread 0xae542b40 (LWP 3653)]
  [New Thread 0xadd41b40 (LWP 3654)]
  [New Thread 0xad540b40 (LWP 3655)]
  [New Thread 0xac8ffb40 (LWP 3657)]
  [Thread 0xadd41b40 (LWP 3654) exited]
  [New Thread 0xadd41b40 (LWP 3658)]
  enigmail.js: Registered components
  [New Thread 0xa73ffb40 (LWP 3659)]
  [New Thread 0xa66ffb40 (LWP 3660)]
  [New Thread 0xa51ffb40 (LWP 3661)]
  [New Thread 0xa49feb40 (LWP 3662)]
  [Thread 0xa51ffb40 (LWP 3661) exited]
  [New Thread 0xa41fdb40 (LWP 3663)]
  [New Thread 0xa39fcb40 (LWP 3664)]
  [Thread 0xadd41b40 (LWP 3658) exited]
  [Thread 0xa39fcb40 (LWP 3664) exited]
  [New Thread 0xadd41b40 (LWP 3665)]
  mimeVerify.jsm: module initialized
  [New Thread 0xa39fcb40 (LWP 3666)]
  [New Thread 0xa51ffb40 (LWP 3667)]
  [New Thread 0xa0292b40 (LWP 3668)]
  [New Thread 0x9fa91b40 (LWP 3669)]
  [New Thread 0x9ebffb40 (LWP 3674)]
  [New Thread 0x9e3feb40 (LWP 3675)]
  [New Thread 0x9dbfdb40 (LWP 3676)]
  [New Thread 0x9d1ffb40 (LWP 3677)]
  [Thread 0xa41fdb40 (LWP 3663) exited]
  [New Thread 0xa41fdb40 (LWP 3678)]
  [New Thread 0x9c7ffb40 (LWP 3680)]
  [New Thread 0x9bffeb40 (LWP 3684)]
  [New Thread 0x9b7fdb40 (LWP 3686)]
  [New Thread 0x9b4ffb40 (LWP 3687)]
  [New Thread 0x9a3ffb40 (LWP 3688)]

  Program received signal SIGSEGV, Segmentation fault.
  0xb593f2da in ?? () from /usr/lib/thunderbird/libxul.so

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1260205] [NEW] Thunderbird crashes after entering subject

2013-12-12 Thread Volodya
Public bug reported:

To reproduce:

Start thunderbird
Begin new e-mail
Type address
Press tab to go to subject
Type subject
Press tab

What happens:

Thunderbird crashes

What should happen:

I should begin to type my e-mail

$ thunderbird

(process:24344): GLib-CRITICAL **: g_slice_set_config: assertion
'sys_page_size == 0' failed

(thunderbird:24344): GLib-GObject-WARNING **: Attempt to add property
GnomeProgram::sm-connect after class was initialised

(thunderbird:24344): GLib-GObject-WARNING **: Attempt to add property
GnomeProgram::show-crash-dialog after class was initialised

(thunderbird:24344): GLib-GObject-WARNING **: Attempt to add property
GnomeProgram::display after class was initialised

(thunderbird:24344): GLib-GObject-WARNING **: Attempt to add property 
GnomeProgram::default-icon after class was initialised
enigmail.js: Registered components
mimeVerify.jsm: module initialized
Segmentation fault (core dumped)

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


** Tags: crash

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

Title:
  Thunderbird crashes after entering subject

Status in “thunderbird” package in Ubuntu:
  New

Bug description:
  To reproduce:

  Start thunderbird
  Begin new e-mail
  Type address
  Press tab to go to subject
  Type subject
  Press tab

  What happens:

  Thunderbird crashes

  What should happen:

  I should begin to type my e-mail

  $ thunderbird

  (process:24344): GLib-CRITICAL **: g_slice_set_config: assertion
  'sys_page_size == 0' failed

  (thunderbird:24344): GLib-GObject-WARNING **: Attempt to add property
  GnomeProgram::sm-connect after class was initialised

  (thunderbird:24344): GLib-GObject-WARNING **: Attempt to add property
  GnomeProgram::show-crash-dialog after class was initialised

  (thunderbird:24344): GLib-GObject-WARNING **: Attempt to add property
  GnomeProgram::display after class was initialised

  (thunderbird:24344): GLib-GObject-WARNING **: Attempt to add property 
GnomeProgram::default-icon after class was initialised
  enigmail.js: Registered components
  mimeVerify.jsm: module initialized
  Segmentation fault (core dumped)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1252687] Re: Keyboard layout does not change when typing the password during return to work

2013-12-04 Thread Volodya
Looking at this question http://askubuntu.com/questions/21692/what-
package-is-responsible-for-the-functionality-of-the-keyboard I see that
somebody has suggested that such issues are related to xorg-server
package, so let's try refiling it there.

** Package changed: ubuntu = xorg-server (Ubuntu)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/1252687

Title:
  Keyboard layout does not change when typing the password during return
  to work

Status in “xorg-server” package in Ubuntu:
  New

Bug description:
  System: Ubuntu 13.10
  Keyboard layouts: English (US), Russian (RU)

  I do not know what package to report it against, i know that the bot
  will do the warning right after i post, but that can't be helped,
  sorry.

  To reproduce:
  Start any application
  Change the keyboard layout to Russian
  Wait for the computer to turn off the monitor due to non-use (or close the 
lid on the Netbook/Notebook).

  What happens:
  Cannot type the password in English, pressing the designated keys (left 
alt+left shift for me) does not change the indicator
  To work around that, i change to 'Switch user' and type my own password.

  What i expect to happen:
  Password request should either always be in one language, or to allow 
changing the layout with the designated key sequence.

  This worked in 12.04, this is a regression.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1252687/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 36812] Re: Keyboard layout change on hotkeys press instead of release and do not work well with shortcuts

2013-12-04 Thread Volodya
Ubuntu 13.10 does not work. Willing to help by providing any requested
information

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/36812

Title:
  Keyboard layout change on hotkeys press instead of release and do not
  work well with shortcuts

Status in GNOME Control Center:
  Unknown
Status in X.Org X server:
  In Progress
Status in “control-center” package in Ubuntu:
  Invalid
Status in “xorg-server” package in Ubuntu:
  Fix Released

Bug description:
  This is a bug about shortcuts mapped to combinations which include
  each other.

  For example, if we have Ctrl+Shift (for keyboard layout) and Ctrl+Shift+N (to 
open a new terminal), then we are practically unable to use the second 
shortcut; this is what happens:
  Ctrl press  (nothing happens)
  Shift press (keyboard layout change)
  N (a simple N appears, since a shortcut has already fired)

  The expected behavior is to fire shortcuts on the release (not on
  press) of the special keys (ctrl,shift,alt, etc) which is also how
  Windows behave. This is a serious problem for bilingual layouts,
  typically using Alt+Shift or Ctrl+Shift for keyboard layout change.

  For users being affected by this problem, the easiest solution for now is to 
add this PPA in your repositories:
  https://launchpad.net/~oded-geek/+archive/xorg-patches

  Practical summary of this bug for ubuntu developers (since reading 120 
comments is impractical for most):
  This problem is a really old (since 2004) issue of the xkb part of xorg; the 
main discussion was made upstream in freedesktop-bugs #865. There has been a 
patch from Ilya Murav'jov for upstream (#55), and attached here (#61).
  Upstream xorg has refused to apply the patch, mainly because it explicitly 
contradicts the (xkb) spec  (#84, #91).
  This patch has been reported to work for many people without any problems, 
and there is also a PPA by Oded Arbel (#95) where he maintains a patched 
version of the ubuntu xorg.
  The proper resolution of this bug would be to apply this patch to the 
upstream xorg, or at minimum to the official ubuntu xorg package.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1108637] Re: backspace key no longer works in nautilus

2013-11-27 Thread Volodya
Microsoft has attempted to do the same thing in the trial run of
Nashville (it was the OS that was later turnt into Windows 98), they
have removed up from the Explorer and kept only Forward and Back. This
was a disaster (and anybody with any brain can understand why, if you
went from a different directory there is no way to go up one level,
since 'Back' takes you to a completely different point of the directory
tree).

So, the question becomes, if even Microsoft was intelligent enough to
return this feature, why did *anybody* in the free software community
decide that it was good to remove it. Even the idiots who removed
buttons from the phone or made something too small to be useful as a
computer and too large to be a mobile (Apple, Inc) wouldn't dream of
doing something as stupid as this outside of some test audience.

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

Title:
  backspace key no longer works in nautilus

Status in Nautilus:
  Invalid
Status in “nautilus” package in Ubuntu:
  Triaged

Bug description:
  I know that that it's not Ubuntu's fault that the gnome-devs have
  removed so much of the useful functionality from nautilus 3.6, but one
  regression that I find particularly annoying is that the backspace key
  no longer works as a 'back' button. Instead, you have to press ALT-
  left arrow, which is much more complex, as well as non-intuitive (non-
  intuitive in the sense that many users tend to use backspace to go
  back in browsers).

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: nautilus 1:3.6.3-0ubuntu5
  ProcVersionSignature: Ubuntu 3.8.0-2.6-generic 3.8.0-rc4
  Uname: Linux 3.8.0-2-generic x86_64
  ApportVersion: 2.8-0ubuntu2
  Architecture: amd64
  Date: Tue Jan 29 15:39:50 2013
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'800x550+853+1291'
  InstallationDate: Installed on 2012-08-25 (156 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120724.2)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1108637] Re: backspace key no longer works in nautilus

2013-11-27 Thread Volodya
Re:  the last comment

Pathbar UI is just one of the ways to set up the view in Nautilus, i
always use 'Places' view, so that's not really a work around.

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

Title:
  backspace key no longer works in nautilus

Status in Nautilus:
  Invalid
Status in “nautilus” package in Ubuntu:
  Triaged

Bug description:
  I know that that it's not Ubuntu's fault that the gnome-devs have
  removed so much of the useful functionality from nautilus 3.6, but one
  regression that I find particularly annoying is that the backspace key
  no longer works as a 'back' button. Instead, you have to press ALT-
  left arrow, which is much more complex, as well as non-intuitive (non-
  intuitive in the sense that many users tend to use backspace to go
  back in browsers).

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: nautilus 1:3.6.3-0ubuntu5
  ProcVersionSignature: Ubuntu 3.8.0-2.6-generic 3.8.0-rc4
  Uname: Linux 3.8.0-2-generic x86_64
  ApportVersion: 2.8-0ubuntu2
  Architecture: amd64
  Date: Tue Jan 29 15:39:50 2013
  GsettingsChanges: b'org.gnome.nautilus.window-state' b'geometry' 
b'800x550+853+1291'
  InstallationDate: Installed on 2012-08-25 (156 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120724.2)
  MarkForUpload: True
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245340] Re: Internal michrophone works only in System testing

2013-11-15 Thread Volodya
I have upgraded to Ubuntu 13.10. The issue seems to have been resolved
there. While i would be willing to help to debug it in the LTS version,
i do not seem to understand what i'm being asked to provide at this
moment. In a little while i'm going to nuke the 12.04 partition.

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

Title:
  Internal michrophone works only in System testing

Status in “pulseaudio” package in Ubuntu:
  Incomplete

Bug description:
  I have Packard Bell Dot S netbook (with internal microphone)

  To reproduce:
  1. Start 'System Testing'
  2. Select 'Audio tests'
  3. During audio test note that you *can* hear yourself (but rather poorly, 
it's internal mic after all)

  4. Go to Sound Settings, Tab-Input
  5. 'Record sound from' is empty, input volume is grayed out.

  6. Start audacity
  7. Press record, speak, press stop
  8. Press play
  9. Nothing is audible

  What i expect to happen:
  If system testing was able to record from the internal mic, i expect other 
systems to be able to do that as well.

  What actually happens:
  System testing is able to perform tasks that other parts of the system are 
unable to do.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1251585] [NEW] Backspace doesn't work in nautilus

2013-11-15 Thread Volodya
*** This bug is a duplicate of bug 1108637 ***
https://bugs.launchpad.net/bugs/1108637

Public bug reported:

Going up one level with a keyboard is an essential part of any file
browser application. Backspace always worked, but now after upgrading
from 12.04 to 13.10 it no longer works. I normally use PCMANFM anyhow,
but it would be nice to be able to use Nautilus when sometimes it gives
getter features.

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

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

Title:
  Backspace doesn't work in nautilus

Status in “nautilus” package in Ubuntu:
  New

Bug description:
  Going up one level with a keyboard is an essential part of any file
  browser application. Backspace always worked, but now after upgrading
  from 12.04 to 13.10 it no longer works. I normally use PCMANFM anyhow,
  but it would be nice to be able to use Nautilus when sometimes it
  gives getter features.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1251585] Re: Backspace doesn't work in nautilus

2013-11-15 Thread Volodya
*** This bug is a duplicate of bug 1108637 ***
https://bugs.launchpad.net/bugs/1108637

I swear i put 'nautilus' in the field.

** Package changed: pulseaudio (Ubuntu) = nautilus (Ubuntu)

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

Title:
  Backspace doesn't work in nautilus

Status in “nautilus” package in Ubuntu:
  New

Bug description:
  Going up one level with a keyboard is an essential part of any file
  browser application. Backspace always worked, but now after upgrading
  from 12.04 to 13.10 it no longer works. I normally use PCMANFM anyhow,
  but it would be nice to be able to use Nautilus when sometimes it
  gives getter features.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245340] Re: Internal michrophone works only in System testing

2013-11-15 Thread Volodya
** Attachment added: alsa-diff
   
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1245340/+attachment/3910505/+files/alsa.diff.text.gz

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

Title:
  Internal michrophone works only in System testing

Status in “pulseaudio” package in Ubuntu:
  Incomplete

Bug description:
  I have Packard Bell Dot S netbook (with internal microphone)

  To reproduce:
  1. Start 'System Testing'
  2. Select 'Audio tests'
  3. During audio test note that you *can* hear yourself (but rather poorly, 
it's internal mic after all)

  4. Go to Sound Settings, Tab-Input
  5. 'Record sound from' is empty, input volume is grayed out.

  6. Start audacity
  7. Press record, speak, press stop
  8. Press play
  9. Nothing is audible

  What i expect to happen:
  If system testing was able to record from the internal mic, i expect other 
systems to be able to do that as well.

  What actually happens:
  System testing is able to perform tasks that other parts of the system are 
unable to do.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245340] Re: Internal michrophone works only in System testing

2013-11-15 Thread Volodya
Sorry, i've done something wrong, here's the correct one

** Attachment added: alsa.diff.text.gz
   
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1245340/+attachment/3910506/+files/alsa.diff.text.gz

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

Title:
  Internal michrophone works only in System testing

Status in “pulseaudio” package in Ubuntu:
  Incomplete

Bug description:
  I have Packard Bell Dot S netbook (with internal microphone)

  To reproduce:
  1. Start 'System Testing'
  2. Select 'Audio tests'
  3. During audio test note that you *can* hear yourself (but rather poorly, 
it's internal mic after all)

  4. Go to Sound Settings, Tab-Input
  5. 'Record sound from' is empty, input volume is grayed out.

  6. Start audacity
  7. Press record, speak, press stop
  8. Press play
  9. Nothing is audible

  What i expect to happen:
  If system testing was able to record from the internal mic, i expect other 
systems to be able to do that as well.

  What actually happens:
  System testing is able to perform tasks that other parts of the system are 
unable to do.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245340] Re: Internal michrophone works only in System testing

2013-10-29 Thread Volodya
** Attachment added: pactl list
   
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1245340/+attachment/3894486/+files/pactl-list.text.gz

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

Title:
  Internal michrophone works only in System testing

Status in “pulseaudio” package in Ubuntu:
  Incomplete

Bug description:
  I have Packard Bell Dot S netbook (with internal microphone)

  To reproduce:
  1. Start 'System Testing'
  2. Select 'Audio tests'
  3. During audio test note that you *can* hear yourself (but rather poorly, 
it's internal mic after all)

  4. Go to Sound Settings, Tab-Input
  5. 'Record sound from' is empty, input volume is grayed out.

  6. Start audacity
  7. Press record, speak, press stop
  8. Press play
  9. Nothing is audible

  What i expect to happen:
  If system testing was able to record from the internal mic, i expect other 
systems to be able to do that as well.

  What actually happens:
  System testing is able to perform tasks that other parts of the system are 
unable to do.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245340] Re: Internal michrophone works only in System testing

2013-10-29 Thread Volodya
 try mute the right channel of Cature Switch if the left and right of
digital mic is out of phase

How would i go about doing that?

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

Title:
  Internal michrophone works only in System testing

Status in “pulseaudio” package in Ubuntu:
  Incomplete

Bug description:
  I have Packard Bell Dot S netbook (with internal microphone)

  To reproduce:
  1. Start 'System Testing'
  2. Select 'Audio tests'
  3. During audio test note that you *can* hear yourself (but rather poorly, 
it's internal mic after all)

  4. Go to Sound Settings, Tab-Input
  5. 'Record sound from' is empty, input volume is grayed out.

  6. Start audacity
  7. Press record, speak, press stop
  8. Press play
  9. Nothing is audible

  What i expect to happen:
  If system testing was able to record from the internal mic, i expect other 
systems to be able to do that as well.

  What actually happens:
  System testing is able to perform tasks that other parts of the system are 
unable to do.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245340] Re: Internal michrophone works only in System testing

2013-10-29 Thread Volodya
I have installed DKMS, received an error i do not understand in the end,
however, after the reboot the internal mic is now appearing in the Sound
Preferences.

Recording from it still records only minor static, so perhaps it is
recording the wrong channel or something. I still am unable to figure
out how to mute one channel or how to reverse them.

** Attachment added: dkms-install.text.gz
   
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1245340/+attachment/3894577/+files/dkms-install.text.gz

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

Title:
  Internal michrophone works only in System testing

Status in “pulseaudio” package in Ubuntu:
  Incomplete

Bug description:
  I have Packard Bell Dot S netbook (with internal microphone)

  To reproduce:
  1. Start 'System Testing'
  2. Select 'Audio tests'
  3. During audio test note that you *can* hear yourself (but rather poorly, 
it's internal mic after all)

  4. Go to Sound Settings, Tab-Input
  5. 'Record sound from' is empty, input volume is grayed out.

  6. Start audacity
  7. Press record, speak, press stop
  8. Press play
  9. Nothing is audible

  What i expect to happen:
  If system testing was able to record from the internal mic, i expect other 
systems to be able to do that as well.

  What actually happens:
  System testing is able to perform tasks that other parts of the system are 
unable to do.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245340] Re: Internal michrophone works only in System testing

2013-10-29 Thread Volodya
Ok, i tried loading AlsaMixer and muting the right channel and recording
with Audacity. Nothing is coming in anyhow, just static.

If i was suppose to do something else please let me know.

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

Title:
  Internal michrophone works only in System testing

Status in “pulseaudio” package in Ubuntu:
  Incomplete

Bug description:
  I have Packard Bell Dot S netbook (with internal microphone)

  To reproduce:
  1. Start 'System Testing'
  2. Select 'Audio tests'
  3. During audio test note that you *can* hear yourself (but rather poorly, 
it's internal mic after all)

  4. Go to Sound Settings, Tab-Input
  5. 'Record sound from' is empty, input volume is grayed out.

  6. Start audacity
  7. Press record, speak, press stop
  8. Press play
  9. Nothing is audible

  What i expect to happen:
  If system testing was able to record from the internal mic, i expect other 
systems to be able to do that as well.

  What actually happens:
  System testing is able to perform tasks that other parts of the system are 
unable to do.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245340] Re: Internal michrophone works only in System testing

2013-10-29 Thread Volodya
** Attachment added: pactl-list.2.text.gz
   
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1245340/+attachment/3895372/+files/pactl-list.2.text.gz

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

Title:
  Internal michrophone works only in System testing

Status in “pulseaudio” package in Ubuntu:
  Incomplete

Bug description:
  I have Packard Bell Dot S netbook (with internal microphone)

  To reproduce:
  1. Start 'System Testing'
  2. Select 'Audio tests'
  3. During audio test note that you *can* hear yourself (but rather poorly, 
it's internal mic after all)

  4. Go to Sound Settings, Tab-Input
  5. 'Record sound from' is empty, input volume is grayed out.

  6. Start audacity
  7. Press record, speak, press stop
  8. Press play
  9. Nothing is audible

  What i expect to happen:
  If system testing was able to record from the internal mic, i expect other 
systems to be able to do that as well.

  What actually happens:
  System testing is able to perform tasks that other parts of the system are 
unable to do.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245340] Re: Internal michrophone works only in System testing

2013-10-29 Thread Volodya
** Attachment added: pactl-stat.2.text.gz
   
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1245340/+attachment/3895373/+files/pactl-stat.2.text.gz

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

Title:
  Internal michrophone works only in System testing

Status in “pulseaudio” package in Ubuntu:
  Incomplete

Bug description:
  I have Packard Bell Dot S netbook (with internal microphone)

  To reproduce:
  1. Start 'System Testing'
  2. Select 'Audio tests'
  3. During audio test note that you *can* hear yourself (but rather poorly, 
it's internal mic after all)

  4. Go to Sound Settings, Tab-Input
  5. 'Record sound from' is empty, input volume is grayed out.

  6. Start audacity
  7. Press record, speak, press stop
  8. Press play
  9. Nothing is audible

  What i expect to happen:
  If system testing was able to record from the internal mic, i expect other 
systems to be able to do that as well.

  What actually happens:
  System testing is able to perform tasks that other parts of the system are 
unable to do.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245340] Re: Internal michrophone works only in System testing

2013-10-29 Thread Volodya
alsa-info.sh seems not to exist on the system. I'm not sure what you
mean by 'if you are using latest always driver'

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

Title:
  Internal michrophone works only in System testing

Status in “pulseaudio” package in Ubuntu:
  Incomplete

Bug description:
  I have Packard Bell Dot S netbook (with internal microphone)

  To reproduce:
  1. Start 'System Testing'
  2. Select 'Audio tests'
  3. During audio test note that you *can* hear yourself (but rather poorly, 
it's internal mic after all)

  4. Go to Sound Settings, Tab-Input
  5. 'Record sound from' is empty, input volume is grayed out.

  6. Start audacity
  7. Press record, speak, press stop
  8. Press play
  9. Nothing is audible

  What i expect to happen:
  If system testing was able to record from the internal mic, i expect other 
systems to be able to do that as well.

  What actually happens:
  System testing is able to perform tasks that other parts of the system are 
unable to do.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245340] Re: Internal michrophone works only in System testing

2013-10-28 Thread Volodya
I don't know what package this  is about. Let's try pulseaudio.

** Package changed: ubuntu = pulseaudio (Ubuntu)

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

Title:
  Internal michrophone works only in System testing

Status in “pulseaudio” package in Ubuntu:
  New

Bug description:
  I have Packard Bell Dot S netbook (with internal microphone)

  To reproduce:
  1. Start 'System Testing'
  2. Select 'Audio tests'
  3. During audio test note that you *can* hear yourself (but rather poorly, 
it's internal mic after all)

  4. Go to Sound Settings, Tab-Input
  5. 'Record sound from' is empty, input volume is grayed out.

  6. Start audacity
  7. Press record, speak, press stop
  8. Press play
  9. Nothing is audible

  What i expect to happen:
  If system testing was able to record from the internal mic, i expect other 
systems to be able to do that as well.

  What actually happens:
  System testing is able to perform tasks that other parts of the system are 
unable to do.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245614] [NEW] Chromium selects too much on partial floating tag select

2013-10-28 Thread Volodya
Public bug reported:

To reproduce:

1. Open the attached file in chromium
1.1 Contents: 1 paragraph before the table, The table itself with 2 fields, 1 
paragraph after the table
2. Make a selection from the middle of the second paragraph to the second field 
of the table

What one expects to happen:

The displayed selection should now be something along the lines of:
  2\nParagraph after th

What really happens:
The displayed selection is:
  Paragraph before the table\n2\nParagraph after th

Note:
If you copy the selection and then paste it else where, you notice that really 
only what you intended to be copied was actually copied, the selection is 
somehow displayed incorrectly, even though it is understood correctly when the 
copy event is initiated.

Note 2:
If you remove the 'float' part from the style, everything begins to work as 
intended.

Note 3:
If you select the entire table rather than just a part of it, the displayed 
selection once again understands what you've meant.

** Affects: chromium-browser (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: 2 paragraphs before and after a floating table
   https://bugs.launchpad.net/bugs/1245614/+attachment/3893966/+files/test.html

** Package changed: ubuntu = chromium-browser (Ubuntu)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1245614

Title:
  Chromium selects too much on partial floating tag select

Status in “chromium-browser” package in Ubuntu:
  New

Bug description:
  To reproduce:

  1. Open the attached file in chromium
  1.1 Contents: 1 paragraph before the table, The table itself with 2 fields, 1 
paragraph after the table
  2. Make a selection from the middle of the second paragraph to the second 
field of the table

  What one expects to happen:

  The displayed selection should now be something along the lines of:
2\nParagraph after th

  What really happens:
  The displayed selection is:
Paragraph before the table\n2\nParagraph after th

  Note:
  If you copy the selection and then paste it else where, you notice that 
really only what you intended to be copied was actually copied, the selection 
is somehow displayed incorrectly, even though it is understood correctly when 
the copy event is initiated.

  Note 2:
  If you remove the 'float' part from the style, everything begins to work as 
intended.

  Note 3:
  If you select the entire table rather than just a part of it, the displayed 
selection once again understands what you've meant.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1245614/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 837821] Re: ogv and webm embedded video with video tag fails

2013-10-28 Thread Volodya
It's marked as invalid upstream. I can't change that, maybe somebody
else will.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/837821

Title:
  ogv and webm embedded video with video tag fails

Status in Chromium Browser:
  Unknown
Status in “chromium-browser” package in Ubuntu:
  Incomplete
Status in “chromium-browser” source package in Natty:
  Invalid

Bug description:
  Chrome Version   : 13.0.782.215
  OS Version: Ubuntu Natty
  URLs (if applicable) :
  Other browsers tested:
Firefox 6 works fine
  What steps will reproduce the problem?
  1. add the HTML at the bottom to a local file and load it
  2.
  3.

  What is the expected result?
  ogv or webm video plays

  What happens instead?
  Embedded ogv or webm video will not play

  Please provide any additional information below. Attach a screenshot if
  possible.

  Here is the code snippet from an embedded html file in /tmp/foo loaded
  as file:///tmp/foo/5.html

  video src='/tmp/foo/rfbproxy-jaunty.ogv' width='320' height='240'
  controls autoplay/video

  This is from the QRT HTML5 video test.

To manage notifications about this bug go to:
https://bugs.launchpad.net/chromium-browser/+bug/837821/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245625] [NEW] Pidgin crashes after a long period without connectivity

2013-10-28 Thread Volodya
Public bug reported:

If my internet is disconnected for a long time when Pidgin is still running and 
then i reconnect the internet Pidgin crashes.
It does not crash right after the internet is reconnected, but rather after you 
switch to any of its windows (it becomes grayed out for a few seconds, and then 
it dies).
If you don't switch to the window, it will *appear* to still be running, but 
you will not receive any notices nor new messages.

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

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

Title:
  Pidgin crashes after a long period without connectivity

Status in “pidgin” package in Ubuntu:
  New

Bug description:
  If my internet is disconnected for a long time when Pidgin is still running 
and then i reconnect the internet Pidgin crashes.
  It does not crash right after the internet is reconnected, but rather after 
you switch to any of its windows (it becomes grayed out for a few seconds, and 
then it dies).
  If you don't switch to the window, it will *appear* to still be running, but 
you will not receive any notices nor new messages.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245627] [NEW] Opening a directory with thousands images kills nautilus

2013-10-28 Thread Volodya
Public bug reported:

This maybe related to Bug #243336 but i am not sure.

Opening a directory with thousands of image files locks Nautilus.
Pressing 'go back' or 'go one level up' does nothing until all the files are 
actually loaded.

It would be just an inconvenience, but this also happens in the Open a
File Dialogue, making it impossible to (for example) upload anything
from that directory (i can switch the file browser to view the
directory, but can't chose to use a different open file dialog.

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

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

Title:
  Opening a directory with thousands images kills nautilus

Status in “nautilus” package in Ubuntu:
  New

Bug description:
  This maybe related to Bug #243336 but i am not sure.

  Opening a directory with thousands of image files locks Nautilus.
  Pressing 'go back' or 'go one level up' does nothing until all the files are 
actually loaded.

  It would be just an inconvenience, but this also happens in the Open a
  File Dialogue, making it impossible to (for example) upload anything
  from that directory (i can switch the file browser to view the
  directory, but can't chose to use a different open file dialog.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245614] Re: Chromium selects too much on partial floating tag select

2013-10-28 Thread Volodya
Somehow Ctrl+C already understands that the user only intends to copy
from A to B not from A to the beginning of the document and then from
the end of the floating tag to B, why can't selection do the same?

Alternatively, i suppose i can file a bug that Chromium doesn't copy
everything that has been selected.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1245614

Title:
  Chromium selects too much on partial floating tag select

Status in “chromium-browser” package in Ubuntu:
  Incomplete

Bug description:
  To reproduce:

  1. Open the attached file in chromium
  1.1 Contents: 1 paragraph before the table, The table itself with 2 fields, 1 
paragraph after the table
  2. Make a selection from the middle of the second paragraph to the second 
field of the table

  What one expects to happen:

  The displayed selection should now be something along the lines of:
2\nParagraph after th

  What really happens:
  The displayed selection is:
Paragraph before the table\n2\nParagraph after th

  Note:
  If you copy the selection and then paste it else where, you notice that 
really only what you intended to be copied was actually copied, the selection 
is somehow displayed incorrectly, even though it is understood correctly when 
the copy event is initiated.

  Note 2:
  If you remove the 'float' part from the style, everything begins to work as 
intended.

  Note 3:
  If you select the entire table rather than just a part of it, the displayed 
selection once again understands what you've meant.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1245614/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1245340] Re: Internal michrophone works only in System testing

2013-10-28 Thread Volodya
Hello.

What is incomplete? What is missing?

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

Title:
  Internal michrophone works only in System testing

Status in “pulseaudio” package in Ubuntu:
  Incomplete

Bug description:
  I have Packard Bell Dot S netbook (with internal microphone)

  To reproduce:
  1. Start 'System Testing'
  2. Select 'Audio tests'
  3. During audio test note that you *can* hear yourself (but rather poorly, 
it's internal mic after all)

  4. Go to Sound Settings, Tab-Input
  5. 'Record sound from' is empty, input volume is grayed out.

  6. Start audacity
  7. Press record, speak, press stop
  8. Press play
  9. Nothing is audible

  What i expect to happen:
  If system testing was able to record from the internal mic, i expect other 
systems to be able to do that as well.

  What actually happens:
  System testing is able to perform tasks that other parts of the system are 
unable to do.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 754580] Re: Cannot move tabs between multiple Firefox or Chromium windows while using Unity unless windows are both unmaximized, unminimized, and visible.

2013-10-27 Thread Volodya
What i do in this situation is to make one window maximised and another
unmaximised, i then make the smaller window 'Always on top'. This is
pretty much the only way to fit everything on the screen of a netbook.

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

Title:
  Cannot move tabs between multiple Firefox or Chromium windows while
  using Unity unless windows are both unmaximized, unminimized, and
  visible.

Status in Ayatana Design:
  Fix Committed
Status in Chromium Browser:
  New
Status in Unity:
  Triaged
Status in “chromium-browser” package in Ubuntu:
  Triaged
Status in “firefox” package in Ubuntu:
  Invalid
Status in “unity” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: unity

  With Metacity, one would need only to drag the tab to the bottom bar,
  mouse-over the destination window, and then release the tab in the
  newly focused window.

  There is no equivalent behavior with Unity. Dragging tabs to its bar
  does nothing.

  
  -
  Desired resolution:

  Users should be able to move tabs between browser windows irrespective
  of window state (minimised, restored or maximised) by dragging and
  dropping the via the Launcher app spread.

  Use case
  1.  User opens two Chromium or Firefox windows, with two tabs open in each.
  2.  User starts dragging a browser tab
  3.  Unity slides out the Launcher with valid drop receptacles highlighted
  4.  User drags the tab over a browser icon in the Launcher
  5.  Unity displays a spread of the two browser windows
  6.  User continues the drag, and drags and drops the tab into the other 
browser window
  7.  Unity shifts the tab to the other browser window.  If this window is 
minimised it is restored and brought into focus.  If this window is maximised 
or restored it is brought into focus.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1244954] Re: Chromium refuses to play OGV unless response code is 200

2013-10-27 Thread Volodya
** Package changed: chromium-browser (Ubuntu) = chromium-browser

** Tags added: headers

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to chromium-browser in Ubuntu.
https://bugs.launchpad.net/bugs/1244954

Title:
  Chromium refuses to play OGV unless response code is 200

Status in Chromium Browser:
  New

Bug description:
  When Chromium encounters media file link it sends request for partial
  content with the range of '0-' (entire file). But then, when receiving
  the following headers it refuses to play the file:

  [header] HTTP/1.1 206 Partial Content
  [header] Pragma: 
  [header] Cache-Control:
  [error] [client 127.0.0.1] [header] Content-type: video/ogg
  [error] [client 127.0.0.1] [header] Content-Disposition: inline
  [error] [client 127.0.0.1] [header] Content-range: 0-6642902/6642903
  [error] [client 127.0.0.1] [header] Content-length: 6642903
  [error] [client 127.0.0.1] [header] X-Content-Duration: 157.858

  What happens: Partial request headers are sent, partial response
  headers are received, file does not play

  What i expect to happen: Either send regular file request or accept
  206 response as a valid response.

To manage notifications about this bug go to:
https://bugs.launchpad.net/chromium-browser/+bug/1244954/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


  1   2   >