From: Art Cancro Date: Fri, 4 Feb 2005 03:43:31 +0000 (+0000) Subject: * fixed the tasks view in the summary screen X-Git-Tag: v7.86~5081 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=1e43c20f3cf4e2c39852c1b74d43608b40154a89;p=citadel.git * fixed the tasks view in the summary screen --- diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 1ba228e04..9cbaf5e3e 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 528.39 2005/02/04 03:43:31 ajc +* fixed the tasks view in the summary screen + Revision 528.38 2005/02/03 05:13:57 ajc * More tuning for GroupDAV compliance. @@ -2303,3 +2306,4 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix + diff --git a/webcit/summary.c b/webcit/summary.c index 7ed54af4e..f98fda44e 100644 --- a/webcit/summary.c +++ b/webcit/summary.c @@ -143,7 +143,6 @@ void tasks_section(void) { num_msgs = load_msg_ptrs("MSGS ALL"); } - wprintf("FIXME start tasks
\n"); if (num_msgs < 1) { wprintf("(None)
\n"); } @@ -152,7 +151,8 @@ void tasks_section(void) { display_task(WC->msgarr[i]); } } - wprintf("FIXME end tasks
\n"); + + calendar_summary_view(); #else /* WEBCIT_WITH_CALENDAR_SERVICE */ wprintf("(This server does not support task lists)\n"); @@ -180,7 +180,6 @@ void calendar_section(void) { else { num_msgs = load_msg_ptrs("MSGS ALL"); } - wprintf("FIXME start calendar
\n"); if (num_msgs < 1) { wprintf("(Nothing)
\n"); @@ -191,7 +190,6 @@ void calendar_section(void) { } calendar_summary_view(); } - wprintf("FIXME end calendar
\n"); #else /* WEBCIT_WITH_CALENDAR_SERVICE */ wprintf("(This server does not support calendars)\n"); @@ -247,18 +245,18 @@ void summary(void) { * not people I consider worthwhile, I still want them to use WebCit. */ - wprintf(""); + wprintf("
"); /* * Column One */ - wprintf("
"); + wprintf(""); wholist_section(); /* * Column Two */ - wprintf(""); + wprintf(""); server_info_section(); wprintf("
"); tasks_section(); @@ -266,7 +264,7 @@ void summary(void) { /* * Column Three */ - wprintf("
"); + wprintf(""); new_messages_section(); wprintf("
"); calendar_section(); @@ -274,7 +272,7 @@ void summary(void) { /* * End of columns */ - wprintf("
\n"); + wprintf("\n"); wDumpContent(1); }