[Bug 1015778] Re: Gnome-terminal does not allow to use bash shortcut (M-f)

2012-08-31 Thread Alexander Kabakow
** Changed in: gnome-terminal (Ubuntu)
   Status: New = Confirmed

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

Title:
  Gnome-terminal does not allow to use bash shortcut (M-f)

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

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


[Bug 1033594] [NEW] nosetests fails to run

2012-08-06 Thread Alexander Kabakow
Public bug reported:

Traceback (most recent call last):
  File /usr/bin/nosetests, line 9, in module
load_entry_point('nose==1.1.2', 'console_scripts', 'nosetests')()
  File /usr/lib/python2.7/dist-packages/nose/core.py, line 118, in __init__
**extra_args)
TypeError: __init__() got an unexpected keyword argument 'exit'


--
File /usr/lib/python2.7/dist-packages/nose/core.py looks like 
def __init__(self, module=None, defaultTest='.', argv=None,
 testRunner=None, testLoader=None, env=None, config=None,
 suite=None, exit=True, plugins=None, addplugins=None):
if env is None:
env = os.environ
if config is None:
config = self.makeConfig(env, plugins)
if addplugins:
config.plugins.addPlugins(addplugins)
self.config = config
self.suite = suite
self.exit = exit
extra_args = {}
version = sys.version_info[0:2]
if version = (2,7) and version != (3,0):
extra_args['exit'] = exit --- Assigned from here
unittest.TestProgram.__init__(
self, module=module, defaultTest=defaultTest,
argv=argv, testRunner=testRunner, testLoader=testLoader,
**extra_args)  Error here

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

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

Title:
  nosetests fails to run

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

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


[Bug 1033594] Re: nosetests fails to run

2012-08-06 Thread Alexander Kabakow
$ dpkg -s python
Package: python
Status: install ok installed
Priority: important
Section: python
Installed-Size: 658
Maintainer: Ubuntu Developers ubuntu-devel-disc...@lists.ubuntu.com
Architecture: i386
Source: python-defaults
Version: 2.7.3-0ubuntu2
Replaces: python-dev ( 2.6.5-2)
Provides: python-ctypes, python-email, python-importlib, python-profiler, 
python-wsgiref
Depends: python2.7 (= 2.7.3), python-minimal (= 2.7.3-0ubuntu2)
Suggests: python-doc (= 2.7.3-0ubuntu2), python-tk (= 2.7.3-0ubuntu2)
Breaks: python-bz2 ( 1.1-8), python-csv ( 1.0-4), python-email ( 
2.5.5-3), update-manager-core ( 0.200.5-2)
Conflicts: python-central ( 0.5.5)
Description: interactive high-level object-oriented language (default version)
 Python, the high-level, interactive object oriented language,
 includes an extensive class library with lots of goodies for
 network programming, system administration, sounds and graphics.
 .
 This package is a dependency package, which depends on Debian's default
 Python version (currently v2.7).
Homepage: http://www.python.org/
Original-Maintainer: Matthias Klose d...@debian.org

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

Title:
  nosetests fails to run

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

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


[Bug 1033594] Re: nosetests fails to run

2012-08-06 Thread Alexander Kabakow
Bug exsists for nose versions:
* from upstream 
* pip


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

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

Title:
  nosetests fails to run

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

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


[Bug 1033594] Re: nosetests fails to run

2012-08-06 Thread Alexander Kabakow
Andrea, you absolutely right!

I had obsolete version of pyunit in my ~/.local

So,
Whole bug report is invalid.

Thanks for help


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

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

Title:
  nosetests fails to run

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

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


[Bug 1015744] Re: Bash history navigation keys should be enabled in the config

2012-08-05 Thread Alexander Kabakow
I tested this patch on windows. 
It works. I used MSys/MinGW environment that comes with windows version of git

By the way: forward-search-history is completely different feature from
history-search-forward. They are just different

So why it is good to have this feature enabled by default:
* Ubuntu - Linux for Human Beings, so it is must have friendly default 
configurations
* Proposed configuration is well tested: Gentoo Linux have this feature enabled 
for years
* Proposed configuration works even in Windows
* New users may found this keystrokes easy to learn
* Part of bash users are moving to zsh because they don't now how to enable 
this feature

Here is blog post 
http://www.electrictoolbox.com/pageup-history-auto-completion-bash-shell/
Author of post describes how history-search-backward/history-search-forward 
features works

So. For example you have history:
* ssh host-a
* cd ~/tmp/some
* mkdir test
* cd test
* vim host-a.conf
* ssh host-b
* ls
* cd ~/projects/kde-base
* make

You want to connect by ssh to host-a now
You can:
* Type ssh and press PageUp two times
* Type whole command by hands
* Press up arrow 8 times
* Use reverse search (C-r) supplying 'host-a' as params (It fails when it 
founds vim host-a.conf)

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

Title:
  Bash history navigation keys should be enabled in the config

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

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


[Bug 1015744] Re: Bash history navigation keys should be enabled in the config

2012-08-05 Thread Alexander Kabakow
Here is Idea #5826: Enable history-search with Page-Up/Down in /etc/inputrc 
by default
http://brainstorm.ubuntu.com/idea/5826/

it is dated as 27 Mar 08

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

Title:
  Bash history navigation keys should be enabled in the config

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

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


[Bug 1015778] Re: Gnome-terminal does not allow to use bash shortcut (M-f)

2012-06-21 Thread Alexander Kabakow
I test it In Konsole terminal emulator both Alt+f and Alt+b works there

So Gome-terminal should do the same

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

Title:
  Gnome-terminal does not allow to use bash shortcut (M-f)

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

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


[Bug 103986] Re: Update inputrc config and bash config

2012-06-20 Thread Alexander Kabakow
I this bug should be assigned to the readline package?
https://bugs.launchpad.net/ubuntu/+source/readline6

And here #89235 Teej (xteejx) says that page up and down keys  still
don't work

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

Title:
  Update inputrc config and bash config

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

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


[Bug 1015744] [NEW] Bash history navigation keys should be enabled in the config

2012-06-20 Thread Alexander Kabakow
Public bug reported:

Default bash shell setup should allow history navigation with page up and page 
down keys.
Default Gentoo /etc/inputrc do this.

There are bugs referencing this problem:  #103986, #89235
By the way #103986 is almost five years old

Dear Matthias Klose,
Please apply this patch to the Precise Pangolin version package.

As far I see patch is working for my bash instance

Regards, Alex

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


** Tags: bash

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

Title:
  Bash history navigation keys should be enabled in the config

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

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


[Bug 1015744] Re: Bash history navigation keys should be enabled in the config

2012-06-20 Thread Alexander Kabakow
** Patch added: 1.patch
   https://bugs.launchpad.net/bugs/1015744/+attachment/3197906/+files/1.patch

** Description changed:

  Default bash shell setup should allow history navigation with page up and 
page down keys.
  Default Gentoo /etc/inputrc do this.
  
  There are bugs referencing this problem:  #103986, #89235
  By the way #103986 is almost five years old
  
- Dear Matthias Klose, 
- Please apply this patch to the Precise Pangolin package version.
+ Dear Matthias Klose,
+ Please apply this patch to the Precise Pangolin version package.
  
  As far I see patch is working for my bash instance
  
  Regards, Alex

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

Title:
  Bash history navigation keys should be enabled in the config

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

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


[Bug 89235] Re: can no longer jump words with CTRL-arrow in gnome-terminal

2012-06-20 Thread Alexander Kabakow
I wrote patch to the readline6 package, that should fix PgUp/Dn issue
It is available here 
https://bugs.launchpad.net/ubuntu/+source/readline6/+bug/1015744

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

