Began making changes to do better handling of character sets.
[citadel.git] / webcit / summary.c
index ed5bb61e81b7aacb3fe4f6a055c08a8cb59bb01f..3d994038960259914d4eadca5adeb60d8d43cdff 100644 (file)
@@ -1,54 +1,44 @@
 /*
  * $Id$
- *
- * Displays the "Summary Page"
  */
-
+/**
+ * \defgroup SymaryFuncs Displays the "Summary Page"
+ * \ingroup WebcitDisplayItems
+ */
+/*@{*/
 #include "webcit.h"
 
-/*
- * Display today's date in a friendly format
+/**
+ * \brief Display today's date in a friendly format
  */
 void output_date(void) {
        struct tm tm;
        time_t now;
-
-       static char *wdays[] = {
-               "Sunday", "Monday", "Tuesday", "Wednesday",
-               "Thursday", "Friday", "Saturday"
-       };
-       static char *months[] = {
-               "January", "February", "March", "April", "May", "June", "July",
-               "August", "September", "October", "November", "December"
-       };
+       char buf[128];
 
        time(&now);
        localtime_r(&now, &tm);
 
-       wprintf("%s, %s %d, %d",
-               wdays[tm.tm_wday],
-               months[tm.tm_mon],
-               tm.tm_mday,
-               tm.tm_year + 1900
-       );
+       wc_strftime(buf, 32, "%A, %x", &tm);
+       wprintf("%s", buf);
 }
 
 
 
 
-/*
- * Dummy section
+/**
+ * \brief Dummy section
  */
 void dummy_section(void) {
        svprintf("BOXTITLE", WCS_STRING, "(dummy section)");
        do_template("beginbox");
-       wprintf("(nothing)");
+       wprintf(_("(nothing)"));
        do_template("endbox");
 }
 
 
