[Desktop-packages] [Bug 1879968] Re: copy/paste still sometimes fails in LibreOffice on mutter 3.36.2

2020-06-28 Thread Marcello Nuccio
It's not always easy to check that the pasted text it's the correct one,
then this is a data corruption bug. That is why I think this is a
critical bug.

Worse, the most affected users of this bug (non-technical ones) are very
unlikely to ever report it. For example, I am a programmer and I only
discovered this bug when my wife, a non-technical user, reported it to
me. She started to see cut and paste problems with Ubuntu 19.04, almost
one year ago, but at the same time, I have never had any problem,
because, as a programmer, I mostly use different software. My wife has
never filled a bug report, as most non-technical users (I think). Then I
don't know how to raise awareness of this problem.

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

Title:
  copy/paste still sometimes fails in LibreOffice on mutter 3.36.2

Status in Mutter:
  New
Status in mutter package in Ubuntu:
  Confirmed

Bug description:
  In Ubuntu 19.10 and 20.04 there was a bug that caused copy and paste
  operations to fail pretty often: the text that was pasted was not the
  text that was just copied.  See the long discussion at bug #1852183.
  The bug was recently marked closed, since the package mutter -
  3.36.2-1ubuntu1~20.04.1 landed in focal-updates and makes the bug
  occur much less frequently.

  Unfortunately the bug still exists, and is not difficult to reproduce.
  I am running Ubuntu 20.04 and have the new 3.36.2-1ubuntu1~20.04.1
  version of mutter.  I just opened two LibreOffice Writer windows side
  by side, and repeatedly selected some text in the left window, copied
  it, then attempted to paste it into the right window.  In my
  experiment, approximately 1 in every 20 paste operations failed: it
  did not paste the text that was just copied, but instead the text that
  was copied before that.

  Now, an error rate of 1 in 20 may not seem so bad.  On the other hand,
  if you spend all day writing a document and copy and paste dozens of
  times during the day, then you may hit this bug multiple times per day
  (as I have been recently), which is a significant annoyance.

  I tested in LibreOffice since that is where I have seen the bug most
  often, but I have also seen it occur in other applications as well.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mutter/+bug/1879968/+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 1879968] Re: copy/paste still sometimes fails in LibreOffice on mutter 3.36.2

2020-06-08 Thread Marcello Nuccio
How can I help to fix this bug?

I can easely reproduce it easely on three differnt computers (one new
install, and two upgraded from 19.10).

The only workaround that I have found is to install xubuntu-desktop or
lubuntu-desktop. I cannot use "Ubuntu Wayland" because libreoffice
becomes sluggish (I can't reproduce it reliably, it seems completely
random) and because it has limited remote desktop functionality.

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

Title:
  copy/paste still sometimes fails in LibreOffice on mutter 3.36.2

Status in Mutter:
  New
Status in mutter package in Ubuntu:
  Confirmed

Bug description:
  In Ubuntu 19.10 and 20.04 there was a bug that caused copy and paste
  operations to fail pretty often: the text that was pasted was not the
  text that was just copied.  See the long discussion at bug #1852183.
  The bug was recently marked closed, since the package mutter -
  3.36.2-1ubuntu1~20.04.1 landed in focal-updates and makes the bug
  occur much less frequently.

  Unfortunately the bug still exists, and is not difficult to reproduce.
  I am running Ubuntu 20.04 and have the new 3.36.2-1ubuntu1~20.04.1
  version of mutter.  I just opened two LibreOffice Writer windows side
  by side, and repeatedly selected some text in the left window, copied
  it, then attempted to paste it into the right window.  In my
  experiment, approximately 1 in every 20 paste operations failed: it
  did not paste the text that was just copied, but instead the text that
  was copied before that.

  Now, an error rate of 1 in 20 may not seem so bad.  On the other hand,
  if you spend all day writing a document and copy and paste dozens of
  times during the day, then you may hit this bug multiple times per day
  (as I have been recently), which is a significant annoyance.

  I tested in LibreOffice since that is where I have seen the bug most
  often, but I have also seen it occur in other applications as well.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mutter/+bug/1879968/+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 1721719] Re: gvfs-info bashism

2017-10-18 Thread Marcello Nuccio
You are right, the bug is fixed upstream. I have manually downloaded
gvfs-bin_1.34.1-1ubuntu1_amd64.deb and checked the file: it includes the
fix.

However it is not fixed on my computer. And I do not know why.

Unfortunately I have not found the package in /var/cache/apt/archives,
then I am not sure if the .deb installed on my computer is the same.

I have never tampered with my installation. This is a fresh install of
Artful Beta1 updated once a day with "apt dist-upgrade". I dont know
what has happened.

Regarding the use of "$@:2", there is no error displayed because:

1. "$@:2" is valid syntax in both shells, but it is clearly a bug
because it is expanded to "$1" "$2" ... ":2", which does not make sense.
I think that in bash it should have been "${@:2}" (2 is an offset),
while in dash the syntax is not supported and you should use "shift"
instead. You can check it by running:

$ echo 'echo "$@:2"; echo "${@:2}"' | bash -s foo bar
foo bar:2
bar

$ echo 'echo "$@:2"; echo "${@:2}"' | dash -s foo bar
foo bar:2
dash: 1: Bad substitution

2. "gio help info" discards all parameters after "info", then for
example "gio help info :2" is equivalent to "gio help info".

In short: I think you can safely remove "$@:2".

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

Title:
  gvfs-info bashism

Status in gvfs package in Ubuntu:
  Incomplete

Bug description:
  The script /usr/bin/gvfs-info uses two bash features:

  1. "==" is used for string comparison instead of "="
  2. "$@:2" is used instead of "shift" and then "$@" to expand all but the 
