Package: kaddressbook Version: 4:3.5.8-1 Severity: minor Hi, I've found the autodial by clicking on phone number feature quite useful, but unfortunately both the script-hook configuration hint and my current voip package of choice (kphone) were rather underdocumented. Setting up things required looking at the source package of the latter for discovering the correct -d option; a patch to add --help options list to kphone has been submitted, here is provided a small one to add explicit examples to kaddressbook hints as well.
Thanks, -- a.m. -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.23.1 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages kaddressbook depends on: ii kdelibs4c2a 4:3.5.8.dfsg.1-3 core libraries and binaries for al ii libacl1 2.2.45-1 Access control list shared library ii libart-2.0-2 2.3.19-3 Library of functions for 2D graphi ii libattr1 1:2.4.39-1 Extended attribute shared library ii libaudio2 1.9-3 Network Audio System - shared libr ii libbluetooth2 3.20-1 Library to use the BlueZ Linux Blu ii libc6 2.6.1-6 GNU C Library: Shared libraries ii libfam0 2.7.0-13 Client library to control the FAM ii libfontconfig1 2.4.91-1 generic font configuration library ii libfreetype6 2.3.5-1+b1 FreeType 2 font engine, shared lib ii libgcc1 1:4.2.2-3 GCC support library ii libgnokii3 0.6.19-1 Gnokii library ii libice6 2:1.0.4-1 X11 Inter-Client Exchange library ii libidn11 1.1-1 GNU libidn library, implementation ii libjpeg62 6b-14 The Independent JPEG Group's JPEG ii libkcal2b 4:3.5.8-1 KDE calendaring library ii libkdepim1a 4:3.5.8-1 KDE PIM library ii libkleopatra1 4:3.5.8-1 KDE GnuPG interface libraries ii libktnef1 4:3.5.8-1 Library for handling KTNEF email a ii libpng12-0 1.2.15~beta5-3 PNG library - runtime ii libqt3-mt 3:3.3.7-9 Qt GUI Library (Threaded runtime v ii libsm6 2:1.0.3-1+b1 X11 Session Management library ii libstdc++6 4.2.2-3 The GNU Standard C++ Library v3 ii libx11-6 2:1.0.3-7 X11 client-side library ii libxcursor1 1:1.1.9-1 X cursor management library ii libxext6 1:1.0.3-2 X11 miscellaneous extension librar ii libxft2 2.1.12-2 FreeType-based font drawing librar ii libxi6 2:1.1.3-1 X11 Input extension library ii libxinerama1 1:1.0.2-1 X11 Xinerama extension library ii libxpm4 1:3.5.7-1 X11 pixmap library ii libxrandr2 2:1.2.2-1 X11 RandR extension library ii libxrender1 1:0.9.4-1 X Rendering Extension client libra ii libxt6 1:1.0.5-3 X11 toolkit intrinsics library ii zlib1g 1:1.2.3.3.dfsg-6 compression library - runtime kaddressbook recommends no packages. -- no debconf information
--- kaddressbook/kcmconfigs/kabconfigwidget.cpp.orig 2007-10-29 09:02:21.000000000 +0100 +++ kaddressbook/kcmconfigs/kabconfigwidget.cpp 2007-10-29 09:03:58.000000000 +0100 @@ -103,14 +103,14 @@ grid->addWidget( label, 0, 0 ); mPhoneHook = new QLineEdit( groupBox ); - QToolTip::add( mPhoneHook, i18n( "<ul><li>%N: Phone Number</li></ul>" ) ); + QToolTip::add( mPhoneHook, i18n( "<ul><li>%N: Phone Number.<br> I.e. kphone -d %N</li></ul>" ) ); grid->addWidget( mPhoneHook, 0, 1 ); label = new QLabel( i18n( "Fax:" ), groupBox ); grid->addWidget( label, 1, 0 ); mFaxHook = new QLineEdit( groupBox ); - QToolTip::add( mFaxHook, i18n( "<ul><li>%N: Fax Number</li></ul>" ) ); + QToolTip::add( mFaxHook, i18n( "<ul><li>%N: Fax Number.<br> I.e. kdeprintfax --phone %N</li></ul>" ) ); grid->addWidget( mFaxHook, 1, 1 );