Title:
  can no longer jump words with CTRL-arrow in gnome-terminal

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

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


[Bug 103986] Re: Update inputrc config and bash config

2012-06-20 Thread Alexander Kabakow
** Also affects: readline6 (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Update inputrc config and bash config

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

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


[Bug 1015778] [NEW] Gnome-terminal does not allow to use bash shortcut (M-f)

2012-06-20 Thread Alexander Kabakow
Public bug reported:

Checkout bash user manual at
http://www.gnu.org/software/bash/manual/bash.html#Searching

Gnome-terminal allow to use Alt+b shortcut to move one word back, 
but does not allow to use Alt+f shortcut to move one word forward.

Gnome-terminal uses Alt+f shortcut as command to open the File menu.
I know that Alt+letter convenient is a standard, 
but it definetly should allow to use standard bash shortcuts.

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

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

Title:
  Gnome-terminal does not allow to use bash shortcut (M-f)

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

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


[Bug 878492] Re: Keyboard shortcut - F10 shortcut is used to show menu and this is wrong

2012-03-12 Thread Alexander Kabakow
I'am still can't use unity :(
I am really dissapointed and will not use unity in future

My stopper bugs is #878492 and #877191

I wish you luck

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

Title:
  Keyboard shortcut - F10 shortcut is used to show menu and this is
  wrong

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

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


[Bug 650508] Re: Text on button Try Ubuntu too big, on russian translation

2012-03-12 Thread Alexander Kabakow
I think some one from russian translation team must check it before iso
release

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

Title:
  Text on button Try Ubuntu too big, on russian translation

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

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


[Bug 878492] Re: Keyboard shortcut - F10 shortcut is used to show menu and this is wrong

2012-03-10 Thread Alexander Kabakow
Unity-2d status above is Fix released, but i still have this issue

I'am using unity-3d form ubuntu 11.10 with all updates installed
What is going on?
Is it ok?
When i will receive fixed version of unity-2d?

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

Title:
  Keyboard shortcut - F10 shortcut is used to show menu and this is
  wrong

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

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


[Bug 878492] Re: Keyboard shortcut - F10 shortcut is used to show menu and this is wrong

2012-03-10 Thread Alexander Kabakow
I'am using unity-2d form ubuntu 11.10 with all updates installed

PS:Sorry for typo

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

Title:
  Keyboard shortcut - F10 shortcut is used to show menu and this is
  wrong

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

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


[Bug 899878] [NEW] Software center have hardcoded colors and shows white font on white bg

2011-12-04 Thread Alexander Kabakow
Public bug reported:

When using dark theme

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: software-center 5.0.2ubuntu0.1
ProcVersionSignature: Ubuntu 3.0.0-13.22-generic 3.0.6
Uname: Linux 3.0.0-13-generic i686
ApportVersion: 1.23-0ubuntu4
Architecture: i386
Date: Sun Dec  4 15:28:41 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
PackageArchitecture: all
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/zsh
SourcePackage: software-center
UpgradeStatus: Upgraded to oneiric on 2011-10-16 (48 days ago)

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


** Tags: apport-bug i386 oneiric

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

Title:
  Software center have hardcoded colors and shows white font on white bg

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

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


[Bug 899878] Re: Software center have hardcoded colors and shows white font on white bg

2011-12-04 Thread Alexander Kabakow
** Attachment added: SoftwareCenter.png
   
https://bugs.launchpad.net/bugs/899878/+attachment/2618920/+files/SoftwareCenter.png

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

Title:
  Software center have hardcoded colors and shows white font on white bg

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

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


[Bug 877191] Re: Unity 2d shows Aptana Studio 3 main menu incorrect

2011-11-13 Thread Alexander Kabakow
Main menu of  Aptana Studio 3 still corrupted in unity and unity2d

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

Title:
  Unity 2d shows Aptana Studio 3 main menu incorrect

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-appmenu/+bug/877191/+subscriptions

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


[Bug 779607] Re: Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

2011-11-09 Thread Alexander Kabakow
I don't rememder exactly when, but crashing was stopped some where in june of 
2011...
And since then i don't have it any more

I think it is ok to close this issue

Currently I using latest ubuntu and video driver works ok

Thanks, Bryce

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

Title:
  Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/779607/+subscriptions

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


[Bug 878825] [NEW] Go.xml file already included into the kate-data package

2011-10-20 Thread Alexander Kabakow
Public bug reported:

Error during install kate-syntax-go_1

E: /var/cache/apt/archives/kate-syntax-go_1%3a60.1-1_all.deb: trying to
overwrite '/usr/share/kde4/apps/katepart/syntax/go.xml', which is also
in package kate-data 4:4.7.1-0ubuntu2

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: kate-syntax-go (not installed)
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
Uname: Linux 3.0.0-12-generic i686
ApportVersion: 1.23-0ubuntu3
Architecture: i386
Date: Thu Oct 20 16:51:36 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/zsh
SourcePackage: golang
UpgradeStatus: Upgraded to oneiric on 2011-10-16 (4 days ago)

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


** Tags: apport-bug i386 oneiric

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

Title:
  Go.xml file already included into the kate-data package

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

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


[Bug 878492] [NEW] Unity 2d uses F10 shotcut to show menu and this is wrong

2011-10-19 Thread Alexander Kabakow
Public bug reported:

Unity 2d uses F10 shotcut to show menu,
but many applications use this key too

a lot of IDE's bind to F10 debug function Step over... FireFox Firebug and 
Google Chrome debugger does it 
text editor Kate use F10 to toogle word wraping
I think there are more app uses it

May be unity2d should use different shotcut for mainmenu?

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: unity-2d 4.12.0-0ubuntu1
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
Uname: Linux 3.0.0-12-generic i686
ApportVersion: 1.23-0ubuntu3
Architecture: i386
Date: Thu Oct 20 00:38:26 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/zsh
SourcePackage: unity-2d
UpgradeStatus: Upgraded to oneiric on 2011-10-16 (3 days ago)

** Affects: unity-2d (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  Unity 2d uses F10 shotcut to show menu and this is wrong

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

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


[Bug 878492] Re: Unity 2d uses F10 shotcut to show menu and this is wrong

2011-10-19 Thread Alexander Kabakow
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/878492

Title:
  Unity 2d uses F10 shotcut to show menu and this is wrong

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

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


[Bug 877170] [NEW] Gdm produce segfault during bootup

2011-10-18 Thread Alexander Kabakow
Public bug reported:

After upgrade to 11.10 dgm works fine couple of days
Before this reboot i've installed kubuntu-full... may be thats the case

Oct 18 10:33:59 kabakov-laptop gdm-simple-slave[1016]: CRITICAL: 
gdm_session_direct_get_username: assertion `session != NULL' failed
Oct 18 10:33:59 kabakov-laptop kernel: [   34.304042] show_signal_msg: 27 
callbacks suppressed
Oct 18 10:33:59 kabakov-laptop kernel: [   34.304048] gdm-simple-slav[1016]: 
segfault at 0 ip 00a2980e sp bfda6650 error 4 in 
libnss_compat-2.13.so[a26000+8000]
Oct 18 10:33:59 kabakov-laptop gdm-binary[991]: WARNING: GdmDisplay: display 
lasted 0.042391 seconds

Then i switching to first TTY, login, and manually starting kdm
I'am unity user for now, so i don't whant to set kdm as default, and want to 
use gdm instead

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: gdm 3.0.4-0ubuntu11
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
Uname: Linux 3.0.0-12-generic i686
ApportVersion: 1.23-0ubuntu3
Architecture: i386
Date: Tue Oct 18 11:12:22 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/zsh
SourcePackage: gdm
UpgradeStatus: Upgraded to oneiric on 2011-10-16 (1 days ago)

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


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

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

Title:
  Gdm produce segfault during bootup

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

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

[Bug 877170] Re: Gdm produce segfault during bootup

2011-10-18 Thread Alexander Kabakow
** Description changed:

- After upgrade from 11.10 dgm works fine couple of days
+ After upgrade to 11.10 dgm works fine couple of days
  Before this reboot i've installed kubuntu-full... may be thats the case
  
  Oct 18 10:33:59 kabakov-laptop gdm-simple-slave[1016]: CRITICAL: 
gdm_session_direct_get_username: assertion `session != NULL' failed
  Oct 18 10:33:59 kabakov-laptop kernel: [   34.304042] show_signal_msg: 27 
callbacks suppressed
  Oct 18 10:33:59 kabakov-laptop kernel: [   34.304048] gdm-simple-slav[1016]: 
segfault at 0 ip 00a2980e sp bfda6650 error 4 in 
libnss_compat-2.13.so[a26000+8000]
  Oct 18 10:33:59 kabakov-laptop gdm-binary[991]: WARNING: GdmDisplay: display 
lasted 0.042391 seconds
  
  Then i switching to first TTY, login, and manually starting kdm
  I'am unity user for now, so i don't whant to set kdm as default, and want to 
use gdm instead
  
  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: gdm 3.0.4-0ubuntu11
  ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
  Uname: Linux 3.0.0-12-generic i686
  ApportVersion: 1.23-0ubuntu3
  Architecture: i386
  Date: Tue Oct 18 11:12:22 2011
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  ProcEnviron:
-  PATH=(custom, user)
-  LANG=en_US.UTF-8
-  SHELL=/bin/zsh
+  PATH=(custom, user)
+  LANG=en_US.UTF-8
+  SHELL=/bin/zsh
  SourcePackage: gdm
  UpgradeStatus: Upgraded to oneiric on 2011-10-16 (1 days ago)

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

Title:
  Gdm produce segfault during bootup

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

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

[Bug 877170] Re: Gdm produce segfault during bootup

2011-10-18 Thread Alexander Kabakow
*** This bug is a duplicate of bug 805154 ***
https://bugs.launchpad.net/bugs/805154

** This bug has been marked a duplicate of bug 805154
   gdm-simple-slave crashed with SIGSEGV in _nss_compat_getpwnam_r()

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

Title:
  Gdm produce segfault during bootup

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

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


[Bug 805154] Re: gdm-simple-slave crashed with SIGSEGV in _nss_compat_getpwnam_r()

2011-10-18 Thread Alexander Kabakow
Happened after upgrading from 11.04 to 11.10, ia32
Couple of days worked fine, but today fails

My duplicate of this bug here:  #877170

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

Title:
  gdm-simple-slave crashed with SIGSEGV in _nss_compat_getpwnam_r()

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

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


[Bug 877191] Re: Unity 2d shows Aptana Studio 3 main menu incorrect

2011-10-18 Thread Alexander Kabakow
Kde text editor Kate from repositories also have that issue: It's reordering 
menu items in runtime
During usage you can find menu File on the right side of menu and on the 
middle

Steps to reproduce under unity 2d:
1. start kate as $ kate ~/some/file/to_edit.txt
2. File-Open Recent-Select some recent file
3. Done. File menu on the middle

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

Title:
  Unity 2d shows Aptana Studio 3 main menu incorrect

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-appmenu/+bug/877191/+subscriptions

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


[Bug 877191] [NEW] Unity 2d shows Aptana Studio 3 main menu incorrect

2011-10-18 Thread Alexander Kabakow
Public bug reported:

When starting latest Aptana Studio 3 with configuration by default its main 
menu corrupted...
It's even don't have File or Edit menus

Removing indicator-appmenu package helps.
With out that package menu shown fine

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: indicator-appmenu 0.3.1-0ubuntu2
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
Uname: Linux 3.0.0-12-generic i686
ApportVersion: 1.23-0ubuntu3
Architecture: i386
Date: Tue Oct 18 11:51:09 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/zsh
SourcePackage: indicator-appmenu
UpgradeStatus: Upgraded to oneiric on 2011-10-16 (1 days ago)

** Affects: indicator-appmenu (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  Unity 2d shows Aptana Studio 3 main menu incorrect

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-appmenu/+bug/877191/+subscriptions

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


[Bug 877191] Re: Unity 2d shows Aptana Studio 3 main menu incorrect

2011-10-18 Thread Alexander Kabakow
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/877191

Title:
  Unity 2d shows Aptana Studio 3 main menu incorrect

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-appmenu/+bug/877191/+subscriptions

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


[Bug 805154] Re: gdm-simple-slave crashed with SIGSEGV in _nss_compat_getpwnam_r()

2011-10-18 Thread Alexander Kabakow
Btw bug can be easily workarounded

$ sudo apt-get install lightdm
$ sudo nano /etc/X11/default-display-manager

and write to it: /usr/sbin/lightdm (instead of /usr/sbin/gdm for gdm)

I can work with out distractions now :)
Thanks

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

Title:
  gdm-simple-slave crashed with SIGSEGV in _nss_compat_getpwnam_r()

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

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


[Bug 877236] Re: QGtkStyle gets incorrect colors for tooltips on unity2d

2011-10-18 Thread Alexander Kabakow
** Attachment added: Light yellow tooltip with white text on it
   
https://bugs.launchpad.net/bugs/877236/+attachment/2556522/+files/Screenshot%20at%202011-10-17%2017%3A28%3A35.png

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

Title:
  QGtkStyle gets incorrect colors for tooltips on unity2d

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qt4-x11/+bug/877236/+subscriptions

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


[Bug 877236] [NEW] QGtkStyle gets incorrect colors for tooltips on unity2d

2011-10-18 Thread Alexander Kabakow
Public bug reported:

I'am using kate for text editing and unity2d as de
So i've set qt and kde apps to use gtk style long time ago

After upgrade to 11.10 there are fail with tooltips shown using QWhatsThis class
My system tooltip background color is black and tooltip textcolor is white

But libqt4-gui (where QWhatsThis class exsist) 
show QWhatsThis as white letters on light yellow background
I can't see anything on such light background

I've though that kate bug and debugged into it
That colors comes from libqt4-gui
May be its gtk bug but i can't debug it

Qt uses depreceted gtk calls to get that colors inside of QGtkStyle
class

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: libqt4-gui 4:4.7.4-0ubuntu8
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic 3.0.4
Uname: Linux 3.0.0-12-generic i686
ApportVersion: 1.23-0ubuntu3
Architecture: i386
Date: Tue Oct 18 12:42:34 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/zsh
SourcePackage: qt4-x11
UpgradeStatus: Upgraded to oneiric on 2011-10-16 (1 days ago)

** Affects: qt4-x11 (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  QGtkStyle gets incorrect colors for tooltips on unity2d

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qt4-x11/+bug/877236/+subscriptions

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


[Bug 779607] Re: Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

2011-05-18 Thread Alexander Kabakow
I have one crash like this per week
So bug is still there

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

Title:
  Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

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


[Bug 779607] Re: Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

2011-05-11 Thread Alexander Kabakow
Using notebook with out problems on same software (no updates installed
since bug)

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

Title:
  Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

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


[Bug 324808] Re: [Toshiba Satellite L300] suspend/resume problem

2011-05-08 Thread Alexander Kabakow
I have toshiba satelite l300 - 144 laptop with original bios firmware.
Today I've upgraded ubuntu from 10.10 to 11.04, so all packages up to date.

I can say, that I have no problems with suspend/resume. (Don't using suspend 
feature, so didn't sow it earlier)
Suspend/resume - works for me.

I have overheating problems. I don't think it is ubuntu specific.

Mail me, if you have questions

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

Title:
  [Toshiba Satellite L300] suspend/resume problem

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


[Bug 779607] [NEW] Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

2011-05-08 Thread Alexander Kabakow
Public bug reported:

Binary package hint: xserver-xorg-video-intel

May  8 23:29:14 kabakov-laptop kernel: [ 9006.184083] 
[drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... GPU hung
May  8 23:29:14 kabakov-laptop kernel: [ 9006.185506] 
[drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns -11 (awaiting 
1741040 at 1741034, next 1
741043)
May  8 23:29:14 kabakov-laptop kernel: [ 9006.185881] [drm:init_ring_common] 
*ERROR* render ring initialization failed ctl  head  tail 
 start 
May  8 23:29:14 kabakov-laptop kernel: [ 9006.371957] 
[drm:i915_do_wait_request] *ERROR* something (likely vbetool) disabled 
interrupts, re-enabling
May  8 23:29:14 kabakov-laptop kernel: [ 9006.389298] 
[drm:i915_do_wait_request] *ERROR* something (likely vbetool) disabled 
interrupts, re-enabling
May  8 23:29:14 kabakov-laptop kernel: [ 9006.399169] 
[drm:i915_do_wait_request] *ERROR* something (likely vbetool) disabled 
interrupts, re-enabling
(and 1000 duplicated of above message) 

I've run the Ubuntu 10.04 and 10.10 distributions and never had this
problem

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: xorg 1:7.6+4ubuntu3
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,mousepoll,vpswitch,regex,animation,snap,expo,move,compiztoolbox,place,grid,imgpng,gnomecompat,wall,ezoom,workarounds,staticswitcher,resize,fade,unitymtgrabhandles,scale,session,unityshell]
CompositorRunning: compiz
DRM.card0.LVDS.1:
 status: connected
 enabled: enabled
 dpms: On
 modes: 1280x800
 edid-base64: 
AP///wBMo0E3AAARAQOAIRV4CkLVllhSiichUFQBAQEBAQEBAQEBAQEBAQEB7hoAgFAgEDAQMBMAS88QAAAZDwAAACOHAmQA/gBTQU1TVU5HCiAgICAg/gAxNTRBVDA3LVQwMQogACI=
DRM.card0.VGA.1:
 status: disconnected
 enabled: disabled
 dpms: Off
 modes: 
 edid-base64:
Date: Sun May  8 23:38:31 2011
DistUpgraded: Log time: 2011-05-08 17:03:38.885718
DistroCodename: natty
DistroVariant: ubuntu
GraphicsCard:
 Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) 
[8086:2a02] (rev 03) (prog-if 00 [VGA controller])
   Subsystem: Toshiba America Info Systems Device [1179:ff64]
   Subsystem: Toshiba America Info Systems Device [1179:ff64]
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
MachineType: TOSHIBA Satellite L300
ProcEnviron:
 LANGUAGE=en_US:en
 LANG=en_US.UTF-8
 SHELL=/bin/zsh
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic 
root=UUID=15119e0d-45dd-4dd5-acfd-790f72b5846d ro quiet splash vt.handoff=7
Renderer: Unknown
SourcePackage: xorg
Symptom: display
Title: Xorg freeze
UpgradeStatus: Upgraded to natty on 2011-05-08 (0 days ago)
dmi.bios.date: 03/19/2008
dmi.bios.vendor: INSYDE
dmi.bios.version: 1.30
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: Base Board Product Name
dmi.board.vendor: Intel Corp.
dmi.board.version: Base Board Version
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 1
dmi.chassis.vendor: Chassis Manufacturer
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnINSYDE:bvr1.30:bd03/19/2008:svnTOSHIBA:pnSatelliteL300:pvrPSLB0E-034012RU:rvnIntelCorp.:rnBaseBoardProductName:rvrBaseBoardVersion:cvnChassisManufacturer:ct1:cvrChassisVersion:
dmi.product.name: Satellite L300
dmi.product.version: PSLB0E-034012RU
dmi.sys.vendor: TOSHIBA
version.compiz: compiz 1:0.9.4+bzr20110415-0ubuntu2
version.libdrm2: libdrm2 2.4.23-1ubuntu6
version.libgl1-mesa-dri: libgl1-mesa-dri 7.10.2-0ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 7.10.2-0ubuntu2
version.xserver-xorg: xserver-xorg 1:7.6+4ubuntu3
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:6.14.0-0ubuntu4
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.14.0-4ubuntu7.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110107+b795ca6e-0ubuntu7

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


** Tags: apport-bug compiz-0.9 freeze i386 natty needs-reassignment 
regression-update running-unity ubuntu

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

Title:
  Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

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


[Bug 779607] Re: Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

2011-05-08 Thread Alexander Kabakow
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/779607

Title:
  Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

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


[Bug 778283] Re: Xorg freeze

2011-05-08 Thread Alexander Kabakow
Another one from me... 
https://bugs.launchpad.net/bugs/779607 (possible duplicate)

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

Title:
  Xorg freeze

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


[Bug 779607] Re: Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

2011-05-08 Thread Alexander Kabakow
Possible duplicates to https://bugs.launchpad.net/bugs/775936 and 
https://bugs.launchpad.net/bugs/778283 ...
Maybe not

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

Title:
  Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

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


[Bug 779607] Re: Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

2011-05-08 Thread Alexander Kabakow
It'is not stable bug... 
I've have it once per 6 hours, after upgrade to 11.04

If i've got it again, I write details here

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

Title:
  Xorg freeze with i915 chipset on Toshiba satelite l300-144 laptop

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


[Bug 692589] [NEW] Bug in libssl-dev package, pem.h

2010-12-20 Thread Alexander Kabakow
Public bug reported:

Binary package hint: openssl

Error when tring to compile that code:

#include openssl/ssl.h
#include openssl/err.h
#include openssl/pem.h

SSL *p_ssl

BIO *p_mem_bio;
SSL_SESSION *p_session;

PEM_write_bio_SSL_SESSION(p_mem_bio, p_session);


We have complie error

error: invalid conversion from ‘void*’ to ‘char*’
error:   initializing argument 4 of ‘int PEM_ASN1_write_bio(int (*)(void*, 
unsigned char**), const char*, BIO*, char*, const EVP_CIPHER*, unsigned char*, 
int, int (*)(char*, int, int, void*), void*)’

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

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

Title:
  Bug in libssl-dev package, pem.h

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

[Bug 692589] Re: Bug in libssl-dev package, pem.h

2010-12-20 Thread Alexander Kabakow
Here is declaration of PEM_ASN1_write_bio function:

int PEM_ASN1_write_bio(i2d_of_void *i2d,const char *name,BIO *bp,char *x,
   const EVP_CIPHER *enc,unsigned char *kstr,int klen,
   pem_password_cb *cb, void *u);

And argument 4 type is char*, but

macro CHECKED_PTR_OF produces void*, and produces compile error

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

Title:
  Bug in libssl-dev package, pem.h

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


[Bug 692589] Re: Bug in libssl-dev package, pem.h

2010-12-20 Thread Alexander Kabakow
I think declaration of macro PEM_ASN1_write_bio_of in pem.h:595 should
be

#define PEM_ASN1_write_bio_of(type,i2d,name,bp,x,enc,kstr,klen,cb,u) \
(PEM_ASN1_write_bio(CHECKED_I2D_OF(type, i2d), \
name, bp,  \
(char*)CHECKED_PTR_OF(type, x), \
enc, kstr, klen, cb, u))


** Attachment added: patched pem.h
   
https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/692589/+attachment/1771440/+files/pem.h

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

Title:
  Bug in libssl-dev package, pem.h

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


[Bug 320140] Re: can't copy between two sftp connections

2010-10-04 Thread Alexander Kabakow
Checked out latest Krusader package on Maverick.

So latest Krusader from Maveric still can't copy files from one sftp to 
another. 
But with different behavior...

It copies complete directory structure, but can't copy any files with in.
It shows never-ending copy dialog.

100% reproducible on my machine when using provided test case.


** Description changed:

  krusader 2.0~svn6078-1ubuntu1
  Ubuntu 8.10
  
  e.g. left panel sftp://r...@192.168.0.1/tmp; and right panel 
sftp://r...@192.168.0.2/tmp;
  By trying to copy a file from left to right the error message Connection to 
host 192.168.0.2 is broken. appears.
  
  The file is copied, but its filename ends with .part
+ 
+ LATEST VERSION TESTED:
+ krusader 1:2.2.0~beta1-1 (from 10.10)

-- 
can't copy between two sftp connections
https://bugs.launchpad.net/bugs/320140
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 652299] Re: Package does not contain .desktop file, so dont displayed in menu

2010-10-01 Thread Alexander Kabakow
Adding patch to fix issue.
Works for me.

** Patch added: bug652299.patch
   
https://bugs.edge.launchpad.net/ubuntu/+source/mascyma/+bug/652299/+attachment/1664342/+files/bug652299.patch

-- 
Package does not contain .desktop file, so dont displayed in menu
https://bugs.launchpad.net/bugs/652299
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 209492] Re: crash after editing toolbar by adding a bookmark: KXMLGUI::ContainerNode::unplugClient - Use of uninitialised value of size 8 at 0x647E72E: KXMLGUI::ActionList::unplug(QWidget*) const

2010-10-01 Thread Alexander Kabakow
Ckecked testcase for Krusader 1:2.0.0-1ubuntu3 on Ubuntu 10.04.

Can't reproduce.

-- 
crash after editing toolbar by adding a bookmark: 
KXMLGUI::ContainerNode::unplugClient - Use of uninitialised value of size 8 at 
0x647E72E: KXMLGUI::ActionList::unplug(QWidget*) const 
(kxmlguifactory_p.cpp:44) 
https://bugs.launchpad.net/bugs/209492
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 320140] Re: can't copy between two sftp connections

2010-10-01 Thread Alexander Kabakow
It seems bug exsists at 
https://launchpad.net/ubuntu/maverick/+source/krusader/1:2.2.0~beta1-1
I can check it at 2010-10-04.

** Tags added: maverick

-- 
can't copy between two sftp connections
https://bugs.launchpad.net/bugs/320140
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 49800] Re: No .desktop

2010-09-30 Thread Alexander Kabakow
I searched for .desktop file inside mascyma_0.59-1ubuntu3_all.deb
package.

I've not found it, so i can confirm that bug exsists in current version.

https://edge.launchpad.net/ubuntu/maverick/+source/mascyma

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

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

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


[Bug 49800] Re: No .desktop

2010-09-30 Thread Alexander Kabakow
** Changed in: mascyma (Ubuntu)
   Status: Confirmed = Fix Released

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

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


[Bug 652299] [NEW] Package does not contain .desktop file, so dont displayed in menu

2010-09-30 Thread Alexander Kabakow
Public bug reported:

Binary package hint: mascyma

Package dont conatins and dont installs .desktop file for program it
provides.

So after installing it user can't find mascyma in gnome menu.

Checked package was mascyma_0.59-1ubuntu3_all.deb

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

-- 
Package does not contain .desktop file, so dont displayed in menu
https://bugs.launchpad.net/bugs/652299
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 652299] Re: Package does not contain .desktop file, so dont displayed in menu