first argument.

  You can see the errors by running "gvfs-info --help".

  I have found this bug using xdg-open to open a PDF file from the
  command line. xdg-open executes "gvfs-info --help" to check the
  environment, but this command fails because of the problems described.

  The attached patch fixes the problem for me.

  $ lsb_release -rd:
  Description:  Ubuntu Artful Aardvark (development branch)
  Release:  17.10

  $ apt-cache policy gvfs-bin
  gvfs-bin:
    Installato: 1.34.1-1ubuntu1
    Candidato:  1.34.1-1ubuntu1
    Tabella versione:
   *** 1.34.1-1ubuntu1 500
  500 http://it.archive.ubuntu.com/ubuntu artful/main amd64 Packages
  100 /var/lib/dpkg/status

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: gvfs-bin 1.34.1-1ubuntu1
  ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
  Uname: Linux 4.13.0-12-generic x86_64
  ApportVersion: 2.20.7-0ubuntu2
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Oct  6 09:45:04 2017
  InstallationDate: Installed on 2017-09-21 (15 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170919)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1721719/+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 1721719] Re: gvfs-info bashism

2017-10-06 Thread Marcello Nuccio
** Description changed:

  The script /usr/bin/gvfs-info uses two bash features:
  
  1. "==" is used for string comparison instead of "="
  2. "$@:2" is used instead of "shift" and then "$@" to expand all but the 
first argument.
+ 
+ You can see the errors by running "gvfs-info --help".
  
  I have found this bug using xdg-open to open a PDF file from the command
  line. xdg-open executes "gvfs-info --help" to check the environment, but
  this command fails because of the problems described.
  
  The attached patch fixes the problem for me.
  
  $ lsb_release -rd:
  Description:  Ubuntu Artful Aardvark (development branch)
  Release:  17.10
  
  $ apt-cache policy gvfs-bin
  gvfs-bin:
-   Installato: 1.34.1-1ubuntu1
-   Candidato:  1.34.1-1ubuntu1
-   Tabella versione:
-  *** 1.34.1-1ubuntu1 500
- 500 http://it.archive.ubuntu.com/ubuntu artful/main amd64 Packages
- 100 /var/lib/dpkg/status
+   Installato: 1.34.1-1ubuntu1
+   Candidato:  1.34.1-1ubuntu1
+   Tabella versione:
+  *** 1.34.1-1ubuntu1 500
+ 500 http://it.archive.ubuntu.com/ubuntu artful/main amd64 Packages
+ 100 /var/lib/dpkg/status
  
  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: gvfs-bin 1.34.1-1ubuntu1
  ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
  Uname: Linux 4.13.0-12-generic x86_64
  ApportVersion: 2.20.7-0ubuntu2
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Oct  6 09:45:04 2017
  InstallationDate: Installed on 2017-09-21 (15 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170919)
  ProcEnviron:
-  TERM=xterm-256color
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=
-  LANG=it_IT.UTF-8
-  SHELL=/bin/bash
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=it_IT.UTF-8
+  SHELL=/bin/bash
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  gvfs-info bashism

Status in gvfs package in Ubuntu:
  New

Bug description:
  The script /usr/bin/gvfs-info uses two bash features:

  1. "==" is used for string comparison instead of "="
  2. "$@:2" is used instead of "shift" and then "$@" to expand all but the 
first argument.

  You can see the errors by running "gvfs-info --help".

  I have found this bug using xdg-open to open a PDF file from the
  command line. xdg-open executes "gvfs-info --help" to check the
  environment, but this command fails because of the problems described.

  The attached patch fixes the problem for me.

  $ lsb_release -rd:
  Description:  Ubuntu Artful Aardvark (development branch)
  Release:  17.10

  $ apt-cache policy gvfs-bin
  gvfs-bin:
    Installato: 1.34.1-1ubuntu1
    Candidato:  1.34.1-1ubuntu1
    Tabella versione:
   *** 1.34.1-1ubuntu1 500
  500 http://it.archive.ubuntu.com/ubuntu artful/main amd64 Packages
  100 /var/lib/dpkg/status

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: gvfs-bin 1.34.1-1ubuntu1
  ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
  Uname: Linux 4.13.0-12-generic x86_64
  ApportVersion: 2.20.7-0ubuntu2
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Oct  6 09:45:04 2017
  InstallationDate: Installed on 2017-09-21 (15 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170919)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1721719/+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 1721719] [NEW] gvfs-info bashism

2017-10-06 Thread Marcello Nuccio
Public bug reported:

The script /usr/bin/gvfs-info uses two bash features:

1. "==" is used for string comparison instead of "="
2. "$@:2" is used instead of "shift" and then "$@" to expand all but the first 
argument.

I have found this bug using xdg-open to open a PDF file from the command
line. xdg-open executes "gvfs-info --help" to check the environment, but
this command fails because of the problems described.

The attached patch fixes the problem for me.

$ lsb_release -rd:
Description:Ubuntu Artful Aardvark (development branch)
Release:17.10

$ apt-cache policy gvfs-bin
gvfs-bin:
  Installato: 1.34.1-1ubuntu1
  Candidato:  1.34.1-1ubuntu1
  Tabella versione:
 *** 1.34.1-1ubuntu1 500
500 http://it.archive.ubuntu.com/ubuntu artful/main amd64 Packages
100 /var/lib/dpkg/status

ProblemType: Bug
DistroRelease: Ubuntu 17.10
Package: gvfs-bin 1.34.1-1ubuntu1
ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
Uname: Linux 4.13.0-12-generic x86_64
ApportVersion: 2.20.7-0ubuntu2
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Fri Oct  6 09:45:04 2017
InstallationDate: Installed on 2017-09-21 (15 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170919)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=it_IT.UTF-8
 SHELL=/bin/bash
SourcePackage: gvfs
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug artful wayland-session

** Patch added: "fixes bashisms in /usr/bin/gvfs-info"
   
https://bugs.launchpad.net/bugs/1721719/+attachment/4963458/+files/gvfs-info-fix-bashism.patch

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

Title:
  gvfs-info bashism

Status in gvfs package in Ubuntu:
  New

Bug description:
  The script /usr/bin/gvfs-info uses two bash features:

  1. "==" is used for string comparison instead of "="
  2. "$@:2" is used instead of "shift" and then "$@" to expand all but the 
