4 * Displays the "Summary Page"
10 * Display today's date in a friendly format
12 void output_date(void) {
18 localtime_r(&now
, &tm
);
20 wc_strftime(buf
, 32, "%A, %x", &tm
);
30 void dummy_section(void) {
31 svput("BOXTITLE", WCS_STRING
, "(dummy section)");
32 do_template("beginboxx", NULL
);
33 wprintf(_("(nothing)"));
34 do_template("endbox", NULL
);
39 * New messages section
41 void new_messages_section(void) {
45 int number_of_rooms_to_check
;
46 char *rooms_to_check
= "Mail|Lobby";
49 number_of_rooms_to_check
= num_tokens(rooms_to_check
, '|');
50 if (number_of_rooms_to_check
== 0) return;
52 wprintf("<table border=0 width=100%%>\n");
53 for (i
=0; i
<number_of_rooms_to_check
; ++i
) {
54 extract_token(room
, rooms_to_check
, i
, '|', sizeof room
);
56 serv_printf("GOTO %s", room
);
57 serv_getln(buf
, sizeof buf
);
59 extract_token(room
, &buf
[4], 0, '|', sizeof room
);
60 wprintf("<tr><td><a href=\"dotgoto?room=");
64 wprintf("</a></td><td>%d/%d</td></tr>\n",
65 extract_int(&buf
[4], 1),
66 extract_int(&buf
[4], 2)
70 wprintf("</table>\n");
78 void tasks_section(void) {
88 Buf
= NewStrBufPlain(HKEY("_TASKS_"));
91 if (WCC
->wc_view
!= VIEW_TASKS
) {
95 num_msgs
= load_msg_ptrs("MSGS ALL", 0);
99 at
= GetNewHashPos(WCC
->summ
, 0);
100 while (GetNextHashPos(WCC
->summ
, at
, &HKLen
, &HashKey
, &vMsg
)) {
101 Msg
= (message_summary
*) vMsg
;
102 display_task(Msg
, 0);
106 if (calendar_summary_view() < 1) {
108 wprintf(_("(None)"));
109 wprintf("</i><br />\n");
117 void calendar_section(void) {
123 message_summary
*Msg
;
128 Buf
= NewStrBufPlain(HKEY("_CALENDAR_"));
131 if ( (WC
->wc_view
!= VIEW_CALENDAR
) && (WC
->wc_view
!= VIEW_CALBRIEF
) ) {
135 num_msgs
= load_msg_ptrs("MSGS ALL", 0);
138 parse_calendar_view_request(&c
);
141 at
= GetNewHashPos(WCC
->summ
, 0);
142 while (GetNextHashPos(WCC
->summ
, at
, &HKLen
, &HashKey
, &vMsg
)) {
143 Msg
= (message_summary
*) vMsg
;
144 load_calendar_item(Msg
, 0, &c
);
147 if (calendar_summary_view() < 1) {
149 wprintf(_("(Nothing)"));
150 wprintf("</i><br />\n");
155 * Server info section (fluff, really)
157 void server_info_section(void) {
160 snprintf(message
, sizeof message
,
161 _("You are connected to %s, running %s with %s, server build %s and located in %s. Your system administrator is %s."),
162 ChrPtr(serv_info
.serv_humannode
),
163 ChrPtr(serv_info
.serv_software
),
165 ChrPtr(serv_info
.serv_svn_revision
),
166 ChrPtr(serv_info
.serv_bbs_city
),
167 ChrPtr(serv_info
.serv_sysadm
));
172 * Now let's do three columns of crap. All portals and all groupware
173 * clients seem to want to do three columns, so we'll do three
174 * columns too. Conformity is not inherently a virtue, but there are
175 * a lot of really shallow people out there, and even though they're
176 * not people I consider worthwhile, I still want them to use WebCit.
178 void summary_inner_div(void) {
179 wprintf("<div class=\"fix_scrollbar_bug\">"
180 "<table width=\"100%%\" cellspacing=\"10\" cellpadding=\"0\">"
186 wprintf("<td width=33%%>");
187 wprintf("<div class=\"box\">");
188 wprintf("<div class=\"boxlabel\">");
189 wprintf(_("Messages"));
190 wprintf("</div><div class=\"boxcontent\">");
191 wprintf("<div id=\"msg_inner\">");
192 new_messages_section();
193 wprintf("</div></div></div>");
199 wprintf("<td width=33%%>");
200 wprintf("<div class=\"box\">");
201 wprintf("<div class=\"boxlabel\">");
203 wprintf("</div><div class=\"boxcontent\">");
204 wprintf("<div id=\"tasks_inner\">");
206 wprintf("</div></div></div>");
212 wprintf("<td width=33%%>");
213 wprintf("<div class=\"box\">");
214 wprintf("<div class=\"boxlabel\">");
215 wprintf(_("Today on your calendar"));
216 wprintf("</div><div class=\"boxcontent\">");
217 wprintf("<div id=\"calendar_inner\">");
219 wprintf("</div></div></div>");
222 wprintf("</tr><tr valign=top>");
225 * Row Two - Column One
227 wprintf("<td colspan=2>");
228 wprintf("<div class=\"box\">");
229 wprintf("<div class=\"boxlabel\">");
230 wprintf(_("Who's online now"));
231 wprintf("</div><div class=\"boxcontent\">");
232 wprintf("<div id=\"who_inner\">");
233 do_template("wholistsummarysection", NULL
);
234 wprintf("</div></div></div>");
238 * Row Two - Column Two
240 wprintf("<td width=33%%>");
241 wprintf("<div class=\"box\">");
242 wprintf("<div class=\"boxlabel\">");
243 wprintf(_("About this server"));
244 wprintf("</div><div class=\"boxcontent\">");
245 wprintf("<div id=\"info_inner\">");
246 server_info_section();
247 wprintf("</div></div></div>");
254 wprintf("</tr></table>");
259 * Display this user's summary page
264 output_headers(1, 1, 2, 0, 0, 0);
265 wprintf("<div id=\"banner\">\n");
266 wprintf("<div class=\"room_banner\">");
267 wprintf("<img src=\"static/summscreen_48x.gif\">");
269 snprintf(title
, sizeof title
, _("Summary page for %s"), ChrPtr(WC
->wc_fullname
));
271 wprintf("</h1><h2>");
273 wprintf("</h2></div>");
274 wprintf("<div id=\"actiondiv\">");
275 wprintf("<ul class=\"room_actions\">\n");
276 wprintf("<li class=\"start_page\">");
277 offer_start_page(NULL
, &NoCtx
);
278 wprintf("</li></ul>");
283 * You guessed it ... we're going to refresh using ajax.
284 * In the future we might consider updating individual sections of the summary
285 * instead of the whole thing.
287 wprintf("<div id=\"content\" class=\"service\">\n");
292 "<script type=\"text/javascript\"> "
293 " new Ajax.PeriodicalUpdater('msg_inner', 'new_messages_html', "
294 " { method: 'get', frequency: 60 } ); "
295 " new Ajax.PeriodicalUpdater('tasks_inner', 'tasks_inner_html', "
296 " { method: 'get', frequency: 120 } ); "
297 " new Ajax.PeriodicalUpdater('calendar_inner', 'calendar_inner_html', "
298 " { method: 'get', frequency: 90 } ); "
299 " new Ajax.PeriodicalUpdater('do_template', 'template=wholistsummarysection', "
300 " { method: 'get', frequency: 30 } ); "
311 WebcitAddUrlHandler(HKEY("new_messages_html"), new_messages_section
, AJAX
);
312 WebcitAddUrlHandler(HKEY("tasks_inner_html"), tasks_section
, AJAX
);
313 WebcitAddUrlHandler(HKEY("calendar_inner_html"), calendar_section
, AJAX
);
314 WebcitAddUrlHandler(HKEY("mini_calendar"), ajax_mini_calendar
, AJAX
);
315 WebcitAddUrlHandler(HKEY("summary"), summary
, 0);
316 WebcitAddUrlHandler(HKEY("summary_inner_div"), summary_inner_div
, AJAX
);