* *** HUGE CHANGES *** *** WARNING: NOT FULLY FUNCTIONAL ***
[citadel.git] / webcit / summary.c
index a153c305140c28d2371085f704bd000c0e571f9b..7141e72f4460c85a7ae05ecf0e2ccc04894c5572 100644 (file)
@@ -1,8 +1,5 @@
 /* $Id$ */
 
-
-
-
 #include <ctype.h>
 #include <stdlib.h>
 #include <unistd.h>
@@ -54,24 +51,15 @@ void output_date(void) {
 
 
 
-/*
- * Display the title bar for a section
- */
-void section_title(char *title) {
-
-       wprintf("<TABLE width=100%% border=0 cellpadding=5 cellspacing=0>"
-               "<TR><TD BGCOLOR=444455>"
-               "<FONT COLOR=FFFFEE>");
-       escputs(title);
-       wprintf("</FONT></TD></TR></TABLE>\n");
-}
-
 
 /*
  * Dummy section
  */
 void dummy_section(void) {
-       section_title("---");
+       svprintf("BOXTITLE", WCS_STRING, "(dummy&nbsp;section)");
+       do_template("beginbox");
+       wprintf("(nothing)");
+       do_template("endbox");
 }
 
 
@@ -85,7 +73,8 @@ void new_messages_section(void) {
        int number_of_rooms_to_check;
        char *rooms_to_check = "Mail|Lobby";
 
-       section_title("Messages");
+       svprintf("BOXTITLE", WCS_STRING, "Messages");
+       do_template("beginbox");
 
        number_of_rooms_to_check = num_tokens(rooms_to_check, '|');
        if (number_of_rooms_to_check == 0) return;
@@ -109,6 +98,7 @@ void new_messages_section(void) {
                }
        }
        wprintf("</TABLE>\n");
+       do_template("endbox");
 
 }
 
@@ -120,36 +110,130 @@ void wholist_section(void) {
        char buf[SIZ];
        char user[SIZ];
 
-       section_title("Who's online now");
+       svprintf("BOXTITLE", WCS_STRING, "Who's&nbsp;online&nbsp;now");
+       do_template("beginbox");
        serv_puts("RWHO");
        serv_gets(buf);
        if (buf[0] == '1') while(serv_gets(buf), strcmp(buf, "000")) {
                extract(user, buf, 1);
                escputs(user);
-               wprintf("<BR>\n");
+               wprintf("<br />\n");
+       }
+       do_template("endbox");
+}
+
+
+/*
+ * Task list section
+ */
+void tasks_section(void) {
+#ifdef WEBCIT_WITH_CALENDAR_SERVICE
+       int num_msgs = 0;
+       int i;
+#endif
+
+       svprintf("BOXTITLE", WCS_STRING, "Tasks");
+       do_template("beginbox");
+#ifdef WEBCIT_WITH_CALENDAR_SERVICE
+       gotoroom("Tasks");
+       if (strcasecmp(WC->wc_roomname, "Tasks")) {
+               num_msgs = 0;
+       }
+       else {
+               num_msgs = load_msg_ptrs("MSGS ALL");
+       }
+
+       if (num_msgs < 1) {
+               wprintf("<i>(None)</i><br />\n");
+       }
+       else {
+               for (i=0; i<num_msgs; ++i) {
+                       display_task(WC->msgarr[i]);
+               }
        }
+
+#else /* WEBCIT_WITH_CALENDAR_SERVICE */
+       wprintf("<I>(This server does not support task lists)</I>\n");
+#endif /* WEBCIT_WITH_CALENDAR_SERVICE */
+       do_template("endbox");
+}
+
+
+/*
+ * Calendar section
+ */
+void calendar_section(void) {
+#ifdef WEBCIT_WITH_CALENDAR_SERVICE
+       int num_msgs = 0;
+       int i;
+#endif
+
+       svprintf("BOXTITLE", WCS_STRING, "Today&nbsp;on&nbsp;your&nbsp;calendar");
+       do_template("beginbox");
+#ifdef WEBCIT_WITH_CALENDAR_SERVICE
+       gotoroom("Calendar");
+       if (strcasecmp(WC->wc_roomname, "Calendar")) {
+               num_msgs = 0;
+       }
+       else {
+               num_msgs = load_msg_ptrs("MSGS ALL");
+       }
+
+       if (num_msgs < 1) {
+               wprintf("<i>(Nothing)</i><br />\n");
+       }
+       else {
+               for (i=0; i<num_msgs; ++i) {
+                       display_calendar(WC->msgarr[i]);
+               }
+               calendar_summary_view();
+       }
+
+#else /* WEBCIT_WITH_CALENDAR_SERVICE */
+       wprintf("<I>(This server does not support calendars)</I>\n");
+#endif /* WEBCIT_WITH_CALENDAR_SERVICE */
+       do_template("endbox");
 }
 
 
+/*
+ * Server info section (fluff, really)
+ */
+void server_info_section(void) {
+       svprintf("BOXTITLE", WCS_STRING, "About&nbsp;this&nbsp;server");
+       do_template("beginbox");
+       wprintf("You are connected to ");
+       escputs(serv_info.serv_humannode);
+       wprintf(", running ");
+       escputs(serv_info.serv_software);
+       wprintf(", and located in ");
+       escputs(serv_info.serv_bbs_city);
+       wprintf(".<br />\nYour system administrator is ");
+       escputs(serv_info.serv_sysadm);
+       wprintf(".\n");
+       do_template("endbox");
+}
 
 
 /*
  * Display this user's summary page
  */
 void summary(void) {
-       output_headers(7);
 
-       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=007700><TR><TD>"
-               "<FONT SIZE=+1 COLOR=\"FFFFFF\""
-               "<B>Summary page for ");
+       output_headers(1, 1, 2, 0, 1, 0, 0);
+       wprintf("<div id=\"banner\">\n");
+       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=#444455><TR>"
+               "<TD><IMG SRC=\"/static/summary.gif\"></TD><TD>"
+               "<SPAN CLASS=\"titlebar\">"
+               "Summary page for ");
        escputs(WC->wc_username);
-       wprintf("</B><FONT></TD><TD>\n");
+       wprintf("</SPAN></TD><TD>\n");
+       wprintf("</TD><TD ALIGN=RIGHT><SPAN CLASS=\"titlebar\">");
+       output_date();
+       wprintf("</SPAN><br />");
        offer_start_page();
        wprintf("</TD></TR></TABLE>\n");
-
-       wprintf("<DIV ALIGN=RIGHT>");
-       output_date();
-       wprintf("</DIV>\n");
+       wprintf("</div><div id=\"text\">\n");
 
        /*
         * Now let's do three columns of crap.  All portals and all groupware
@@ -164,20 +248,24 @@ void summary(void) {
        /*
         * Column One
         */
-       wprintf("<TD>");
+       wprintf("<TD WIDTH=33%%>");
        wholist_section();
 
        /*
         * Column Two
         */
-       wprintf("</TD><TD>");
-       dummy_section();
+       wprintf("</TD><TD WIDTH=33%%>");
+       server_info_section();
+       wprintf("<br />");
+       tasks_section();
 
        /*
         * Column Three
         */
-       wprintf("</TD><TD>");
+       wprintf("</TD><TD WIDTH=33%%>");
        new_messages_section();
+       wprintf("<br />");
+       calendar_section();
 
        /*
         * End of columns