prev
5th November 2004
by Derek Kite
next


This Week...
Kdevelop adds extension support. kommander improves signal and slot editor. Kwallet is now asynchronous. juk adds support for gstreamer 0.8. KPasswordDialog adds password strength meter.

The Kde development process is remarkably open. With a cvs account you can contribute to almost any part of Kde. Most developers work on specific areas, others touch almost all the code at one time or another.

What happens when someone oversteps the rules? (Yes, there are rules) I don't want to embarass anyone, but not everyday does someone have the privilege of being chewed out by our release coordinator. And it is a good reminder for everyone.

It all started with a rather large commit to kdelibs/kdeui changing all instances of (foo==false) with (!foo), etc. The response was swift. Lubos Lunak wondered:
Hmm, I don't remember seeing any mail on any of the lists about uglifying KDE code. What should be the point of this commit, besides making cvs annotate worse and offending a bunch of those people whose coding style you have changed without asking them? Doing such things is never a good idea.

Maks Orlovich asked:
Reviewed by? Approved by? IMHO it's very disrespectful to go touching people's coding style without asking for their OK. And wholesale commits in kdelibs are just utterly risky.

Stephan Kulow didn't hesitate:
You broke rule 8 of the little rules we have for KDE CVS: http://developer.kde.org/policies/commitpolicy.html#8 I disabled your CVS write access and I won't enable it for another two weeks. You're still welcome to contribute to KDE CVS, but you will have to do so using patches for the time being.

Quite a surprise to find in your inbox when sitting down to do some coding. All worked out for the best when apologies were offered, misunderstandings were cleared up, and cvs write privileges were restored.

David Faure explained why the strong response:
What hasn't really been said is why we all object to this.

Changes like "== QString::null" -> "isNull()" are accepted, because they make things a tiny bit faster without hurting readability.

But changes like