2010-09-30 Thread Alexander Kabakow
This report is based on report provided by PeterPall at
https://bugs.edge.launchpad.net/ubuntu/+source/mascyma/+bug/49800

-- 
Package does not contain .desktop file, so dont displayed in menu
https://bugs.launchpad.net/bugs/652299
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 652299] Re: Package does not contain .desktop file, so dont displayed in menu

2010-09-30 Thread Alexander Kabakow
Linked bug #49800

-- 
Package does not contain .desktop file, so dont displayed in menu
https://bugs.launchpad.net/bugs/652299
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 49800] Re: No .desktop

2010-09-30 Thread Alexander Kabakow
New bug opened #49800

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

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


[Bug 49800] Re: No .desktop

2010-09-30 Thread Alexander Kabakow
Sorry.  New bug is bug #652299

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

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


[Bug 78455] Re: DEFECT in checkinstall: abort due to missing file or directory

2010-09-29 Thread Alexander Kabakow
ubuntu 10.10 check install affected

-- 
DEFECT in checkinstall: abort due to missing file or directory
https://bugs.launchpad.net/bugs/78455
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650471] [NEW] Installer hides some text, on russian translation

2010-09-28 Thread Alexander Kabakow
Public bug reported:

Binary package hint: ubiquity

Almost all pages with advertisement texts have corrupted layout

