X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fsummary.c;h=1c37a0f15c775b5ab75dc380c00f552e4d5f8d0e;hb=1533619a044012ab46b460c4560763fb82d7ee74;hp=582ce2b243ed7f2ed4c8752d0bea9cd266dc515a;hpb=69bb8812b7a47dfcd3ec4ccd69fd8f96bc479238;p=citadel.git diff --git a/webcit/summary.c b/webcit/summary.c index 582ce2b24..1c37a0f15 100644 --- a/webcit/summary.c +++ b/webcit/summary.c @@ -36,10 +36,25 @@ void output_date(void) { wc_printf("%s", buf); } +void tmplput_output_date(StrBuf *Target, WCTemplputParams *TP) +{ + struct tm tm; + time_t now; + char buf[128]; + size_t n; + + time(&now); + localtime_r(&now, &tm); + + n = wc_strftime(buf, 32, "%A, %x", &tm); + StrBufAppendBufPlain(Target, buf, n, 0); +} + + /* * New messages section */ -void new_messages_section(void) { +void new_messages_section(StrBuf *Target, WCTemplputParams *TP) { char buf[SIZ]; char room[SIZ]; int i; @@ -76,7 +91,7 @@ void new_messages_section(void) { /* * Task list section */ -void tasks_section(void) { +void tasks_section(StrBuf *Target, WCTemplputParams *TP) { int num_msgs = 0; HashPos *at; const char *HashKey; @@ -123,7 +138,7 @@ void tasks_section(void) { /* * Calendar section */ -void calendar_section(void) { +void calendar_section(StrBuf *Target, WCTemplputParams *TP) { char cmd[SIZ]; int num_msgs = 0; HashPos *at; @@ -172,171 +187,13 @@ void calendar_section(void) { __calendar_Cleanup(&v); } -/* - * Server info section (fluff, really) - */ -void server_info_section(void) { - char message[512]; - wcsession *WCC = WC; - - snprintf(message, sizeof message, - _("You are connected to %s, running %s with %s, server build %s and located in %s. Your system administrator is %s."), - ChrPtr(WCC->serv_info->serv_humannode), - ChrPtr(WCC->serv_info->serv_software), - PACKAGE_STRING, - ChrPtr(WCC->serv_info->serv_svn_revision), - ChrPtr(WCC->serv_info->serv_bbs_city), - ChrPtr(WCC->serv_info->serv_sysadm)); - escputs(message); -} - -/* - * 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 - * a lot of really shallow people out there, and even though they're - * not people I consider worthwhile, I still want them to use WebCit. - */ -void summary_inner_div(void) { - - wc_printf(""); - wc_printf(""); - - /* - * Column One - */ - wc_printf(""); - - /* - * Column Two - */ - wc_printf(""); - - /* - * Column Three - */ - wc_printf(""); - - wc_printf(""); - - /* - * Row Two - Column One - */ - wc_printf(""); - - /* - * Row Two - Column Two - */ - wc_printf(""); - - - /* - * End of columns - */ - wc_printf("
"); - wc_printf("
"); - wc_printf("
"); - wc_printf(_("Messages")); - wc_printf("
"); - wc_printf("
"); - new_messages_section(); - wc_printf("
"); - wc_printf("
"); - wc_printf("
"); - wc_printf("
"); - wc_printf(_("Tasks")); - wc_printf("
"); - wc_printf("
"); - tasks_section(); - wc_printf("
"); - wc_printf("
"); - wc_printf("
"); - wc_printf("
"); - wc_printf(_("Today on your calendar")); - wc_printf("
"); - wc_printf("
"); - calendar_section(); - wc_printf("
"); - wc_printf("
"); - wc_printf("
"); - wc_printf("
"); - wc_printf(_("Who's online now")); - wc_printf("
"); - wc_printf("
"); - do_template("who_summary"); - wc_printf("
"); - wc_printf("
"); - wc_printf("
"); - wc_printf("
"); - wc_printf(_("About this server")); - wc_printf("
"); - wc_printf("
"); - server_info_section(); - wc_printf("
"); - wc_printf("
"); -} - - -/* - * Display this user's summary page - */ -void summary(void) { - char title[256]; - - output_headers(1, 1, 2, 0, 0, 0); - wc_printf("
\n"); - wc_printf(""); - wc_printf(""); - wc_printf("
\"\"

"); - snprintf(title, sizeof title, _("Summary page for %s"), - ( (WC->logged_in) ? ChrPtr(WC->wc_fullname) : ChrPtr(WC->serv_info->serv_humannode)) - ); - escputs(title); - wc_printf("

"); - output_date(); - wc_printf("

"); - wc_printf("
"); - wc_printf(""); - wc_printf("
"); /* actiondiv */ - wc_printf("
"); /* banner */ - - /* - * 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. - */ - wc_printf("
\n"); - summary_inner_div(); - wc_printf("
\n"); - - wc_printf( - " \n" - ); - - wDumpContent(1); -} - void InitModule_SUMMARY (void) { - WebcitAddUrlHandler(HKEY("new_messages_html"), "", 0, new_messages_section, AJAX); - WebcitAddUrlHandler(HKEY("tasks_inner_html"), "", 0, tasks_section, AJAX); - WebcitAddUrlHandler(HKEY("calendar_inner_html"), "", 0, calendar_section, AJAX); - WebcitAddUrlHandler(HKEY("mini_calendar"), "", 0, ajax_mini_calendar, AJAX); - WebcitAddUrlHandler(HKEY("summary"), "", 0, summary, 0); - WebcitAddUrlHandler(HKEY("summary_inner_div"), "", 0, summary_inner_div, AJAX); + RegisterNamespace("TIME:NOW", 0, 0, tmplput_output_date, NULL, CTX_NONE); + RegisterNamespace("SUMMARY:NEWMESSAGES_SELECTION", 0, 0, new_messages_section, NULL, CTX_NONE); + RegisterNamespace("SUMMARY:TASKSSECTION", 0, 0, tasks_section, NULL, CTX_NONE); + RegisterNamespace("SUMMARY:CALENDAR_SECTION", 0, 0, calendar_section, NULL, CTX_NONE); }