-- /ivy/binding/calendar/calEnter.mesa
-- operations used to enter new or edited events into hickory
-- Last edited by: Binding, August 15, 1984 9:01:46 am PDT
DIRECTORY
Hickory USING [ GroupSet, EventList, EventTuple]
;
CalEnter: CEDAR DEFINITIONS
= BEGIN
EnterEvents: PRIVATE --INTERNAL-- PROCEDURE [ evt: REF Hickory.EventTuple, evl: Hickory.EventList, groups: Hickory.GroupSet];
to enter the events into calendar and hickory. Conflicts are not detected, since
detecting conflicting events in the case of repeated events is too expensive...
END.