After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 575773 - Add "created" and "modified" columns to Task list view
Add "created" and "modified" columns to Task list view
Status: RESOLVED FIXED
Product: evolution
Classification: Applications
Component: Tasks
2.24.x (obsolete)
Other All
: Normal enhancement
: ---
Assigned To: Milan Crha
Evolution QA team
Depends on:
Blocks:
 
 
Reported: 2009-03-18 00:04 UTC by Nick Jenkins
Modified: 2009-11-10 05:25 UTC
See Also:
GNOME target: ---
GNOME version: Unversioned Enhancement


Attachments
proposed eds patch (1.52 KB, patch)
2009-03-18 15:51 UTC, Milan Crha
committed Details | Review
proposed evo patch (14.19 KB, patch)
2009-03-18 15:54 UTC, Milan Crha
committed Details | Review

Description Nick Jenkins 2009-03-18 00:04:37 UTC
Is it possible to add the column showing when a task was created in Tasks?
We currently have a Due and Start date but not a "Creation" and "Updated / modified" date.

It looks like the necessary data is currently stored in the tasks.ics files:
------------------------------------------------
$ grep -i created .evolution/tasks/local/1225240020.7023.10@redux/tasks.ics 
CREATED:20081029T003147
CREATED:20081103T025445
CREATED:20081029T010337
$ grep -i modified .evolution/tasks/local/1225240020.7023.10@redux/tasks.ics 
LAST-MODIFIED:20081029T003147
LAST-MODIFIED:20081103T030858
LAST-MODIFIED:20081103T095917
$ 
------------------------------------------------
Comment 1 Milan Crha 2009-03-18 15:51:46 UTC
Created attachment 130896 [details] [review]
proposed eds patch

for evolution-data-server;

To be always notified with the really stored event in the file backend, not with the old event. it's necessary because backend itself changes LAST-MODIFIED property and thus without this it's showing in the table the old value, though those others are changed properly.
Comment 2 Milan Crha 2009-03-18 15:54:41 UTC
Created attachment 130897 [details] [review]
proposed evo patch

for evolution;

And evolution's bits. I guess it'll not break previously saved views, as the column ids in the model moved by two. And the patch contains a possible leak fix I faced while testing this too.
Comment 3 Srinivasa Ragavan 2009-04-27 05:20:56 UTC
The Model seems fine to me. Just test adn commit to master
Comment 4 Milan Crha 2009-04-27 10:08:48 UTC
Created commit c0e0ff6 in eds master.
Created commit b29f1ed in evo master.
Comment 5 Nick Jenkins 2009-11-10 05:25:28 UTC
Confirmed fixed in 2.28.1 + updates - very nice, great to have these two extra columns, thank you!