1 2002-12-11 Havoc Pennington <hp@pobox.com>
3 * dbus/dbus-types.h: add dbus_unichar
5 * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
7 * dbus/dbus-connection.c (dbus_connection_send_message): return
10 * dbus/dbus-transport.c: include dbus-watch.h
12 * dbus/dbus-connection.c: include dbus-message-internal.h
14 * HACKING: add file with coding guidelines stuff.
16 * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
17 handling here, for security purposes (as in vsftpd). Not actually
20 * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
21 system/libc usage here, as in vsftpd, for ease of auditing (and
22 should also simplify portability). Haven't actually moved all the
23 system/libc usage into here yet.
25 2002-11-25 Havoc Pennington <hp@pobox.com>
27 * dbus/dbus-internals.c (_dbus_verbose): fix to not
28 always print the first verbose message.
30 2002-11-24 Havoc Pennington <hp@pobox.com>
32 * test/echo-client.c, test/echo-server.c: cheesy test
35 * configure.in (AC_CHECK_FUNCS): check for writev
37 * dbus/dbus-message.c (_dbus_message_get_network_data): new
40 * dbus/dbus-list.c (_dbus_list_foreach): new function
42 * dbus/dbus-internals.c (_dbus_verbose): new function
44 * dbus/dbus-server.c, dbus/dbus-server.h: public object
45 representing a server that listens for connections.
47 * dbus/.cvsignore: create
49 * dbus/dbus-errors.h, dbus/dbus-errors.c:
50 public API for reporting errors
52 * dbus/dbus-connection.h, dbus/dbus-connection.c:
53 public object representing a connection that
54 sends/receives messages. (Same object used for
55 both client and server.)
57 * dbus/dbus-transport.h, dbus/dbus-transport.c:
58 Basic abstraction for different kinds of stream
59 that we might read/write messages from.
61 2002-11-23 Havoc Pennington <hp@pobox.com>
63 * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN
66 * dbus/dbus-test.c (main): add list test, and include
67 dbus-test.h as intended
69 * dbus/dbus-hash.c (_dbus_hash_table_remove_string)
70 (_dbus_hash_table_remove_int): return value indicates
71 whether the entry existed to remove
73 * dbus/dbus-list.c: add linked list utility class,
76 * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket
79 2002-11-23 Havoc Pennington <hp@pobox.com>
81 * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
82 DBUS_END_DECLS to nothing, that should fix this once and for all
84 * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
86 * dbus/dbus-message.c, dbus/dbus-hash.c:
87 add some missing @brief
89 2002-11-23 Havoc Pennington <hp@pobox.com>
91 * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS
92 to avoid confusing Doxygen
94 * dbus/dbus-hash.c: @} not }@
96 * dbus/dbus-message.c (struct DBusMessage): split out
99 2002-11-23 Havoc Pennington <hp@pobox.com>
101 * configure.in: pile on more warning flags if using gcc
103 * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have
104 to document static functions
106 * configure.in: add summary to end of configure so it
107 looks nice and attractive
109 * dbus/dbus-hash.c: finish implementation and write unit
112 * configure.in: add --enable-tests to enable unit tests
114 * dbus/dbus-test.c: test program to run unit tests
115 for all files in dbus/*, initially runs a test for
118 * dbus/dbus-internals.h: file to hold some internal utility stuff
120 2002-11-22 Havoc Pennington <hp@redhat.com>
122 * dbus/dbus-hash.c: copy in Tcl hash table, not yet
123 "ported" away from Tcl
125 * dbus/dbus-types.h: header for types such as dbus_bool_t
127 2002-11-22 Havoc Pennington <hp@redhat.com>
129 * dbus/dbus.h: fixups for doc warnings
131 * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up
133 (QUIET): make it quiet so we can see warnings
135 * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
137 2002-11-22 Havoc Pennington <hp@redhat.com>
139 * Makefile.am: include "Doxyfile" target in all-local
141 * configure.in: generate the Doxyfile
143 * Doxyfile.in: move Doxyfile here, so we can use
144 configure to generate a Doxyfile with the right
147 2002-11-22 Havoc Pennington <hp@redhat.com>
149 * dbus/dbus-message.c: move inline docs into .c file
151 * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
152 so all docs are under doc/
153 (MAN_EXTENSION): generate man pages. Use extension
154 ".3dbus" which matches ".3qt" on my system,
155 I guess this is OK, I don't know really.
156 (FILE_PATTERNS): look for .c files not .h, makes sense
159 2002-11-22 Havoc Pennington <hp@pobox.com>
161 * Makefile.am (SUBDIRS): rename subdir "server" to "bus"
162 because any app can be a server, and any app can be a client,
163 the bus is a special kind of server.
165 Thu Nov 21 23:35:31 2002 Zack Rusin <zack@kde.org>
167 * Doxyfile : adding. Still needs Makefile rules to be generated
168 automatically (just run "doxygen" in the toplevel dir for now to
171 * dbus/dbus-message.h : Adding sample docs (javadoc since
172 resembles gtk-doc a little more)
174 * dbus/dbus.h : Adding sample docs
176 2002-11-21 Havoc Pennington <hp@redhat.com>
178 * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION
179 so we can allow ourselves to include files directly,
180 instead of having to use dbus.h
182 * dbus/dbus.h: fill in
184 * dbus/dbus-message.h: sketch out a sample header file.
185 Include griping if you include it directly instead of
188 * dbus/dbus-macros.h: new file with macros for extern "C",
189 TRUE/FALSE, NULL, etc.
191 * doc/file-boilerplate.c: put include guards in here
193 2002-11-21 Havoc Pennington <hp@redhat.com>
195 * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
197 * COPYING: include the GPL as well, and license code
198 under both AFL and GPL.
200 2002-11-21 Havoc Pennington <hp@redhat.com>
202 * acconfig.h: get rid of this
204 * autogen.sh (run_configure): add --no-configure option
206 * configure.in: remove AC_ARG_PROGRAM to make
207 autoconf complain less. add AC_PREREQ.
208 add AC_DEFINE third arg.
210 2002-11-21 Anders Carlsson <andersca@codefactory.se>
213 Fix references so we can distcheck.
215 2002-11-21 Havoc Pennington <hp@redhat.com>
217 * Initial module creation