X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Fsummary.c;h=a98e421e0a1f88b87e634abeaa92faad30261554;hp=e8072e5fd8854057199197e83fdc67cec5bdf0fd;hb=cf934431c7c8c1091b38c0b374f6a3b9293841ca;hpb=1d70c160be9a9f3f6e3c211dcfb131563dcc103f diff --git a/webcit/summary.c b/webcit/summary.c index e8072e5fd..a98e421e0 100644 --- a/webcit/summary.c +++ b/webcit/summary.c @@ -1,15 +1,13 @@ /* * $Id$ + * + * Displays the "Summary Page" */ -/** - * \defgroup SymaryFuncs Displays the "Summary Page" - * \ingroup WebcitDisplayItems - */ -/*@{*/ + #include "webcit.h" -/** - * \brief Display today's date in a friendly format +/* + * Display today's date in a friendly format */ void output_date(void) { struct tm tm; @@ -78,12 +76,9 @@ void new_messages_section(void) { * \brief Task list section */ void tasks_section(void) { -#ifdef WEBCIT_WITH_CALENDAR_SERVICE int num_msgs = 0; int i; -#endif -#ifdef WEBCIT_WITH_CALENDAR_SERVICE gotoroom("_TASKS_"); if (WC->wc_view != VIEW_TASKS) { num_msgs = 0; @@ -104,12 +99,6 @@ void tasks_section(void) { } calendar_summary_view(); - -#else /* WEBCIT_WITH_CALENDAR_SERVICE */ - wprintf(""); - wprintf(_("(This server does not support task lists)")); - wprintf("\n"); -#endif /* WEBCIT_WITH_CALENDAR_SERVICE */ } @@ -117,12 +106,9 @@ void tasks_section(void) { * \brief Calendar section */ void calendar_section(void) { -#ifdef WEBCIT_WITH_CALENDAR_SERVICE int num_msgs = 0; int i; -#endif -#ifdef WEBCIT_WITH_CALENDAR_SERVICE gotoroom("_CALENDAR_"); if ( (WC->wc_view != VIEW_CALENDAR) && (WC->wc_view != VIEW_CALBRIEF) ) { num_msgs = 0; @@ -142,12 +128,6 @@ void calendar_section(void) { } calendar_summary_view(); } - -#else /* WEBCIT_WITH_CALENDAR_SERVICE */ - wprintf(""); - wprintf(_("(This server does not support calendars)")); - wprintf("\n"); -#endif /* WEBCIT_WITH_CALENDAR_SERVICE */ } /**