https://vkrause@svn.kde.org/home/kde/branches/kdepim/enterprise/kdepim
........
r743023 | mutz | 2007-11-29 18:44:11 +0100 (Thu, 29 Nov 2007) | 1 line
Add support for audit log inspection to the reader window.
........
r743026 | mutz | 2007-11-29 18:55:12 +0100 (Thu, 29 Nov 2007) | 1 line
Suppress context menu for kmail: links; rename ShowHTML..URLManager to KMailProtocolURLManager, since it already handles most of them; return status messages for all kmail: links, lest people get scared by seeing kmail:showFooBar gibberish in the status bar; Fix missing . in one status bar message.
........
svn path=/trunk/KDE/kdepim/; revision=807621
- Actually make use of mmap again, this will make calls
to KMMsgBase::getLongPart() a lot faster
- call KMMsgBase::date() less by putting it on the outside
of the loop.
In fact, I think this loop is unnecessary, performance seems
to be much better without it.
Both things above only speed up switching to folders that have the same
subject often, like commit folders.
Most slowness still comes from KMFolderIndex::find(), which uses
QVector::indexOf, which is too slow for a folder with 20k messages
svn path=/trunk/KDE/kdepim/; revision=807448
Merged revisions 743002-743003 via svnmerge from
https://vkrause@svn.kde.org/home/kde/branches/kdepim/enterprise/kdepim
........
r743002 | mutz | 2007-11-29 17:00:33 +0100 (Thu, 29 Nov 2007) | 1 line
Use multiArg here is probably useful...
........
r743003 | mutz | 2007-11-29 17:08:39 +0100 (Thu, 29 Nov 2007) | 2 lines
Use multiArg here is probably useful... pt.2
Sigh, some of these uses of .arg() look questionable, at least they're now safe
........
svn path=/trunk/KDE/kdepim/; revision=807352
https://vkrause@svn.kde.org/home/kde/branches/kdepim/enterprise/kdepim
........
r742294 | mutz | 2007-11-27 20:10:54 +0100 (Tue, 27 Nov 2007) | 1 line
Add boolean Composer/ShowGnuPGAuditLogAfterSuccessfulSignEncrypt option, adjust <label> for Composer/ShowSnippetManager for consistency with other <label>s
........
r742295 | mutz | 2007-11-27 20:12:22 +0100 (Tue, 27 Nov 2007) | 1 line
Depending on (hidden, for now) user setting, show the GnuPG audit log (currently only implemented for gpgsm) after successful sign/encrypt operations.
........
r742992 | mutz | 2007-11-29 16:34:06 +0100 (Thu, 29 Nov 2007) | 1 line
Collect bools in a bitfield, add QString auditLog
........
r743000 | mutz | 2007-11-29 16:54:55 +0100 (Thu, 29 Nov 2007) | 1 line
Gather the audit log, but don't change the frames, yet.
........
svn path=/trunk/KDE/kdepim/; revision=807342
The problem was that the sub-event loop of KleoJobExecutor would
process user input, which made it possible to switch messages while
the job was being executed. That caused trouble when returning from
the sub-event loop.
Thanks to Volker for the solution.
BUG: 162049
svn path=/trunk/KDE/kdepim/; revision=807341
(still?) unspecified internet-mail icon and with
future potential for more branding. Copied from
Oxygen in kdebase/runtime.
svn path=/trunk/KDE/kdepim/; revision=807249
Works quite similar to the one in the battery applet,
but because we're not Plasma, it's still blue-on-white
with most color schemes.
Tested on all shipped color schemes and three different
icons. Works fine everywhere except for Obsidian Coast
and Honeycomb - those lack contrast between link background
and link foreground, little that we can do here except
switching to KColorScheme's "Normal" colors (but that
doesn't look as nice, so let's rather have the tradeoff).
Hope you like it.
CCMAIL: uwolfer@kde.org
svn path=/trunk/KDE/kdepim/akregator/; revision=806957
used for mbox storage
BTW, I think we should discuss further enabling displaying warnings about recreating outdated indices for maildir:
in sqlite mode, I've seen way too many of them, so perhaps there is a way to fix timestamps instead of displaying the warning
svn path=/trunk/KDE/kdepim/; revision=805511
to skip message "The index of folder .. seems to be out of date" for maildir folders
This can probbaly fix recently reported issues with displaying the message for maildir folders.
-int KMFolderIndex::writeMessages( KMMsgBase* msg, bool flush, FILE* indexStream ):
added overload with indexStream arg, which simplifies KMFolderIndex::writeIndex() code
and avoids dangerous side effects
(note: this apparently was not a source of problems, though)
CCMAIL:kde-pim@kde.org
svn path=/trunk/KDE/kdepim/; revision=805447
- Enable some code again
- style fixes
Still totally broken, though.
Do not use a KMail version newer than the nommap branch merge.
svn path=/trunk/KDE/kdepim/; revision=805166
from
/branches/work/kmail-nommap (r799390..804487)
/branches/work/kdepim-nommap/kmail (r804484..804960)
The SQLite mode is currently enabled only on Windows (by KMAIL_SQLITE_INDEX define),
so on !Windows, the code for standard 'mmap' mode is compiled.
CCMAIL:kde-pim@kde.org
svn path=/trunk/KDE/kdepim/; revision=805075
- Add kWarning when index is rebuilt because it is out of date
- Add message box asking if the user really wants to manually
recreate the index
svn path=/trunk/KDE/kdepim/; revision=804158
- Use QHostInfo instead of KNetwork
- Q3Accel->KAction
- many QAction->KAction, so the default shortcut appears correct
again in the configure shortcuts dialog
The port of Q3Accel to KAction has the side effect that the shortcut
to scroll the message up/down can now be configured.
CCBUG:96301
svn path=/trunk/KDE/kdepim/; revision=803951
It is dog slow, because Qt insists on doing item layouting when expanding an item,
even when calling setUpdatesEnabled(false).
svn path=/trunk/KDE/kdepim/; revision=803606
it provides very common functionality. Named it KPIM::TreeWidget
and used also as base of KMMimePartTree in kmail to maximize code reusal.
Others might take advantage of it.
Avoid using numeric constants for column indexes in KMMimePartTree.
Use descriptive preprocessor constants instead.
Implemented sorting in KMMimePartTree: it's useful when many attachments
are present and one wants only the ones of a certain type.
By default the sort indicator is not shown and we keep the sort insertion
order. We also revert to this order each time the view is filled.
Some minor additions to documentation
Source cleanup: inverted the order of a couple of functions.
svn path=/trunk/KDE/kdepim/; revision=803140
the Kleo jobs don't support synchronous execution anymore in trunk a
helper class to emulate that using QEventLoop has been added.
This enables crypto support in the KMail reader again when building
without KLEO_BUILD_OLD_MAINWINDOW.
Merged revisions 731701-731715,731717-731719,731721-731734,731736-731867,731869-731870,731872-732022,732024-732421,732423-732439,732441-732793,732795-733047,733050-733088,733090-733100,733102-733148,733150-733158,733160-733463,733465 via svnmerge from
https://vkrause@svn.kde.org/home/kde/branches/kdepim/enterprise/kdepim
................
r731701 | vkrause | 2007-11-01 17:25:25 +0100 (Thu, 01 Nov 2007) | 80 lines
Merged revisions 702839,702841-702888,702890-702952,702954-703209,703211-703454,703456-703461,703463-703760,703762-703855,703857-703886,703888-703946,703948-703961,703963-704170,704172-704178,704180-704185,704187-704195,704197-704304,704306-705719,705721-706112,706114-706138,706140-706144,706146-708323,708325-708727,708729-709044,709046-709055,709057-709060,709062-712432,712434-713381,713383-713393,713395-713409,713411-714722,714724,714726-716314,716316-716323,716325-716364,716366-716466,716468-716478,716480-716901,716903-716904,716906-716925,716927-717219,717221-717248,717250-719540,719542-719544,719546-719570,719572-720093,720095-725398,725400-730723,730725-731690 via svnmerge from
https://vkrause@svn.kde.org/home/kde/branches/work/~vkrause/enterprise
........
r725440 | vkrause | 2007-10-15 14:10:48 +0200 (Mon, 15 Oct 2007) | 2 lines
Port okDecryptMIME() to Kleo::DecryptVerifyJob.
........
r726612 | vkrause | 2007-10-18 11:26:10 +0200 (Thu, 18 Oct 2007) | 2 lines
Backport some tests to ensure that everything works here as well.
........
r726622 | vkrause | 2007-10-18 11:58:40 +0200 (Thu, 18 Oct 2007) | 3 lines
Partial port of CryptPlug::checkMessageSignature(), still contains some
regressions.
........
r727046 | vkrause | 2007-10-19 16:29:41 +0200 (Fri, 19 Oct 2007) | 2 lines
Get rid of CryptPlugWrapper::SigStatusFlags and CryptPlug::SignatureMetaData.
........
r727053 | vkrause | 2007-10-19 16:44:06 +0200 (Fri, 19 Oct 2007) | 2 lines
Test case for opaque verify.
........
r728096 | vkrause | 2007-10-22 13:03:35 +0200 (Mon, 22 Oct 2007) | 2 lines
fix QByteArray/QCString usage
........
r728101 | vkrause | 2007-10-22 13:32:05 +0200 (Mon, 22 Oct 2007) | 3 lines
Yet another QByteArray vs. QCString fix, signatures are working again
now.
........
r728113 | vkrause | 2007-10-22 14:44:11 +0200 (Mon, 22 Oct 2007) | 2 lines
CryptPlugWrapper -> Kleo::CryptoBackend::Protcol
........
r728479 | vkrause | 2007-10-23 14:21:44 +0200 (Tue, 23 Oct 2007) | 2 lines
CryptPlugFactory -> Kleo::CryptoBackendFactory
........
r728487 | vkrause | 2007-10-23 14:58:33 +0200 (Tue, 23 Oct 2007) | 5 lines
- fix certificate link
- initStatus() is no longer needed
- use Kleo::CryptoBackend::Protocol::displayName() instead of the old
local implementation
........
r728867 | vkrause | 2007-10-24 16:25:12 +0200 (Wed, 24 Oct 2007) | 2 lines
Port CryptPlugWrapper::hasFeature() calls.
........
r728877 | vkrause | 2007-10-24 16:49:29 +0200 (Wed, 24 Oct 2007) | 3 lines
The concept of active plugins doesn't exit anymore in the public API,
not active backends are simply not available.
........
r729223 | vkrause | 2007-10-25 12:59:13 +0200 (Thu, 25 Oct 2007) | 3 lines
SigStatus_NUMERICAL_CODE is a CryptPlug state and doesn't seem to exist
in gpgme++.
........
r729270 | vkrause | 2007-10-25 15:24:58 +0200 (Thu, 25 Oct 2007) | 2 lines
Set isGoodSignature correctly.
........
r731317 | vkrause | 2007-10-31 12:31:52 +0100 (Wed, 31 Oct 2007) | 2 lines
Remove the remaining cryptplug usage, only dead code anyway.
........
r731387 | vkrause | 2007-10-31 16:39:17 +0100 (Wed, 31 Oct 2007) | 2 lines
Add DN parsing and reordering code from cryptplug.
........
r731690 | vkrause | 2007-11-01 16:41:21 +0100 (Thu, 01 Nov 2007) | 2 lines
disable debug code
........
................
r733465 | vkrause | 2007-11-06 12:53:02 +0100 (Tue, 06 Nov 2007) | 2 lines
Kleo provides that function already, no need to duplicate it here.
................
svn path=/trunk/KDE/kdepim/; revision=803023
- Don't eat escape or enter keypresses, so that moving a message to a folder
with the keyboard works again
- actually return the correct folder, by setting the currentItem as well, instead of
only selecting an item.
Other stuff:
- Add some consts
- use QAction::setData instead of comparing the action names
- //< => ///<, so that doxygen recognises those
- some style fixes (identation, whitespace mainly)
- remove the ifdef'd out styleDependantFrameWidth
svn path=/trunk/KDE/kdepim/; revision=802876