Re: Past due
Hey, Learn how to get free Cable! shopsource.info never more : shopsource.info/r Regards, Betty Diehl blue strawberry yellow apple EDWARDS: ... more negative attacks -- aren't you sick of it?. banana. That librarian isn't enjoying jumping at the company.. yellow.
Bug#301966: kmail: crash when changing spell check language (probably race condition)
Package: kmail Version: 4:3.3.1-3 Severity: normal I had a crash, and I could repeat it several times, but it did not crash every time, so I can't give exact steps how to reproduce it. What I did is the following: - replied to a mail - chose extras -> spell checking - changed the language while spell checking I got a message box telling me that the change won't have an effect until the dialog box is restarted, and, on the same time, I sometimes got the dialog box spell checking with the new chosen language. - I pressed cancel on the spell checking box - and ok (the only choice anyway) on the message box Then kmail crashed. The text in the mail probably has to have some words which are wrong in the first and some words which are wrong in the second language. -- System Information: Debian Release: 3.1 APT prefers testing APT policy: (500, 'testing'), (50, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.10-1-k7 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Versions of packages kmail depends on: ii kdelibs4 4:3.3.2-4.0.2 KDE core libraries ii libc62.3.2.ds1-20GNU C Library: Shared libraries an ii libgcc1 1:3.4.3-6 GCC support library ii libice6 4.3.0.dfsg.1-10 Inter-Client Exchange library ii libkcal2 4:3.3.1-3 KDE calendaring library ii libkdenetwork2 4:3.3.1-3 KDE Network library ii libkdepim1 4:3.3.1-3 KDE PIM library ii libkleopatra0a 4:3.3.1-3 KDE GnuPG interface libraries ii libkpimidentities1 4:3.3.1-3 KDE PIM user identity information ii libksieve0 4:3.3.1-3 KDE mail/news message filtering li ii libmimelib1a 4:3.3.1-3 KDE mime library ii libpng12-0 1.2.8rel-1 PNG library - runtime ii libqt3c102-mt3:3.3.3-8 Qt GUI Library (Threaded runtime v ii libsm6 4.3.0.dfsg.1-10 X Window System Session Management ii libstdc++5 1:3.3.5-8 The GNU Standard C++ Library v3 ii libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li ii libxext6 4.3.0.dfsg.1-10 X Window System miscellaneous exte ii perl 5.8.4-8 Larry Wall's Practical Extraction ii xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu ii zlib1g 1:1.2.2-3 compression library - runtime -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#301971: KGlobalAccel conflicts with Mode_switch handling on SunRay
Package: kdelibs4 Version: 4:3.3.2-4.0.2 Severity: normal Tags: patch Kde global accelerators (like Ctrl+Fn to switch desktops, Alt_F2 for Run Command, etc) don't work on SunRay terminals, served from a Debian Linux server, if keyboard is in Russian mode. Accelerators work OK when keyboard is in English mode. This is caused by the way how SunRay's handle keyboard mode switch. The X server used (Xnewt) does not support XKB. The only way to implement two-language keyboard is to write a xmodmap file, that defines 4-keysym mappings, and maps Mode_switch to mod3 (note that only mapping to mod3 works, mapping to any other X modifier does not). This makes most things work correctly, but not KGlobalAccel, which becomes confused by mod3 bit set in state of incoming X KeyPress/KeyRelease events. This may be fixed by applying the following patch to libkdecore (patch done for KDE 3.3, but almost same applies to KDE 3.4). diff -urN kdecore.orig/kglobalaccel_x11.cpp kdecore/kglobalaccel_x11.cpp --- kdecore.orig/kglobalaccel_x11.cpp 2004-10-03 11:40:15.0 +0400 +++ kdecore/kglobalaccel_x11.cpp2005-03-29 15:21:45.461660064 +0400 @@ -49,7 +49,8 @@ g_keyModMaskXOnOrOff = KKeyServer::modXLock() | KKeyServer::modXNumLock() | - KKeyServer::modXScrollLock(); + KKeyServer::modXScrollLock() | + KKeyServer::modXModeSwitch(); //kdDebug() << "g_keyModMaskXAccel = " << g_keyModMaskXAccel // << "g_keyModMaskXOnOrOff = " << g_keyModMaskXOnOrOff << endl; } diff -urN kdecore.orig/kkeynative.h kdecore/kkeynative.h --- kdecore.orig/kkeynative.h 2003-08-18 12:45:04.0 +0400 +++ kdecore/kkeynative.h2005-03-29 15:18:46.0 +0400 @@ -235,6 +235,13 @@ */ static uint modXScrollLock(); + /** +* Returns the X11 Mode_switch modifier mask/flag. +* @return the X11 Mode_switch modifier mask/flag. +* @see accelModMaskX() +*/ + static uint modXModeSwitch(); + private: uint m_code, m_mod, m_sym; KKeyNativePrivate* d; diff -urN kdecore.orig/kkeyserver_x11.cpp kdecore/kkeyserver_x11.cpp --- kdecore.orig/kkeyserver_x11.cpp 2004-05-23 00:55:09.0 +0400 +++ kdecore/kkeyserver_x11.cpp 2005-03-29 15:21:03.0 +0400 @@ -283,13 +283,13 @@ //- static bool g_bInitializedMods, g_bInitializedVariations, g_bInitializedKKeyLabels; static bool g_bMacLabels; -static uint g_modXNumLock, g_modXScrollLock; +static uint g_modXNumLock, g_modXScrollLock, g_modXModeSwitch; bool initializeMods() { XModifierKeymap* xmk = XGetModifierMapping( qt_xdisplay() ); - g_rgModInfo[3].modX = g_modXNumLock = g_modXScrollLock = 0; + g_rgModInfo[3].modX = g_modXNumLock = g_modXScrollLock = g_modXModeSwitch = 0; int min_keycode, max_keycode; int keysyms_per_keycode = 0; @@ -313,6 +313,7 @@ case XK_Meta_L: case XK_Meta_R: if( !g_rgModInfo[3].modX ) g_rgModInfo[3].modX = mask; break; // Win alternate case XK_Scroll_Lock: g_modXScrollLock = mask; break; // Normally Mod5Mask + case XK_Mode_switch: g_modXModeSwitch = mask; break; } } @@ -533,6 +534,7 @@ uint modXNumLock(){ if( !g_bInitializedMods ) { initializeMods(); } return g_modXNumLock; } uint modXWin(){ if( !g_bInitializedMods ) { initializeMods(); } return g_rgModInfo[3].modX; } uint modXScrollLock() { if( !g_bInitializedMods ) { initializeMods(); } return g_modXScrollLock; } +uint modXModeSwitch() { if( !g_bInitializedMods ) { initializeMods(); } return g_modXModeSwitch; } uint accelModMaskX() { -- System Information: Debian Release: 3.1 APT prefers testing APT policy: (620, 'testing'), (600, 'unstable'), (550, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.10-1-686-smp Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R) Versions of packages kdelibs4 depends on: ii kdelibs-bin4:3.3.2-4.0.2 KDE core binaries ii kdelibs-data 4:3.3.2-4 KDE core shared data ii libart-2.0-2 2.3.17-1 Library of functions for 2D graphi ii libarts1 1.3.2-2 aRts Sound system ii libasound2 1.0.8-3 ALSA library ii libaspell150.60.2+20050121-1 The GNU Aspell spell-checker runti ii libaudio2 1.7-2 The Network Audio System (NAS). (s ii libaudiofile0 0.2.3-4 The Audiofile Library ii libbz2-1.0 1.0.2-1 A high-quality block-sorting file ii libc6 2.3.2.ds1-20 GNU C Library: Shared libraries an ii libcupsys2-gnutls101.1.23-7 Common UNIX Printing System(tm) - ii libesd0
Processed: Forwarded
Processing commands for [EMAIL PROTECTED]: > forwarded 301971 http://bugs.kde.org/show_bug.cgi?id=102742 Bug#301971: KGlobalAccel conflicts with Mode_switch handling on SunRay Noted your statement that Bug has been forwarded to http://bugs.kde.org/show_bug.cgi?id=102742. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#301971: Forwarded
forwarded 301971 http://bugs.kde.org/show_bug.cgi?id=102742 thanks This bug was also submitted to upstream bugzilla, it's 102742 there. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#301971: Patch was applied upstream
Hello. Looks like upstream applied something similar to my patch to KDE CVS HEAD. Could you please apply it to Debian 3.3 / 3.4 packages, to make those work with multi-language keyboards on XKB-less X servers? Patch is simple, fits well info the rest of kdecore, and is tested by me :). -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Possible mass bug filing: kde packages don't provide icon information in /usr/lib/menu
* Nikita V. Youshchenko [Thu, 07 Oct 2004 16:02:55 +0400]: > KDE packages do contain high-quality icons for almost all programs. > KDE packages provide /usr/lib/menu/ data for almost all programs. > However, in most files that KDE packages put into /usr/lib/menu/, there are > no "icon=" lines. So icons are not displayed in debian menus. > These are (probably minur, but) bugs in packages. > Should I file bugs against all affected packages? Just wanted to say that this is fixed this for the 3.4 packages... So long, -- Adeodato Simó EM: asp16 [ykwim] alu.ua.es | PK: DA6AE621 We may not return the affection of those who like us, but we always respect their good judgement. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#302029: Kcontrol in Sarge
Package: kcontrol Hi :-) I do not know, if it is KControl itself, or is it only problem with Debian Sarge package. In stable (Woody) KDE 2.2.2 I could choose font encoding for my language (Polish 2 alternatives) and languages of other users (English, Norwegian and Northern Saami). Then it was possible to choose encoding for UI from look&feel -> Fonts and from within many programs, as Kedit for example. In Sarge all these multilingual alternatives possibilities are gone. Some translated programs have horribly looking menus. Many arguments for using Linux in multilingual environment seem, are not actual... Perhaps it is my installation... I miss these features and I can not find any instruction, how to get them without downgrading ... Best greetings Basia -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Download programs from our site
Hi, Get all your downloadable needs from here: http://sofnpn.info/in.php?aid=88 NO : sofnpn.info/fgh.php Thanks, Amber Jefferson blue strawberry cyan strawberry We've tried to include features in the program for students with many disabilities. I needed Spanish in my classroom, so Spanish was added. I wanted something to engage students who are not interested in language, thus musical interludes and movement were incorporated. I wanted to be able to change the prompts (music,movements, etc.) on-the-fly. We wanted to provide for those requiring augmentative communication device and so the Mayer-Johnson symbols are included and can morph from the photographs. I wanted a cause-and-effect program for my students who didn't understand the automatic scan. The Switch-On-Picts activity was developed. We realized more types of scans would be advantageous. Three types of scanning routines have been added. I wanted 2 and 3 piece puzzles. Here they are. One of my parents wanted Dr. Seuss types of stories with real pictures. We wrote some 'ditties' and here's StoryTime.. strawberry. 5. blue.
Bug#302120: [Fwd: Rejected freedb submission]
Package: kscd Version: 4:3.3.2-1 Severity: normal kscd sends incorrectly formed e-mail messages to freedb. It "forgets" an empty line between the headers and body part of the message, which results in message being incorrectly parsed and CDDB entry not being submitted. Attached here is a "rejected freedb submission" message. RQ --- Begin Message --- Your freedb submission was rejected for the following reason: Invalid DB submission: unexpected end on line 1 Please fix the problem before you resubmit it. Only the first error in your submission was noted - there may be others. If you continue to have trouble, it may be due to a bug in your CD player software. If you suspect this, try acquiring a newer version. The rejected submission follows: > From [EMAIL PROTECTED] Wed Mar 30 07:08:47 2005 > Received: from koda.lma.lt ([193.219.48.174] ident=Debian-exim) > by dtype.org with esmtp (Exim 3.35 #1 (Debian)) > id 1DGXJn-0008Au-00 > for <[EMAIL PROTECTED]>; Wed, 30 Mar 2005 07:08:47 + > Received: from bliss.cr.vu.lt ([193.219.41.9] ident=rq) > by koda.lma.lt with esmtpsa (TLS-1.0:RSA_ARCFOUR_MD5:16) > (Exim 4.44) > id 1DGXJW-00010I-4l > for [EMAIL PROTECTED]; Wed, 30 Mar 2005 10:08:30 +0300 > From: Rimas Kudelis <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Content-Type: text/plain; charset="utf-8"; > # xmcd > # > # Track frame offsets: > #150 > #13033 > #26818 > #42216 > #50976 > #66282 > #80514 > #104328 > #11 > #130152 > # Disc length: 1945 seconds > # Revision: 1 > # > # Submitted via: libkcddb 0.10 > DISCID=8d07970a > DTITLE=Rasa RapalytÄ / Dienos ir dainos > DYEAR= > DGENRE= > TTITLE0=La Foule > TTITLE1=Mon Manege A Moi > TTITLE2=La Vie En Rose > TTITLE3=La Vie l'Amour > TTITLE4=Padam Padam > TTITLE5=Mon Dieu > TTITLE6=Milord > TTITLE7=l'Accordeoniste > TTITLE8=La Goulante do Pauvre Jean > TTITLE9=Non Je Ne regrette Rien > EXTD= > EXTT0= > EXTT1= > EXTT2= > EXTT3= > EXTT4= > EXTT5= > EXTT6= > EXTT7= > EXTT8= > EXTT9= > PLAYORDER= > X-SA-Exim-Connect-IP: 193.219.41.9 > X-SA-Exim-Mail-From: [EMAIL PROTECTED] > Subject: cddb misc 8d07970a > X-SA-Exim-Version: 4.2 (built Tue, 25 Jan 2005 19:36:50 +0100) > X-SA-Exim-Scanned: No (on koda.lma.lt); Unknown failure > Message-Id: <[EMAIL PROTECTED]> > Date: Wed, 30 Mar 2005 07:08:47 + > > If you need assistance, please take a look at the FAQ at http://www.freedb.org/modules.php?name=Sections&sop=viewarticle&artid=26 If the FAQ doesn't help, send an e-mail to: [EMAIL PROTECTED] Response generated by the CDDB daemon. --- End Message ---