From c009225e00e50d25c8c3dd43875ec5ddfa1ceb99 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 22 Dec 2005 17:08:05 +0000 Subject: [PATCH] * Added missing HTTP headers to do_chat() --- webcit/ChangeLog | 3 +++ webcit/configure.in | 8 +++++++- webcit/paging.c | 5 ++++- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index c06d91b62..7c9cd80b6 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,5 +1,8 @@ $Id$ +Thu Dec 22 12:07:38 EST 2005 ajc +* Added missing HTTP headers to do_chat() + Wed Dec 21 10:22:51 EST 2005 ajc * configure.in: use different variable names for each AC_CHECK_PROG macro, because autoconf will see the same variable name as used before, pull some diff --git a/webcit/configure.in b/webcit/configure.in index 07b75866f..b7ec53f18 100644 --- a/webcit/configure.in +++ b/webcit/configure.in @@ -9,8 +9,8 @@ AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE") AC_DEFINE_UNQUOTED(VERSION, "$VERSION") AC_SUBST(PACKAGE) AC_SUBST(VERSION) -AC_SUBST(PROG_SUBDIRS) +AC_SUBST(PROG_SUBDIRS) AC_CANONICAL_HOST AC_PROG_INSTALL AC_CHECK_PROG(SED, sed, sed, no) @@ -350,3 +350,9 @@ AC_SUBST(SETUP_LIBS) AC_OUTPUT(Makefile po/Makefile ) +echo ------------------------------------------------------------------------ +echo 'zlib compression: ' $ok_zlib +echo 'Calendar support: ' $ok_libical +echo 'Character set conversion support:' $ok_iconv +echo 'National language support: ' $ok_nls +echo diff --git a/webcit/paging.c b/webcit/paging.c index 89cd5b04e..c9d14b927 100644 --- a/webcit/paging.c +++ b/webcit/paging.c @@ -138,9 +138,12 @@ void do_chat(void) } /* WebCit Chat works by having transmit, receive, and refresh - * frames. Load the frameset. + * frames. Load the frameset. (This isn't AJAX but the headers + * output by begin_ajax_response() happen to be the ones we need.) */ + begin_ajax_response(); do_template("chatframeset"); + end_ajax_response(); return; } -- 2.39.2