first argument.

  I have found this bug using xdg-open to open a PDF file from the
  command line. xdg-open executes "gvfs-info --help" to check the
  environment, but this command fails because of the problems described.

  The attached patch fixes the problem for me.

  $ lsb_release -rd:
  Description:  Ubuntu Artful Aardvark (development branch)
  Release:  17.10

  $ apt-cache policy gvfs-bin
  gvfs-bin:
Installato: 1.34.1-1ubuntu1
Candidato:  1.34.1-1ubuntu1
Tabella versione:
   *** 1.34.1-1ubuntu1 500
  500 http://it.archive.ubuntu.com/ubuntu artful/main amd64 Packages
  100 /var/lib/dpkg/status

  ProblemType: Bug
  DistroRelease: Ubuntu 17.10
  Package: gvfs-bin 1.34.1-1ubuntu1
  ProcVersionSignature: Ubuntu 4.13.0-12.13-generic 4.13.3
  Uname: Linux 4.13.0-12-generic x86_64
  ApportVersion: 2.20.7-0ubuntu2
  Architecture: amd64
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Oct  6 09:45:04 2017
  InstallationDate: Installed on 2017-09-21 (15 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Alpha amd64 (20170919)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  SourcePackage: gvfs
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1721719/+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 1003316] Re: Cannot close Firefox inspector

2012-11-21 Thread Marcello Nuccio
I haven't seen anymore this bug for months. So I think it was fixed by
some updates.

-- 
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/1003316

Title:
  Cannot close Firefox inspector

Status in “firefox” package in Ubuntu:
  Confirmed

Bug description:
  Started the inspector via context menu Inspect Element (Q).
  Clicking on the X (Close Inspector) button does nothing.
  Reloading the page, the inspector is still here.
  Forcing reload, same effect.
  Switching to other tabs on the same window, all tabs show the inspector.
  Opening new window, there's no inspector.

  The web page was: http://docs.angularjs.org/tutorial/step_00
  I've started the inspector by right clicking on the Previous button on the 
page.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: firefox 14.0~a2~hg20120522r94329-0ubuntu1~umd1
  ProcVersionSignature: Ubuntu 3.2.0-24.38-generic-pae 3.2.16
  Uname: Linux 3.2.0-24-generic-pae i686
  AddonCompatCheckDisabled: False
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  marcenuc   1810 F pulseaudio
  BuildID: 20120522055837
  CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 
not found.
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xfe3f4000 irq 47'
 Mixer name : 'Intel Eaglelake HDMI'
 Components : 'HDA:10ec0888,104382fe,00100101 
HDA:80862803,80860101,0010'
 Controls  : 46
 Simple ctrls  : 23
  Channel: aurora
  Date: Wed May 23 11:26:21 2012
  ForcedLayersAccel: False
  IfupdownConfig:
   auto lo
   iface lo inet loopback
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 
(20120423)
  IpRoute:
   default via 192.168.11.1 dev eth0  proto static 
   169.254.0.0/16 dev eth0  scope link  metric 1000 
   192.168.11.0/24 dev eth0  proto kernel  scope link  src 192.168.11.2  metric 
1
  IwConfig:
   lono wireless extensions.
   
   eth0  no wireless extensions.
  MostRecentCrashID: bp-e9d6e30e-ea59-48e2-bf92-d11982120520
  ProcEnviron:
   PATH=(custom, user)
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  Profile0PrefErrors: Unexpected character before close parenthesis @ 
prefs.js:167
  Profile1PrefSources:
   /etc/firefox/syspref.js
   prefs.js
   user.js
  Profile2PrefSources:
   /etc/firefox/syspref.js
   prefs.js
   user.js
  Profiles:
   Profile0 - LastVersion=14.0a2/20120522055837 (In use)
   Profile1 - LastVersion=12.0/20120420145725 (Out of date)
   Profile2 - LastVersion=13.0/20120508180640 (Out of date)
   Profile3 (Default) - LastVersion=14.0a2/20120521054317 (Out of date)
  RelatedPackageVersions:
   rhythmbox-mozilla 2.96-0ubuntu4
   totem-mozilla 3.0.1-0ubuntu21
  RfKill:
   
  RunningIncompatibleAddons: False
  SourcePackage: firefox
  UpgradeStatus: No upgrade log present (probably fresh install)
  WifiSyslog:
   May 23 10:39:47 pisolo kernel: [ 7965.651511] vboxdrv: Found 4 processor 
cores.
   May 23 10:39:47 pisolo kernel: [ 7965.651714] vboxdrv: fAsync=0 offMin=0x508 
offMax=0x2b30
   May 23 10:39:47 pisolo kernel: [ 7965.651801] vboxdrv: TSC mode is 
'synchronous', kernel timer mode is 'normal'.
   May 23 10:39:47 pisolo kernel: [ 7965.651803] vboxdrv: Successfully loaded 
version 4.1.16 (interface 0x0019).
   May 23 10:39:47 pisolo kernel: [ 7965.861142] vboxpci: IOMMU not found (not 
registered)
  dmi.bios.date: 07/16/2008
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 0314
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: P5QL-EM
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev X.0x
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0314:bd07/16/2008:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5QL-EM:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1003316/+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 1064962] Re: [SRU] Global menubar items do not work when opening a document directly from nautilus with no LibreOffice instance running

2012-11-21 Thread Marcello Nuccio
@chemnic, have you checked comment #132? What happens if you wait 5
seconds before reopening LibreOffice, as stated at bug #1075263?

-- 
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/1064962

Title:
  [SRU] Global menubar items do not work when opening a document
  directly from nautilus with no LibreOffice instance running

Status in BAMF Application Matching Framework:
  Won't Fix
Status in LibreOffice Productivity Suite:
  Won't Fix
Status in The Application Menu:
  Confirmed
Status in “bamf” package in Ubuntu:
  Confirmed
Status in “indicator-appmenu” package in Ubuntu:
  Confirmed
Status in “libreoffice” package in Ubuntu:
  Fix Committed
Status in “bamf” source package in Quantal:
  Confirmed
Status in “indicator-appmenu” source package in Quantal:
  Confirmed
Status in “libreoffice” source package in Quantal:
  Fix Released