See screenshots...

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: ubiquity (not installed)
ProcVersionSignature: Ubuntu 2.6.35-19.28-generic 2.6.35.3
Uname: Linux 2.6.35-19-generic i686
Architecture: i386
Date: Tue Sep 28 21:06:54 2010
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Beta i386 (20100901.1)
ProcEnviron:
 PATH=(custom, no user)
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
SourcePackage: ubiquity

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


** Tags: apport-bug i386 maverick

-- 
Installer hides some text, on russian translation
https://bugs.launchpad.net/bugs/650471
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650471] Re: Installer hides some text, on russian translation

2010-09-28 Thread Alexander Kabakow

** Attachment added: Casper.gz
   
https://bugs.edge.launchpad.net/bugs/650471/+attachment/1649831/+files/Casper.gz

** Attachment added: UbiquityDebug.gz
   
https://bugs.edge.launchpad.net/bugs/650471/+attachment/1649832/+files/UbiquityDebug.gz

** Attachment added: UbiquityPartman.gz
   
https://bugs.edge.launchpad.net/bugs/650471/+attachment/1649833/+files/UbiquityPartman.gz

** Attachment added: UbiquitySyslog.gz
   
https://bugs.edge.launchpad.net/bugs/650471/+attachment/1649834/+files/UbiquitySyslog.gz