- while ( ( wdg = it.current() ) != 0 ) {
+ while ( ( wdg = it.current() ) ) {

don't make it faster, and do hurt readability (the changed line looks to me like it might be a typo for wdg == it.current(), whereas the original line didn't have that problem.

Same thing for myint == 0, this is more readable than !myint, when the int can take several values and we're only testing against 0 here, but maybe 1 and 2 later on. There is nothing to gain by writing !myint here, only loss of readability.

Some people might be able to read !myint and to notice the double parenthesis in the above while loop. Good for them. But that's no reason to make it harder for the others by changing the existing kdelibs code.

Renchi Raju announced the immediate availability of digiKam-0.7-rc1.
The highlights of this release are a number of bug fixes, updated documentation and various usability/cosmetic fixes since the beta1 release. The scheduled release for 0.7 stable is this weekend (Nov 7). The primary reason for this release is to give translators enough time to update the translations (the string freeze has been in effect since Oct 31).

------------------------------------------------------------------------

digiKam is a digital photo management application for KDE, which makes importing and organizing digital photos a "snap". The photos can be organized in albums which can be sorted chronologically, by directory layout or by custom collections. Additionally images can be tagged and these tagged images can be viewed in virtual albums. An easy to use interface is provided that enables you to connect to your camera and preview, download and/or delete your images.

More details available at: http://digikam.sourceforge.net

Petter Stokke announced KMLDonkey 0.10:
KMLDonkey 0.10 was released today, the 1st of November 2004. KMLDonkey is an advanced GUI frontend for the MLDonkey P2P core, offering a wealth of useful features and tight KDE integration for MLDonkey users.

Download and installation instructions can be found at the following address:
http://kmldonkey.org/node/view/21
An overview of KMLDonkey's major features can be found here:
http://kmldonkey.org/node/view/13

Aside from being an official release, version 0.10 contains only a few bug fixes since the 0.10pre4 release. The changes since the last official release, 0.9.1, are too numerous to list - please consult the aforementioned feature overview.


Statistics
Commits: 2460 by 213 developers, 429017 lines modified, 1114 new files.
Open Bugs: 7829
Open Wishes: 7223
Bugs Opened: 324 in the last 7 days.
Bugs Closed: 381 in the last 7 days.

Commit Summary
Module Commits
kde-i18n
541
kdenonbeta
275
kdepim
246
kdelibs
163
koffice
131
kdeextragear-2
120
khtmltests
110
www
97
kdeextragear-3
93
kdeextragear-1
88
Lines Developer Commits
104748
Stephan Kulow
118
2050
Stephan Binner
108
4007
David Faure
67
1958
Pedro Morais
66
725
Benjamin Meyer
61
21226
Hasso Tepper
59
772
Till Adam
58
4127
Stefan Asserhäll
53
1782
George Staikos
53
1645
Chris Howells
50

Internationalisation (i18n) Status
Language Percentage Complete
British English
99.78%
Swedish
98.26%
Portuguese
95.74%
Danish
94.14%
Estonian
93.12%
Spanish
90.88%
French
90.52%
Italian
89.98%
Dutch
89.87%
Serbian
89.48%

Bug Killers
Bug Killer Number Of Bugs Closed
Stephan Kulow
63
George Staikos
42
Aaron J. Seigo
38
Tom Albers
22
Tobias Koenig
20
Scott Wheeler
15
Tommi Tervo
12
Luboš Luňák
9
Ingo Klöcker
8
Stephan Binner
8

Contents
  Bug Fixes Features Optimise Security Other
Accessibility
Development Tools
Educational
Graphics
KDE-Base
KDE-PIM
Office
Konqueror
Multimedia
Networking Tools
User Interface
Utilities
Games
Other

There are 81 selections this week.

Anders Lund committed a change to kdelibs/kate/part:
This adds a feature for reading "local variables" to the katepart
editor.
"local variables" are like vim commands or emacs local variables: a
simple way to embed document configuration into the document itself.


The kate version hereby comitted has the following simple syntax:
kate: VARIABLE VALUE;[VARIABLE VALUE;...]
which can be expressed as
"kate:<variablename><space><value>semicolon".
Space is allowed in any amount, and the text may be placed in
comments, for example
/bin /boot /crystalsvg /dev /etc /gnuplot.cfg /home /initrd /initrd.img /initrd.img.old /lib /media /mnt /opt /proc /root /sbin /srv /sys /tmp /usr /var /vmlinuz /vmlinuz.old /xtra kate: auto-brackets on; */
// kate: indent-with 4; space-indent on;
are both valid.


VALUE can be a integer, a boolean expressed as "on", "off", "true",
"false", "1" or "0", or a string not containing a semicolon.


Currently, the first and last 10 lines of a document are parsed for
valid variables, i will add configuration options for that later.
Variables are read in the events of load and save.


Unknown variables or values are silently discarded - you don't even
get a line in the debug output for now..


The supported variables are
word-wrap <bool>
block-selection <bool>
auto-indent <bool>
backspace-indents <bool>
replace-tabs <bool>
wrap-cursor <bool>
auto-brackets <bool>
persistent-selection <bool>
keep-selection <bool>
del-on-input <bool>
overwrite-mode <bool>
keep-indent-profile <bool>
keep-extra-spaces <bool>
tab-indents <bool>
show-tabs <bool>
space-indent <bool>
smart-home <bool>
tab-width <uint>
indent-width <uint>
word-wrap-column <uint>
undo-steps <uint>
end-of-line | eol <"unix"|"dos"|"mac">
document-name | doc-name <string>
encoding <string>
syntax | hl <string>


I will add variables concerning the views later, as well as an
interface exposing the feature to plugins/apps.


Diff Revision 0

Anders Lund committed a change to kdelibs/kate/part:
Adding view/renderer "document variables"
The following new variables are now accepted:
dynamic-wordwrap BOOL
icon-border BOOL
folding-markers BOOL
auto-center-lines INT
iconbar-color STRING
background-color STRING
selection-color STRING
current-line-color STRING
bracket-highlight-color STRING
word-wrap-marker-color STRING
font STRING
font-size INT


The COLOR settings accept either a HTML style hex color (#ffffff) or
a color name for a color in the X colors.


the "font" variable should be the font name ("bitstream vera sans",
"times").


the "font-size" is the point size.


Diff Revision 0

Richard J. Moore committed a change to kdenonbeta/kuiviewer:
Added a quick hack KPart that can view Designer's ui files using
QWidgetFactory. Does anyone have time to clean this up for inclusion
in 3.2?


Rich.
CCMAIL: kde-core-devel@kde.org


Diff Revision 0

Jonathan Riddell committed a change to kdesdk/umbrello/umbrello:
Automatic resizing of sequence diagram vertical lines.
Wishlist bug 53387


Refer to Bug 53387 - extending sequence diagram object lines
Diff Revision 0

Alexander Dymo committed a change to kdevelop/lib/astyle:
Added sourceFormatter() to KDevPlugin interface and corrected
AStylePart to be the default source formatter part. Astyle library
is separated from the part.


Diff Revision 0

Roberto Raggi committed a change to kdevelop/src:
*first* implementation of profile support for kdevelop


now is possible to launch kdevelop with a profile (like konqueror). so, for instance
if you execute


gideon --profile roberto


kdevelop starts with the profile "roberto" and all plugins settings are stored/loaded
from this profile.


for more informations
gideon --help




Diff Revision 0

Christoph Cullmann committed a change to kdelibs/kate/part:
fix last bugfix for [Bug 55484] Wordwrap doesn't respect white space


Refer to Bug 55484 - Wordwrap doesn't respect white space
Diff
Diff Revision 0

Stanislav Višňovský committed a change to kdesdk/kbabel/common:
Partial fix for 57642. Insert space after commas in copyright. Also,
add dot after each translator copyright, if missing.


Refer to Bug 57642 - Incorrect format in the file header
Diff
Diff Revision 0

Oliver Kellogg committed a change to kdesdk/umbrello/umbrello:
Add method LinePath::activate. Fixes bug 54575 (display of anchor points.)


Refer to Bug 54575 - association anchor points not saved
Diff Revision 0

Harald Fernengel committed a change to kdevelop/parts/appwizard/common:
make it work on solaris [Bug 58602]


Refer to Bug 58602 - solaris only: tar '-C' not supported -> (g)make fails
Diff
Diff Revision 0

Andras Mantia committed a change to quanta:
Rewritten tag parser (more accurate, fixes some bugs, handles valid but not usual cases).
Specify a default directory when opening a file, instead letting KDE chose one.


Diff Revision 0

Dave Corrie committed a change to kdegames/kmahjongg:
Patch by Mederic Boquien to fix bug 58189 (i18n names aren't displayed correctly in highscores).


Refer to Bug 58189 - i18n names aren't displayed correctly in highscores
Diff
Diff Revision 0

Carsten Pfeiffer committed a change to kdegraphics/kuickshow/src:
CCMAIL:58611-close@bugs.kde.org
apply slightly modified patch by Andrea Bergia <andreabergia@yahoo.it>
to allow starting the slideshow with the current image, instead of the first


Refer to Bug 58611 - Allow the user to select if the slide show should start from the first
or from the selected file

Diff Revision 0

Carsten Pfeiffer committed a change to kdegraphics/kuickshow/src:
add support for black & white printing. Patch by andreabergia@yahoo.it
(only modified to use QImage::convertDepth() instead of KImageEffect.)
CCMAIL:56661-close@bugs.kde.org


Refer to Bug 56661 - Print option Black&White in Kuickshow
Diff Revision 0

Ravikiran Rajagopal committed a change to kdebase:
New feature: automatically align desktop icons on the grid. The iconMoved()
signal introduced to provide flexibility via an extra level of indirection.
Modified patch from:
CCMAIL andreabergia@yahoo.it
CCMAIL35469-done@bugs.kde.org


Refer to Bug 35469 - icon placement desktop grid snap
Diff Revision 0

Lucas Fisher committed a change to kdebase/kioslave/sftp:
Added support for OpenSSH 3.6+.
Changed ssh client version detection to assume the highest version supported by
the slave when the client version is not specifically recognized by the slave.
Added SIGCHLD handler to clean-up after terminated ssh processes.


Diff Revision 0

Michael Goffioul committed a change to kdelibs/kdeprint:
Added printer capabilities access, and customize the part of the GUI accordingly


Diff Revision 0

Michael Goffioul committed a change to kdelibs/kdeprint:
Allow to store CUPS password in config file (obscured form)


Diff Revision 0

Michael Goffioul committed a change to kdelibs/kdeprint:
- Use all toolbar actions from kghostview part in print preview
- Enable preview for non PostScript file


Diff
Diff Revision 0

Michael Goffioul committed a change to kdelibs/kdeprint:
Added support for persistent option in driver (hence, print filters as well).
Persistent options are always considered as non default, so they are always taken
into account (for example when building the command line of a print filter). Added
an example of use to the psnup filter.


Diff Revision 0

Michael Goffioul committed a change to kdelibs/kdeprint:
Make KDEPrint KIO-aware: printing to file (PS, PDF...) can be redirected to
any protocol supported by KIO (bug 51153). Needs some more testing.


Refer to Bug 51153 - kdeprint is not KIO enabled
Diff Revision 0

Stephan Kulow committed a change to /:
ask the right kdesktop for the right wallpaper.
CCMAIL:39552-close@bugs.kde.org


Refer to Bug 39552 - Noise in KDE Konsole (2 Displays)
Diff Revision 0

Michael Goffioul committed a change to kdebase/kdeprint/kdeprintfax:
Added support for generic fax system, which can be used for any other fax
system than those already supported. Fixes bug 55857 and bug 42583.


Refer to Bug 55857 - kdeprintfax: please add capisuite as a possible system to choose from
Refer to Bug 42583 - Capisupport for Fitzclassic
Diff Revision 0

Michael Goffioul committed a change to kdebase/kdeprint/kdeprintfax:
Added support for "Subject" line (only for Hylafax), fixes bug 36145


Refer to Bug 36145 - kdeprintfax company subject handling
Diff Revision 0

Ravikiran Rajagopal committed a change to kdebase/kioslave/devices/mounthelper:
Add nicer error message for newbies. Fixes bug 13613.


Refer to Bug 13613 - misleading error messages with mounting
Diff
Diff Revision 0

George Staikos committed a change to KDE_3_1_BRANCH: kdebase/konsole/konsole:
backport fix for 58231


Refer to Bug 58231 - ScroolLock doesn't do its job
Diff
Diff Revision 0

Oswald Buddenhagen committed a change to KDE_3_1_BRANCH: kdebase:
revert default font size to 12, which still _is_ the kde default. i
should have checked it earlier myself instead of believing some random
[core] developer on irc. ;)
CCMAIL:58629@bugs.kde.org


Refer to Bug 58629 - Default fonts are too big
Diff Revision 0

Ellis Whitehead committed a change to kdelibs/kdecore:
Fix for non-working global keypad shortcuts -- see comment from 2003-04-30 in Bug 56871


Refer to Bug 56871 - Numpad keys cannot be selected in KKeyChooser / KKeyButton
Diff


Backport: Fix for non-working global keypad shortcuts -- see comment from 2003-04-30 in Bug 56871


Diff
Diff Revision 0

Ellis Whitehead committed a change to kdelibs/kdecore:
Attempt at fix for bug 45312


Refer to Bug 45312 - kwin eats Ctrl-B
Diff
Diff Revision 0

George Staikos committed a change to KDE_3_1_BRANCH: kdelibs/kdecore:
backport fix for 55139


Refer to Bug 55139 - Closing Tabs by Keyboard Shortcut does not work
Diff
Diff Revision 0

Michael Goffioul committed a change to kdelibs/kdeprint:
Added global password mechanism, based on the KDE password server. This allows:
- to avoid that each KDEPrint pops up its own password dialog (for example: application
and job viewer)
- to avoid to pass the password on command lines and being shown in the notification
dialog, better security (bug 58427)


Refer to Bug 58427 - kprinter floods cups server when printing as another user


backport:
1) Use always the configured username, do not force to use the real login name (bug 58427)
2) Do not connect to remote servers anymore for remote printers: send all requests to
the configured host. This has drawbacks and advantages.
drawbacks
- feature loss regarding job management on remote printers: the user should
only see active jobs issued from his own CUPS server
advantages
- avoid the problem of local connection not being made as real local connections
- the ugly hack of George should not be needed anymore (the one that triggered a
bug in KExtendedSocket)
- all observed freezing bug should disappear as usually the configured host is
"localhost", and the connect call should not timeout anymore


Diff Revision 0

Michael Goffioul committed a change to kdelibs/kdeprint:
Support exotic device URIs in the "Other" section (bug 54431)


Refer to Bug 54431 - ptal string is not correctly entered into CUPS' /etc/cups/printers.conf
Diff Revision 0

Michael Goffioul committed a change to kdelibs/kdeprint/cups/cupsdconf2:
Do not use localhost as default ServerName to avoid breaking LAN browsing (bug 48230)


Refer to Bug 48230 - ServerName set to localhost which breaks browsing
Diff


Backport: do not use localhost as default ServerName to avoid breaking LAN browsing (bug 48230)


Diff
Diff Revision 0

Carsten Pfeiffer committed a change to kdelibs/kio/kfile:
CCMAIL:58693-close@bugs.kde.org
Indeed, it makes sense to use the current URL as default when adding
a new entry to the speedbar, instead of $HOME


Refer to Bug 58693 - wish: when adding QuickAccess item, set current directory as default
Diff
Diff Revision 0

Waldo Bastian committed a change to kdelibs/kio/kio:
Try harder not to miss changes: When multiple changes occur within the same
second there is a possibility that we miss some changes since the modification
time will no longer change during that second. By looking at the link count
as well we have a better chance to notice changes. There is still room for
error: There may be changes that leave the link count unchanged, such as the
renaming of an item, or the deletion of an item directly followed by the
creation of another item.


Diff Revision 0

George Staikos committed a change to KDE_3_1_BRANCH: kdelibs/kio/kio:
backport fix for 56316


Refer to Bug 56316 - crash on start if ~/.thumbnail folder is not
Diff
Diff Revision 0

Dirk Mueller committed a change to qt-copy:
fix XCursor crashes
CCMAIL: amantia@freemail.hu


Diff Revision 0

Dirk Mueller committed a change to kdebase/kfind:
if you write html, then use htmlURL(), otherwise this is vulnerable
to HTML injection. I don't think its relevant though.
CCMAIL: security@kde.org


Diff
Diff Revision 0

Helge Deller committed a change to kdepim/kmobile/devices:
fix icon naming and function return values,
this actually makes konqueror and devices:/ show the real device-icon pixmap


Diff Revision 0

Helge Deller committed a change to kdepim/kmobile/kioslave:
New kioslaves, accessible via the following URLs:
- cellphone:/
- organizer:/
- pda:/
[ - camera:/ (_not_ installed or activated, since there is a standalone camera:/
kioslave already!)]


more (any more needed?) are really easy to add if necessary.


Each of those kioslaves will show only mobile devices, which
belong to the given device class. Still, kmobile:/ will show all devices.


Diff Revision 0

Reinhold Kainhofer committed a change to kdepim/kpilot/conduits/sysinfoconduit:
Okay, I finished my PhD, and now I'm back in full swing. This weekend I wrote this
new conduit for KPilot, called sysinfoconduit. It writes all important Palm system
information to a text or html file. For an example, see
http://reinhold.kainhofer.com/Linux/KPilot/KPilotSysInfo.html.
The output is completely customizable via templates. Currently, txt and html templates
are available, but the user can provide his/her own template in the conduit configuration
dialog. The current html template uses css for the markup, and passes the w3c html
validator without warnings.


Hopefully, the debug output section will help us kpilot developers track down problems
easier (the users can send us the output of this conduit, and we can let it write out
all important stuff we need/want to see).


CCMAIL: kde-pim@kde.org


Diff Revision 0

Ingo Klöcker committed a change to KDE_3_1_BRANCH: kdenetwork/kmail:
Fix bug 58555: mismatch by Settings Configure Filters and Configure POP filters
This bug was already fixed in HEAD almost two months ago.


Refer to Bug 58555 - mismatch by Settings Configure Filters and Configure POP filters
Diff Revision 0

Tobias Koenig committed a change to kdepim/kaddressbook/views:

Fixed bug 57315, so the cursor does not jump to the top of table view
when deleting a contact.


Refer to Bug 57315 - after deleting an address the view jumps to the begin of the list
Diff
Diff Revision 0

Michael Brade committed a change to KDE_3_1_BRANCH: kdepim/knotes:
> ------- Additional Comments From binner@kde.org 2003-05-19 16:37 -------
> What's wrong with that? That this code is not in KDE_3_1_BRANCH. :-)
Hehe :-}
Seems that true for some strange reason, so:


