]> code.citadel.org Git - citadel.git/blobdiff - webcit/summary.c
* Started changing some of the top-level tables from 100% width to 99%
[citadel.git] / webcit / summary.c
index 7141e72f4460c85a7ae05ecf0e2ccc04894c5572..128dd835facde25531e14e322f375952e7c8cb27 100644 (file)
@@ -1,4 +1,8 @@
-/* $Id$ */
+/*
+ * $Id$
+ *
+ * Displays the "Summary Page"
+ */
 
 #include <ctype.h>
 #include <stdlib.h>
@@ -152,6 +156,8 @@ void tasks_section(void) {
                }
        }
 
+       calendar_summary_view();
+
 #else /* WEBCIT_WITH_CALENDAR_SERVICE */
        wprintf("<I>(This server does not support task lists)</I>\n");
 #endif /* WEBCIT_WITH_CALENDAR_SERVICE */
@@ -233,7 +239,7 @@ void summary(void) {
        wprintf("</SPAN><br />");
        offer_start_page();
        wprintf("</TD></TR></TABLE>\n");
-       wprintf("</div><div id=\"text\">\n");
+       wprintf("</div>\n<div id=\"content\">\n");
 
        /*
         * Now let's do three columns of crap.  All portals and all groupware
@@ -243,18 +249,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("<center><table border=0 width=99%%><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();
@@ -262,7 +268,7 @@ void summary(void) {
        /*
         * Column Three
         */
-       wprintf("</TD><TD WIDTH=33%%>");
+       wprintf("</td><td width=33%%>");
        new_messages_section();
        wprintf("<br />");
        calendar_section();
@@ -270,7 +276,7 @@ void summary(void) {
        /*
         * End of columns
         */
-       wprintf("</TD></TR></TABLE>\n");
+       wprintf("</td></tr></table></center>\n");
 
        wDumpContent(1);
 }