]> code.citadel.org Git - citadel.git/blob - citadel/ChangeLog
* Yanked the citadelapi.c module. This wasn't working out well.
[citadel.git] / citadel / ChangeLog
1 Mon Aug 31 22:47:58 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
2         * Yanked the citadelapi.c module.  This wasn't working out well.
3         * techdocs/citadelapi.txt - began documenting the new API to be used
4           by modules which will be dynamic linked into the server - most of
5           this API is existing server functions.
6         * Added a ForEachUser() function with callback mechanism, and reworked
7           cmd_list() to use it.
8
9 Sun Aug 30 21:52:43 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
10         * Moved all of the gdbm databases to a separate "data" directory.
11
12 1998-08-26 Nathan Bryant <bryant@cs.usm.maine.edu>
13         * Makefile.in: realclean removes Makefile, fixed `touch citadel.h'
14           problem
15
16 1998-08-25 Nathan Bryant <bryant@cs.usm.maine.edu>
17         * room_ops.c: include time.h
18         * userlist.c, whobbs.c, serv_chat.c, user_ops.c, sysdep.c, stats.c,
19           citadel_decls.h, commands.c, messages.h, routines.h, routines2.h:
20           remove duplicated declarations
21
22 Mon Aug 24 23:45:01 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
23         * setup.c: Removed yesno_s()
24         * citadel.h, room_ops.c: added QRmtime field to struct quickroom,
25           modified whenever a room is modified or posted in.
26         * citadelapi.c: Added CtdlForEachRoom() function
27
28 Mon Aug 24 20:04:04 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
29         * Makefile.in: new target `cleaner' does the same as `realclean' 
30           without removing sysdep.h
31         * proto.h: is bad. eliminate. I've moved the prototypes into several
32           header files, one per .c file
33
34 Mon Aug 24 00:45:55 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
35         * Added a CtdlGotoRoom() function to the CitadelAPI.
36  
37 Sun Aug 23 21:47:00 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
38         * sysoputil is finally dead!  Removed it from the build.
39         * Added userpurge.c server extension (initial implementation)
40
41 Tue Aug 18 00:42:33 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
42         * Makefile.in: `clean' target no longer rm's sysdep.h; new target
43           `realclean' removes everything clean does, plus sysdep.h, plus
44           target binaries.
45         * Configure: add -Wstrict-prototypes to CFLAGS for gcc systems
46         * *.[ch]: protoized. Added several new header files containing
47           prototypes and other external declarations; many duplicated
48           declarations still should be moved to header files. proto.h must die
49           as well, IMHO.
50
51 Mon Aug 17 23:52:13 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
52         * Implemented a bunch of user account related functions in the
53           CitadelAPI library.
54
55 Mon Aug 17 20:01:18 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
56         * Fixed the crash problem.  It wasn't AGUP/ASUP, but rather a buffer
57           overrun in getuser() (thanks, Nathan).  Implemented overrun checks
58           in getuser(), getroom(), and getfloor() to prevent future problems.
59
60 Mon Aug 17 00:06:52 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
61         * Updated citmail.c with the latest stuff from the production system.
62         * Implemented AGUP and ASUP commands, but AGUP crashes the server
63           after its first successful use (user-not-found's don't affect it).
64
65 Thu Aug  6 19:25:01 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
66         * Got the CitadelAPI library to the point where the server can start
67           up an extension, and the extension will connect to the server, do
68           some initialization, call a user-supplied CtdlMain(), and exit.  Also
69           hacked together a _temporary_ form of the new EXTN server command.
70  
71 Wed Aug  5 23:02:22 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
72         * Second attempt at getting the server API started.  Now it runs
73           outside of the server and builds a connection.
74
75 Tue Aug  4 18:33:06 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
76         * Modified the appearance of Internet addresses when they arrive on
77           a Citadel system.
78         * Removed the <E> field from the message format writeup in hack.txt.
79         * Fixed-up citmail.c so that it doesn't try to do database lookups.
80
81 Mon Aug  3 23:01:37 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
82         * Started developing the server-side API.  This is in its very
83           initial stages.  See serverapi.c and techdoc/api.txt
84
85 1998-08-02  Nathan Bryant  <bryant@cs.usm.maine.edu>
86         * Makefile.in: added config_decls.h to dependencies
87
88 Sun Aug  2 21:09:09 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
89         * config_defs.h: renamed to config_decls.h
90         * config.c, sysoputil.c: updated to reflect the above
91
92 Sun Aug  2 18:52:05 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
93         * config_defs.h: new file, contains external declarations from config.c
94         * config.c: moved defs to config_defs.h, use PATH_MAX from <limits.h>
95           for bbs_home_directory
96         * mailinglist.c, support.c: include <string.h>
97         * sysoputil.c: include <string.h>, <limits.h>, "config_defs.h", remove
98           duplicated defs, replace gets() call with fgets()
99         * user_ops.c: define _XOPEN_SOURCE_EXTENDED
100
101 Sat Aug  1 18:32:52 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
102         * ipc_c_tcp.c: fixed order of memcpy parameters after gethostbyname
103
104 Sun Jul 19 17:26:12 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
105         * ChangeLog: reordered; the GNU standard is to add new entries to the
106           top.
107         * .cvsignore: added userlist
108
109 Sun Jul 12 20:58:59 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
110         * Finished migrating everything to the new data store.
111         * Replaced the binary "calllog" with the ASCII "citadel.log"
112         * Began converting broken utilities that depend on the old data store
113
114 Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
115         * Makefile.in: removed msgstats
116
117 Fri Jul 10 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
118         * Initial CVS import