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