X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fevent.c;h=fb49aeaebc4bc8a1808ac789fb013cbd80cf5ddc;hb=a86147a7b23d56c421d21bc2bff90594fb9adba7;hp=a5cd217d879d8c4f98de782e400b5ac02b383308;hpb=0eb5b2378e511875de90ec2ebc33d9f493865c9d;p=citadel.git diff --git a/webcit/event.c b/webcit/event.c index a5cd217d8..fb49aeaeb 100644 --- a/webcit/event.c +++ b/webcit/event.c @@ -421,7 +421,7 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum, wprintf("
\n"); /* begin 'rrule_div' div */ - wprintf("\n"); /* same table style as the event tab */ + wprintf("
\n"); /* Table row displaying raw RRULE data, FIXME remove when finished */ if (rrule) { @@ -492,6 +492,29 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum, } wprintf("\n"); /* end 'weekday_selector' div */ + + int which_rrmonthtype_is_preselected = 0; /* FIXME */ + + wprintf("
"); /* begin 'monthday_selector' div */ + + wprintf("", + ((which_rrmonthtype_is_preselected == 0) ? "checked" : "") + ); + wprintf("on day FIXME of the month"); /* FIXME */ + wprintf("
\n"); + + wprintf("", + ((which_rrmonthtype_is_preselected == 1) ? "checked" : "") + ); + wprintf("on the FIXME FIXME of the month"); /* FIXME */ + wprintf("
\n"); + + wprintf("
\n"); /* end 'monthday_selector' div */ + + + wprintf("\n");