Bug description:
  [IMPACT]

   * there is no menu available in some scenarios of opening LibreOffice
   * makes LibreOffice essentially unusable when opening a docuemnt directly

  [TESTCASE]

   * open a existing file from nautilus - no menu in a unity session

  [Regression Potential]

   * changes are to the menu code integration, possible regressions will be 
there
   * package has been available for user testing 
https://launchpad.net/~bjoern-michaelsen/+archive/libreoffice-quantaltest-20120601
 since 2012-10-26 without any reported regressions
   * see comment 74 for realworld enduser testing

  ---
  pre-SRU description details:

  1) Have no instance of LibreOffice running
  2) open a document by double-clicking it in nautilus
  3) new window has no menu
  4) unfocusing/refocusing (e.g. by pressing F7 to bring up the spelling 
dialog) makes the menu appear

  WORKAROUND: minimize and restore the LibreOffice window
  (more permanent workaround, disable the global menu by removing the package 
libreoffice-gtk).

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: libreoffice-gtk 1:3.6.2~rc2-0ubuntu3
  ProcVersionSignature: Ubuntu 3.5.0-17.28-generic 3.5.5
  Uname: Linux 3.5.0-17-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.6.1-0ubuntu2
  Architecture: amd64
  Date: Wed Oct 10 11:48:20 2012
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  SourcePackage: libreoffice
  UpgradeStatus: Upgraded to quantal on 2012-09-30 (9 days ago)

  original description:
  In writer, none of the menubar items appear to work.  Example:

  * Open new document in Writer
  * Type some text and highlight it
  * Try Edit-Cut
   Nothing happens
  * Try Format-Change chase-UPPERCASE
   Nothing happens!
  workaround: restart your session after update

To manage notifications about this bug go to:
https://bugs.launchpad.net/bamf/+bug/1064962/+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 1079618] Re: Menus do not show up when opening an existing file

2012-11-18 Thread Marcello Nuccio
apport-collect does not work for me because I am not the bug's reporter.
However, I have tried to find a reliable way to reproduce this bug. I
have found it to be very easy to reproduce on two computers, but it is
not that easy to understand when it happens.

I have come to the conclusion that it is a race condition, because it
happens more easily when start-up is slower. Sometimes the menu is shown
and seems to work, but clicking on any menu item does nothing. Sometimes
the shown menu is the menu of oosplash, instead of the menu of the
application (Writer or Calc.) Sometimes the menu is shown only by doing
Alt+F10 and not by holding down the Alt key or hovering the mouse on the
top panel. Sometimes the menu is shown after switching to and from
another window.

There is no easy and reliable pattern for reproducing it, but it happens
frequently.

-- 
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/1079618

Title:
  Menus do not show up when opening an existing file

Status in “libreoffice” package in Ubuntu:
  Incomplete

Bug description:
  Description:  Ubuntu 12.10
  Release:  12.10

  libreoffice version:
    Installed: 1:3.6.2~rc2-0ubuntu3
    Candidate: 1:3.6.2~rc2-0ubuntu3
    Version table:
   *** 1:3.6.2~rc2-0ubuntu3 0
  500 http://archive.ubuntu.com/ubuntu/ quantal/universe i386 Packages
  100 /var/lib/dpkg/status

  Possible related Packages installed:
  libreoffice 1:3.6.2~rc2-0ubuntu3
  libreoffice-base 1:3.6.2~rc2-0ubuntu3
  libreoffice-base-core 1:3.6.2~rc2-0ubuntu3
  libreoffice-calc 1:3.6.2~rc2-0ubuntu3
  libreoffice-common 1:3.6.2~rc2-0ubuntu3
  libreoffice-core 1:3.6.2~rc2-0ubuntu3
  libreoffice-draw 1:3.6.2~rc2-0ubuntu3
  libreoffice-emailmerge 1:3.6.2~rc2-0ubuntu3
  libreoffice-gnome 1:3.6.2~rc2-0ubuntu3
  libreoffice-gtk 1:3.6.2~rc2-0ubuntu3
  libreoffice-gtk3 1:3.6.2~rc2-0ubuntu3
  libreoffice-help-en-us 1:3.6.2~rc2-0ubuntu3
  libreoffice-impress 1:3.6.2~rc2-0ubuntu3
  libreoffice-java-common 1:3.6.2~rc2-0ubuntu3
  libreoffice-math 1:3.6.2~rc2-0ubuntu3
  libreoffice-ogltrans 1:3.6.2~rc2-0ubuntu3
  libreoffice-pdfimport 1.0.6+LibO3.6.2~rc2-0ubuntu3
  libreoffice-presentation-minimizer 1.0.4+LibO3.6.2~rc2-0ubuntu3
  libreoffice-presenter-console 1.1.1+LibO3.6.2~rc2-0ubuntu3
  libreoffice-style-human 1:3.6.2~rc2-0ubuntu3
  libreoffice-style-tango 1:3.6.2~rc2-0ubuntu3
  libreoffice-writer 1:3.6.2~rc2-0ubuntu3
  openjdk-6-jre:i386
  openjdk-6-jre-headless:i386
  openjdk-6-jre-lib

  If I open any libreoffice program manually I see the menus normally
  (like File - Save, Save as.. , etc). If I open libreoffice by opening
  a libreoffice file instad menu's won't work or show up anyhow. Using
  the Unity ALT key won't work to get any options from the menu. Ubuntu
  installation is new and updated to latest upgrade.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1079618/+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 1079618] Re: Menus do not show up when opening an existing file

2012-11-18 Thread Marcello Nuccio
Thanks for the tips Christopher.

After much searching, I have finally found the bug that I am seeing: Bug
#1064962

However I think this bug is a duplicate of bug #1064962.

-- 
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/1079618

Title:
  Menus do not show up when opening an existing file

Status in “libreoffice” package in Ubuntu:
  Incomplete

