Your message dated Sat, 24 Sep 2005 14:02:09 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#293035: fixed in kdenetwork 4:3.4.2-3 has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 31 Jan 2005 20:29:21 +0000 >From [EMAIL PROTECTED] Mon Jan 31 12:29:21 2005 Return-path: <[EMAIL PROTECTED]> Received: from rwcrmhc11.comcast.net [204.127.198.35] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1CviAj-0006CB-00; Mon, 31 Jan 2005 12:29:21 -0800 Received: from localhost (h00085405aa1d.ne.client2.attbi.com[66.30.141.95]) by comcast.net (rwcrmhc11) with ESMTP id <2005013120284801300kc62ee>; Mon, 31 Jan 2005 20:28:48 +0000 Received: from zack by localhost with local (Exim 3.36 #1 (Debian)) id 1CviAA-0004aN-00; Mon, 31 Jan 2005 15:28:46 -0500 Content-Type: multipart/mixed; boundary="===============0194731347==" MIME-Version: 1.0 From: Zack Cerza <[EMAIL PROTECTED]> To: Debian Bug Tracking System <[EMAIL PROTECTED]> Subject: kopete: buddy groups use hideous green icon by default X-Mailer: reportbug 3.7.1 Date: Mon, 31 Jan 2005 15:28:46 -0500 Message-Id: <[EMAIL PROTECTED]> Sender: Zack Cerza <[EMAIL PROTECTED]> Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-Spam-Level: This is a multi-part MIME message sent by reportbug. --===============0194731347== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline Package: kopete Version: 4:3.3.2-1 Severity: minor Tags: patch Kopete by default uses a green folder for buddy groups, regardless of the user's icon and color schemes. This patch just make kopete default to using normal folder icons (not green-tinted) for buddy groups. -- System Information: Debian Release: 3.1 APT prefers experimental APT policy: (990, 'experimental'), (990, 'unstable'), (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.7-1-686 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Versions of packages kopete depends on: ii kdelibs4 4:3.3.2-1 KDE core libraries ii libart-2.0-2 2.3.17-1 Library of functions for 2D graphi ii libc6 2.3.2.ds1-20 GNU C Library: Shared libraries an ii libgadu3 1:1.5+20050122-1 Gadu-Gadu protocol library - runti ii libgamin0 [libfam0c102] 0.0.12-1 Library for the gamin file and dir ii libgcc1 1:4.0-0pre5 GCC support library ii libglib1.2 1.2.10-9 The GLib library of C routines ii libgtk1.2 1.2.10-17 The GIMP Toolkit set of widgets fo ii libice6 4.3.0.dfsg.1-10 Inter-Client Exchange library ii libidn11 0.5.2-3 GNU libidn library, implementation ii libjpeg62 6b-9 The Independent JPEG Group's JPEG ii libpcre3 4.5-1.1 Perl 5 Compatible Regular Expressi ii libpng12-0 1.2.8rel-1 PNG library - runtime ii libqt3c102-mt 3: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-7 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 libxi6 4.3.0.dfsg.1-10 X Window System Input extension li ii libxml2 2.6.16-1 GNOME XML library ii libxrender1 0.9.0-0ubuntu3 X Rendering Extension client libra ii libxslt1.1 1.1.12-3 XSLT processing library - runtime ii xlibs 4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu ii xmms 1.2.10-2 Versatile X audio player that look ii zlib1g 1:1.2.2-4 compression library - runtime -- no debconf information --===============0194731347== Content-Type: text/x-c; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="12_kopete-green-folder.diff" --- kdenetwork-orig/kopete/kopete/kopetewindow.cpp +++ kdenetwork-patched/kopete/kopete/kopetewindow.cpp @@ -182,7 +182,7 @@ actionShowOffliners = new KToggleAction( i18n( "Show Offline &Users" ), "viewmag", CTRL + Key_U, this, SLOT( slotToggleShowOffliners() ), actionCollection(), "settings_show_offliners" ); - actionShowEmptyGroups = new KToggleAction( i18n( "Show Empty &Groups" ), "folder_green", CTRL + Key_G, + actionShowEmptyGroups = new KToggleAction( i18n( "Show Empty &Groups" ), "folder", CTRL + Key_G, this, SLOT( slotToggleShowEmptyGroups() ), actionCollection(), "settings_show_empty_groups" ); # if KDE_IS_VERSION(3,2,90) --- kdenetwork-orig/kopete/kopete/contactlist/kopetegroupviewitem.h +++ kdenetwork-patched/kopete/kopete/contactlist/kopetegroupviewitem.h @@ -21,8 +21,8 @@ #include "kopetelistviewitem.h" #include <qpixmap.h> -#define KOPETE_GROUP_DEFAULT_OPEN_ICON "folder_green_open" -#define KOPETE_GROUP_DEFAULT_CLOSED_ICON "folder_green" +#define KOPETE_GROUP_DEFAULT_OPEN_ICON "folder_open" +#define KOPETE_GROUP_DEFAULT_CLOSED_ICON "folder" /** * @author Olivier Goffart --===============0194731347==-- --------------------------------------- Received: (at 293035-close) by bugs.debian.org; 24 Sep 2005 21:08:12 +0000 >From [EMAIL PROTECTED] Sat Sep 24 14:08:12 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1EJH9t-0005hc-00; Sat, 24 Sep 2005 14:02:09 -0700 From: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#293035: fixed in kdenetwork 4:3.4.2-3 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Sat, 24 Sep 2005 14:02:09 -0700 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-CrossAssassin-Score: 2 Source: kdenetwork Source-Version: 4:3.4.2-3 We believe that the bug you reported is fixed in the latest version of kdenetwork, which is due to be installed in the Debian FTP archive: dcoprss_3.4.2-3_i386.deb to pool/main/k/kdenetwork/dcoprss_3.4.2-3_i386.deb kdenetwork-dev_3.4.2-3_i386.deb to pool/main/k/kdenetwork/kdenetwork-dev_3.4.2-3_i386.deb kdenetwork-doc-html_3.4.2-3_all.deb to pool/main/k/kdenetwork/kdenetwork-doc-html_3.4.2-3_all.deb kdenetwork-filesharing_3.4.2-3_i386.deb to pool/main/k/kdenetwork/kdenetwork-filesharing_3.4.2-3_i386.deb kdenetwork-kfile-plugins_3.4.2-3_i386.deb to pool/main/k/kdenetwork/kdenetwork-kfile-plugins_3.4.2-3_i386.deb kdenetwork_3.4.2-3.diff.gz to pool/main/k/kdenetwork/kdenetwork_3.4.2-3.diff.gz kdenetwork_3.4.2-3.dsc to pool/main/k/kdenetwork/kdenetwork_3.4.2-3.dsc kdenetwork_3.4.2-3_all.deb to pool/main/k/kdenetwork/kdenetwork_3.4.2-3_all.deb kdict_3.4.2-3_i386.deb to pool/main/k/kdenetwork/kdict_3.4.2-3_i386.deb kget_3.4.2-3_i386.deb to pool/main/k/kdenetwork/kget_3.4.2-3_i386.deb knewsticker_3.4.2-3_i386.deb to pool/main/k/kdenetwork/knewsticker_3.4.2-3_i386.deb kopete_3.4.2-3_i386.deb to pool/main/k/kdenetwork/kopete_3.4.2-3_i386.deb kpf_3.4.2-3_i386.deb to pool/main/k/kdenetwork/kpf_3.4.2-3_i386.deb kppp_3.4.2-3_i386.deb to pool/main/k/kdenetwork/kppp_3.4.2-3_i386.deb krdc_3.4.2-3_i386.deb to pool/main/k/kdenetwork/krdc_3.4.2-3_i386.deb krfb_3.4.2-3_i386.deb to pool/main/k/kdenetwork/krfb_3.4.2-3_i386.deb ksirc_3.4.2-3_i386.deb to pool/main/k/kdenetwork/ksirc_3.4.2-3_i386.deb ktalkd_3.4.2-3_i386.deb to pool/main/k/kdenetwork/ktalkd_3.4.2-3_i386.deb kwifimanager_3.4.2-3_i386.deb to pool/main/k/kdenetwork/kwifimanager_3.4.2-3_i386.deb librss1_3.4.2-3_i386.deb to pool/main/k/kdenetwork/librss1_3.4.2-3_i386.deb lisa_3.4.2-3_i386.deb to pool/main/k/kdenetwork/lisa_3.4.2-3_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> (supplier of updated kdenetwork package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Sat, 24 Sep 2005 17:45:23 +0200 Source: kdenetwork Binary: knewsticker kwifimanager dcoprss ksirc kdenetwork-filesharing kppp kpf librss1 kdenetwork-doc-html kdenetwork kopete kget kdenetwork-kfile-plugins krfb krdc kdenetwork-dev kdict ktalkd lisa Architecture: source i386 all Version: 4:3.4.2-3 Distribution: unstable Urgency: low Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Changed-By: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Description: dcoprss - RSS utilities for KDE kdenetwork - network-related apps from the official KDE release kdenetwork-dev - development files for the KDE network module kdenetwork-doc-html - KDE network documentation in HTML format kdenetwork-filesharing - network filesharing configuration module for KDE kdenetwork-kfile-plugins - torrent metainfo plugin for KDE kdict - dictionary client for KDE kget - download manager for KDE knewsticker - news ticker applet for KDE kopete - instant messenger for KDE kpf - public fileserver for KDE kppp - modem dialer and ppp frontend for KDE krdc - Remote Desktop Connection for KDE krfb - Desktop Sharing for KDE ksirc - IRC client for KDE ktalkd - talk daemon for KDE kwifimanager - wireless lan manager for KDE librss1 - RSS library for KDE lisa - LAN information server for KDE Closes: 291009 293035 324867 327843 329708 Changes: kdenetwork (4:3.4.2-3) unstable; urgency=low . +++ Changes by Christopher Martin: . * Add a patch which ensures that KPPP users who encounter connection errors are pointed to the package's README.Debian, if KPPP has no other suggestions. (Closes: #324867) . * Improve and expand the kppp.README.Debian. . +++ Changes by Adeodato Simó: . * This upload triggers a kwifimanager recompilation that copes with libiw28 having dropped _GLOBAL_OFFSET_TABLE_; kwifimanager applet no longer crashes, thus this upload closes: #327843, #329708. . +++ Changes by Luk Claes: . * Add patch to add missing entry for Hungarian to fix menu (Closes: #291009) . * Add patch to use user's color for budy groups icon (Closes: #293035). Files: bc989e1c9e0c163b75733274e0f870eb 1317 kde optional kdenetwork_3.4.2-3.dsc d7b5e42de3478a86a8fce2261125451c 244091 kde optional kdenetwork_3.4.2-3.diff.gz c6a5b3d2ecffa3c6b6ef57ce63329547 22298 kde optional kdenetwork_3.4.2-3_all.deb 1b8e8b0dac7382314a3e60ae624bea68 207576 doc optional kdenetwork-doc-html_3.4.2-3_all.deb 0082921518972a032254da2d799cf6c3 79922 net optional dcoprss_3.4.2-3_i386.deb 40fa1479d695c7c1eb7d74e4045010e0 44872 kde optional kdenetwork-kfile-plugins_3.4.2-3_i386.deb eedab78c09cad042c36fbf6ee1d82bad 604698 net optional kdenetwork-filesharing_3.4.2-3_i386.deb 4eddadcc4b46a68e3326f10de97cfff2 271940 net optional kdict_3.4.2-3_i386.deb 3c9725c8cc6531ea2afbd1d07b9c3d52 465328 net optional kget_3.4.2-3_i386.deb 4dfb6f63434331dff2ea1845bc53cadb 445148 kde optional knewsticker_3.4.2-3_i386.deb a062fdca9a0362cb244ed3575e765f9a 4369040 kde optional kopete_3.4.2-3_i386.deb 55876d9ae637f7859bdf72c57c83d243 190604 net optional kpf_3.4.2-3_i386.deb f73ce001edeb574289dcc6dab563f175 674230 net optional kppp_3.4.2-3_i386.deb bc7b6815970fdd4fc8a3b32bde41d17f 500282 net optional krdc_3.4.2-3_i386.deb 9d2c6f075007170a42f51dacbc3e243c 933610 net optional krfb_3.4.2-3_i386.deb aaaab1484594064622a2aaabf0fc5832 712806 net optional ksirc_3.4.2-3_i386.deb 84932ff00e536161ec55afc710b7c200 137766 net extra ktalkd_3.4.2-3_i386.deb dc046d0b6c47a0231853e9b88cc7132a 197602 net optional kwifimanager_3.4.2-3_i386.deb b10b4bf54b2350f69ce7bd99ee1f9ade 50680 libs optional librss1_3.4.2-3_i386.deb 1de09a95353c443151d5fa1722a9504e 98158 devel optional kdenetwork-dev_3.4.2-3_i386.deb 293a2ce22061376fff0c3fe4c8361260 175154 net optional lisa_3.4.2-3_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFDNbfX5UTeB5t8Mo0RAuLIAKDN9fb9c7oAp49mKEEliGpjvGCl+wCfeT6Y P0JXkiBn2Vu8k+CTbYXmILI= =QF7a -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]