Bug#462692: xorg: after rotation kde panel stuck in place

2008-01-26 Thread db001
Package: xorg Version: 1:7.2-5 Severity: normal Not sure which package the bug belongs to, sorry. "xrandr -o left" used to work just fine, but now has developed some annoying problems. My regular screen size is 1280x1024. After rotation the KDE panel (which I keep on the bottom edge and autohide)

Bug#462014: xserver-xorg-video-radeonhd: wrong selection of available resolution

2008-01-26 Thread Cyrille Chépélov
The elements requested by upstream have been added at the URL you quoted. Thanks On ven, 2008-01-25 at 13:37 +0100, Brice Goglin wrote: > The upstream developer (at http://bugs.freedesktop.org/show_bug.cgi?id=14234) > would like the log of 'X -logverbose 7'. Could you send it > with the above git

Are there any plans to fix #433131 in Etch?

2008-01-26 Thread Mert Dirik
Are there any plans to fix #433131 in Etch? That bug causes data loss. I think it is important and it should be fixed in Etch. It looks as if Ubuntu will fix this soon in it's LTS release. [0] I think, if it doesn't introduce any regression, we should fix it in Etch, too. Mert Dirik [0] https://b

Processed: Re: Bug#462562: Option PreferredMode not per monitor

2008-01-26 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]: > reassign 462562 xserver-xorg-core Bug#462562: Option PreferredMode not per monitor Bug reassigned from package `xserver-xorg-video-ati' to `xserver-xorg-core'. > kthxbye Stopping processing here. Please contact me if you need assistance. Debian bug t

Bug#462562: Option PreferredMode not per monitor

2008-01-26 Thread Michel Dänzer
reassign 462562 xserver-xorg-core kthxbye On Fri, 2008-01-25 at 19:16 +0100, Anders Hammarquist wrote: > Package: xserver-xorg-video-ati > Version: 1:6.7.197-1 > Severity: normal > > I have dual monitor setup, one widescreen LCD and an older CRT. Trying to > get different default modes on the tw

xserver-xorg-video-nv_2.1.7-1_i386.changes ACCEPTED

2008-01-26 Thread Debian Installer
Accepted: xserver-xorg-video-nv_2.1.7-1.diff.gz to pool/main/x/xserver-xorg-video-nv/xserver-xorg-video-nv_2.1.7-1.diff.gz xserver-xorg-video-nv_2.1.7-1.dsc to pool/main/x/xserver-xorg-video-nv/xserver-xorg-video-nv_2.1.7-1.dsc xserver-xorg-video-nv_2.1.7-1_i386.deb to pool/main/x/xserver-xo

Processing of xserver-xorg-video-nv_2.1.7-1_i386.changes

2008-01-26 Thread Archive Administrator
xserver-xorg-video-nv_2.1.7-1_i386.changes uploaded successfully to localhost along with the files: xserver-xorg-video-nv_2.1.7-1.dsc xserver-xorg-video-nv_2.1.7.orig.tar.gz xserver-xorg-video-nv_2.1.7-1.diff.gz xserver-xorg-video-nv_2.1.7-1_i386.deb Greetings, Your Debian queue d

xserver-xorg-video-nv: Changes to 'refs/tags/xserver-xorg-video-nv-1_2.1.7-1'

2008-01-26 Thread Brice Goglin
Tag 'xserver-xorg-video-nv-1_2.1.7-1' created by Brice Goglin <[EMAIL PROTECTED]> at 2008-01-26 11:43 + Tagging upload of xserver-xorg-video-nv 1:2.1.7-1 to unstable. Changes since xserver-xorg-video-nv-1_2.1.6-1: Aaron Plattner (7): Bug #7309: Delay after disabling cursor to avoid wed

xserver-xorg-video-nv: Changes to 'debian-unstable'

2008-01-26 Thread Brice Goglin
ChangeLog | 81 ++ aclocal.m4|2 - configure | 20 ++--- configure.ac |2 - debian/changelog |8 + ltmain.sh |2 - man/nv.man|2 - src/g80_dac.c | 11 +++

xserver-xorg-video-nv: Changes to 'upstream-unstable'

2008-01-26 Thread Brice Goglin
configure.ac |2 +- man/nv.man|2 +- src/g80_dac.c | 11 +-- src/g80_output.c | 38 ++ src/g80_sor.c |4 ++-- src/g80_type.h|1 + src/nv_const.h|4 src/nv_cursor.c |6 +++--- src/nv_driver.

Bug#462621: xterm: clearing TAB starting from column 320 or later can cause segmentation fault

2008-01-26 Thread Németh Márton
X-Debbugs-CC: Thomas Dickey <[EMAIL PROTECTED]> Németh Márton wrote: > 4. Copy, paste and execute the following loop which will clear the TAB stops > at each possible column: > > for i in $(seq 0 1024); do echo -e -n "\eHx"; done This escape sequence will SET TABs instead of clearing them. The c

Bug#462621: xterm: clearing TAB starting from column 320 or later can cause segmentation fault

2008-01-26 Thread Németh Márton
Németh Márton wrote: > 2. Copy, paste and execute the following escape sequence, which will set > the font size to "unreadable" size: > > echo -e -n "\e]50;#1\0" The correct sequence would be: echo -e -n "\e]50;#1\e\\" I also attached a test script which can reproduce the problem. To reproduce

Bug#462621: xterm: clearing TAB starting from column 320 or later can cause segmentation fault

2008-01-26 Thread Németh Márton
Package: xterm Version: 231-1 Severity: important The TAB positions are stored in a bitmap array, which is defined in ptyx.h, line 1961. The size of this array is TAB_ARRAY_SIZE which is defined to be 10. Thus, Tabs array consists of ten 'unsigned int', tabs.c stores 32 positions in one position.