Bug description:
  Description:  Ubuntu 12.10
  Release:  12.10

  libreoffice version:
    Installed: 1:3.6.2~rc2-0ubuntu3
    Candidate: 1:3.6.2~rc2-0ubuntu3
    Version table:
   *** 1:3.6.2~rc2-0ubuntu3 0
  500 http://archive.ubuntu.com/ubuntu/ quantal/universe i386 Packages
  100 /var/lib/dpkg/status

  Possible related Packages installed:
  libreoffice 1:3.6.2~rc2-0ubuntu3
  libreoffice-base 1:3.6.2~rc2-0ubuntu3
  libreoffice-base-core 1:3.6.2~rc2-0ubuntu3
  libreoffice-calc 1:3.6.2~rc2-0ubuntu3
  libreoffice-common 1:3.6.2~rc2-0ubuntu3
  libreoffice-core 1:3.6.2~rc2-0ubuntu3
  libreoffice-draw 1:3.6.2~rc2-0ubuntu3
  libreoffice-emailmerge 1:3.6.2~rc2-0ubuntu3
  libreoffice-gnome 1:3.6.2~rc2-0ubuntu3
  libreoffice-gtk 1:3.6.2~rc2-0ubuntu3
  libreoffice-gtk3 1:3.6.2~rc2-0ubuntu3
  libreoffice-help-en-us 1:3.6.2~rc2-0ubuntu3
  libreoffice-impress 1:3.6.2~rc2-0ubuntu3
  libreoffice-java-common 1:3.6.2~rc2-0ubuntu3
  libreoffice-math 1:3.6.2~rc2-0ubuntu3
  libreoffice-ogltrans 1:3.6.2~rc2-0ubuntu3
  libreoffice-pdfimport 1.0.6+LibO3.6.2~rc2-0ubuntu3
  libreoffice-presentation-minimizer 1.0.4+LibO3.6.2~rc2-0ubuntu3
  libreoffice-presenter-console 1.1.1+LibO3.6.2~rc2-0ubuntu3
  libreoffice-style-human 1:3.6.2~rc2-0ubuntu3
  libreoffice-style-tango 1:3.6.2~rc2-0ubuntu3
  libreoffice-writer 1:3.6.2~rc2-0ubuntu3
  openjdk-6-jre:i386
  openjdk-6-jre-headless:i386
  openjdk-6-jre-lib

  If I open any libreoffice program manually I see the menus normally
  (like File - Save, Save as.. , etc). If I open libreoffice by opening
  a libreoffice file instad menu's won't work or show up anyhow. Using
  the Unity ALT key won't work to get any options from the menu. Ubuntu
  installation is new and updated to latest upgrade.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1079618/+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 1063965] Re: Choppy sound in 12.10

2012-11-16 Thread Marcello Nuccio
Johan, you should post the output of the script, not the script.

Raymond, you can find the output alsa-info.sh on my computer at
http://www.alsa-project.org/db/?f=578ac23a785c41eae14c32f15fb39ccb1da3a663

Thanks for any help.

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

Title:
  Choppy sound in 12.10

Status in “alsa-driver” package in Ubuntu:
  Confirmed

Bug description:
  Distro:- Ubuntu 12.10 Quantal,

  What I suspect is that sound is muted and turned on at a fast pace and that 
gives it the choppy sound. I discovered that If I choose Sound Card ;- Mixer - 
HDA Intel  - the surround sliders show mute/on at a fast rate, with 
- do -   Mixer - Play back: Build in Audio Analog 
Stereo - the master sliders jumps up and down rapidly a short distance.
  I find the same happening on U tube.  Movie Player with videos not so badly 
affected.

  Following is reports that I thought could help to pin point problem.
  If more info needed, I would gladly provide such. Still new at this so please 
bear with me.
  Thanks in advance for help that I know would be forthcoming.

  ~$ lspci -v | grep -A7 -i audio
  00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition 
Audio Controller (rev 01)
Subsystem: Foxconn International, Inc. Device 0dc2
Flags: bus master, fast devsel, latency 0, IRQ 44
Memory at f9ffc000 (64-bit, non-prefetchable) [size=16K]
Capabilities: access denied
Kernel driver in use: snd_hda_intel
Kernel modules: snd-hda-intel

  
  sudo aplay -l
   List of PLAYBACK Hardware Devices 
  card 0: Intel [HDA Intel], device 0: ALC662 rev1 Analog [ALC662 rev1 Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
  card 0: Intel [HDA Intel], device 1: ALC662 rev1 Digital [ALC662 rev1 Digital]
Subdevices: 1/1
Subdevice #0: subdevice #0

  
  lspci
  00:00.0 Host bridge: Intel Corporation 4 Series Chipset DRAM Controller (rev 
03)
  00:01.0 PCI bridge: Intel Corporation 4 Series Chipset PCI Express Root Port 
(rev 03)
  00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition 
Audio Controller (rev 01)
  00:1c.0 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 1 
(rev 01)
  00:1c.1 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 2 
(rev 01)
  00:1d.0 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #1 (rev 01)
  00:1d.1 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #2 (rev 01)
  00:1d.2 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #3 (rev 01)
  00:1d.3 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #4 (rev 01)
  00:1d.7 USB controller: Intel Corporation NM10/ICH7 Family USB2 EHCI 
Controller (rev 01)
  00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
  00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface 
Bridge (rev 01)
  00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller 
(rev 01)
  00:1f.2 IDE interface: Intel Corporation NM10/ICH7 Family SATA Controller 
[IDE mode] (rev 01)
  00:1f.3 SMBus: Intel Corporation NM10/ICH7 Family SMBus Controller (rev 01)
  01:00.0 VGA compatible controller: NVIDIA Corporation G86 [GeForce 8500 GT] 
(rev a1)
  03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B 
PCI Express Gigabit Ethernet controller (rev 03)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1063965/+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 1067434] Re: Sound output device keeps changing when using headphones

2012-10-27 Thread Marcello Nuccio
As suggested at http://askubuntu.com/a/206554/11223 doing:

rm -r ~/.pulse ~/.pulse-cookie
pkill pulse

makes the problem disappear, but only until I change the sound volume
through the panel indicator.

-- 
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/1067434

Title:
  Sound output device keeps changing when using headphones

Status in “gnome-control-center” package in Ubuntu:
  Confirmed

