From 344d7a7ba9543b03b975fc822bf98aed1d2e8a63 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 30 Sep 2008 04:10:38 +0000 Subject: [PATCH] Wrote a few more lines of the recurrence editor. --- webcit/event.c | 40 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/webcit/event.c b/webcit/event.c index 6034e7087..2ac698259 100644 --- a/webcit/event.c +++ b/webcit/event.c @@ -438,11 +438,14 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum, _("never") }; + + + wprintf(""); - wprintf(_("Repeats")); + wprintf(_("Recurrence rule")); wprintf(""); if ((recur.freq < 0) || (recur.freq > 6)) recur.freq = 4; - wprintf("%s ", _("every")); + wprintf("%s ", _("Repeats every")); wprintf(" ", recur.interval); @@ -487,6 +490,39 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum, wprintf("\n"); + + + + + wprintf(""); + wprintf(_("Recurrence range")); + wprintf("\n"); + + wprintf("", + (1 ? "checked" : "") + ); + wprintf("%s
\n", _("No ending date")); + + wprintf("", + (0 ? "checked" : "") + ); + wprintf(_("Repeat this event %d times"), 0); + wprintf("
\n"); + + wprintf("", + (0 ? "checked" : "") + ); + wprintf(_("Repeat this event until %s"), "FIXME"); + wprintf("
\n"); + + wprintf("\n"); + + + + wprintf("\n"); wprintf("\n"); /* end 'rrule' div */ -- 2.30.2