Support for a note on different desktops: check position and
let KWin do the placement if it is illegal.


CCMAIL:58658-done@bugs.kde.org


Refer to Bug 58658 - Check note position against screen size
Diff Revision 0

Thomas Nagy committed a change to koffice:
New startup dialog for all KOffice apps
Approved by David Faure


Diff Revision 0

Ariya Hidayat committed a change to koffice/kspread:
implement function CONVERT (finally)
this is still far from complete but would be a good starting point


Diff
Diff Revision 0

Peter Simonsson committed a change to koffice/kivio:
Implemented real clipboard support. This fixes bug 58524: Unable
to copy stencils between two kivio windows


Refer to Bug 58524 - Unable to copy stencils between two kivio windows
Diff Revision 0

Ariya Hidayat committed a change to koffice/kspread:
fix view update problem (among others, bug 57846)


Phillip, Norbert: please tell me if this patch is wrong at all


CCMAIL: philipp.mueller@gmx.de, nandres@web.de


Refer to Bug 57846 - redrawing problem when split view is removed.
Diff
Diff Revision 0

Philipp Müller committed a change to koffice/kspread:
Fix 57755: kspread does not redraw worksheet after Goalseek


Refer to Bug 57755 - kspread does not redraw worksheet after Goalseek
Diff
Diff Revision 0