-- 
Installer hides some text, on russian translation
https://bugs.launchpad.net/bugs/650471
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650471] Re: Installer hides some text, on russian translation

2010-09-28 Thread Alexander Kabakow

** Attachment added: Снимок-ubuntu test [Работает] - VirtualBox OSE-3.png
   
https://bugs.edge.launchpad.net/ubuntu/+source/ubiquity/+bug/650471/+attachment/1649841/+files/%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA-ubuntu%20test%20%5B%D0%A0%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D0%B5%D1%82%5D%20-%20VirtualBox%20OSE-3.png

-- 
Installer hides some text, on russian translation
https://bugs.launchpad.net/bugs/650471
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 650471] Re: Installer hides some text, on russian translation

2010-09-28 Thread Alexander Kabakow

** Attachment added: Снимок-ubuntu test [Работает] - VirtualBox OSE-6.png
   
https://bugs.edge.launchpad.net/ubuntu/+source/ubiquity/+bug/650471/+attachment/1649860/+files/%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA-ubuntu%20test%20%5B%D0%A0%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D0%B5%D1%82%5D%20-%20VirtualBox%20OSE-6.png

-- 
Installer hides some text, on russian translation
https://bugs.launchpad.net/bugs/650471
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 650471] Re: Installer hides some text, on russian translation

2010-09-28 Thread Alexander Kabakow

** Attachment added: Снимок-ubuntu test [Работает] - VirtualBox OSE-4.png
   