Bug description:
  Recently upgraded to 12.10. Having issues with sound when using
  headphones plugged into the front ports. Something that doesn't happen
  when booting to windows - so fairly confident it's an Ubuntu issue.

  When listening to any sound, music, video etc the sound levels jump up
  and down and click. If I open sound from the settings menu when
  playing videos or music and viewing the output tab I can see
  headphone - built-in audio disappear and reappear (very quickly) so
  I'm guessing the system is jumping back to the analogue output and
  back again which is why the sound volume changes and clicks.

  Worth noting I never used my headphones when 12.04 was installed so
  not sure if it's this OS or Ubuntu hates my hardware generally. Booted
  from live cd (usb) to 12.04 and there wasnt any issue.

  Anyone seen this before? any advice?

  Sound is built in to motherboard. I have the Gigabyte GA-X58A-UD5.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: gnome-control-center 1:3.4.2-0ubuntu19
  ProcVersionSignature: Ubuntu 3.5.0-17.28-generic 3.5.5
  Uname: Linux 3.5.0-17-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.6.1-0ubuntu3
  Architecture: amd64
  Date: Tue Oct 16 18:07:44 2012
  EcryptfsInUse: Yes
  ExecutablePath: /usr/bin/gnome-control-center
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-control-center
  UpgradeStatus: Upgraded to quantal on 2012-09-29 (17 days ago)
  usr_lib_gnome-control-center:
   activity-log-manager-control-center 0.9.4-0ubuntu4
   deja-dup24.0-0ubuntu1
   gnome-control-center-signon 0.0.18-0ubuntu1
   indicator-datetime  12.10.2-0ubuntu3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1067434/+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 1067434] Re: Sound output device keeps changing when using headphones

2012-10-27 Thread Marcello Nuccio
Looks like e duplicate of Bug #1063965

-- 
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/1067434

Title:
  Sound output device keeps changing when using headphones

Status in “gnome-control-center” package in Ubuntu:
  Confirmed

Bug description:
  Recently upgraded to 12.10. Having issues with sound when using
  headphones plugged into the front ports. Something that doesn't happen
  when booting to windows - so fairly confident it's an Ubuntu issue.

  When listening to any sound, music, video etc the sound levels jump up
  and down and click. If I open sound from the settings menu when
  playing videos or music and viewing the output tab I can see
  headphone - built-in audio disappear and reappear (very quickly) so
  I'm guessing the system is jumping back to the analogue output and
  back again which is why the sound volume changes and clicks.

  Worth noting I never used my headphones when 12.04 was installed so
  not sure if it's this OS or Ubuntu hates my hardware generally. Booted
  from live cd (usb) to 12.04 and there wasnt any issue.

  Anyone seen this before? any advice?

  Sound is built in to motherboard. I have the Gigabyte GA-X58A-UD5.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: gnome-control-center 1:3.4.2-0ubuntu19
  ProcVersionSignature: Ubuntu 3.5.0-17.28-generic 3.5.5
  Uname: Linux 3.5.0-17-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.6.1-0ubuntu3
  Architecture: amd64
  Date: Tue Oct 16 18:07:44 2012
  EcryptfsInUse: Yes
  ExecutablePath: /usr/bin/gnome-control-center
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-control-center
  UpgradeStatus: Upgraded to quantal on 2012-09-29 (17 days ago)
  usr_lib_gnome-control-center:
   activity-log-manager-control-center 0.9.4-0ubuntu4
   deja-dup24.0-0ubuntu1
   gnome-control-center-signon 0.0.18-0ubuntu1
   indicator-datetime  12.10.2-0ubuntu3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1067434/+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 1063965] Re: Choppy sound in 12.10

2012-10-27 Thread Marcello Nuccio
Looks like a duplicate of bug #1067434

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

Title:
  Choppy sound in 12.10

Status in “alsa-driver” package in Ubuntu:
  Confirmed

Bug description:
  Distro:- Ubuntu 12.10 Quantal,

  What I suspect is that sound is muted and turned on at a fast pace and that 
gives it the choppy sound. I discovered that If I choose Sound Card ;- Mixer - 
HDA Intel  - the surround sliders show mute/on at a fast rate, with 
- do -   Mixer - Play back: Build in Audio Analog 
Stereo - the master sliders jumps up and down rapidly a short distance.
  I find the same happening on U tube.  Movie Player with videos not so badly 
affected.

  Following is reports that I thought could help to pin point problem.
  If more info needed, I would gladly provide such. Still new at this so please 
bear with me.
  Thanks in advance for help that I know would be forthcoming.

  ~$ lspci -v | grep -A7 -i audio
  00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition 
Audio Controller (rev 01)
Subsystem: Foxconn International, Inc. Device 0dc2
Flags: bus master, fast devsel, latency 0, IRQ 44
Memory at f9ffc000 (64-bit, non-prefetchable) [size=16K]
Capabilities: access denied
Kernel driver in use: snd_hda_intel
Kernel modules: snd-hda-intel

  
  sudo aplay -l
   List of PLAYBACK Hardware Devices 
  card 0: Intel [HDA Intel], device 0: ALC662 rev1 Analog [ALC662 rev1 Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
  card 0: Intel [HDA Intel], device 1: ALC662 rev1 Digital [ALC662 rev1 Digital]
Subdevices: 1/1
Subdevice #0: subdevice #0

  
  lspci
  00:00.0 Host bridge: Intel Corporation 4 Series Chipset DRAM Controller (rev 
03)
  00:01.0 PCI bridge: Intel Corporation 4 Series Chipset PCI Express Root Port 
(rev 03)
  00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition 
Audio Controller (rev 01)
  00:1c.0 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 1 
(rev 01)
  00:1c.1 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 2 
(rev 01)
  00:1d.0 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #1 (rev 01)
  00:1d.1 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #2 (rev 01)
  00:1d.2 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #3 (rev 01)
  00:1d.3 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #4 (rev 01)
  00:1d.7 USB controller: Intel Corporation NM10/ICH7 Family USB2 EHCI 
Controller (rev 01)
  00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
  00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface 
Bridge (rev 01)
  00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller 
(rev 01)
  00:1f.2 IDE interface: Intel Corporation NM10/ICH7 Family SATA Controller 
[IDE mode] (rev 01)
  00:1f.3 SMBus: Intel Corporation NM10/ICH7 Family SMBus Controller (rev 01)
  01:00.0 VGA compatible controller: NVIDIA Corporation G86 [GeForce 8500 GT] 
(rev a1)
  03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B 
PCI Express Gigabit Ethernet controller (rev 03)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1063965/+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 1063965] Re: Choppy sound in 12.10

