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