https://bugs.edge.launchpad.net/ubuntu/+source/ubiquity/+bug/650471/+attachment/1649873/+files/%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA-ubuntu%20test%20%5B%D0%A0%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D0%B5%D1%82%5D%20-%20VirtualBox%20OSE-4.png

-- 
Installer hides some text, on russian translation
https://bugs.launchpad.net/bugs/650471
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 650471] Re: Installer hides some text, on russian translation

2010-09-28 Thread Alexander Kabakow

** Attachment added: Снимок-ubuntu test [Работает] - VirtualBox OSE-7.png
   
https://bugs.edge.launchpad.net/ubuntu/+source/ubiquity/+bug/650471/+attachment/1649902/+files/%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA-ubuntu%20test%20%5B%D0%A0%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D0%B5%D1%82%5D%20-%20VirtualBox%20OSE-7.png

-- 
Installer hides some text, on russian translation
https://bugs.launchpad.net/bugs/650471
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 650471] Re: Installer hides some text, on russian translation

2010-09-28 Thread Alexander Kabakow

** Attachment added: Снимок-ubuntu test [Работает] - VirtualBox OSE-13.png
   
https://bugs.edge.launchpad.net/ubuntu/+source/ubiquity/+bug/650471/+attachment/1649911/+files/%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA-ubuntu%20test%20%5B%D0%A0%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D0%B5%D1%82%5D%20-%20VirtualBox%20OSE-13.png

-- 
Installer hides some text, on russian translation
https://bugs.launchpad.net/bugs/650471
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 650471] Re: Installer hides some text, on russian translation

2010-09-28 Thread Alexander Kabakow
Almost all screens affected

-- 
Installer hides some text, on russian translation
https://bugs.launchpad.net/bugs/650471
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650508] [NEW] Text on button Try Ubuntu too big, on russian translation

2010-09-28 Thread Alexander Kabakow
Public bug reported:

Binary package hint: ubiquity

I, suggested to change translation to just Try, because it is clear
and shorter...

or

Font size can be made smaller...

Screenshot attached


File debian_real_ubiquity-debconf-ru.po

msgid Try ${RELEASE}
msgstr Poprobovat' ${RELEASE}

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: ubiquity (not installed)
ProcVersionSignature: Ubuntu 2.6.35-19.28-generic 2.6.35.3
Uname: Linux 2.6.35-19-generic i686
Architecture: i386
Date: Tue Sep 28 21:57:36 2010
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Beta i386 (20100901.1)
ProcEnviron:
 PATH=(custom, no user)
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
SourcePackage: ubiquity

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


** Tags: apport-bug i386 maverick

-- 
Text on button Try Ubuntu too big, on russian translation
https://bugs.launchpad.net/bugs/650508
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650508] Re: Text on button Try Ubuntu too big, on russian translation

2010-09-28 Thread Alexander Kabakow

** Attachment added: Casper.gz
   
https://bugs.edge.launchpad.net/bugs/650508/+attachment/1649990/+files/Casper.gz

** Attachment added: UbiquityDebug.gz
   
https://bugs.edge.launchpad.net/bugs/650508/+attachment/1649991/+files/UbiquityDebug.gz

** Attachment added: UbiquityPartman.gz
   
https://bugs.edge.launchpad.net/bugs/650508/+attachment/1649992/+files/UbiquityPartman.gz

** Attachment added: UbiquitySyslog.gz
   
https://bugs.edge.launchpad.net/bugs/650508/+attachment/1649993/+files/UbiquitySyslog.gz

-- 
Text on button Try Ubuntu too big, on russian translation
https://bugs.launchpad.net/bugs/650508
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650508] Re: Text on button Try Ubuntu too big, on russian translation

2010-09-28 Thread Alexander Kabakow

** Attachment added: Снимок-ubuntu test [Работает] - VirtualBox OSE.png
   
https://bugs.edge.launchpad.net/ubuntu/+source/ubiquity/+bug/650508/+attachment/1649996/+files/%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA-ubuntu%20test%20%5B%D0%A0%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D0%B5%D1%82%5D%20-%20VirtualBox%20OSE.png

-- 
Text on button Try Ubuntu too big, on russian translation
https://bugs.launchpad.net/bugs/650508
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 650508] Re: Text on button Try Ubuntu too big, on russian translation

2010-09-28 Thread Alexander Kabakow

** Attachment added: Снимок-ubuntu test [Работает] - VirtualBox OSE.png
   
https://bugs.edge.launchpad.net/ubuntu/+source/ubiquity/+bug/650508/+attachment/1650025/+files/%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA-ubuntu%20test%20%5B%D0%A0%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D0%B5%D1%82%5D%20-%20VirtualBox%20OSE.png

-- 
Text on button Try Ubuntu too big, on russian translation
https://bugs.launchpad.net/bugs/650508
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 650524] [NEW] Partition size is zero, when clicked Use all harddrive

2010-09-28 Thread Alexander Kabakow
Public bug reported:

Binary package hint: ubiquity

On question how to partition hard-drive? I clicked Use all button.

Next screen showed partition size is zero! (See screenshot)

Click on install button worked and installation was successful.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: ubiquity (not installed)
ProcVersionSignature: Ubuntu 2.6.35-19.28-generic 2.6.35.3
Uname: Linux 2.6.35-19-generic i686
Architecture: i386
Date: Tue Sep 28 22:17:36 2010
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Beta i386 (20100901.1)
ProcEnviron:
 PATH=(custom, no user)
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
SourcePackage: ubiquity

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


** Tags: apport-bug i386 maverick

-- 
Partition size is zero, when clicked Use all harddrive
https://bugs.launchpad.net/bugs/650524
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650524] Re: Partition size is zero, when clicked Use all harddrive

2010-09-28 Thread Alexander Kabakow

** Attachment added: Casper.gz
   
https://bugs.edge.launchpad.net/bugs/650524/+attachment/1650122/+files/Casper.gz

** Attachment added: UbiquityDebug.gz
   
https://bugs.edge.launchpad.net/bugs/650524/+attachment/1650123/+files/UbiquityDebug.gz

** Attachment added: UbiquityPartman.gz
   
https://bugs.edge.launchpad.net/bugs/650524/+attachment/1650124/+files/UbiquityPartman.gz

** Attachment added: UbiquitySyslog.gz
   
https://bugs.edge.launchpad.net/bugs/650524/+attachment/1650125/+files/UbiquitySyslog.gz

-- 
Partition size is zero, when clicked Use all harddrive
https://bugs.launchpad.net/bugs/650524
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 650524] Re: Partition size is zero, when clicked Use all harddrive

2010-09-28 Thread Alexander Kabakow

** Attachment added: Снимок-ubuntu test [Работает] - VirtualBox OSE-1.png
   
https://bugs.edge.launchpad.net/ubuntu/+source/ubiquity/+bug/650524/+attachment/1650128/+files/%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA-ubuntu%20test%20%5B%D0%A0%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D0%B5%D1%82%5D%20-%20VirtualBox%20OSE-1.png

-- 
Partition size is zero, when clicked Use all harddrive
https://bugs.launchpad.net/bugs/650524
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 568006] Re: package sabnzbdplus 0.4.12-1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 139

2010-06-02 Thread Alexander Kabakow
Have same error during 
Setting up python2.5-minimal (2.5.4-1ubuntu6.1) ...

-- 
package sabnzbdplus 0.4.12-1 failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 139
https://bugs.launchpad.net/bugs/568006
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 572506] Re: Akonadi crashes on start kmail, the kmail stops

2010-05-16 Thread Alexander Kabakow
*** This bug is a duplicate of bug 554514 ***
https://bugs.launchpad.net/bugs/554514

** This bug has been marked a duplicate of bug 554514
   cant find resource agents

