summaryrefslogtreecommitdiff
path: root/misc/kdepim3/patches/patch-ac
diff options
context:
space:
mode:
authormarkd <markd>2006-01-31 22:37:34 +0000
committermarkd <markd>2006-01-31 22:37:34 +0000
commit1fb0cdbf274138116c51892e18732ee6c7452e67 (patch)
tree40665f3b47515a9fdffbba264f674d36a07e473f /misc/kdepim3/patches/patch-ac
parenta406133fd457b37216ce28adb5711f361ee2fec4 (diff)
downloadpkgsrc-1fb0cdbf274138116c51892e18732ee6c7452e67.tar.gz
Update to KDE 3.5.1
Changes: * KAlarm o Fix email attachments being forgotten when saving alarms o Make autoclose of message windows work o Display alarm message windows within current screen in multi-head systems o Fix toolbar configuration being lost after quitting KAlarm o Fix New From Template not creating alarm if template contents are not changed o Fix configuration dialog not fitting in 1024x768 screen in some translations * KMail o KMail crashes while inserting files o KMail composer crashes when inserting file o KMail crashes when inserting files into email messages o autocomplete in composer completes section title instead of email-address o The item "network state" in the KMail file menu is very confusing o Crash when applying pipe through filters o subfolders and included mails lost when moving folder to cachedimap account o Cannot create new folders with IMAP using Dovecot-imapd, regression from 3.4.X o Retrieving folder contents screen is irritating o Interpret old-fashioned time zone in email Date header o HTML formatting is lost when saving in drafts folder o composer kaddressbook no adresses at first launch * KOrganizer o libkholidays bug in Belgian version o HTML export does not include location field * Kontact o Mistake in reporting upcoming German Holidays on Overview page o Summary for "special dates" shows wrong time spans * KAddressBook o Allow the selection/copy of the formatted address o URL images not working in KAddressBook o Photo image location field is nonfunctional o Contact's photos are not cleared in "Contact Editor" extension bar o Need an easy way to copy and paste an address from the editor window o Exporting contacts to vcard generates _.vcf for EVERY contact without a real name o kaddressbook hangs on loading vcard * KNotes o Possibility to sort knotes list of notes titles o separate "Clear" action visually from Cut/Copy/Paste since it's not doing anything with the clipboard o added a "Do not show again" box to the delete note dialog o actually set the "Keep Above/Below" bit when creating a note on startup o race condition when using NETRootInfo::moveResizeRequest o line breaks not rendered properly in edit view o KNotes via network does not work properly o Confusing error requester while sending to self o Renaming a note opening it and editing its title does not rename it in the kontact notes view * Akregator o Do not open binary files in the HTML viewer but externally. Fix "Save Link As" for binary files o Fix article order in Combined View: sort by date o Fix parsing of Atom 1.0 feeds with escaped HTML in it: Don't show tags as text o Select next item in article list when deleting the selected article o Avoid crashes as happening when moving a folder and deleting a subitem afterwards o Fix problems with keyboard navigation getting stuck on duplicated articles and prevent creation of new items when selecting an unread dupe o Don't try to reload broken feeds every minute o CDATA in feed is not handled correctly * KNode o Respect background color settings when article viewer is empty o Fix crash on startup if auto mark-as-read is disabled o Reset busy cursor when folder loading fails.
Diffstat (limited to 'misc/kdepim3/patches/patch-ac')
-rw-r--r--misc/kdepim3/patches/patch-ac55
1 files changed, 0 insertions, 55 deletions
diff --git a/misc/kdepim3/patches/patch-ac b/misc/kdepim3/patches/patch-ac
deleted file mode 100644
index b1176598953..00000000000
--- a/misc/kdepim3/patches/patch-ac
+++ /dev/null
@@ -1,55 +0,0 @@
-$NetBSD: patch-ac,v 1.9 2005/12/11 11:40:02 markd Exp $
-
---- kmail/actionscheduler.cpp.orig 2005-09-10 20:24:02.000000000 +1200
-+++ kmail/actionscheduler.cpp
-@@ -570,7 +570,7 @@ void ActionScheduler::filterMessage()
- (!mAccount ||
- (mAccount && (*mFilterIt).applyOnAccount(mAccountId)))) ||
- ((mSet & KMFilterMgr::Explicit) && (*mFilterIt).applyOnExplicit())) {
--
-+
- // filter is applicable
- if ( FilterLog::instance()->isLogging() ) {
- QString logText( i18n( "<b>Evaluating filter rules:</b> " ) );
-@@ -646,8 +646,11 @@ void ActionScheduler::moveMessage()
- if (!orgMsg || !orgMsg->parent()) {
- // Original message is gone, no point filtering it anymore
- mSrcFolder->removeMsg( mSrcFolder->find( msg ) );
-+ kdDebug(5006) << "The original serial number is missing. "
-+ << "Cannot complete the filtering." << endl;
- mExecutingLock = false;
- processMessageTimer->start( 0, true );
-+ return;
- } else {
- if (!folder) // no filter folder specified leave in current place
- folder = orgMsg->parent();
-@@ -659,7 +662,7 @@ void ActionScheduler::moveMessage()
- mSrcFolder->addMsg( msg );
- mIgnore = false;
-
-- if (msg && kmkernel->folderIsTrash( folder ))
-+ if (msg && folder && kmkernel->folderIsTrash( folder ))
- KMFilterAction::sendMDN( msg, KMime::MDN::Deleted );
-
- timeOutTime = QTime::currentTime();
-@@ -722,8 +725,6 @@ void ActionScheduler::moveMessageFinishe
-
- void ActionScheduler::copyMessageFinished( KMCommand *command )
- {
-- // FIXME remove the debug output
-- kdDebug(5006) << "##### ActionScheduler::copyMessageFinished( KMCommand *command )" << endl;
- if ( command->result() != KMCommand::OK )
- actionMessage( KMFilterAction::ErrorButGoOn );
- else
-@@ -803,4 +804,11 @@ bool ActionScheduler::isEnabled()
- return sEnabled;
- }
-
-+bool ActionScheduler::ignoreChanges( bool ignore )
-+{
-+ bool oldValue = mIgnore;
-+ mIgnore = ignore;
-+ return oldValue;
-+}
-+
- #include "actionscheduler.moc"