GNOME Bugzilla – Bug 575773
Add "created" and "modified" columns to Task list view
Last modified: 2009-11-10 05:25:28 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 $ ------------------------------------------------
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.
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.
The Model seems fine to me. Just test adn commit to master
Created commit c0e0ff6 in eds master. Created commit b29f1ed in evo master.
Confirmed fixed in 2.28.1 + updates - very nice, great to have these two extra columns, thank you!