* fixed the tasks view in the summary screen
authorArt Cancro <ajc@citadel.org>
Fri, 4 Feb 2005 03:43:31 +0000 (03:43 +0000)
committerArt Cancro <ajc@citadel.org>
Fri, 4 Feb 2005 03:43:31 +0000 (03:43 +0000)
webcit/ChangeLog
webcit/summary.c

index 1ba228e046151d0852f22fc1f5fe8b022e437f53..9cbaf5e3e806a81ea04e2da3362b767ea771db50 100644 (file)
@@ -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 <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
+
index 7ed54af4ee68f67ac99977061f80542cf4dbca6d..f98fda44e4a3577a28f8bbce4d2978511b21f12c 100644 (file)
@@ -143,7 +143,6 @@ void tasks_section(void) {
                num_msgs = load_msg_ptrs("MSGS ALL");
        }
 
-       wprintf("FIXME start tasks<br>\n");
        if (num_msgs < 1) {
                wprintf("<i>(None)</i><br />\n");
        }
@@ -152,7 +151,8 @@ void tasks_section(void) {
                        display_task(WC->msgarr[i]);
                }
        }
-       wprintf("FIXME end tasks<br>\n");
+
+       calendar_summary_view();
 
 #else /* WEBCIT_WITH_CALENDAR_SERVICE */
        wprintf("<I>(This server does not support task lists)</I>\n");
@@ -180,7 +180,6 @@ void calendar_section(void) {
        else {
                num_msgs = load_msg_ptrs("MSGS ALL");
        }
-       wprintf("FIXME start calendar<br>\n");
 
        if (num_msgs < 1) {
                wprintf("<i>(Nothing)</i><br />\n");
@@ -191,7 +190,6 @@ void calendar_section(void) {
                }
                calendar_summary_view();
        }
-       wprintf("FIXME end calendar<br>\n");
 
 #else /* WEBCIT_WITH_CALENDAR_SERVICE */
        wprintf("<I>(This server does not support calendars)</I>\n");
@@ -247,18 +245,18 @@ void summary(void) {
         * not people I consider worthwhile, I still want them to use WebCit.
         */
 
-       wprintf("<TABLE WIDTH=100%% BORDER=0 CELLPADDING=10><TR VALIGN=TOP>");
+       wprintf("<table border=0><tr valign=top>");
 
        /*
         * Column One
         */
-       wprintf("<TD WIDTH=33%%>");
+       wprintf("<td width=33%%>");
        wholist_section();
 
        /*
         * Column Two
         */
-       wprintf("</TD><TD WIDTH=33%%>");
+       wprintf("</td><td width=33%%>");
        server_info_section();
        wprintf("<br />");
        tasks_section();
@@ -266,7 +264,7 @@ void summary(void) {
        /*
         * Column Three
         */
-       wprintf("</TD><TD WIDTH=33%%>");
+       wprintf("</td><td width=33%%>");
        new_messages_section();
        wprintf("<br />");
        calendar_section();
@@ -274,7 +272,7 @@ void summary(void) {
        /*
         * End of columns
         */
-       wprintf("</TD></TR></TABLE>\n");
+       wprintf("</td></tr></table>\n");
 
        wDumpContent(1);
 }