Ariya Hidayat committed a change to koffice/kspread:
autofill support for short weekday- and month-names
fix wishlist/bug 57849


Refer to Bug 57849 - Custom lists should include short month/weekday names by default.
Diff Revision 0

Philipp Müller committed a change to koffice/kspread:
- 1st part of fix for 58365 (normal): column width can't be larger than 141mm
by removing the range limit (see BR for reason).
- Remove compile warnings by setting defaults (just in case)


Refer to Bug 58365 - column width can't be larger than 141mm
Diff
Diff Revision 0

Philipp Müller committed a change to koffice/kspread:
- 2nd part of fix for 58365 (normal): column width can't be larger than 141mm
by removing the range limit (see BR for reason).
- Fix for 58716 (normal): Resize of column has no effect
Simple typo
- Enable lowering the values again (using fabs function)
- Fix default column width (was in points not in units)
- Adjusted layout


Refer to Bug 58365 - column width can't be larger than 141mm
Refer to Bug 58716 - Resize of column has no effect
Diff
Diff Revision 0

Philipp Müller committed a change to koffice/kspread:
Remaining fix for 57853: attempting to sort a column of integers leaves kspread in an undesirable state


Always call "slotUpdateView()" after you started an "emitBeginOperation()"


Refer to Bug 57853 - attempting to sort a column of integers leaves kspread in an undesirable state
Diff
Diff Revision 0

