* fleshed out the message headers a bit
[citadel.git] / ctdlphp / ChangeLog
1  $Log$
2  Revision 1.20  2003/11/22 04:33:22  ajc
3  * fleshed out the message headers a bit
4
5  Revision 1.19  2003/11/21 18:22:19  ajc
6  * Replaced the two-second sleep (and associated race condition) for the
7    session proxy to start, with a loop that attempts connection ten times
8    a second for ten seconds, resulting in faster, more reliable startup.
9
10  Revision 1.18  2003/11/18 04:58:34  ajc
11  * Added ctdlelements.php ... this is to be used for functions which fetch
12    Citadel protocol data and convert it to insertable HTML.
13  * Implemented a first cut of a "read message" function.
14
15  Revision 1.17  2003/11/14 17:15:19  ajc
16  * Identify our message format preference (HTML followed by plain text)
17    to the server upon connection, so MSG4 commands run properly.
18
19  Revision 1.16  2003/11/14 17:09:04  ajc
20  * Added a basic read loop ... currently only fetches message numbers
21
22  Revision 1.15  2003/11/09 17:53:47  ajc
23  * Moved all of the session-management code from ctdlheader.php to
24    ctdlsession.php, leaving only a single function call.  This will
25    hopefully make ctdlheader.php more palatable to non-programmers.
26
27  Revision 1.14  2003/11/07 15:56:13  ajc
28  * ctdlprotocol.php: known room list fetch now sets subscript "hasnewmsgs"
29  * listrooms.php: render rooms with unseen messages in boldface
30
31  Revision 1.13  2003/11/05 03:29:12  ajc
32  * Added a room list function to the library
33  * Threw together temporary room list and goto pages to demonstrate
34
35  Revision 1.12  2003/11/04 19:17:16  ajc
36  * Added an initial version of the goto command
37
38  Revision 1.11  2003/11/03 05:32:57  ajc
39  * Minor code cleanups
40  * ctdl_mesg() now returns ready-to-output HTML to the caller, instead of
41    outputting it itself.
42
43  Revision 1.10  2003/11/02 05:35:11  ajc
44  * who.php: added
45  * ctdlprotocol.php: worked out a tentative data API using this function.
46
47  Revision 1.9  2003/11/02 04:26:11  ajc
48  * Cleaned up the pages in preparation for handing it off to the extremely
49    talented developers and webmasters who will soon be working on it.
50
51  Revision 1.8  2003/11/02 04:12:27  ajc
52  * welcome.php: added.
53  * do_login.php: reworked to provide a squeaky-clean transition to
54    the welcome.php page.  welcome.php can now contain whatever the site's
55    webmaster wants it to, without being clogged up with login code.
56
57  Revision 1.7  2003/11/02 04:02:36  ajc
58  * Firmed up the login/logout process
59  * Don't allow load of pages other than login.php logout.php do_login.php
60    if the session is not logged in.
61  * Removed sessionproxy.c
62
63  Revision 1.6  2003/11/02 02:39:30  ajc
64  * Added a proper CVS ID and Copyright disclaimer to every file.  Other
65    developers and webmasters working on the project, please add your own
66    identities to the copyright notice of any module you work on.
67
68  Revision 1.5  2003/11/01 23:29:04  ajc
69  * Allow the session proxy to time out after 15 minutes.
70  * This program now requires PHP v4.3.0 or newer due to bugs in the socket
71    functions of PHP 4.1.  ctdlheader.php now enforces this.
72
73  Revision 1.4  2003/11/01 06:12:20  ajc
74  * Got login/logout working.  Still need to redirect unloggedin sessions to
75    a login page.
76
77  Revision 1.3  2003/11/01 05:10:49  ajc
78  * When sending the QUIT command to the server, output a bunch more newlines
79    so the session proxy has a chance to see that the Citadel server closed
80    the connection.  This will make the proxy shut down as well.
81
82  Revision 1.2  2003/10/31 05:03:46  ajc
83  * Stabilized the session proxy
84  * Added 100 mode text downloads
85  * Print server hello banner
86
87  Revision 1.1  2003/10/31 03:47:13  ajc
88  * Initial CVS import