]> code.citadel.org Git - citadel.git/blobdiff - webcit/event.c
recurrence editor stuff
[citadel.git] / webcit / event.c
index 6c82bf611107877eb5258f8b24bc8f4e5e8e4cd1..5bb3efb4fd87a5623d6bc4468e1617e96a490db7 100644 (file)
@@ -31,6 +31,7 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum,
        int i, j = 0;
        int sequence = 0;
        char weekday_labels[7][32];
+       char month_labels[12][32];
        long weekstart = 0;
 
        get_pref_long("weekstart", &weekstart, 17);
@@ -54,6 +55,16 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum,
        }
        /* populate the weekday names - end */
 
+       /* populate the month names - begin */
+       now = 259200L;  /* 1970-jan-04 is the first Sunday ever */
+       localtime_r(&now, &tm_now);
+       for (i=0; i<12; ++i) {
+               localtime_r(&now, &tm_now);
+               wc_strftime(month_labels[i], 32, "%B", &tm_now);
+               now += 2678400L;
+       }
+       /* populate the month names - end */
+
        now = time(NULL);
        strcpy(organizer_string, "");
        strcpy(attendee_string, "");
@@ -515,7 +526,7 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum,
                ((which_rrmonthtype_is_preselected == 0) ? "checked" : "")
        );
 
-       char mdaybox[128];
+       char mdaybox[256];
        int rrmday = 1;                                 /* FIXME default to same as event start */
        int rrmweek = 1;                                /* FIXME default to same as event start */
        int rrmweekday = 1;                             /* FIXME default to same as event start */
@@ -570,16 +581,73 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum,
        wprintf("</div>\n");                            /* end 'monthday_selector' div */
 
 
+       int rrymweek = 1;                               /* FIXME default to same as event start */
+       int rrymweekday = 1;                            /* FIXME default to same as event start */
+       int rrymonth = 1;                               /* FIXME default to same as event start */
+
+       int which_rryeartype_is_preselected = 0;
+
+       if ( (recur.by_day[0] != ICAL_RECURRENCE_ARRAY_MAX) 
+          && (recur.by_month[0] != ICAL_RECURRENCE_ARRAY_MAX) ) {
+               which_rryeartype_is_preselected = 1;
+               rrymweek = icalrecurrencetype_day_position(recur.by_day[0]);
+               rrymweekday = icalrecurrencetype_day_day_of_week(recur.by_day[0]) - 1;
+               rrymonth = recur.by_month[0];
+       }
 
-       int which_rryeartype_is_preselected = 0;        /* FIXME set default correctly */
        wprintf("<div id=\"yearday_selector\">");       /* begin 'yearday_selector' div */
 
-       wprintf("(X) every (99) (Octobuary)<br />");                    /* FIXME */
-       wprintf("(X) on the (Grelfth) (Funday) of (Octobuary)<br />");  /* FIXME */
+       wprintf("<input type=\"radio\" name=\"rryeartype\" id=\"rryeartype_ymday\" "
+               "%s onChange=\"RecurrenceShowHide();\">",
+               ((which_rryeartype_is_preselected == 0) ? "checked" : "")
+       );
+       wprintf(_("every "));
+       wprintf("<span id=\"ymday\">%s</span><br />", _("year on this date"));
 
-       wprintf("</div>\n");                            /* end 'yearday_selector' div */
+       wprintf("<input type=\"radio\" name=\"rryeartype\" id=\"rryeartype_ywday\" "
+               "%s onChange=\"RecurrenceShowHide();\">",
+               ((which_rryeartype_is_preselected == 1) ? "checked" : "")
+       );
 
+       wprintf(_("on the "));
+       wprintf("<select name=\"rrymweek\" id=\"rrymweek\" size=\"1\" "
+               "onChange=\"RecurrenceShowHide();\">\n");
+       for (i=1; i<=5; ++i) {
+               wprintf("<option %svalue=\"%d\">%s</option>\n",
+                       ((i==rrymweek) ? "selected " : ""),
+                       i,
+                       ordinals[i]
+               );
+       }
+       wprintf("</select> \n");
 
+       wprintf("<select name=\"rrymweekday\" id=\"rrymweekday\" size=\"1\" "
+               "onChange=\"RecurrenceShowHide();\">\n");
+       for (j=0; j<7; ++j) {
+               i = ((j + (int)weekstart) % 7);
+               wprintf("<option %svalue=\"%d\">%s</option>\n",
+                       ((i==rrymweekday) ? "selected " : ""),
+                       i,
+                       weekday_labels[i]
+               );
+       }
+       wprintf("</select>");
+
+       wprintf(" %s ", _("of"));
+
+       wprintf("<select name=\"rrymonth\" id=\"rrymonth\" size=\"1\" "
+               "onChange=\"RecurrenceShowHide();\">\n");
+       for (i=1; i<=12; ++i) {
+               wprintf("<option %svalue=\"%d\">%s</option>\n",
+                       ((i==rrymonth) ? "selected " : ""),
+                       i,
+                       month_labels[i-1]
+               );
+       }
+       wprintf("</select>");
+       wprintf("<br />\n");
+
+       wprintf("</div>\n");                            /* end 'yearday_selector' div */
 
        wprintf("</td></tr>\n");