-- 
Akonadi crashes on start kmail, the kmail stops
https://bugs.launchpad.net/bugs/572506
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to akonadi in ubuntu.

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


[Bug 386742] Re: [Karmic] Phonon includes NOT found!

2010-02-03 Thread Alexander Kabakow
Same problem when trying to compile krusader from trunk.

Comment #7 works as workaround.

-- 
[Karmic] Phonon includes NOT found!
https://bugs.launchpad.net/bugs/386742
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 492911] Re: Laptop display all in black stripes after update to kernel 2.6.31-16

2009-12-06 Thread Alexander Kabakow
Yesterday i turn off laptop. No reconfiguration, no updates installed.
Today 9.10 on kernel 2.6.31-15 shows same issue.

So now i can't work on kernels 2.6.31-*. (recovery mode shows same
issue)

kernel 2.6.28-16 show ubuntu running on low graphics mode dialog and i
can't reconfigure system using it.

So now Ubuntu 9.10 is dead :'(

I boot up Ubuntu 8.10 from second hdd on same hardware... every thing
works

Can anyone help me?
What should i do?

-- 
Laptop display all in black stripes after update to kernel 2.6.31-16
https://bugs.launchpad.net/bugs/492911
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 492911] Re: Laptop display all in black stripes after update to kernel 2.6.31-16

2009-12-06 Thread Alexander Kabakow

** Attachment added: xorg.conf
   http://launchpadlibrarian.net/36497440/xorg.conf

-- 
Laptop display all in black stripes after update to kernel 2.6.31-16
https://bugs.launchpad.net/bugs/492911
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 492911] Re: Laptop display all in black stripes after update to kernel 2.6.31-16

2009-12-06 Thread Alexander Kabakow

** Attachment added: Trying to do normal boot on 31-15
   http://launchpadlibrarian.net/36497463/Xorg.0.log

-- 
Laptop display all in black stripes after update to kernel 2.6.31-16
https://bugs.launchpad.net/bugs/492911
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 492911] Re: Laptop display all in black stripes after update to kernel 2.6.31-16

2009-12-06 Thread Alexander Kabakow

** Attachment added: failsafe boot on 31-16
   http://launchpadlibrarian.net/36497496/Xorg.failsafe.log

-- 
Laptop display all in black stripes after update to kernel 2.6.31-16
https://bugs.launchpad.net/bugs/492911
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 492911] Re: Laptop display all in black stripes after update to kernel 2.6.31-16

2009-12-06 Thread Alexander Kabakow
Tried i915.modeset=0 as boot option as described at
https://wiki.ubuntu.com/X/KernelModeSetting

stripes is missing. But there are errors : (EE) config/hal: couldn't
initialise context: unknown error (null)

So i think stripes problem in KMS...

-- 
Laptop display all in black stripes after update to kernel 2.6.31-16
https://bugs.launchpad.net/bugs/492911
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 492911] Re: Laptop display all in black stripes after update to kernel 2.6.31-16

2009-12-06 Thread Alexander Kabakow
using boot options i915.modeset=0 and vga=771 I've boot up and :
generated new xorg.conf for my hardware
completely removed kdm package
reconfigure gdm package

reboot with boot options i915.modeset=0 and vga=771 - works

reboot with boot options i915.modeset=1 and vga=771 - works, but gdm
shows message box like this : power manager unable to use HAL

How HAL and KMS connected?

-- 
Laptop display all in black stripes after update to kernel 2.6.31-16
https://bugs.launchpad.net/bugs/492911
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 492911] [NEW] Laptop display all in black stripes after update to kernel 2.6.31-16

2009-12-05 Thread Alexander Kabakow
Public bug reported:

All works fine on previous kernels... for example kernel 2.6.31-15
works.

Laptop Toshiba satellite L300-144 with integrated intel video adapter...

Using latest kdm and Kde 4 from karmik repos.

About 2 weeks ago 9.04 upgraded to 9.10. 
( 
  There was some problems during upgrade python modules. 
  https://bugs.edge.launchpad.net/ubuntu/+source/mapnik/+bug/489943 
)

When i boot up using kernel 2.6.31-16 all fine before kdm(or X11?) starts.
Then i see many black stripes. 
Image is same as normal but _highly_ corrupted. Work impossible.

When i switch to console (using Alt+F2) stripes still on screen.

