aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/TODO
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@nuclecu.unam.mx>1998-08-28 08:29:59 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-08-28 08:29:59 +0800
commit21e41f438e4761587b0ea42db80b23dde1eb59e3 (patch)
treebf8fed6dc79bd0df6121f757e5f91afd699f645f /calendar/TODO
parente4a4179f9d2226b1420e73ae894221502bfd7209 (diff)
downloadgsoc2013-evolution-21e41f438e4761587b0ea42db80b23dde1eb59e3.tar
gsoc2013-evolution-21e41f438e4761587b0ea42db80b23dde1eb59e3.tar.gz
gsoc2013-evolution-21e41f438e4761587b0ea42db80b23dde1eb59e3.tar.bz2
gsoc2013-evolution-21e41f438e4761587b0ea42db80b23dde1eb59e3.tar.lz
gsoc2013-evolution-21e41f438e4761587b0ea42db80b23dde1eb59e3.tar.xz
gsoc2013-evolution-21e41f438e4761587b0ea42db80b23dde1eb59e3.tar.zst
gsoc2013-evolution-21e41f438e4761587b0ea42db80b23dde1eb59e3.zip
Today: fixed calculation of day indexes when weeks start on Monday. The
Today: fixed calculation of day indexes when weeks start on Monday. The year view now marks days (and fixed bugs in day marking as well). Next step: make a generic month-marker routine and use that all over the place. 1998-08-27 Federico Mena Quintero <federico@nuclecu.unam.mx> * gnome-month-item.c (build_month): Now does the correct thing when the user wants weeks to start on Monday. Now all the Monday special casing, as far as day numbering is concerned, is only in this function. * year-view.c (mark_days): This function marks the days that have events in them. It also fixes a memory leak in the old implementation (it was leaking the whole list). (unmark_days): New function used to unmark all the days in the year view. (mark_event): New function that marks all the days that are spanned by a time range. It also fixes the bug in the old implementation where it could possibly mark days past the ends of the year (if the event crosses year boundaries, for example). * timeutil.c (time_year_begin): Take the year parameter since year 1, not 1900. (time_year_end): Likewise. * year-view.c (year_view_size_allocate): Now changing the size of the calendars is done in the idle loop. (idle_handler): This function actually does the resizing of the items. * year-view.h (struct _YearView): Added idle_id and need_resize fields. svn path=/trunk/; revision=346
Diffstat (limited to 'calendar/TODO')
-rw-r--r--calendar/TODO22
1 files changed, 21 insertions, 1 deletions
diff --git a/calendar/TODO b/calendar/TODO
index eca41ce244..11ce1d577a 100644
--- a/calendar/TODO
+++ b/calendar/TODO
@@ -1,3 +1,8 @@
+BUGS:
+
+- Recurrence end date is wrong. An event that repeats daily will not
+ be included in the ending date of the recurrence (off-by-one error?).
+
Month view:
- Display little boxes for the appointments of each day.
@@ -8,7 +13,22 @@ Month view:
Year view:
-- Make it use GnomeMonthItem to make it have a reasonable size.
+- Use a generic mark_month() function to mark a GnomeMonthItem with
+ all the events that touch it. Pass a function to mark_month() that
+ actually does the marking (the year view and goto dialog just change
+ the color of the days with events; the month view does more
+ sophisticated layout).
+
+- Double click on a day takes you to the day view.
+
+- Button-3 popup with options:
+ Create new appointment in this day
+ --- separator ---
+ Go to this day
+ Go to this week
+ Go to this month
+
+- See why it is so fucking slow.
Week view: