[Kde-pim] branches/work/arzie_akonadi (silent)
Robert Zwerus
arzie at dds.nl
Thu Sep 6 11:18:39 BST 2007
SVN commit 709007 by arzie:
Merged revisions 706074-709000 via svnmerge from
svn+ssh://arzie@svn.kde.org/home/kde/trunk/KDE/kdepim/akonadi
........
r706285 | krake | 2007-08-29 23:20:24 +0200 (Wed, 29 Aug 2007) | 5 lines
EBN API dox fixes:
- mostly undocumented parameters
- Doxygen didn't like XHMLT style <br/> in server/Mainpage.dox,
so I replaced them with old HTML style <br>
........
r706760 | scripty | 2007-08-31 10:00:48 +0200 (Fri, 31 Aug 2007) | 1 line
SVN_SILENT made messages (.desktop file)
........
r706770 | bvirlet | 2007-08-31 10:12:56 +0200 (Fri, 31 Aug 2007) | 2 lines
Optimization: Amort.O(1) better than O(ln n)
........
r706771 | bvirlet | 2007-08-31 10:14:24 +0200 (Fri, 31 Aug 2007) | 2 lines
Many fixes and improvments.
........
r706913 | tokoe | 2007-08-31 16:53:25 +0200 (Fri, 31 Aug 2007) | 3 lines
Port Agent to Resource API, otherwise it isn't handled by
AgentManager from akonadi_control.
........
r706915 | tokoe | 2007-08-31 16:54:34 +0200 (Fri, 31 Aug 2007) | 2 lines
Decouple quit() from dbus call
........
r706916 | tokoe | 2007-08-31 16:55:43 +0200 (Fri, 31 Aug 2007) | 2 lines
Fixed the shutdown process. Now all applications are terminated correctly.
........
r706917 | tokoe | 2007-08-31 16:57:11 +0200 (Fri, 31 Aug 2007) | 5 lines
Add new application akonadictl, which shall be used to start/stop
the akonadi server
CCMAIL:kde-pim at kde.org
........
r707882 | tokoe | 2007-09-03 10:17:53 +0200 (Mon, 03 Sep 2007) | 9 lines
* Renamed ItemView to ItemDetailsView (matches its task better)
* Added ItemView, which is a TreeView for Items with convenience signals
* Modified CollectionView to emit a signal when collection is activated or
selection has changed
* Modified CollectionModel to allow filtering by mime-types, e.g. show only
collections which contains 'mail'
* Added KContactManager, a small address book like viewer, which shows the
power of Akonadi. Only a couple of lines of code and it is done!
........
r707952 | tokoe | 2007-09-03 14:34:00 +0200 (Mon, 03 Sep 2007) | 2 lines
Missed these files on my last commit
........
r707967 | tokoe | 2007-09-03 15:46:00 +0200 (Mon, 03 Sep 2007) | 3 lines
Reverted my last change to collectionmodel and replaced
the usage in kcontactmanager by CollectionFilterProxyModel
........
r708018 | knight | 2007-09-03 18:25:57 +0200 (Mon, 03 Sep 2007) | 1 line
Get the local id and remote id data from the correct columns in the ItemModel when responding to item selection change or item activation events.
........
r708099 | chehrlic | 2007-09-03 22:41:04 +0200 (Mon, 03 Sep 2007) | 1 line
msvc errors/warnings--
........
r708160 | winterz | 2007-09-04 02:23:14 +0200 (Tue, 04 Sep 2007) | 3 lines
Rename incidence methods floats() to allDay() and setFloats() to AllDay()
as requested by Bruno and Till.
........
r708869 | vkrause | 2007-09-05 23:47:28 +0200 (Wed, 05 Sep 2007) | 5 lines
Complete rewrite of the FETCH handler (and lots of new infrastructure for
that). Instead of one database access per requested item and part we now
only have a constant number of database accesses, which obviously helps
a lot with collection listing performance.
........
_M . (directory)
M +1 -0 libakonadi/CMakeLists.txt
M +37 -1 libakonadi/imapparser.cpp
M +11 -0 libakonadi/imapparser.h
A libakonadi/imapset.cpp trunk/KDE/kdepim/akonadi/libakonadi/imapset.cpp#708869 [License: LGPL (v2+)]
A libakonadi/imapset.h trunk/KDE/kdepim/akonadi/libakonadi/imapset.h#708869 [License: LGPL (v2+)]
A libakonadi/itemview.cpp trunk/KDE/kdepim/akonadi/libakonadi/itemview.cpp#708869 [License: LGPL (v2+)]
A libakonadi/itemview.h trunk/KDE/kdepim/akonadi/libakonadi/itemview.h#708869 [License: LGPL (v2+)]
M +1 -0 libakonadi/tests/CMakeLists.txt
M +44 -2 libakonadi/tests/imapparsertest.cpp
M +2 -0 libakonadi/tests/imapparsertest.h
A libakonadi/tests/imapsettest.cpp trunk/KDE/kdepim/akonadi/libakonadi/tests/imapsettest.cpp#708869 [License: LGPL (v2+)]
A libakonadi/tests/imapsettest.h trunk/KDE/kdepim/akonadi/libakonadi/tests/imapsettest.h#708869 [License: LGPL (v2+)]
M +1 -0 plugins/tests/mailserializerplugintest.cpp
M +1 -1 resources/maildir/maildirresource.cpp
M +1 -0 server/CMakeLists.txt
M +5 -5 server/src/cachecleaner.cpp
M +205 -114 server/src/handler/fetch.cpp
M +6 -1 server/src/handler/fetch.h
M +6 -6 server/src/handler/status.cpp
M +2 -2 server/src/handler/store.cpp
M +3 -3 server/src/handlerhelper.cpp
M +18 -19 server/src/storage/datastore.cpp
M +2 -3 server/src/storage/datastore.h
M +8 -8 server/src/storage/entity.h
A server/src/storage/query.cpp trunk/KDE/kdepim/akonadi/server/src/storage/query.cpp#708869 [License: LGPL (v2+)]
A server/src/storage/query.h trunk/KDE/kdepim/akonadi/server/src/storage/query.h#708869 [License: LGPL (v2+)]
M +159 -41 server/src/storage/querybuilder.cpp
M +48 -11 server/src/storage/querybuilder.h
M +3 -0 server/src/tests/CMakeLists.txt
A server/src/tests/querybuildertest.cpp trunk/KDE/kdepim/akonadi/server/src/tests/querybuildertest.cpp#708869 [License: LGPL (v2+)]
A server/src/tests/querybuildertest.h trunk/KDE/kdepim/akonadi/server/src/tests/querybuildertest.h#708869 [License: LGPL (v2+)]
_______________________________________________
KDE PIM mailing list kde-pim at kde.org
https://mail.kde.org/mailman/listinfo/kde-pim
KDE PIM home page at http://pim.kde.org/
More information about the kde-pim
mailing list