]> code.citadel.org Git - citadel.git/blobdiff - webcit/ChangeLog
* Added the ability to compose messages with file attachments uploaded from
[citadel.git] / webcit / ChangeLog
index 68107ffb633586dfe46bbb75ee54dea13a5612aa..62a91e0c6ed368a076db323e0eac64e8861dc075 100644 (file)
@@ -1,4 +1,56 @@
 $Log$
+Revision 410.15  2003/04/30 05:00:00  ajc
+* Added the ability to compose messages with file attachments uploaded from
+  the browser
+
+Revision 410.14  2003/04/27 04:46:02  ajc
+* Replace LKRN/LKRO in "folders view" room list with a single LKRA that
+  observes the flag designating the presence of new messages.  (The "rooms
+  view" uses an LKRN/LKRO pair *per floor* and has the same inefficiency,
+  but that view may get axed soon.)
+
+Revision 410.13  2003/04/26 21:57:53  ajc
+* tcp_sockets.c: when an outgoing socket connection fails, close the socket
+  before returning an error code to avoid a file descriptor leak
+
+Revision 410.12  2003/04/19 21:42:36  ajc
+* Repaired all my b0rken COLOR tags
+* Replaced most FONT tags with SPAN tags
+* Added new styles
+
+Revision 410.11  2003/04/19 19:58:10  ajc
+* Lots of great changes from Nick to make the site CSS-enabled.
+
+Revision 410.10  2003/04/14 04:04:40  ajc
+* First cut of CSS-izing WebCit.  Probably b0rken.
+
+Revision 410.9  2003/04/09 04:02:32  ajc
+* Remove the defaulthost/defaultport vs. c_host/c_port stuff -- we haven't
+  supported the idea of one WebCit connecting to multiple Citadels for a
+  long time.  Now it's just one set of variables, called ctdlhost/ctdlport.
+* When connecting to Citadel through a Unix domain socket, don't try to make
+  the Java chat applet available.
+
+Revision 410.8  2003/03/31 03:32:19  ajc
+* messages.c: check for 000 terminator while parsing RFC822 headers to
+  prevent getting hung up while displaying certain badly formatted messages.
+
+Revision 410.7  2003/03/30 06:13:19  ajc
+* When reading from the server, do not treat CR as end-of-line because
+  there's probably an LF coming after it.  Instead, keep reading to the LF
+  and then strip both.
+* No not underline links in the icon bars
+
+Revision 410.6  2003/03/17 04:17:41  ajc
+* Call to accept() was being made with an uninitialized variable for the
+  third argument.  Changed the second and third argument to NULL and 0 because
+  we don't really need accept() to fill up a buffer full of information that
+  we'll never use.  (Thanks to SteveV for reporting the bug and helping to
+  troubleshoot it.)
+* Removed the mutex wrapper around select() because we don't need it.  All
+  idle worker threads now block on select() and one of them will wake up when
+  a connection arrives.
+
 Revision 410.5  2003/03/15 20:55:03  ajc
 * When a requested image is not available on the Citadel server, send a
   1x1 transparent GIF instead of 404 error.