2012-10-27 Thread Marcello Nuccio
Going to (translated from my language) System properties  Sound 
Output, and clicking on a output device, I see that the device Analog
headphones appears and disappears continuosly at a fast rate.

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

Title:
  Choppy sound in 12.10

Status in “alsa-driver” package in Ubuntu:
  Confirmed

Bug description:
  Distro:- Ubuntu 12.10 Quantal,

  What I suspect is that sound is muted and turned on at a fast pace and that 
gives it the choppy sound. I discovered that If I choose Sound Card ;- Mixer - 
HDA Intel  - the surround sliders show mute/on at a fast rate, with 
- do -   Mixer - Play back: Build in Audio Analog 
Stereo - the master sliders jumps up and down rapidly a short distance.
  I find the same happening on U tube.  Movie Player with videos not so badly 
affected.

  Following is reports that I thought could help to pin point problem.
  If more info needed, I would gladly provide such. Still new at this so please 
bear with me.
  Thanks in advance for help that I know would be forthcoming.

  ~$ lspci -v | grep -A7 -i audio
  00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition 
Audio Controller (rev 01)
Subsystem: Foxconn International, Inc. Device 0dc2
Flags: bus master, fast devsel, latency 0, IRQ 44
Memory at f9ffc000 (64-bit, non-prefetchable) [size=16K]
Capabilities: access denied
Kernel driver in use: snd_hda_intel
Kernel modules: snd-hda-intel

  
  sudo aplay -l
   List of PLAYBACK Hardware Devices 
  card 0: Intel [HDA Intel], device 0: ALC662 rev1 Analog [ALC662 rev1 Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
  card 0: Intel [HDA Intel], device 1: ALC662 rev1 Digital [ALC662 rev1 Digital]
Subdevices: 1/1
Subdevice #0: subdevice #0

  
  lspci
  00:00.0 Host bridge: Intel Corporation 4 Series Chipset DRAM Controller (rev 
03)
  00:01.0 PCI bridge: Intel Corporation 4 Series Chipset PCI Express Root Port 
(rev 03)
  00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition 
Audio Controller (rev 01)
  00:1c.0 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 1 
(rev 01)
  00:1c.1 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 2 
(rev 01)
  00:1d.0 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #1 (rev 01)
  00:1d.1 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #2 (rev 01)
  00:1d.2 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #3 (rev 01)
  00:1d.3 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI 
Controller #4 (rev 01)
  00:1d.7 USB controller: Intel Corporation NM10/ICH7 Family USB2 EHCI 
Controller (rev 01)
  00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
  00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface 
Bridge (rev 01)
  00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller 
(rev 01)
  00:1f.2 IDE interface: Intel Corporation NM10/ICH7 Family SATA Controller 
[IDE mode] (rev 01)
  00:1f.3 SMBus: Intel Corporation NM10/ICH7 Family SMBus Controller (rev 01)
  01:00.0 VGA compatible controller: NVIDIA Corporation G86 [GeForce 8500 GT] 
(rev a1)
  03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B 
PCI Express Gigabit Ethernet controller (rev 03)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1063965/+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 1003316] [NEW] Cannot close Firefox inspector

2012-05-23 Thread Marcello Nuccio
Public bug reported:

Started the inspector via context menu Inspect Element (Q).
Clicking on the X (Close Inspector) button does nothing.
Reloading the page, the inspector is still here.
Forcing reload, same effect.
Switching to other tabs on the same window, all tabs show the inspector.
Opening new window, there's no inspector.

The web page was: http://docs.angularjs.org/tutorial/step_00
I've started the inspector by right clicking on the Previous button on the 
page.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: firefox 14.0~a2~hg20120522r94329-0ubuntu1~umd1
ProcVersionSignature: Ubuntu 3.2.0-24.38-generic-pae 3.2.16
Uname: Linux 3.2.0-24-generic-pae i686
AddonCompatCheckDisabled: False
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
ApportVersion: 2.0.1-0ubuntu7
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  marcenuc   1810 F pulseaudio
BuildID: 20120522055837
CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 not 
found.
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xfe3f4000 irq 47'
   Mixer name   : 'Intel Eaglelake HDMI'
   Components   : 'HDA:10ec0888,104382fe,00100101 
HDA:80862803,80860101,0010'
   Controls  : 46
   Simple ctrls  : 23
Channel: aurora
Date: Wed May 23 11:26:21 2012
ForcedLayersAccel: False
IfupdownConfig:
 auto lo
 iface lo inet loopback
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 (20120423)
IpRoute:
 default via 192.168.11.1 dev eth0  proto static 
 169.254.0.0/16 dev eth0  scope link  metric 1000 
 192.168.11.0/24 dev eth0  proto kernel  scope link  src 192.168.11.2  metric 1
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
MostRecentCrashID: bp-e9d6e30e-ea59-48e2-bf92-d11982120520
ProcEnviron:
 PATH=(custom, user)
 LANG=it_IT.UTF-8
 SHELL=/bin/bash
Profile0PrefErrors: Unexpected character before close parenthesis @ prefs.js:167
Profile1PrefSources:
 /etc/firefox/syspref.js
 prefs.js
 user.js
Profile2PrefSources:
 /etc/firefox/syspref.js
 prefs.js
 user.js
Profiles:
 Profile0 - LastVersion=14.0a2/20120522055837 (In use)
 Profile1 - LastVersion=12.0/20120420145725 (Out of date)
 Profile2 - LastVersion=13.0/20120508180640 (Out of date)
 Profile3 (Default) - LastVersion=14.0a2/20120521054317 (Out of date)