ProblemType: Bug
AplayDevices:
  List of PLAYBACK Hardware Devices 
 card 0: Intel [HDA Intel], device 0: ALC268 Analog [ALC268 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  ak 2629 F kmix
  ak 2641 F pulseaudio
CRDA: Error: [Errno 2] No such file or directory
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0x9430 irq 22'
   Mixer name   : 'Realtek ALC268'
   Components   : 'HDA:10ec0268,1179ff64,0013 
HDA:14f12c06,14f1,0010'
   Controls  : 17
   Simple ctrls  : 11
DKDisksMonitorLog: Monitoring activity from the disks daemon. Press Ctrl+C to 
cancel.
Date: Sat Dec  5 21:14:16 2009
DistroRelease: Ubuntu 9.10
HibernationDevice: RESUME=UUID=7501d607-b2e7-45c6-a548-0d90d090ac2d
HotplugNewDevices:
 
HotplugNewMounts:
 
MachineType: TOSHIBA Satellite L300
Package: linux-image-2.6.31-15-generic 2.6.31-15.50
ProcCmdLine: root=UUID=a949ac83-9a73-4e03-a3a4-b794ecd5debb ro quiet splash
ProcEnviron:
 LANGUAGE=
 LANG=ru_RU.UTF-8
 SHELL=/bin/zsh
ProcVersionSignature: Ubuntu 2.6.31-15.50-generic
RelatedPackageVersions:
 linux-backports-modules-2.6.31-15-generic N/A
 linux-firmware 1.25
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux
Symptom: storage
UdevMonitorLog:
 monitor will print the received events for:
 UDEV - the event which udev sends out after rule processing
Uname: Linux 2.6.31-15-generic i686
WpaSupplicantLog:
 
XsessionErrors: (polkit-gnome-authentication-agent-1:2621): GLib-CRITICAL **: 
g_once_init_leave: assertion `initialization_value != 0' failed
dmi.bios.date: 03/19/2008
dmi.bios.vendor: INSYDE
dmi.bios.version: 1.30
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: Base Board Product Name
dmi.board.vendor: Intel Corp.
dmi.board.version: Base Board Version
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 1
dmi.chassis.vendor: Chassis Manufacturer
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnINSYDE:bvr1.30:bd03/19/2008:svnTOSHIBA:pnSatelliteL300:pvrPSLB0E-034012RU:rvnIntelCorp.:rnBaseBoardProductName:rvrBaseBoardVersion:cvnChassisManufacturer:ct1:cvrChassisVersion:
dmi.product.name: Satellite L300
dmi.product.version: PSLB0E-034012RU
dmi.sys.vendor: TOSHIBA

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
Laptop display all in black stripes after update to kernel 2.6.31-16
https://bugs.launchpad.net/bugs/492911
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 492911] Re: Laptop display all in black stripes after update to kernel 2.6.31-16

2009-12-05 Thread Alexander Kabakow

** Attachment added: AlsaDevices.txt
   http://launchpadlibrarian.net/36479528/AlsaDevices.txt

** Attachment added: ArecordDevices.txt
   http://launchpadlibrarian.net/36479529/ArecordDevices.txt

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/36479530/BootDmesg.txt

** Attachment added: Card0.Amixer.values.txt
   http://launchpadlibrarian.net/36479531/Card0.Amixer.values.txt

** Attachment added: Card0.Codecs.codec.0.txt
   http://launchpadlibrarian.net/36479532/Card0.Codecs.codec.0.txt

** Attachment added: Card0.Codecs.codec.1.txt
   http://launchpadlibrarian.net/36479533/Card0.Codecs.codec.1.txt

** Attachment added: CurrentDmesg.txt
   http://launchpadlibrarian.net/36479534/CurrentDmesg.txt

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

** Attachment added: IwConfig.txt
   http://launchpadlibrarian.net/36479536/IwConfig.txt

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/36479537/Lspci.txt

** Attachment added: Lsusb.txt
   http://launchpadlibrarian.net/36479538/Lsusb.txt

** Attachment added: PciMultimedia.txt
   http://launchpadlibrarian.net/36479539/PciMultimedia.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/36479540/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/36479541/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/36479542/ProcModules.txt

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/36479543/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/36479544/UdevLog.txt

** Attachment added: WifiSyslog.gz
   http://launchpadlibrarian.net/36479545/WifiSyslog.gz

-- 
Laptop display all in black stripes after update to kernel 2.6.31-16
https://bugs.launchpad.net/bugs/492911
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 489943] Re: package python-mapnik 0.6.1-0ubuntu4 failed to install/upgrade: 9.04 to 9.10

2009-11-29 Thread Alexander Kabakow

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

** Attachment added: VarLogDistupgradeAptlog.gz
   http://launchpadlibrarian.net/36229760/VarLogDistupgradeAptlog.gz

** Attachment added: VarLogDistupgradeApttermlog.gz
   http://launchpadlibrarian.net/36229761/VarLogDistupgradeApttermlog.gz

** Attachment added: VarLogDistupgradeMainlog.gz
   http://launchpadlibrarian.net/36229762/VarLogDistupgradeMainlog.gz

** Attachment added: VarLogDistupgradeTermlog.gz
   http://launchpadlibrarian.net/36229763/VarLogDistupgradeTermlog.gz

-- 
package python-mapnik 0.6.1-0ubuntu4 failed to install/upgrade: 9.04 to 9.10
https://bugs.launchpad.net/bugs/489943
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 489943] [NEW] package python-mapnik 0.6.1-0ubuntu4 failed to install/upgrade: 9.04 to 9.10

2009-11-29 Thread Alexander Kabakow
Public bug reported:

i have no info.

Error message was in broken utf-8 locale

ProblemType: Package
Architecture: i386
Date: Sun Nov 29 17:20:25 2009
DistroRelease: Ubuntu 9.10
ErrorMessage:
 ErrorMessage: подпроцесс установлен сценарий post-installation возвратил код 
ошибки 1
Package: python-mapnik 0.6.1-0ubuntu4
ProcVersionSignature: Ubuntu 2.6.28-16.57-generic
SourcePackage: mapnik
Title: package python-mapnik 0.6.1-0ubuntu4 failed to install/upgrade:
Uname: Linux 2.6.28-16-generic i686

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


** Tags: apport-package i386

-- 
package python-mapnik 0.6.1-0ubuntu4 failed to install/upgrade: 9.04 to 9.10
https://bugs.launchpad.net/bugs/489943
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 489943] Re: package python-mapnik 0.6.1-0ubuntu4 failed to install/upgrade: 9.04 to 9.10

2009-11-29 Thread Alexander Kabakow
I just rebooted ubuntu and seems to have working 9.10...

Configuring python-mapnik (0.6.1-0ubuntu4) ...
pycentral: pycentral pkginstall: Not overwriting local files:
   dpkg: /usr/lib/python2.6/dist-packages/mapnik/ogcserver/modserver.py not 
found.
pycentral pkginstall: Not overwriting local files:
   dpkg: /usr/lib/python2.6/dist-packages/mapnik/ogcserver/modserver.py not 
found.
dpkg: Can't process parameter python-mapnik (--configure):
 instalation subprocess post-installation returns error code 1

-- 
package python-mapnik 0.6.1-0ubuntu4 failed to install/upgrade: 9.04 to 9.10
https://bugs.launchpad.net/bugs/489943
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 489960] [NEW] Edit Channel Dialog: UTF-8 dysplayed wrong

2009-11-29 Thread Alexander Kabakow
Public bug reported:

Binary package hint: kpackagekit

Edit Channel dialog of Software Sources dialog, displays utf-8 in comment 
as 
заблокировано при обновлении до karmic
but this sould be Заблокировано при обновлении до karmic

btw: Tab order in dialog wrong too.

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

-- 
Edit Channel Dialog: UTF-8 dysplayed wrong
https://bugs.launchpad.net/bugs/489960
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 489960] Re: Edit Channel Dialog: UTF-8 displayed wrong

2009-11-29 Thread Alexander Kabakow
** Summary changed:

- Edit Channel Dialog: UTF-8 dysplayed wrong
+ Edit Channel Dialog: UTF-8 displayed wrong

-- 
Edit Channel Dialog: UTF-8 displayed wrong
https://bugs.launchpad.net/bugs/489960
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 489943] Re: package python-mapnik 0.6.1-0ubuntu4 failed to install/upgrade: 9.04 to 9.10

2009-11-29 Thread Alexander Kabakow
Long time ago i played with mapnik build from source. 
And probably python-mapnik module come from there...

Can't try preform update again, because after reboot my system says is is 
Ubuntu 9.10.
Every things works fine. (Except some minor things like kpackagekit, synaptic 
works fine)

Thanks for help.

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

-- 
package python-mapnik 0.6.1-0ubuntu4 failed to install/upgrade: 9.04 to 9.10
https://bugs.launchpad.net/bugs/489943
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 489960] Re: Edit Channel Dialog: UTF-8 displayed wrong

2009-11-29 Thread Alexander Kabakow
Here is the changes to fix issue.

btw: what is a common way to contribute to project?

** Attachment added: Utf-8 fix
   http://launchpadlibrarian.net/36235196/DialogEdit.diff

-- 
Edit Channel Dialog: UTF-8 displayed wrong
https://bugs.launchpad.net/bugs/489960
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 258514] Re: Ubuntu 8.10 Alpha 4: Flash videos slow down the system extremely

2009-01-24 Thread Alexander Kabakow
Have same problems.

At site http://vetrovsk.livejournal.com/tag/МУЗИКА i click 2 times at
Previours 20 link (at end of page) at firefox hangs on with extreme
processor(99%) and memory usage(413Mb). I even dont click Play in
flash videos :)

I have NVidia video adapter.
latest FireFox.3.0.5.
Abobe flash plugin 10.0.15.3-1interpid2.

What cause such problems in previous releases?

-- 
Ubuntu 8.10 Alpha 4: Flash videos slow down the system extremely
https://bugs.launchpad.net/bugs/258514
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 258514] Re: Ubuntu 8.10 Alpha 4: Flash videos slow down the system extremely

2009-01-24 Thread Alexander Kabakow
epiphany-browser 2.24.1-0ubuntu1 have same issue.
seamonkey-browser 1.1.12+nobinonly-0ubuntu1 have same issue.

-- 
Ubuntu 8.10 Alpha 4: Flash videos slow down the system extremely
https://bugs.launchpad.net/bugs/258514
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 26037] Re: Download manager empty

2007-11-02 Thread Alexander Kabakow
Same problem.
FireFox 2.0.0.8
Ubuntu Gutsy 7.10

-- 
Download manager empty
https://bugs.launchpad.net/bugs/26037
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 149736] Re: miro.real crashed with ImportError in module()

2007-10-06 Thread Alexander Kabakow
I know that this is not a Miro problem.
The solution may be find in enhancing update-manager.

I just wanted to log that such problem exist.
Thank you.

-- 
miro.real crashed with ImportError in module()
https://bugs.launchpad.net/bugs/149736
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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