* Added some traces and minor additions, getting ready to optimize load_ical_object...
[citadel.git] / webcit / calendar.c
1 /*
2  * $Id$
3  *
4  * Functions which handle calendar objects and their processing/display.
5  */
6
7 #include "webcit.h"
8 #include "webserver.h"
9
10
11 /*
12  * Process a calendar object.  At this point it's already been deserialized by cal_process_attachment()
13  *
14  * cal:                 the calendar object
15  * recursion_level:     Number of times we've recursed into this function
16  * msgnum:              Message number on the Citadel server
17  * cal_partnum:         MIME part number within that message containing the calendar object
18  */
19 void cal_process_object(StrBuf *Target,
20                         icalcomponent *cal,
21                         int recursion_level,
22                         long msgnum,
23                         const char *cal_partnum) 
24 {
25         icalcomponent *c;
26         icalproperty *method = NULL;
27         icalproperty_method the_method = ICAL_METHOD_NONE;
28         icalproperty *p;
29         struct icaltimetype t;
30         time_t tt;
31         char buf[256];
32         char conflict_name[256];
33         char conflict_message[256];
34         int is_update = 0;
35         char divname[32];
36         static int divcount = 0;
37
38         sprintf(divname, "rsvp%04x", ++divcount);
39
40         /* Convert timezones to something easy to display.
41          * It's safe to do this in memory because we're only changing it on the
42          * display side -- when we tell the server to do something with the object,
43          * the server will be working with its original copy in the database.
44          */
45         if ((cal) && (recursion_level == 0)) {
46                 ical_dezonify(cal);
47         }
48
49         /* Leading HTML for the display of this object */
50         if (recursion_level == 0) {
51                 StrBufAppendPrintf(Target, "<div class=\"mimepart\">\n");
52         }
53
54         /* Look for a method */
55         method = icalcomponent_get_first_property(cal, ICAL_METHOD_PROPERTY);
56
57         /* See what we need to do with this */
58         if (method != NULL) {
59                 char *title;
60                 the_method = icalproperty_get_method(method);
61
62                 StrBufAppendPrintf(Target, "<div id=\"%s_title\">", divname);
63                 StrBufAppendPrintf(Target, "<img src=\"static/calarea_48x.gif\">");
64                 StrBufAppendPrintf(Target, "<span>");
65                 switch(the_method) {
66                 case ICAL_METHOD_REQUEST:
67                         title = _("Meeting invitation");
68                         break;
69                 case ICAL_METHOD_REPLY:
70                         title = _("Attendee's reply to your invitation");
71                         break;
72                 case ICAL_METHOD_PUBLISH:
73                         title = _("Published event");
74                         break;
75                 default:
76                         title = _("This is an unknown type of calendar item.");
77                         break;
78                 }
79                 StrBufAppendPrintf(Target, "</span>");
80
81                 StrBufAppendPrintf(Target, "&nbsp;&nbsp;%s",title);
82                 StrBufAppendPrintf(Target, "</div>");
83         }
84
85         StrBufAppendPrintf(Target, "<dl>");
86         p = icalcomponent_get_first_property(cal, ICAL_SUMMARY_PROPERTY);
87         if (p != NULL) {
88                 StrBufAppendPrintf(Target, "<dt>");
89                 StrBufAppendPrintf(Target, _("Summary:"));
90                 StrBufAppendPrintf(Target, "</dt><dd>");
91                 StrEscAppend(Target, NULL, (char *)icalproperty_get_comment(p), 0, 0);
92                 StrBufAppendPrintf(Target, "</dd>\n");
93         }
94
95         p = icalcomponent_get_first_property(cal, ICAL_LOCATION_PROPERTY);
96         if (p != NULL) {
97                 StrBufAppendPrintf(Target, "<dt>");
98                 StrBufAppendPrintf(Target, _("Location:"));
99                 StrBufAppendPrintf(Target, "</dt><dd>");
100                 StrEscAppend(Target, NULL, (char *)icalproperty_get_comment(p), 0, 0);
101                 StrBufAppendPrintf(Target, "</dd>\n");
102         }
103
104         /*
105          * Only show start/end times if we're actually looking at the VEVENT
106          * component.  Otherwise it shows bogus dates for things like timezone.
107          */
108         if (icalcomponent_isa(cal) == ICAL_VEVENT_COMPONENT) {
109
110                 p = icalcomponent_get_first_property(cal, ICAL_DTSTART_PROPERTY);
111                 if (p != NULL) {
112                         t = icalproperty_get_dtstart(p);
113
114                         if (t.is_date) {
115                                 struct tm d_tm;
116                                 char d_str[32];
117                                 memset(&d_tm, 0, sizeof d_tm);
118                                 d_tm.tm_year = t.year - 1900;
119                                 d_tm.tm_mon = t.month - 1;
120                                 d_tm.tm_mday = t.day;
121                                 wc_strftime(d_str, sizeof d_str, "%x", &d_tm);
122                                 StrBufAppendPrintf(Target, "<dt>");
123                                 StrBufAppendPrintf(Target, _("Date:"));
124                                 StrBufAppendPrintf(Target, "</dt><dd>%s</dd>", d_str);
125                         }
126                         else {
127                                 tt = icaltime_as_timet(t);
128                                 webcit_fmt_date(buf, tt, DATEFMT_FULL);
129                                 StrBufAppendPrintf(Target, "<dt>");
130                                 StrBufAppendPrintf(Target, _("Starting date/time:"));
131                                 StrBufAppendPrintf(Target, "</dt><dd>%s</dd>", buf);
132                         }
133                 }
134         
135                 p = icalcomponent_get_first_property(cal, ICAL_DTEND_PROPERTY);
136                 if (p != NULL) {
137                         t = icalproperty_get_dtend(p);
138                         tt = icaltime_as_timet(t);
139                         webcit_fmt_date(buf, tt, DATEFMT_FULL);
140                         StrBufAppendPrintf(Target, "<dt>");
141                         StrBufAppendPrintf(Target, _("Ending date/time:"));
142                         StrBufAppendPrintf(Target, "</dt><dd>%s</dd>", buf);
143                 }
144
145         }
146
147         p = icalcomponent_get_first_property(cal, ICAL_DESCRIPTION_PROPERTY);
148         if (p != NULL) {
149                 StrBufAppendPrintf(Target, "<dt>");
150                 StrBufAppendPrintf(Target, _("Description:"));
151                 StrBufAppendPrintf(Target, "</dt><dd>");
152                 StrEscAppend(Target, NULL, (char *)icalproperty_get_comment(p), 0, 0);
153                 StrBufAppendPrintf(Target, "</dd>\n");
154         }
155
156         if (icalcomponent_get_first_property(cal, ICAL_RRULE_PROPERTY)) {
157                 /* Unusual string syntax used here in order to re-use existing translations */
158                 StrBufAppendPrintf(Target, "<dt>%s:</dt><dd>%s.</dd>\n",
159                         _("Recurrence"),
160                         _("This is a recurring event")
161                 );
162         }
163
164         /* If the component has attendees, iterate through them. */
165         for (p = icalcomponent_get_first_property(cal, ICAL_ATTENDEE_PROPERTY); 
166              (p != NULL); 
167              p = icalcomponent_get_next_property(cal, ICAL_ATTENDEE_PROPERTY)) {
168                 StrBufAppendPrintf(Target, "<dt>");
169                 StrBufAppendPrintf(Target, _("Attendee:"));
170                 StrBufAppendPrintf(Target, "</dt><dd>");
171                 safestrncpy(buf, icalproperty_get_attendee(p), sizeof buf);
172                 if (!strncasecmp(buf, "MAILTO:", 7)) {
173
174                         /** screen name or email address */
175                         strcpy(buf, &buf[7]);
176                         striplt(buf);
177                         StrEscAppend(Target, NULL, buf, 0, 0);
178                         StrBufAppendPrintf(Target, " ");
179
180                         /** participant status */
181                         partstat_as_string(buf, p);
182                         StrEscAppend(Target, NULL, buf, 0, 0);
183                 }
184                 StrBufAppendPrintf(Target, "</dd>\n");
185         }
186
187         /* If the component has subcomponents, recurse through them. */
188         for (c = icalcomponent_get_first_component(cal, ICAL_ANY_COMPONENT);
189              (c != 0);
190              c = icalcomponent_get_next_component(cal, ICAL_ANY_COMPONENT)) {
191                 /* Recursively process subcomponent */
192                 cal_process_object(Target, c, recursion_level+1, msgnum, cal_partnum);
193         }
194
195         /* If this is a REQUEST, display conflicts and buttons */
196         if (the_method == ICAL_METHOD_REQUEST) {
197
198                 /* Check for conflicts */
199                 lprintf(9, "Checking server calendar for conflicts...\n");
200                 serv_printf("ICAL conflicts|%ld|%s|", msgnum, cal_partnum);
201                 serv_getln(buf, sizeof buf);
202                 if (buf[0] == '1') {
203                         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
204                                 extract_token(conflict_name, buf, 3, '|', sizeof conflict_name);
205                                 is_update = extract_int(buf, 4);
206
207                                 if (is_update) {
208                                         snprintf(conflict_message, sizeof conflict_message,
209                                                  _("This is an update of '%s' which is already in your calendar."), conflict_name);
210                                 }
211                                 else {
212                                         snprintf(conflict_message, sizeof conflict_message,
213                                                  _("This event would conflict with '%s' which is already in your calendar."), conflict_name);
214                                 }
215
216                                 StrBufAppendPrintf(Target, "<dt>%s",
217                                         (is_update ?
218                                          _("Update:") :
219                                          _("CONFLICT:")
220                                                 )
221                                         );
222                                 StrBufAppendPrintf(Target, "</dt><dd>");
223                                 StrEscAppend(Target, NULL, conflict_message, 0, 0);
224                                 StrBufAppendPrintf(Target, "</dd>\n");
225                         }
226                 }
227                 lprintf(9, "...done.\n");
228
229                 StrBufAppendPrintf(Target, "</dl>");
230
231                 /* Display the Accept/Decline buttons */
232                 StrBufAppendPrintf(Target, "<p id=\"%s_question\">"
233                         "%s "
234                         "&nbsp;&nbsp;&nbsp;<span class=\"button_link\"> "
235                         "<a href=\"javascript:RespondToInvitation('%s_question','%s_title','%ld','%s','Accept');\">%s</a>"
236                         "</span>&nbsp;&nbsp;&nbsp;<span class=\"button_link\">"
237                         "<a href=\"javascript:RespondToInvitation('%s_question','%s_title','%ld','%s','Tentative');\">%s</a>"
238                         "</span>&nbsp;&nbsp;&nbsp;<span class=\"button_link\">"
239                         "<a href=\"javascript:RespondToInvitation('%s_question','%s_title','%ld','%s','Decline');\">%s</a>"
240                         "</span></p>\n",
241                         divname,
242                         _("How would you like to respond to this invitation?"),
243                         divname, divname, msgnum, cal_partnum, _("Accept"),
244                         divname, divname, msgnum, cal_partnum, _("Tentative"),
245                         divname, divname, msgnum, cal_partnum, _("Decline")
246                         );
247
248         }
249
250         /* If this is a REPLY, display update button */
251         if (the_method == ICAL_METHOD_REPLY) {
252
253                 /* Display the update buttons */
254                 StrBufAppendPrintf(Target, "<p id=\"%s_question\" >"
255                         "%s "
256                         "&nbsp;&nbsp;&nbsp;<span class=\"button_link\"> "
257                         "<a href=\"javascript:HandleRSVP('%s_question','%s_title','%ld','%s','Update');\">%s</a>"
258                         "</span>&nbsp;&nbsp;&nbsp;<span class=\"button_link\">"
259                         "<a href=\"javascript:HandleRSVP('%s_question','%s_title','%ld','%s','Ignore');\">%s</a>"
260                         "</span></p>\n",
261                         divname,
262                         _("Click <i>Update</i> to accept this reply and update your calendar."),
263                         divname, divname, msgnum, cal_partnum, _("Update"),
264                         divname, divname, msgnum, cal_partnum, _("Ignore")
265                         );
266         
267         }
268         
269         /* Trailing HTML for the display of this object */
270         if (recursion_level == 0) {
271                 StrBufAppendPrintf(Target, "<p>&nbsp;</p></div>\n");
272         }
273 }
274
275
276 /*
277  * Deserialize a calendar object in a message so it can be displayed.
278  *
279  */
280 void cal_process_attachment(wc_mime_attachment *Mime) 
281 {
282         icalcomponent *cal;
283
284         cal = icalcomponent_new_from_string(ChrPtr(Mime->Data));
285         FlushStrBuf(Mime->Data);
286         if (cal == NULL) {
287                 StrBufAppendPrintf(Mime->Data, _("There was an error parsing this calendar item."));
288                 StrBufAppendPrintf(Mime->Data, "<br />\n");
289                 return;
290         }
291
292         cal_process_object(Mime->Data, cal, 0, Mime->msgnum, ChrPtr(Mime->PartNum));
293
294         /* Free the memory we obtained from libical's constructor */
295         icalcomponent_free(cal);
296 }
297
298
299
300
301 /**
302  * \brief accept/decline meeting
303  * Respond to a meeting request
304  */
305 void respond_to_request(void) 
306 {
307         char buf[1024];
308
309         begin_ajax_response();
310
311         serv_printf("ICAL respond|%s|%s|%s|",
312                 bstr("msgnum"),
313                 bstr("cal_partnum"),
314                 bstr("sc")
315         );
316         serv_getln(buf, sizeof buf);
317
318         if (buf[0] == '2') {
319                 wprintf("<img src=\"static/calarea_48x.gif\"><span>");
320                 if (!strcasecmp(bstr("sc"), "accept")) {
321                         wprintf(_("You have accepted this meeting invitation.  "
322                                 "It has been entered into your calendar.")
323                         );
324                 } else if (!strcasecmp(bstr("sc"), "tentative")) {
325                         wprintf(_("You have tentatively accepted this meeting invitation.  "
326                                 "It has been 'pencilled in' to your calendar.")
327                         );
328                 } else if (!strcasecmp(bstr("sc"), "decline")) {
329                         wprintf(_("You have declined this meeting invitation.  "
330                                   "It has <b>not</b> been entered into your calendar.")
331                                 );
332                 }
333                 wprintf(" ");
334                 wprintf(_("A reply has been sent to the meeting organizer."));
335                 wprintf("</span>");
336         } else {
337                 wprintf("<img align=\"center\" src=\"static/error.gif\"><span>");
338                 wprintf("%s\n", &buf[4]);
339                 wprintf("</span>");
340         }
341
342         end_ajax_response();
343 }
344
345
346
347 /**
348  * \brief Handle an incoming RSVP
349  */
350 void handle_rsvp(void) 
351 {
352         char buf[1024];
353
354         begin_ajax_response();
355
356         serv_printf("ICAL handle_rsvp|%s|%s|%s|",
357                 bstr("msgnum"),
358                 bstr("cal_partnum"),
359                 bstr("sc")
360         );
361         serv_getln(buf, sizeof buf);
362
363         if (buf[0] == '2') {
364                 wprintf("<img src=\"static/calarea_48x.gif\"><span>");
365                 if (!strcasecmp(bstr("sc"), "update")) {
366                         wprintf(_("Your calendar has been updated to reflect this RSVP."));
367                 } else if (!strcasecmp(bstr("sc"), "ignore")) {
368                         wprintf(_("You have chosen to ignore this RSVP. "
369                                   "Your calendar has <b>not</b> been updated.")
370                                 );
371                 }
372                 wprintf("</span>");
373         } else {
374                 wprintf("<img src=\"static/error.gif\"><span> %s\n", &buf[4]);
375                 wprintf("</span>");
376         }
377
378         end_ajax_response();
379 }
380
381
382
383
384 /*
385  * free memory allocated using libical
386  */
387 void delete_cal(void *vCal)
388 {
389         disp_cal *Cal = (disp_cal*) vCal;
390         icalcomponent_free(Cal->cal);
391         free(Cal->from);
392         free(Cal);
393 }
394
395 /*
396  * This is the meat-and-bones of the first part of our two-phase calendar display.
397  * As we encounter calendar items in messages being read from the server, we break out
398  * any iCalendar objects and store them in a hash table.  Later on, the second phase will
399  * use this hash table to render the calendar for display.
400  */
401 void display_individual_cal(icalcomponent *cal, long msgnum, char *from, int unread, struct calview *calv)
402 {
403         icalproperty *ps = NULL;
404         struct icaltimetype dtstart, dtend;
405         struct icaldurationtype dur;
406         wcsession *WCC = WC;
407         disp_cal *Cal;
408         size_t len;
409         time_t final_recurrence = 0;
410         icalcomponent *cptr = NULL;
411
412         /* recur variables */
413         icalproperty *rrule = NULL;
414         struct icalrecurrencetype recur;
415         icalrecur_iterator *ritr = NULL;
416         struct icaltimetype next;
417         int num_recur = 0;
418         int stop_rr = 0;
419
420         dtstart = icaltime_null_time();
421         dtend = icaltime_null_time();
422         
423         if (WCC->disp_cal_items == NULL)
424                 WCC->disp_cal_items = NewHash(0, Flathash);
425
426         /* Note: anything we do here, we also have to do below for the recurrences. */
427         Cal = (disp_cal*) malloc(sizeof(disp_cal));
428         memset(Cal, 0, sizeof(disp_cal));
429         Cal->cal = icalcomponent_new_clone(cal);
430
431         /* Dezonify and decapsulate at the very last moment */
432         /* lprintf(9, "INITIAL: %s\n", icaltime_as_ical_string(icalproperty_get_dtstart(
433                 icalcomponent_get_first_property(icalcomponent_get_first_component(
434                 Cal->cal, ICAL_VEVENT_COMPONENT), ICAL_DTSTART_PROPERTY)))
435         ); */
436         ical_dezonify(Cal->cal);
437         if (icalcomponent_isa(Cal->cal) != ICAL_VEVENT_COMPONENT) {
438                 cptr = icalcomponent_get_first_component(Cal->cal, ICAL_VEVENT_COMPONENT);
439                 if (cptr) {
440                         cptr = icalcomponent_new_clone(cptr);
441                         icalcomponent_free(Cal->cal);
442                         Cal->cal = cptr;
443                 }
444         }
445
446         Cal->unread = unread;
447         len = strlen(from);
448         Cal->from = (char*)malloc(len+ 1);
449         memcpy(Cal->from, from, len + 1);
450         Cal->cal_msgnum = msgnum;
451
452         /* Precalculate the starting date and time of this event, and store it in our top-level
453          * structure.  Later, when we are rendering the calendar, we can just peek at these values
454          * without having to break apart every calendar item.
455          */
456         ps = icalcomponent_get_first_property(Cal->cal, ICAL_DTSTART_PROPERTY);
457         if (ps != NULL) {
458                 dtstart = icalproperty_get_dtstart(ps);
459                 Cal->event_start = icaltime_as_timet(dtstart);
460         }
461
462         /* Do the same for the ending date and time.  It makes the day view much easier to render. */
463         ps = icalcomponent_get_first_property(Cal->cal, ICAL_DTEND_PROPERTY);
464         if (ps != NULL) {
465                 dtend = icalproperty_get_dtend(ps);
466                 Cal->event_end = icaltime_as_timet(dtend);
467         }
468
469         /* Store it in the hash list. */
470         Put(WCC->disp_cal_items, 
471             (char*) &Cal->event_start,
472             sizeof(Cal->event_start), 
473             Cal, 
474             delete_cal);
475
476         /****************************** handle recurring events ******************************/
477
478         if (icaltime_is_null_time(dtstart)) return;     /* Can't recur without a start time */
479
480         if (!icaltime_is_null_time(dtend)) {            /* Need duration for recurrences */
481                 dur = icaltime_subtract(dtend, dtstart);
482         }
483
484         /*
485          * Just let libical iterate the recurrence, and keep looping back to the top of this function,
486          * adding new hash entries that all point back to the same msgnum, until either the iteration
487          * stops or some outer bound is reached.  The display code will automatically do the Right Thing.
488          */
489         cptr = cal;
490         if (icalcomponent_isa(cptr) != ICAL_VEVENT_COMPONENT) {
491                 cptr = icalcomponent_get_first_component(cptr, ICAL_VEVENT_COMPONENT);
492         }
493         if (!cptr) return;
494         ps = icalcomponent_get_first_property(cptr, ICAL_DTSTART_PROPERTY);
495         if (ps == NULL) return;
496         dtstart = icalproperty_get_dtstart(ps);
497         rrule = icalcomponent_get_first_property(cptr, ICAL_RRULE_PROPERTY);
498         if (!rrule) return;
499         recur = icalproperty_get_rrule(rrule);
500         ritr = icalrecur_iterator_new(recur, dtstart);
501         if (!ritr) return;
502
503         while (next = icalrecur_iterator_next(ritr), ((!icaltime_is_null_time(next))&&(!stop_rr)) ) {
504                 ++num_recur;
505                 if (num_recur > 1) {            /* Skip the first one.  We already did it at the root. */
506                         icalcomponent *cptr;
507                         /* lprintf(9, "REPEATS: %s\n", icaltime_as_ical_string(next)); */
508
509                         /* Note: anything we do here, we also have to do above for the root event. */
510                         Cal = (disp_cal*) malloc(sizeof(disp_cal));
511                         memset(Cal, 0, sizeof(disp_cal));
512                         Cal->cal = icalcomponent_new_clone(cal);
513                         Cal->unread = unread;
514                         len = strlen(from);
515                         Cal->from = (char*)malloc(len+ 1);
516                         memcpy(Cal->from, from, len + 1);
517                         Cal->cal_msgnum = msgnum;
518
519                         if (icalcomponent_isa(Cal->cal) == ICAL_VEVENT_COMPONENT) {
520                                 cptr = Cal->cal;
521                         }
522                         else {
523                                 cptr = icalcomponent_get_first_component(Cal->cal, ICAL_VEVENT_COMPONENT);
524                         }
525                         if (cptr) {
526                                 ps = icalcomponent_get_first_property(cptr, ICAL_DTSTART_PROPERTY);
527                                 if (ps != NULL) {
528                                         icalcomponent_remove_property(cptr, ps);
529                                         ps = icalproperty_new_dtstart(next);
530                                         icalcomponent_add_property(cptr, ps);
531         
532                                         Cal->event_start = icaltime_as_timet(next);
533                                         final_recurrence = Cal->event_start;
534                                 }
535
536                                 ps = icalcomponent_get_first_property(cptr, ICAL_DTEND_PROPERTY);
537                                 if (ps != NULL) {
538                                         icalcomponent_remove_property(cptr, ps);
539         
540                                         /* Make a new dtend */
541                                         ps = icalproperty_new_dtend(icaltime_add(next, dur));
542                 
543                                         /* and stick it somewhere */
544                                         icalcomponent_add_property(cptr, ps);
545                                 }
546
547                         }
548
549                         /* Dezonify and decapsulate at the very last moment */
550                         ical_dezonify(Cal->cal);
551                         if (icalcomponent_isa(Cal->cal) != ICAL_VEVENT_COMPONENT) {
552                                 cptr = icalcomponent_get_first_component(Cal->cal, ICAL_VEVENT_COMPONENT);
553                                 if (cptr) {
554                                         cptr = icalcomponent_new_clone(cptr);
555                                         icalcomponent_free(Cal->cal);
556                                         Cal->cal = cptr;
557                                 }
558                         }
559
560                         if ( (Cal->event_start > calv->lower_bound)
561                            && (Cal->event_start < calv->upper_bound) ) {
562                                 Put(WCC->disp_cal_items, 
563                                         (char*) &Cal->event_start,
564                                         sizeof(Cal->event_start), 
565                                         Cal, 
566                                         delete_cal
567                                 );
568                         }
569                         else {
570                                 delete_cal(Cal);
571                         }
572
573                         /* If an upper bound is set, stop when we go out of scope */
574                         if (final_recurrence > calv->upper_bound) stop_rr = 1;
575                 }
576         }
577         icalrecur_iterator_free(ritr);
578         /* lprintf(9, "Performed %d recurrences; final one is %s", num_recur, ctime(&final_recurrence)); */
579
580 }
581
582
583
584 /*
585  * Display a task by itself (for editing)
586  */
587 void display_edit_individual_task(icalcomponent *supplied_vtodo, long msgnum, char *from,
588                         int unread, struct calview *calv)
589 {
590         icalcomponent *vtodo;
591         icalproperty *p;
592         struct icaltimetype IcalTime;
593         time_t now;
594         int created_new_vtodo = 0;
595         icalproperty_status todoStatus;
596
597         now = time(NULL);
598
599         if (supplied_vtodo != NULL) {
600                 vtodo = supplied_vtodo;
601
602                 /*
603                  * It's safe to convert to UTC here because there are no recurrences to worry about.
604                  */
605                 ical_dezonify(vtodo);
606
607                 /*
608                  * If we're looking at a fully encapsulated VCALENDAR
609                  * rather than a VTODO component, attempt to use the first
610                  * relevant VTODO subcomponent.  If there is none, the
611                  * NULL returned by icalcomponent_get_first_component() will
612                  * tell the next iteration of this function to create a
613                  * new one.
614                  */
615                 if (icalcomponent_isa(vtodo) == ICAL_VCALENDAR_COMPONENT) {
616                         display_edit_individual_task(
617                                 icalcomponent_get_first_component(
618                                         vtodo, ICAL_VTODO_COMPONENT
619                                         ), 
620                                 msgnum, from, unread, calv
621                                 );
622                         return;
623                 }
624         }
625         else {
626                 vtodo = icalcomponent_new(ICAL_VTODO_COMPONENT);
627                 created_new_vtodo = 1;
628         }
629         
630         /*/ TODO: Can we take all this and move it into a template?      */
631         output_headers(1, 1, 1, 0, 0, 0);
632         wprintf("<!-- start task edit form -->");
633         p = icalcomponent_get_first_property(vtodo, ICAL_SUMMARY_PROPERTY);
634         /* Get summary early for title */
635         wprintf("<div class=\"box\">\n");
636         wprintf("<div class=\"boxlabel\">");
637         wprintf(_("Edit task"));
638         wprintf("- ");
639         if (p != NULL) {
640                 escputs((char *)icalproperty_get_comment(p));
641         }
642         wprintf("</div>");
643         
644         wprintf("<div class=\"boxcontent\">\n");
645         wprintf("<FORM METHOD=\"POST\" action=\"save_task\">\n");
646         wprintf("<div style=\"display: none;\">\n       ");
647         wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC->nonce);
648         wprintf("<INPUT TYPE=\"hidden\" NAME=\"msgnum\" VALUE=\"%ld\">\n", msgnum);
649         wprintf("<INPUT TYPE=\"hidden\" NAME=\"return_to_summary\" VALUE=\"%d\">\n",
650                 ibstr("return_to_summary"));
651         wprintf("</div>");
652         wprintf("<table class=\"calendar_background\"><tr><td>");
653         wprintf("<TABLE STYLE=\"border: none;\">\n");
654
655         wprintf("<TR><TD>");
656         wprintf(_("Summary:"));
657         wprintf("</TD><TD>"
658                 "<INPUT TYPE=\"text\" NAME=\"summary\" "
659                 "MAXLENGTH=\"64\" SIZE=\"64\" VALUE=\"");
660         p = icalcomponent_get_first_property(vtodo, ICAL_SUMMARY_PROPERTY);
661         if (p != NULL) {
662                 escputs((char *)icalproperty_get_comment(p));
663         }
664         wprintf("\"></TD></TR>\n");
665
666         wprintf("<TR><TD>");
667         wprintf(_("Start date:"));
668         wprintf("</TD><TD>");
669         p = icalcomponent_get_first_property(vtodo, ICAL_DTSTART_PROPERTY);
670         wprintf("<INPUT TYPE=\"CHECKBOX\" NAME=\"nodtstart\" ID=\"nodtstart\" VALUE=\"NODTSTART\" ");
671         if (p == NULL) {
672                 wprintf("CHECKED=\"CHECKED\"");
673         }
674         wprintf(">");
675         wprintf(_("No date"));
676         
677         wprintf(" ");
678         wprintf("<span ID=\"dtstart_date\">");
679         wprintf(_("or"));
680         wprintf(" ");
681         if (p != NULL) {
682                 IcalTime = icalproperty_get_dtstart(p);
683         }
684         else
685                 IcalTime = icaltime_current_time_with_zone(get_default_icaltimezone());
686         display_icaltimetype_as_webform(&IcalTime, "dtstart", 0);
687
688         wprintf("<INPUT TYPE=\"CHECKBOX\" NAME=\"dtstart_time_assoc\" ID=\"dtstart_time_assoc\" VALUE=\"yes\"");
689         if (!IcalTime.is_date) {
690                 wprintf("CHECKED=\"CHECKED\"");
691         }
692         wprintf(">");
693         wprintf(_("Time associated"));
694         wprintf("</span></TD></TR>\n");
695
696         wprintf("<TR><TD>");
697         wprintf(_("Due date:"));
698         wprintf("</TD><TD>");
699         p = icalcomponent_get_first_property(vtodo, ICAL_DUE_PROPERTY);
700         wprintf("<INPUT TYPE=\"CHECKBOX\" NAME=\"nodue\" ID=\"nodue\" VALUE=\"NODUE\"");
701         if (p == NULL) {
702                 wprintf("CHECKED=\"CHECKED\"");
703         }
704         wprintf(">");
705         wprintf(_("No date"));
706         wprintf(" ");
707         wprintf("<span ID=\"due_date\">\n");
708         wprintf(_("or"));
709         wprintf(" ");
710         if (p != NULL) {
711                 IcalTime = icalproperty_get_due(p);
712         }
713         else
714                 IcalTime = icaltime_current_time_with_zone(get_default_icaltimezone());
715         display_icaltimetype_as_webform(&IcalTime, "due", 0);
716
717         wprintf("<INPUT TYPE=\"CHECKBOX\" NAME=\"due_time_assoc\" ID=\"due_time_assoc\" VALUE=\"yes\"");
718         if (!IcalTime.is_date) {
719                 wprintf("CHECKED=\"CHECKED\"");
720         }
721         wprintf(">");
722         wprintf(_("Time associated"));
723         wprintf("</span></TD></TR>\n");
724         todoStatus = icalcomponent_get_status(vtodo);
725         wprintf("<TR><TD>\n");
726         wprintf(_("Completed:"));
727         wprintf("</TD><TD>");
728         wprintf("<INPUT TYPE=\"CHECKBOX\" NAME=\"status\" VALUE=\"COMPLETED\"");
729         if (todoStatus == ICAL_STATUS_COMPLETED) {
730                 wprintf(" CHECKED=\"CHECKED\"");
731         } 
732         wprintf(" >");
733         wprintf("</TD></TR>");
734         /* start category field */
735         p = icalcomponent_get_first_property(vtodo, ICAL_CATEGORIES_PROPERTY);
736         wprintf("<TR><TD>");
737         wprintf(_("Category:"));
738         wprintf("</TD><TD>");
739         wprintf("<INPUT TYPE=\"text\" NAME=\"category\" MAXLENGTH=\"32\" SIZE=\"32\" VALUE=\"");
740         if (p != NULL) {
741                 escputs((char *)icalproperty_get_categories(p));
742         }
743         wprintf("\">");
744         wprintf("</TD></TR>\n   ");
745         /* end category field */
746         wprintf("<TR><TD>");
747         wprintf(_("Description:"));
748         wprintf("</TD><TD>");
749         wprintf("<TEXTAREA NAME=\"description\" "
750                 "ROWS=\"10\" COLS=\"80\">\n"
751                 );
752         p = icalcomponent_get_first_property(vtodo, ICAL_DESCRIPTION_PROPERTY);
753         if (p != NULL) {
754                 escputs((char *)icalproperty_get_comment(p));
755         }
756         wprintf("</TEXTAREA></TD></TR></TABLE>\n");
757
758         wprintf("<SPAN STYLE=\"text-align: center;\">"
759                 "<INPUT TYPE=\"submit\" NAME=\"save_button\" VALUE=\"%s\">"
760                 "&nbsp;&nbsp;"
761                 "<INPUT TYPE=\"submit\" NAME=\"delete_button\" VALUE=\"%s\">\n"
762                 "&nbsp;&nbsp;"
763                 "<INPUT TYPE=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\">\n"
764                 "</SPAN>\n",
765                 _("Save"),
766                 _("Delete"),
767                 _("Cancel")
768                 );
769         wprintf("</td></tr></table>");
770         wprintf("</FORM>\n");
771         wprintf("</div></div></div>\n");
772         wprintf("<!-- end task edit form -->");
773         wDumpContent(1);
774
775         if (created_new_vtodo) {
776                 icalcomponent_free(vtodo);
777         }
778 }
779
780 /*
781  * \brief Save an edited task
782  * \param supplied_vtodo the task to save
783  * \param msgnum number of the mesage in our db
784  */
785 void save_individual_task(icalcomponent *supplied_vtodo, long msgnum, char* from, int unread,
786                                 struct calview *calv)
787 {
788         char buf[SIZ];
789         int delete_existing = 0;
790         icalproperty *prop;
791         icalcomponent *vtodo, *encaps;
792         int created_new_vtodo = 0;
793         int i;
794         int sequence = 0;
795         struct icaltimetype t;
796
797         if (supplied_vtodo != NULL) {
798                 vtodo = supplied_vtodo;
799                 /**
800                  * If we're looking at a fully encapsulated VCALENDAR
801                  * rather than a VTODO component, attempt to use the first
802                  * relevant VTODO subcomponent.  If there is none, the
803                  * NULL returned by icalcomponent_get_first_component() will
804                  * tell the next iteration of this function to create a
805                  * new one.
806                  */
807                 if (icalcomponent_isa(vtodo) == ICAL_VCALENDAR_COMPONENT) {
808                         save_individual_task(
809                                 icalcomponent_get_first_component(
810                                         vtodo, ICAL_VTODO_COMPONENT), 
811                                 msgnum, from, unread, calv
812                                 );
813                         return;
814                 }
815         }
816         else {
817                 vtodo = icalcomponent_new(ICAL_VTODO_COMPONENT);
818                 created_new_vtodo = 1;
819         }
820
821         if (havebstr("save_button")) {
822
823                 /** Replace values in the component with ones from the form */
824
825                 while (prop = icalcomponent_get_first_property(vtodo,
826                                                                ICAL_SUMMARY_PROPERTY), prop != NULL) {
827                         icalcomponent_remove_property(vtodo, prop);
828                         icalproperty_free(prop);
829                 }
830                 if (havebstr("summary")) {
831
832                         icalcomponent_add_property(vtodo,
833                                                    icalproperty_new_summary(bstr("summary")));
834                 } else {
835                         icalcomponent_add_property(vtodo,
836                                                    icalproperty_new_summary(_("Untitled Task")));
837                 }
838         
839                 while (prop = icalcomponent_get_first_property(vtodo,
840                                                                ICAL_DESCRIPTION_PROPERTY), prop != NULL) {
841                         icalcomponent_remove_property(vtodo, prop);
842                         icalproperty_free(prop);
843                 }
844                 if (havebstr("description")) {
845                         icalcomponent_add_property(vtodo,
846                                                    icalproperty_new_description(bstr("description")));
847                 }
848         
849                 while (prop = icalcomponent_get_first_property(vtodo,
850                                                                ICAL_DTSTART_PROPERTY), prop != NULL) {
851                         icalcomponent_remove_property(vtodo, prop);
852                         icalproperty_free(prop);
853                 }
854                 if (IsEmptyStr(bstr("nodtstart"))) {
855                         if (yesbstr("dtstart_time")) {
856                                 icaltime_from_webform(&t, "dtstart");
857                         }
858                         else {
859                                 icaltime_from_webform_dateonly(&t, "dtstart");
860                         }
861                         icalcomponent_add_property(vtodo,
862                                                    icalproperty_new_dtstart(t)
863                                 );
864                 }
865                 while(prop = icalcomponent_get_first_property(vtodo,
866                                                               ICAL_STATUS_PROPERTY), prop != NULL) {
867                         icalcomponent_remove_property(vtodo,prop);
868                         icalproperty_free(prop);
869                 }
870                 while(prop = icalcomponent_get_first_property(vtodo,
871                                                               ICAL_PERCENTCOMPLETE_PROPERTY), prop != NULL) {
872                         icalcomponent_remove_property(vtodo,prop);
873                         icalproperty_free(prop);
874                 }
875
876                 if (havebstr("status")) {
877                         icalproperty_status taskStatus = icalproperty_string_to_status(bstr("status"));
878                         icalcomponent_set_status(vtodo, taskStatus);
879                         icalcomponent_add_property(vtodo,
880                                 icalproperty_new_percentcomplete(
881                                         (strcasecmp(bstr("status"), "completed") ? 0 : 100)
882                                 )
883                         );
884                 }
885                 else {
886                         icalcomponent_add_property(vtodo, icalproperty_new_percentcomplete(0));
887                 }
888                 while (prop = icalcomponent_get_first_property(vtodo,
889                                                                ICAL_CATEGORIES_PROPERTY), prop != NULL) {
890                         icalcomponent_remove_property(vtodo,prop);
891                         icalproperty_free(prop);
892                 }
893                 if (!IsEmptyStr(bstr("category"))) {
894                         prop = icalproperty_new_categories(bstr("category"));
895                         icalcomponent_add_property(vtodo,prop);
896                 }
897                 while (prop = icalcomponent_get_first_property(vtodo,
898                                                                ICAL_DUE_PROPERTY), prop != NULL) {
899                         icalcomponent_remove_property(vtodo, prop);
900                         icalproperty_free(prop);
901                 }
902                 if (IsEmptyStr(bstr("nodue"))) {
903                         if (yesbstr("due_time")) {
904                                 icaltime_from_webform(&t, "due");
905                         }
906                         else {
907                                 icaltime_from_webform_dateonly(&t, "due");
908                         }
909                         icalcomponent_add_property(vtodo,
910                                                    icalproperty_new_due(t)
911                                 );
912                 }
913                 /** Give this task a UID if it doesn't have one. */
914                 lprintf(9, "Give this task a UID if it doesn't have one.\n");
915                 if (icalcomponent_get_first_property(vtodo,
916                                                      ICAL_UID_PROPERTY) == NULL) {
917                         generate_uuid(buf);
918                         icalcomponent_add_property(vtodo,
919                                                    icalproperty_new_uid(buf)
920                                 );
921                 }
922
923                 /** Increment the sequence ID */
924                 lprintf(9, "Increment the sequence ID\n");
925                 while (prop = icalcomponent_get_first_property(vtodo,
926                                                                ICAL_SEQUENCE_PROPERTY), (prop != NULL) ) {
927                         i = icalproperty_get_sequence(prop);
928                         lprintf(9, "Sequence was %d\n", i);
929                         if (i > sequence) sequence = i;
930                         icalcomponent_remove_property(vtodo, prop);
931                         icalproperty_free(prop);
932                 }
933                 ++sequence;
934                 lprintf(9, "New sequence is %d.  Adding...\n", sequence);
935                 icalcomponent_add_property(vtodo,
936                                            icalproperty_new_sequence(sequence)
937                         );
938
939                 /**
940                  * Encapsulate event into full VCALENDAR component.  Clone it first,
941                  * for two reasons: one, it's easier to just free the whole thing
942                  * when we're done instead of unbundling, but more importantly, we
943                  * can't encapsulate something that may already be encapsulated
944                  * somewhere else.
945                  */
946                 lprintf(9, "Encapsulating into a full VCALENDAR component\n");
947                 encaps = ical_encapsulate_subcomponent(icalcomponent_new_clone(vtodo));
948
949                 /* Serialize it and save it to the message base */
950                 serv_puts("ENT0 1|||4");
951                 serv_getln(buf, sizeof buf);
952                 if (buf[0] == '4') {
953                         serv_puts("Content-type: text/calendar");
954                         serv_puts("");
955                         serv_puts(icalcomponent_as_ical_string(encaps));
956                         serv_puts("000");
957
958                         /**
959                          * Probably not necessary; the server will see the UID
960                          * of the object and delete the old one anyway, but
961                          * just in case...
962                          */
963                         delete_existing = 1;
964                 }
965                 icalcomponent_free(encaps);
966         }
967
968         /**
969          * If the user clicked 'Delete' then explicitly delete the message.
970          */
971         if (havebstr("delete_button")) {
972                 delete_existing = 1;
973         }
974
975         if ( (delete_existing) && (msgnum > 0L) ) {
976                 serv_printf("DELE %ld", lbstr("msgnum"));
977                 serv_getln(buf, sizeof buf);
978         }
979
980         if (created_new_vtodo) {
981                 icalcomponent_free(vtodo);
982         }
983
984         /* Go back to wherever we came from */
985         if (ibstr("return_to_summary") == 1) {
986                 summary();
987         }
988         else {
989                 readloop(readfwd);
990         }
991 }
992
993
994
995 /*
996  * Code common to all icalendar display handlers.  Given a message number and a MIME
997  * type, we load the message and hunt for that MIME type.  If found, we load
998  * the relevant part, deserialize it into a libical component, filter it for
999  * the requested object type, and feed it to the specified handler.
1000  */
1001 void load_ical_object(long msgnum, int unread,
1002                            icalcomponent_kind which_kind,
1003                            void (*callback)(icalcomponent *, long, char*, int, struct calview *),
1004                            struct calview *calv
1005         ) 
1006 {
1007         StrBuf *Buf;
1008         const char *bptr;
1009         size_t BufLen;
1010         char buf[1024];
1011         char from[128] = "";
1012         char mime_partnum[256];
1013         char mime_filename[256];
1014         char mime_content_type[256];
1015         char mime_disposition[256];
1016         int mime_length;
1017         char relevant_partnum[256];
1018         char *relevant_source = NULL;
1019         icalcomponent *cal, *c;
1020         int phase = 0;                          /* 0 = citadel headers, 1 = mime headers, 2 = body */
1021
1022         relevant_partnum[0] = '\0';
1023         sprintf(buf, "MSG4 %ld", msgnum);       /* we need the mime headers */
1024         serv_puts(buf);
1025         serv_getln(buf, sizeof buf);
1026         if (buf[0] != '1') return;
1027
1028         Buf = NewStrBuf();
1029         while (BufLen = StrBuf_ServGetlnBuffered(Buf), strcmp(ChrPtr(Buf), "000")) {
1030                 bptr = ChrPtr(Buf);
1031                 if ((phase == 0) && (!strncasecmp(bptr, "part=", 5))) {
1032                         extract_token(mime_filename, &bptr[5], 1, '|', sizeof mime_filename);
1033                         extract_token(mime_partnum, &bptr[5], 2, '|', sizeof mime_partnum);
1034                         extract_token(mime_disposition, &bptr[5], 3, '|', sizeof mime_disposition);
1035                         extract_token(mime_content_type, &bptr[5], 4, '|', sizeof mime_content_type);
1036                         mime_length = extract_int(&bptr[5], 5);
1037
1038                         if (  (!strcasecmp(mime_content_type, "text/calendar"))
1039                               || (!strcasecmp(mime_content_type, "application/ics"))
1040                               || (!strcasecmp(mime_content_type, "text/vtodo"))
1041                                 ) {
1042                                 strcpy(relevant_partnum, mime_partnum);
1043                         }
1044                 }
1045                 else if ((phase == 0) && (!strncasecmp(bptr, "from=", 4))) {
1046                         extract_token(from, bptr, 1, '=', sizeof(from));
1047                 }
1048                 else if ((phase == 0) && (!strncasecmp(bptr, "text", 4))) {
1049                         phase = 1;
1050                 }
1051                 else if ((phase == 1) && (IsEmptyStr(bptr))) {
1052                         phase = 2;
1053                 }
1054 /**
1055  ** FIXME optimize here
1056  **
1057                 else if ((phase == 1) && (!strncasecmp(bptr, "Content-type:", 13))) {
1058                         lprintf(9, "%s\n", bptr);
1059                 }
1060  **/
1061         }
1062         FreeStrBuf(&Buf);
1063
1064         if (!IsEmptyStr(relevant_partnum)) {
1065                 relevant_source = load_mimepart(msgnum, relevant_partnum);
1066                 if (relevant_source != NULL) {
1067
1068                         cal = icalcomponent_new_from_string(relevant_source);
1069                         if (cal != NULL) {
1070
1071                                 /* A which_kind of (-1) means just load the whole thing */
1072                                 if (which_kind == (-1)) {
1073                                         callback(cal, msgnum, from, unread, calv);
1074                                 }
1075
1076                                 /* Otherwise recurse and hunt */
1077                                 else {
1078
1079                                         /* Simple components of desired type */
1080                                         if (icalcomponent_isa(cal) == which_kind) {
1081                                                 callback(cal, msgnum, from, unread, calv);
1082                                         }
1083         
1084                                         /* Subcomponents of desired type */
1085                                         for (c = icalcomponent_get_first_component(cal, which_kind);
1086                                         (c != 0);
1087                                         c = icalcomponent_get_next_component(cal, which_kind)) {
1088                                                 callback(c, msgnum, from, unread, calv);
1089                                         }
1090
1091                                 }
1092
1093                                 icalcomponent_free(cal);
1094                         }
1095                         free(relevant_source);
1096                 }
1097         }
1098         icalmemory_free_ring();
1099 }
1100
1101 /*
1102  * Display a calendar item
1103  */
1104 void load_calendar_item(message_summary *Msg, int unread, struct calview *c) {
1105         /*load_ical_object(Msg->msgnum, unread, ICAL_VEVENT_COMPONENT, display_individual_cal, c);*/
1106         load_ical_object(Msg->msgnum, unread, (-1), display_individual_cal, c);
1107 }
1108
1109 /*
1110  * Display task view
1111  */
1112 void display_task(message_summary *Msg, int unread) {
1113         load_ical_object(Msg->msgnum, unread, ICAL_VTODO_COMPONENT, display_individual_cal, NULL);
1114 }
1115
1116 /*
1117  * Display the editor component for a task
1118  */
1119 void display_edit_task(void) {
1120         long msgnum = 0L;
1121                         
1122         /* Force change the room if we have to */
1123         if (havebstr("taskrm")) {
1124                 gotoroom(sbstr("taskrm"));
1125         }
1126
1127         msgnum = lbstr("msgnum");
1128         if (msgnum > 0L) {
1129                 /* existing task */
1130                 load_ical_object(msgnum, 0,
1131                                       ICAL_VTODO_COMPONENT,
1132                                       display_edit_individual_task,
1133                                       NULL
1134                 );
1135         }
1136         else {
1137                 /* new task */
1138                 display_edit_individual_task(NULL, 0L, "", 0, NULL);
1139         }
1140 }
1141
1142 /*
1143  * save an edited task
1144  */
1145 void save_task(void) {
1146         long msgnum = 0L;
1147         msgnum = lbstr("msgnum");
1148         if (msgnum > 0L) {
1149                 load_ical_object(msgnum, 0, ICAL_VTODO_COMPONENT, save_individual_task, NULL);
1150         }
1151         else {
1152                 save_individual_task(NULL, 0L, "", 0, NULL);
1153         }
1154 }
1155
1156 /*
1157  * display the editor component for an event
1158  */
1159 void display_edit_event(void) {
1160         long msgnum = 0L;
1161
1162         msgnum = lbstr("msgnum");
1163         if (msgnum > 0L) {
1164                 /* existing event */
1165                 load_ical_object(msgnum, 0, ICAL_VEVENT_COMPONENT, display_edit_individual_event, NULL);
1166         }
1167         else {
1168                 /* new event */
1169                 display_edit_individual_event(NULL, 0L, "", 0, NULL);
1170         }
1171 }
1172
1173 /*
1174  * save an edited event
1175  */
1176 void save_event(void) {
1177         long msgnum = 0L;
1178
1179         msgnum = lbstr("msgnum");
1180
1181         if (msgnum > 0L) {
1182                 /* load_ical_object(msgnum, 0, ICAL_VEVENT_COMPONENT, save_individual_event, NULL); */
1183                 load_ical_object(msgnum, 0, (-1), save_individual_event, NULL);
1184         }
1185         else {
1186                 save_individual_event(NULL, 0L, "", 0, NULL);
1187         }
1188 }
1189
1190
1191
1192
1193
1194 /*
1195  * Anonymous request of freebusy data for a user
1196  */
1197 void do_freebusy(const char *req) {
1198         char who[SIZ];
1199         char buf[SIZ];
1200         int len;
1201         long lines;
1202
1203         extract_token(who, req, 1, ' ', sizeof who);
1204         if (!strncasecmp(who, "/freebusy/", 10)) {
1205                 strcpy(who, &who[10]);
1206         }
1207         unescape_input(who);
1208
1209         len = strlen(who);
1210         if ( (!strcasecmp(&who[len-4], ".vcf"))
1211              || (!strcasecmp(&who[len-4], ".ifb"))
1212              || (!strcasecmp(&who[len-4], ".vfb")) ) {
1213                 who[len-4] = 0;
1214         }
1215
1216         lprintf(9, "freebusy requested for <%s>\n", who);
1217         serv_printf("ICAL freebusy|%s", who);
1218         serv_getln(buf, sizeof buf);
1219
1220         if (buf[0] != '1') {
1221                 hprintf("HTTP/1.1 404 %s\n", &buf[4]);
1222                 output_headers(0, 0, 0, 0, 0, 0);
1223                 hprintf("Content-Type: text/plain\r\n");
1224                 wprintf("%s\n", &buf[4]);
1225                 end_burst();
1226                 return;
1227         }
1228
1229         read_server_text(WC->WBuf, &lines);
1230         http_transmit_thing("text/calendar", 0);
1231 }
1232
1233
1234
1235
1236
1237 void 
1238 InitModule_CALENDAR
1239 (void)
1240 {
1241         RegisterPreference("daystart", _("Calendar day view begins at:"), PRF_INT, NULL);
1242         RegisterPreference("dayend", _("Calendar day view ends at:"), PRF_INT, NULL);
1243         RegisterPreference("weekstart", _("Week starts on:"), PRF_INT, NULL);
1244
1245         WebcitAddUrlHandler(HKEY("display_edit_task"), display_edit_task, 0);
1246         WebcitAddUrlHandler(HKEY("save_task"), save_task, 0);
1247         WebcitAddUrlHandler(HKEY("display_edit_event"), display_edit_event, 0);
1248         WebcitAddUrlHandler(HKEY("save_event"), save_event, 0);
1249         WebcitAddUrlHandler(HKEY("respond_to_request"), respond_to_request, 0);
1250         WebcitAddUrlHandler(HKEY("handle_rsvp"), handle_rsvp, 0);
1251 }