RelatedPackageVersions:
 rhythmbox-mozilla 2.96-0ubuntu4
 totem-mozilla 3.0.1-0ubuntu21
RfKill:
 
RunningIncompatibleAddons: False
SourcePackage: firefox
UpgradeStatus: No upgrade log present (probably fresh install)
WifiSyslog:
 May 23 10:39:47 pisolo kernel: [ 7965.651511] vboxdrv: Found 4 processor cores.
 May 23 10:39:47 pisolo kernel: [ 7965.651714] vboxdrv: fAsync=0 offMin=0x508 
offMax=0x2b30
 May 23 10:39:47 pisolo kernel: [ 7965.651801] vboxdrv: TSC mode is 
'synchronous', kernel timer mode is 'normal'.
 May 23 10:39:47 pisolo kernel: [ 7965.651803] vboxdrv: Successfully loaded 
version 4.1.16 (interface 0x0019).
 May 23 10:39:47 pisolo kernel: [ 7965.861142] vboxpci: IOMMU not found (not 
registered)
dmi.bios.date: 07/16/2008
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0314
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: P5QL-EM
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev X.0x
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0314:bd07/16/2008:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5QL-EM:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


** Tags: apport-bug aurora-channel i386 precise

-- 
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/1003316

Title:
  Cannot close Firefox inspector

Status in “firefox” package in Ubuntu:
  New

Bug description:
  Started the inspector via context menu Inspect Element (Q).
  Clicking on the X (Close Inspector) button does nothing.
  Reloading the page, the inspector is still here.
  Forcing reload, same effect.
  Switching to other tabs on the same window, all tabs show the inspector.
  Opening new window, there's no inspector.

  The web page was: http://docs.angularjs.org/tutorial/step_00
  I've started the inspector by right clicking on the Previous button on the 
page.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: firefox 14.0~a2~hg20120522r94329-0ubuntu1~umd1
  ProcVersionSignature: Ubuntu 3.2.0-24.38-generic-pae 3.2.16
  Uname: Linux 3.2.0-24-generic-pae i686
  AddonCompatCheckDisabled: False
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: 

[Desktop-packages] [Bug 1003316] Re: Cannot close Firefox inspector

2012-05-23 Thread Marcello Nuccio
-- 
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/1003316

Title:
  Cannot close Firefox inspector

Status in “firefox” package in Ubuntu:
  New

Bug description:
  Started the inspector via context menu Inspect Element (Q).
  Clicking on the X (Close Inspector) button does nothing.
  Reloading the page, the inspector is still here.
  Forcing reload, same effect.
  Switching to other tabs on the same window, all tabs show the inspector.
  Opening new window, there's no inspector.

  The web page was: http://docs.angularjs.org/tutorial/step_00
  I've started the inspector by right clicking on the Previous button on the 
page.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: firefox 14.0~a2~hg20120522r94329-0ubuntu1~umd1
  ProcVersionSignature: Ubuntu 3.2.0-24.38-generic-pae 3.2.16
  Uname: Linux 3.2.0-24-generic-pae i686
  AddonCompatCheckDisabled: False
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  marcenuc   1810 F pulseaudio
  BuildID: 20120522055837
  CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 
not found.
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xfe3f4000 irq 47'
 Mixer name : 'Intel Eaglelake HDMI'
 Components : 'HDA:10ec0888,104382fe,00100101 
HDA:80862803,80860101,0010'
 Controls  : 46
 Simple ctrls  : 23
  Channel: aurora
  Date: Wed May 23 11:26:21 2012
  ForcedLayersAccel: False
  IfupdownConfig:
   auto lo
   iface lo inet loopback
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release i386 
(20120423)
  IpRoute:
   default via 192.168.11.1 dev eth0  proto static 
   169.254.0.0/16 dev eth0  scope link  metric 1000 
   192.168.11.0/24 dev eth0  proto kernel  scope link  src 192.168.11.2  metric 
1
  IwConfig:
   lono wireless extensions.
   
   eth0  no wireless extensions.
  MostRecentCrashID: bp-e9d6e30e-ea59-48e2-bf92-d11982120520
  ProcEnviron:
   PATH=(custom, user)
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  Profile0PrefErrors: Unexpected character before close parenthesis @ 
prefs.js:167
  Profile1PrefSources:
   /etc/firefox/syspref.js
   prefs.js
   user.js
  Profile2PrefSources:
   /etc/firefox/syspref.js
   prefs.js
   user.js
  Profiles:
   Profile0 - LastVersion=14.0a2/20120522055837 (In use)
   Profile1 - LastVersion=12.0/20120420145725 (Out of date)
   Profile2 - LastVersion=13.0/20120508180640 (Out of date)
   Profile3 (Default) - LastVersion=14.0a2/20120521054317 (Out of date)
  RelatedPackageVersions:
   rhythmbox-mozilla 2.96-0ubuntu4
   totem-mozilla 3.0.1-0ubuntu21
  RfKill:
   
  RunningIncompatibleAddons: False
  SourcePackage: firefox
  UpgradeStatus: No upgrade log present (probably fresh install)
  WifiSyslog:
   May 23 10:39:47 pisolo kernel: [ 7965.651511] vboxdrv: Found 4 processor 
cores.
   May 23 10:39:47 pisolo kernel: [ 7965.651714] vboxdrv: fAsync=0 offMin=0x508 
offMax=0x2b30
   May 23 10:39:47 pisolo kernel: [ 7965.651801] vboxdrv: TSC mode is 
'synchronous', kernel timer mode is 'normal'.
   May 23 10:39:47 pisolo kernel: [ 7965.651803] vboxdrv: Successfully loaded 
version 4.1.16 (interface 0x0019).
   May 23 10:39:47 pisolo kernel: [ 7965.861142] vboxpci: IOMMU not found (not 
registered)
  dmi.bios.date: 07/16/2008
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 0314
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: P5QL-EM
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: Rev X.0x
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0314:bd07/16/2008:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5QL-EM:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/firefox/+bug/1003316/+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