* Changed the color of the side button bar
authorArt Cancro <ajc@citadel.org>
Wed, 30 Mar 2005 21:44:47 +0000 (21:44 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 30 Mar 2005 21:44:47 +0000 (21:44 +0000)
* Removed session ID's from wholist display, because they are only
  interesting to computers, not to people.
* Also changed the session ID variable (we still need it internally) from
  a char to an int, because session numbers are big now.

webcit/ChangeLog
webcit/static/head.html
webcit/who.c

index a607c52f011dbf834ebd9ad5aa9053cd9b44b191..b44b782eb7d30e21c4bf0db45231b41ff67d19b1 100644 (file)
@@ -1,4 +1,11 @@
 $Log$
+Revision 603.14  2005/03/30 21:44:44  ajc
+* Changed the color of the side button bar
+* Removed session ID's from wholist display, because they are only
+  interesting to computers, not to people.
+* Also changed the session ID variable (we still need it internally) from
+  a char to an int, because session numbers are big now.
+
 Revision 603.13  2005/03/30 17:27:55  ajc
 * serv_crypto.c: made changes to OpenSSL calls ... removed unnecessary
   calls and also enabled SSLv3/TLSv1
@@ -2488,3 +2495,4 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
+
index 3b1f1286c092d9fa95ecae1edf812f15695b0c85..e67f362e1dad6833a1dfb509987aad073c864805 100644 (file)
@@ -32,7 +32,7 @@ body {
        left:0px;
        width: 15%;
        height:100%;
-       background: #eeeecc;
+       background: #ffffee;
 }
 
 * html #iconbar {
@@ -103,7 +103,7 @@ body {
        width: 100%;
        padding: 0 0 1em 0;
        margin-bottom: 1em;
-       background-color: #eeeecc;
+       background-color: #ffffee;
        color: #aaaaaa;
        font-size: 8pt;
 }
@@ -128,7 +128,7 @@ body {
 
 #button li a {
        display: block;
-       background-color: #eeeecc;
+       background-color: #ffffee;
        color: #000000;
        text-decoration: none;
        width: 100%;
index bc4a55246c08e4e9944c0d833a26348402bb0e09..18d1f0844ae063c0b5cf5fe108d35780d6948c6d 100644 (file)
@@ -35,8 +35,9 @@
  */
 void whobbs(void)
 {
-       char buf[SIZ], sess, user[SIZ], room[SIZ], host[SIZ],
+       char buf[SIZ], user[SIZ], room[SIZ], host[SIZ],
                realroom[SIZ], realhost[SIZ];
+       int sess;
        time_t last_activity;
        time_t now;
        int bg = 0;
@@ -64,7 +65,7 @@ void whobbs(void)
        wprintf("<div id=\"fix_scrollbar_bug\">"
                "<table border=0 cellspacing=0 width=100%% bgcolor=\"#FFFFFF\">"
                "<tr>\n");
-       wprintf("<TH COLSPAN=4>Session ID</TH>\n");
+       wprintf("<TH COLSPAN=3>&nbsp;</TH>\n");
        wprintf("<TH>User Name</TH>\n");
        wprintf("<TH>Room</TH>");
        wprintf("<TH>From host</TH>\n</TR>\n");
@@ -96,7 +97,7 @@ void whobbs(void)
                        );
 
 
-                       wprintf("<TD>%d</TD><TD>", sess);
+                       wprintf("<td>");
                        if ((WC->is_aide) &&
                            (sess != WC->ctdl_pid)) {
                                wprintf(" <A HREF=\"/terminate_session&which_session=%d&session_owner=", sess);