-/*
- * New messages section
+/**
+ * \brief New messages section
  */
 void new_messages_section(void) {
        char buf[SIZ];
@@ -57,13 +47,13 @@ void new_messages_section(void) {
        int number_of_rooms_to_check;
        char *rooms_to_check = "Mail|Lobby";
 
-       svprintf("BOXTITLE", WCS_STRING, "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;
 
-       wprintf("<TABLE BORDER=0 WIDTH=100%%>\n");
+       wprintf("<table border=0 width=100%%>\n");
        for (i=0; i<number_of_rooms_to_check; ++i) {
                extract_token(room, rooms_to_check, i, '|', sizeof room);
 
@@ -71,30 +61,30 @@ void new_messages_section(void) {
                serv_getln(buf, sizeof buf);
                if (buf[0] == '2') {
                        extract_token(room, &buf[4], 0, '|', sizeof room);
-                       wprintf("<TR><TD><A HREF=\"/dotgoto?room=");
+                       wprintf("<tr><td><a href=\"dotgoto?room=");
                        urlescputs(room);
                        wprintf("\">");
                        escputs(room);
-                       wprintf("</A></TD><TD>%d/%d</TD></TR>\n",
+                       wprintf("</a></td><td>%d/%d</td></tr>\n",
                                extract_int(&buf[4], 1),
                                extract_int(&buf[4], 2)
                        );
                }
        }
-       wprintf("</TABLE>\n");
+       wprintf("</table>\n");
        do_template("endbox");
 
 }
 
 
-/*
- * Wholist section
+/**
+ * \brief Wholist section
  */
 void wholist_section(void) {
        char buf[SIZ];
        char user[SIZ];
 
-       svprintf("BOXTITLE", WCS_STRING, "Who's&nbsp;online&nbsp;now");
+       svprintf("BOXTITLE", WCS_STRING, _("Who's&nbsp;online&nbsp;now"));
        do_template("beginbox");
        serv_puts("RWHO");
        serv_getln(buf, sizeof buf);
@@ -107,8 +97,8 @@ void wholist_section(void) {
 }
 
 
-/*
- * Task list section
+/**
+ * \brief Task list section
  */
 void tasks_section(void) {
 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
@@ -116,7 +106,7 @@ void tasks_section(void) {
        int i;
 #endif
 
-       svprintf("BOXTITLE", WCS_STRING, "Tasks");
+       svprintf("BOXTITLE", WCS_STRING, _("Tasks"));
        do_template("beginbox");
 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
        gotoroom("_TASKS_");
@@ -128,7 +118,9 @@ void tasks_section(void) {
        }
 
        if (num_msgs < 1) {
-               wprintf("<i>(None)</i><br />\n");
+               wprintf("<i>");
+               wprintf(_("(None)"));
+               wprintf("</i><br />\n");
        }
        else {
                for (i=0; i<num_msgs; ++i) {
@@ -139,14 +131,16 @@ void tasks_section(void) {
        calendar_summary_view();
 
 #else /* WEBCIT_WITH_CALENDAR_SERVICE */
-       wprintf("<I>(This server does not support task lists)</I>\n");
+       wprintf("<i>");
+       wprintf(_("(This server does not support task lists)"));
+       wprintf("</i>\n");
 #endif /* WEBCIT_WITH_CALENDAR_SERVICE */
        do_template("endbox");
 }
 
 
-/*
- * Calendar section
+/**
+ * \brief Calendar section
  */
 void calendar_section(void) {
 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
@@ -154,11 +148,11 @@ void calendar_section(void) {
        int i;
 #endif
 
-       svprintf("BOXTITLE", WCS_STRING, "Today&nbsp;on&nbsp;your&nbsp;calendar");
+       svprintf("BOXTITLE", WCS_STRING, _("Today&nbsp;on&nbsp;your&nbsp;calendar"));
        do_template("beginbox");
 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
        gotoroom("_CALENDAR_");
-       if (WC->wc_view != VIEW_CALENDAR) {
+       if ( (WC->wc_view != VIEW_CALENDAR) && (WC->wc_view != VIEW_CALBRIEF) ) {
                num_msgs = 0;
        }
        else {
@@ -166,7 +160,9 @@ void calendar_section(void) {
        }
 
        if (num_msgs < 1) {
-               wprintf("<i>(Nothing)</i><br />\n");
+               wprintf("<i>");
+               wprintf(_("(Nothing)"));
+               wprintf("</i><br />\n");
        }
        else {
                for (i=0; i<num_msgs; ++i) {
@@ -176,54 +172,38 @@ void calendar_section(void) {
        }
 
 #else /* WEBCIT_WITH_CALENDAR_SERVICE */
-       wprintf("<I>(This server does not support calendars)</I>\n");
+       wprintf("<i>");
+       wprintf(_("(This server does not support calendars)"));
+       wprintf("</i>\n");
 #endif /* WEBCIT_WITH_CALENDAR_SERVICE */
        do_template("endbox");
 }
 
-
-/*
- * Server info section (fluff, really)
+/**
+ * \brief Server info section (fluff, really)
  */
 void server_info_section(void) {
-       svprintf("BOXTITLE", WCS_STRING, "About&nbsp;this&nbsp;server");
+       char message[512];
+
+       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(" with ");
-       escputs(SERVER);
-       wprintf(", and located in ");
-       escputs(serv_info.serv_bbs_city);
-       wprintf(".<br />\nYour system administrator is ");
-       escputs(serv_info.serv_sysadm);
-       wprintf(".\n");
+
+       snprintf(message, sizeof message,
+               _("You are connected to %s, running %s with %s, and located in %s.  Your system administrator is %s."),
+               serv_info.serv_humannode,
+               serv_info.serv_software,
+               SERVER,
+               serv_info.serv_bbs_city,
+               serv_info.serv_sysadm);
+       escputs(message);
        do_template("endbox");
 }
 
-
-/*
- * Display this user's summary page
+/**
+ * \brief summary of inner div????
  */
-void summary(void) {
-
-       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/summscreen_48x.gif\"></TD><TD>"
-               "<SPAN CLASS=\"titlebar\">"
-               "Summary page for ");
-       escputs(WC->wc_username);
-       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>\n<div id=\"content\">\n");
-
-       /*
+void summary_inner_div(void) {
+       /**
         * Now let's do three columns of crap.  All portals and all groupware
         * clients seem to want to do three columns, so we'll do three
         * columns too.  Conformity is not inherently a virtue, but there are
@@ -231,16 +211,16 @@ void summary(void) {
         * not people I consider worthwhile, I still want them to use WebCit.
         */
 
-       wprintf("<div id=\"fix_scrollbar_bug\">"
+       wprintf("<div class=\"fix_scrollbar_bug\">"
                "<table border=0 width=100%%><tr valign=top>");
 
-       /*
+       /**
         * Column One
         */
        wprintf("<td width=33%%>");
        wholist_section();
 
-       /*
+       /**
         * Column Two
         */
        wprintf("</td><td width=33%%>");
@@ -248,7 +228,7 @@ void summary(void) {
        wprintf("<br />");
        tasks_section();
 
-       /*
+       /**
         * Column Three
         */
        wprintf("</td><td width=33%%>");
@@ -256,9 +236,53 @@ void summary(void) {
        wprintf("<br />");
        calendar_section();
 
-       /*
+       /**
         * End of columns
         */
-       wprintf("</td></tr></table></div>\n");
+       wprintf("</td></tr></table>");
+}
+
+
+/**
+ * \brief Display this user's summary page
+ */
+void summary(void) {
+       char title[256];
+
+       output_headers(1, 1, 2, 0, 0, 0);
+       wprintf("<div id=\"banner\">\n");
+       wprintf("<table width=100%% border=0 bgcolor=#444455><tr>"
+               "<td><img src=\"static/summscreen_48x.gif\"></td><td>"
+               "<span class=\"titlebar\">"
+       );
+
+       snprintf(title, sizeof title, _("Summary page for %s"), WC->wc_fullname);
+       escputs(title);
+       wprintf("</span></td><td>\n");
+       wprintf("</td><td aling=right><span class=\"titlebar\">");
+       output_date();
+       wprintf("</span><br />");
+       offer_start_page();
+       wprintf("</td></tr></table>\n");
+
+       /**
+        * You guessed it ... we're going to refresh using ajax.
+        * In the future we might consider updating individual sections of the summary
+        * instead of the whole thing.
+        */
+       wprintf("</div>\n<div id=\"content\">\n");
+       summary_inner_div();
+       wprintf("</div>\n");
+
+       wprintf(
+               "<script type=\"text/javascript\">                                      "
+               " new Ajax.PeriodicalUpdater('content', 'summary_inner_div',            "
+               "                            { method: 'get', frequency: 60 }  );       "
+               "</script>                                                              \n"
+       );
+
        wDumpContent(1);
 }
+
+
+/*@}*/