From: Art Cancro Date: Tue, 24 Feb 2004 04:06:42 +0000 (+0000) Subject: * Changed the colors slightly in chat screen X-Git-Tag: v7.86~5583 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=79812d52371ef34769c2157c5d9b6fccacae1968;p=citadel.git * Changed the colors slightly in chat screen --- diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 657881e21..b25e4a053 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 505.2 2004/02/24 04:06:42 ajc +* Changed the colors slightly in chat screen + Revision 505.1 2004/02/20 06:07:06 ajc * Replaced the Java chat with a new system based on IFRAME's and JavaScript @@ -1668,5 +1671,3 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix - - diff --git a/webcit/paging.c b/webcit/paging.c index 92b735180..fc573cd62 100644 --- a/webcit/paging.c +++ b/webcit/paging.c @@ -1,4 +1,8 @@ -/* $Id$ */ +/* + * $Id$ + * + * Functions which implement the chat and paging facilities. + */ #include #include @@ -261,7 +265,7 @@ void chat_recv(void) { "\n" "\n" "\n" - "" + "" ); if (setup_chat_socket() != 0) { @@ -311,13 +315,13 @@ void chat_recv(void) { extract(name, WC->chatlines[i], 0); extract(text, WC->chatlines[i], 1); if (!strcasecmp(name, WC->wc_username)) { - wprintf(""); + wprintf(""); } else if (!strcmp(name, ":")) { - wprintf(""); + wprintf(""); } else { - wprintf(""); + wprintf(""); } escputs(name); wprintf(": ");