Dirk Mueller committed a change to koffice/kword:
QCString termination fixes
CCMAIL:58635-done@bugs.kde.org


Refer to Bug 58635 - kword compile problem kwview with new qt-copy 3.2
Diff Revision 0

Ariya Hidayat committed a change to koffice/lib/koscript:
fix to another fix: handle possible overflow in integer multiplication properly


CCMAIL:51218-done@bugs.kde.org


Refer to Bug 51218 - result of calculation is wrong
Diff
Diff Revision 0

Aaron J. Seigo committed a change to kdebase/libkonq:
servicemenu enhancements:


o support typeglobbed mimetypes in the form of group/*. so image/* would
match ALL image mimetypes. more flexible globbing is possible, but i'm
not sure if this is desired or needed (still looking for use cases). if
you know of a use case that would benefit from more advanced typeglobbing
let me know and i'll look into improving this bit. most of the grunt
work for typeglob support is already there, so it should be trivial.


o put all servicemenus into an Action submenu to keep the RMB from
growing and growing and growing ("it's taking over my desktop! ai-eee!" ;)


o allow putting related sericemenu items into submenus by using the
Submenu= key in the servicemenu's .desktop file.


Diff Revision 0

Luboš Luňák committed a change to kdebase/konqueror:
Fix 56965 - make konqy preloading/reusing multihead aware.


Refer to Bug 56965 - Konquerer opens on display:0 desktop (selected desktop from :1)
when launched from panel on display :1

Diff Revision 0

Waldo Bastian committed a change to kdebase/konqueror/sidebar/trees:
51548-done@bugs.kde.org
Keep properly track of the various items -> Don't crash. (B51548)


Refer to Bug 51548 - Crash after mounting a cd-rom device
Diff Revision 0

Laurence Anderson committed a change to kdebase/libkonq:
Patch by Viktor Rosenfeld to make sure tooltips don't go off the edge of the screen.


Together with my earlier patch to limit metainfo strings to 50 characters, the bug
should now be fixed, please test, if ok i'll backport to 3.1.x


CCMAIL54196@bugs.kde.org
CCMAIL:rosenfel@informatik.hu-berlin.de


Refer to Bug 54196 - meta-info tooltip (mis)positioned with at least parts outside the screen area
Diff
Diff Revision 0

Waldo Bastian committed a change to kdelibs/khtml:
CCMAIL:57366-done@bugs.kde.org
Don't set password in title. (B57366)


Refer to Bug 57366 - Security bug: site password is shown in window title
Diff
Diff Revision 0

Dirk Mueller committed a change to kdelibs/khtml/html:
make textareas monospace by default again
CCMAIL:57524-done@bugs.kde.org


Refer to Bug 57524 - Awkward proportional font used for textareas
Diff
Diff Revision 0

George Staikos committed a change to KDE_3_1_BRANCH: kdelibs/khtml/rendering:
backport:
fix <textarea> vertical size calculation, to fix the marvin 404 handler
at http://www.gcfl.net/pub/FreeDOS/kernel


Diff
Diff Revision 0

Waldo Bastian committed a change to KDE_3_1_BRANCH: kdelibs/khtml:
Don't set password in title. (B57366)


Refer to Bug 57366 - Security bug: site password is shown in window title
Diff
Diff Revision 0

Michael Garrett committed a change to kdenonbeta/kopete/protocols/jabber:
Can now send and receive messages. No chat functionality yet.


Diff Revision 0

Alexander Y. Loyko committed a change to /:
fix bug 54250


Refer to Bug 54250 - Wrong items in kmail menu (russian translation)
Diff
Diff Revision 0

Tim Jansen committed a change to kdenetwork/krdc:
1. Replace the QtDesigner toolbars with KToolBar (going back to the
stone age of GUI programming, but it looks better :)
2. Added the Advanced Options popup.. quite empty for now.
3. Implement wish 54048: view only option. There's a small problem
in the GUI though, the QPopup refuses to show the check mark.. hope
to fix this later.


Refer to Bug 54048 - Krdc needs an option to view only
Diff Revision 0

Olivier Goffart committed a change to kdenonbeta/kopete/plugins/cryptography:

Show linebreaks correctly


CCMAIL:58636@bugs.kde.org


thanks for the bug report


Refer to Bug 58636 - No linebreaks with Crypto-plugin
Diff
Diff Revision 0

Andy Goossens committed a change to /:
backport Olivier's commit
bug 58636


Refer to Bug 58636 - No linebreaks with Crypto-plugin
Diff
Diff Revision 0

Daniel Naber committed a change to kdebase/kcontrol/input:
-implementing two wishes:
27698: "fractional mouse acceleration values"
31189: "Mouse acceleration with threshold 0"
-deleting some useless help text


Refer to Bug 27698 - fractional mouse acceleration values
Refer to Bug 31189 - Mouse acceleration with threshold 0 not possible
Diff Revision 0

Aaron J. Seigo committed a change to kdebase/kicker/menuext/tom:
task oriented menu menuext
a work in progress (see the README if you care to) but this will allow
others to work on it with me.


CCMAIL:sven@kde.org


Diff Revision 0

Fredrik Höglund committed a change to kdelibs/kstyles/highcolor:
- Added initial support for the new QToolBox widgets in Qt 3.2.


Feedback is welcome, especially on whether the tab buttons
should always have bold fonts, and whether the active button
should be drawn with the selection color or not.


Diff Revision 0

Stephan Kulow committed a change to kdeartwork/kscreensaver/kxsconfig:
REFIXED
CCMAIL:57630-close@bugs.kde.org


Refer to Bug 57630 - xscreensaver ( version 4.07-2:1 ) cannot be well configured
Diff
Diff Revision 0

Daniel Naber committed a change to kdebase/kcontrol/input:
fix Bug 58560: Mouse control center doesn't remember user selection


Refer to Bug 58560 - Mouse control center doesn't remember user selection
Diff
Diff Revision 0

Luboš Luňák committed a change to kdebase/kwin/clients/b2:
No resize handle for non-resizable windows.
CCMAIL:57765-done@bugs.kde.org


Refer to Bug 57765 - Unresizable windows should not have a resize handle
Diff Revision 0

Luboš Luňák committed a change to kwin_iii: kdebase/kwin:
Fix deactivation of window when loosing focus - visible with XChat
and multihead. Maybe also fixes 52700.


Refer to Bug 52700 - konqueror window stays focused even after loosing it's focus
Diff
Diff Revision 0

Lars Knoll committed a change to qt-copy/src:
some fixes for bengali.


Diff Revision 0

Lars Knoll committed a change to qt-copy/src/kernel:
correctly reorder tamil and malayalam


CCMAIL:58591-done@bugs.kde.org


Refer to Bug 58591 - support for unicode tamil rendering
Diff
Diff Revision 0

Lars Knoll committed a change to qt-copy/src/kernel:
fix arabic mark placement.


Diff
Diff Revision 0

Joseph Wenninger committed a change to kdenonbeta/kggst:
Hopefully kggst (KDE GUI for Gnome System Tools) will become a complete control
module based wrapper for the above mentioned tool set. At the moment only the platform
selection is implemented and very basic viewing of network settings. More to come soon.
The latest setup tools (0.26) already have my pkg-config patch included for finding the
backend directory, but this commit still looks for the backend files hardcoded in
/usr/local/share/setup-tool-backends/scripts/


Diff Revision 0

Laurent Montel committed a change to kdeadmin/kpackage:
Fix crash when we try to find file in pkg and we don't have pkg installed


Diff Revision 0

Alexander Kellett committed a change to kdelibs/kio/bookmarks:
some more use of fullText() in place of text()
thanks for the good bug report!, hope this fixes it :)
58008-close@bugs.kde.org


Diff Revision 0

Thanks for reading the KDE Commit-Digest!
KDE Commit-Digest by Danny Allen, 2006-2009
All issues in archive by Derek Kite