2003-01-15 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git] / ChangeLog
1 2003-01-15  Havoc Pennington  <hp@redhat.com>
2
3         * test/Makefile.am: fix so that test source code ends up in the
4         distribution on make distcheck
5
6 2003-01-15  Havoc Pennington  <hp@redhat.com>
7
8         Release 0.1.
9         
10         * NEWS: update  
11
12 2003-01-15  Havoc Pennington  <hp@redhat.com>
13
14         * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
15         fix build when --disable-tests
16
17         * Makefile.am (EXTRA_DIST): put HACKING in here
18
19         * HACKING: document procedure for making a tarball release.
20
21 2003-01-14  Anders Carlsson  <andersca@codefactory.se>
22
23         * bus/connection.c: (connection_error_handler),
24         (bus_connection_setup):
25         * bus/main.c: (main):
26         Make sure that the DBusConnectionData struct is NULLed
27         out to prevent a segfault.
28         
29         * dbus/dbus-errors.c: (dbus_result_to_string):
30         * dbus/dbus-errors.h:
31         * dbus/dbus-message.c: (dbus_message_get_fields),
32         (dbus_message_get_fields_valist), (_dbus_message_test):
33         * dbus/dbus-message.h:
34         Make dbus_message_get_fields return a result code so we can
35         track invalid fields as well as oom.
36         
37 2003-01-11  Havoc Pennington  <hp@pobox.com>
38
39         * configure.in: change --enable-test/--enable-ansi action-if-given
40         to enable_foo=$enableval instead of enable_foo=yes
41
42 2003-01-08  Havoc Pennington  <hp@pobox.com>
43
44         * dbus/dbus-string.c (_dbus_string_align_length): new function
45
46         * dbus/dbus-test-main.c: move main() for test app here
47         * dbus/dbus-test.c
48         (dbus_internal_symbol_do_not_use_run_tests): we have to export a
49         symbol to run tests, because dbus-test isn't in the main 
50         library
51
52         Code review nitpicks.
53         
54         * dbus/dbus-message.c (dbus_message_write_header): add newlines
55         for people with narrow emacs ;-). Assert client_serial was filled
56         in. Assert message->name != NULL.
57         (dbus_message_append_fields): have "first_field_type" arg separate
58         from va list, needed for C++ binding that also uses varargs IIRC
59         and helps with type safety
60         (dbus_message_new): add @todo about using DBusString to store
61         service/name internally
62         (dbus_message_new): don't leak ->service and ->name on OOM later
63         in the function
64         (dbus_message_unref): free the service name
65         (dbus_message_get_fields): same change to varargs
66         i.e. first_field_type
67         (_dbus_message_loader_return_buffer): assert that the message data
68         is aligned (if not it's a bug in our code). Put in verbose griping
69         about why we set corrupted = TRUE.
70         (decode_header_data): add FIXME that char* is evil.  Was going to
71         add FIXME about evil locale-specific string.h strncmp, but just
72         switched to wacky string-as-uint32 optimization. Move check for
73         "no room for field name" above get_const_data_len() to avoid
74         assertion failure in get_const_data_len if we have trailing 2
75         bytes or the like. Check for service and name fields being
76         provided twice. Don't leak service/name on error. Require field
77         names to be aligned to 4 bytes.
78
79         * dbus/dbus-marshal.c: move byte swap stuff to header
80         (_dbus_pack_int32): uscore-prefix
81         (_dbus_unpack_int32): uscore-prefix
82         (_dbus_unpack_uint32): export
83         (_dbus_demarshal_string): add @todo complaining about use of
84         memcpy()
85         (_dbus_marshal_get_field_end_pos): add @todo about bad error
86         handling allowing corrupt data to go unchecked
87
88 2003-01-08  Havoc Pennington  <hp@redhat.com>
89
90         * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write 
91         to the select() as needed for authentication. (should be using
92         _dbus_poll() not select, but for another day)
93
94         * dbus/dbus.h: include dbus/dbus-protocol.h
95
96 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
97
98         * dbus/Makefile.am (dbusinclude_HEADERS): Install
99         dbus-connection.h
100
101 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
102
103         * dbus/dbus-internals.c: (_dbus_type_to_string):
104         New function that returns a string describing a type.
105         
106         * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
107         * dbus/dbus-marshal.h:
108         * dbus/dbus-message.c: (dbus_message_get_fields_valist),
109         (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
110         (dbus_message_iter_get_byte_array):
111         * dbus/dbus-message.h:
112         Add new convenience functions for appending and getting message fields.
113         Also add demarshalling routines for byte arrays.
114
115 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
116
117         * dbus/dbus-connection-internal.h:
118         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
119         (_dbus_connection_get_next_client_serial),
120         (dbus_connection_send_message):
121         * dbus/dbus-internals.h:
122         * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
123         (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
124         (_dbus_marshal_uint32), (_dbus_demarshal_double),
125         (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
126         (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
127         (_dbus_verbose_bytes), (_dbus_marshal_test):
128         * dbus/dbus-marshal.h:
129         * dbus/dbus-message-internal.h:
130         * dbus/dbus-message.c: (_dbus_message_set_client_serial),
131         (dbus_message_write_header), (_dbus_message_lock),
132         (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
133         (dbus_message_get_name), (dbus_message_append_int32),
134         (dbus_message_append_uint32), (dbus_message_append_double),
135         (dbus_message_append_string), (dbus_message_append_byte_array),
136         (dbus_message_get_fields_iter), (dbus_message_iter_ref),
137         (dbus_message_iter_unref), (dbus_message_iter_has_next),
138         (dbus_message_iter_next), (dbus_message_iter_get_field_type),
139         (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
140         (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
141         (decode_header_data), (_dbus_message_loader_return_buffer),
142         (message_iter_test), (_dbus_message_test):
143         * dbus/dbus-message.h:
144         * dbus/dbus-protocol.h:
145         * dbus/dbus-test.c: (main):
146         * dbus/dbus-test.h:
147         * glib/test-dbus-glib.c: (message_handler), (main):
148         * test/echo-client.c: (main):
149         * test/watch.c: (check_messages):
150         Make messages sendable and receivable for real.
151         
152 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
153
154         * dbus/dbus-marshal.c: (_dbus_marshal_double),
155         (_dbus_marshal_string), (_dbus_marshal_byte_array):
156         * dbus/dbus-message.c: (dbus_message_append_int32),
157         (dbus_message_append_uint32), (dbus_message_append_double),
158         (dbus_message_append_string), (dbus_message_append_byte_array):
159         Handle OOM restoration.
160         
161 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
162
163         * dbus/dbus-marshal.c: (_dbus_marshal_string),
164         (_dbus_demarshal_string), (_dbus_marshal_test):
165         * dbus/dbus-marshal.h:
166         * dbus/dbus-message.c: (dbus_message_get_name),
167         Document these functions.
168         
169         (dbus_message_append_int32), (dbus_message_append_uint32),
170         (dbus_message_append_double), (dbus_message_append_string),
171         (dbus_message_append_byte_array):
172         * dbus/dbus-message.h:
173         Add functions for adding message fields of different types.
174         
175         * dbus/dbus-protocol.h:
176         Add the different types.
177
178 2003-01-05  Havoc Pennington  <hp@pobox.com>
179
180         * bus/connection.c: implement routines for handling connections,
181         first thing is keeping a list of owned services on each connection
182         and setting up watches etc.
183
184         * bus/services.c: implement a mapping from service names to lists
185         of connections
186
187         * dbus/dbus-hash.c: add DBUS_HASH_POINTER
188
189         * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
190         to use static mutexes for global data
191
192         * dbus/dbus-connection.c (dbus_connection_set_data): add new
193         collection of functions to set/get application-specific data
194         on the DBusConnection.
195
196 2003-01-04  Havoc Pennington  <hp@pobox.com>
197
198         * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
199         (_dbus_poll): new function
200
201         * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
202         copied from GLib
203
204         * bus/loop.c: initial code for the daemon main loop
205
206 2003-01-04  Havoc Pennington  <hp@pobox.com>
207
208         * test/watch.c (error_handler): make it safe if the error handler 
209         is called multiple times (if we s/error handler/disconnect
210         handler/ we should just guarantee it's called only once)
211
212         * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
213         error handler on disconnect (it's quite possible we should
214         just change the error handler to a "disconnect handler," I'm 
215         not sure we have any other meaningful errors)
216
217         * configure.in: check for getpwnam_r
218
219         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
220         dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
221         mechanism as in SASL spec, using socket credentials
222
223         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
224         (_dbus_send_credentials_unix_socket): new function
225
226         * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
227         dbus_accept()
228         (_dbus_write): only check errno if <0 returned
229         (_dbus_write_two): ditto
230
231 2003-01-02  Anders Carlsson  <andersca@codefactory.se>
232
233         * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
234         (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
235         (_dbus_marshal_test):
236         * dbus/dbus-marshal.h:
237         Add _dbus_marshal_byte_array and rename _dbus_marshal_string
238         to _dbus_marshal_utf8_string. Also fix some tests.
239         
240 2002-12-28  Harri Porten  <porten@kde.org>
241
242         * configure.in: added check for C++ compiler and a very cheesy
243         check for the Qt integration
244
245         * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
246
247         * qt/Makefile.am: added 
248
249         * qt/.cvsignore: added  
250
251         * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
252         latter, added #ifdef QT_THREAD_SUPPORT guard.
253
254         * dbus/Makefile.am: added missing headers for make dist
255
256 2002-12-28  Kristian Rietveld  <kris@gtk.org>
257
258         * dbus/Makefile.am: fixup export-symbols-regex.
259
260 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
261
262         * acinclude.m4: Add this file and put the 
263         PKG_CHECK_MODULE macro in it.
264
265 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
266
267         * dbus/dbus-marshal.c: (_dbus_marshal_string),
268         (_dbus_demarshal_double), (_dbus_demarshal_int32),
269         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
270         (_dbus_marshal_test):
271         Make the demarshalling routines align the pos argument.
272         Add string marshalling tests and fix the obvious bugs 
273         discovered.
274         
275 2002-12-26  Havoc Pennington  <hp@pobox.com>
276
277         * dbus/dbus-auth.c: fixes fixes fixes
278
279         * dbus/dbus-transport-unix.c: wire up support for
280         encoding/decoding data on the wire
281
282         * dbus/dbus-auth.c (_dbus_auth_encode_data) 
283         (_dbus_auth_decode_data): append to target string 
284         instead of nuking it.
285
286 2002-12-26  Havoc Pennington  <hp@pobox.com>
287
288         * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
289         WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
290         doh
291
292         * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
293         avoid swap_bytes() overhead (ignoring possible assembly stuff for 
294         now). Main point is because I wanted unpack_uint32 to implement
295         _dbus_verbose_bytes
296         (_dbus_verbose_bytes): new function
297
298         * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
299
300         * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
301         mechanism to handle a corrupt message stream
302         (_dbus_message_loader_new): fix preallocation to only prealloc, 
303         not prelengthen
304         
305         * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
306         (_dbus_string_test): enhance tests for copy/move and fix the
307         functions
308
309         * dbus/dbus-transport-unix.c: Hold references in more places to 
310         avoid reentrancy problems
311
312         * dbus/dbus-transport.c: ditto
313
314         * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
315         leak reference count in no-message case
316
317         * test/watch.c (do_mainloop): handle adding/removing watches
318         during iteration over the watches. Also, ref the connection/server
319         stored on a watch, so we don't try to mangle a destroyed one.
320
321         * dbus/dbus-transport-unix.c (do_authentication): perform
322         authentication
323
324         * dbus/dbus-auth.c (get_state): add a state
325         AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
326         (_dbus_auth_get_unused_bytes): append the unused bytes
327         to the passed in string, rather than prepend
328
329         * dbus/dbus-transport.c (_dbus_transport_init_base): create 
330         the auth conversation DBusAuth
331
332         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
333         (_dbus_transport_new_for_domain_socket): when creating a
334         transport, pass in whether it's a client-side or server-side
335         transport so we know which DBusAuth to create
336
337 2002-12-03  Havoc Pennington  <hp@pobox.com>
338
339         * dbus/dbus-transport-unix.c (unix_finalize): finalize base
340         _after_ finalizing the derived members
341         (unix_connection_set): unref watch if we fail to add it
342
343         * dbus/dbus-connection.c (dbus_connection_unref): delete the
344         transport first, so that the connection owned by the 
345         transport will be valid as the transport finalizes.
346
347         * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
348         if necessary, and remove watches from the connection.
349         
350         * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
351         
352 2002-12-26  Anders Carlsson  <andersca@codefactory.se>
353
354         * dbus/dbus-marshal.c: (_dbus_marshal_string),
355         (_dbus_demarshal_double), (_dbus_demarshal_int32),
356         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
357         (_dbus_marshal_test):
358         * dbus/dbus-marshal.h:
359         Add string marshal functions and have the demarshal functions
360         return the new position.
361         
362 2002-12-25  Havoc Pennington  <hp@pobox.com>
363
364         * doc/dbus-sasl-profile.txt: docs on the authentication protocol, 
365         it is a simple protocol that just maps directly to SASL.
366
367         * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
368         initial implementation, not actually used yet.
369         
370         * dbus/dbus-string.c (_dbus_string_find): new function
371         (_dbus_string_equal): new function
372         (_dbus_string_base64_encode): new function
373         (_dbus_string_base64_decode): new function
374
375 2002-12-25  Anders Carlsson  <andersca@codefactory.se>
376
377         * dbus/Makefile.am:
378         * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
379         (_dbus_marshal_int32), (_dbus_marshal_uint32),
380         (_dbus_demarshal_double), (_dbus_demarshal_int32),
381         (_dbus_demarshal_uint32), (_dbus_marshal_test):
382         * dbus/dbus-marshal.h:
383         * dbus/dbus-protocol.h:
384         * dbus/dbus-test.c: (main):
385         * dbus/dbus-test.h:
386         Add un-optimized marshalling/demarshalling routines.
387         
388 2002-12-25  Harri Porten  <porten@kde.org>
389
390         * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
391
392 2002-12-24  Zack Rusin  <zack@kde.org>
393
394         * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
395         * qt/dbus-qt.h: skeleton with two sample implemenatation of the
396         main loop stuff
397
398 2002-12-24  Havoc Pennington  <hp@pobox.com>
399
400         * glib/dbus-gthread.c: fix include
401
402         * glib/dbus-glib.h: rename DBusMessageHandler for now. 
403         I think glib API needs to change, though, as you don't 
404         want to use DBusMessageFunction, you want to use the 
405         DBusMessageHandler object. Probably 
406         dbus_connection_open_with_g_main_loop()
407         and dbus_connection_setup_g_main_loop() or something like that
408         (but think of better names...) that just create a connection 
409         that has watch/timeout functions etc. already set up.
410
411         * dbus/dbus-connection.c
412         (dbus_connection_send_message_with_reply): new function just to 
413         show how the message handler helps us deal with replies.
414
415         * dbus/dbus-list.c (_dbus_list_remove_last): new function
416
417         * dbus/dbus-string.c (_dbus_string_test): free a string that
418         wasn't
419
420         * dbus/dbus-hash.c: use memory pools for the hash entries
421         (rebuild_table): be more paranoid about overflow, and 
422         shrink table when we can
423         (_dbus_hash_test): reduce number of sprintfs and write
424         valid C89. Add tests for case where we grow and then 
425         shrink the hash table.
426
427         * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
428
429         * dbus/dbus-connection.c (dbus_connection_register_handler) 
430         (dbus_connection_unregister_handler): new functions
431
432         * dbus/dbus-message.c (dbus_message_get_name): new
433
434         * dbus/dbus-list.c: fix docs typo
435
436         * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
437         an object representing a handler for messages.
438
439 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
440
441         * glib/dbus-glib.h:
442         * glib/dbus-gthread.c: (dbus_gthread_init):
443         Don't use the gdbus prefix for public functions.
444         
445 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
446
447         * Makefile.am:
448         * configure.in:
449         Add GLib checks and fixup .pc files
450         
451         * glib/Makefile.am:
452         * glib/dbus-glib.h:
453         * glib/dbus-gmain.c: (gdbus_connection_prepare),
454         (gdbus_connection_check), (gdbus_connection_dispatch),
455         (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
456         (dbus_connection_gsource_new):
457         * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
458         (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
459         * glib/test-dbus-glib.c: (message_handler), (main):
460         Add GLib support.
461         
462 2002-12-15  Harri Porten  <porten@kde.org>
463
464         * autogen.sh: check for libtoolize before attempting to use it 
465         
466         * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
467         struct.
468         
469         * .cvsignore: ignore more stamp files
470
471         * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
472
473         * test/Makefile.am: added -I$(top_srcdir) to be able to compile
474         without make install.
475
476 2002-12-15  Havoc Pennington  <hp@pobox.com>
477
478         * dbus/dbus-threads.c: add thread stubs that a higher library
479         layer can fill in. e.g. the GLib wrapper might fill them in with
480         GThread stuff. We still need to use this thread API to
481         thread-safe-ize the library.
482
483 2002-12-12  Havoc Pennington  <hp@pobox.com>
484
485         * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
486         below new interfaces and include fewer system headers.
487
488         * dbus/dbus-sysdeps.c (_dbus_read): new function
489         (_dbus_write): new function
490         (_dbus_write_two): new function
491         (_dbus_connect_unix_socket): new function
492         (_dbus_listen_unix_socket): new function
493
494         * dbus/dbus-message-internal.h: change interfaces to use
495         DBusString
496
497 2002-12-11  Havoc Pennington  <hp@pobox.com>
498
499         * dbus/dbus-types.h: add dbus_unichar
500
501         * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
502
503         * dbus/dbus-connection.c (dbus_connection_send_message): return
504         TRUE on success
505
506         * dbus/dbus-transport.c: include dbus-watch.h   
507
508         * dbus/dbus-connection.c: include dbus-message-internal.h
509
510         * HACKING: add file with coding guidelines stuff.
511
512         * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
513         handling here, for security purposes (as in vsftpd). Not actually
514         using this class yet.
515
516         * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
517         system/libc usage here, as in vsftpd, for ease of auditing (and
518         should also simplify portability). Haven't actually moved all the
519         system/libc usage into here yet.
520         
521 2002-11-25  Havoc Pennington  <hp@pobox.com>
522
523         * dbus/dbus-internals.c (_dbus_verbose): fix to not 
524         always print the first verbose message.
525
526 2002-11-24  Havoc Pennington  <hp@pobox.com>
527
528         * test/echo-client.c, test/echo-server.c: cheesy test 
529         clients.
530         
531         * configure.in (AC_CHECK_FUNCS): check for writev
532
533         * dbus/dbus-message.c (_dbus_message_get_network_data): new
534         function
535
536         * dbus/dbus-list.c (_dbus_list_foreach): new function
537
538         * dbus/dbus-internals.c (_dbus_verbose): new function
539
540         * dbus/dbus-server.c, dbus/dbus-server.h: public object
541         representing a server that listens for connections.
542
543         * dbus/.cvsignore: create
544
545         * dbus/dbus-errors.h, dbus/dbus-errors.c:
546         public API for reporting errors
547
548         * dbus/dbus-connection.h, dbus/dbus-connection.c:
549         public object representing a connection that 
550         sends/receives messages. (Same object used for 
551         both client and server.)
552
553         * dbus/dbus-transport.h, dbus/dbus-transport.c:
554         Basic abstraction for different kinds of stream
555         that we might read/write messages from.
556
557 2002-11-23  Havoc Pennington  <hp@pobox.com>
558
559         * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN 
560         _DBUS_INT_MAX
561
562         * dbus/dbus-test.c (main): add list test, and include 
563         dbus-test.h as intended
564
565         * dbus/dbus-hash.c (_dbus_hash_table_remove_string) 
566         (_dbus_hash_table_remove_int): return value indicates 
567         whether the entry existed to remove
568
569         * dbus/dbus-list.c: add linked list utility class, 
570         with docs and tests
571
572         * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket 
573         array sometimes.
574
575 2002-11-23  Havoc Pennington  <hp@pobox.com>
576
577         * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
578         DBUS_END_DECLS to nothing, that should fix this once and for all
579
580         * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
581
582         * dbus/dbus-message.c, dbus/dbus-hash.c: 
583         add some missing @brief
584
585 2002-11-23  Havoc Pennington  <hp@pobox.com>
586
587         * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS 
588         to avoid confusing Doxygen
589
590         * dbus/dbus-hash.c: @} not }@
591
592         * dbus/dbus-message.c (struct DBusMessage): split out 
593         internals docs
594
595 2002-11-23  Havoc Pennington  <hp@pobox.com>
596
597         * configure.in: pile on more warning flags if using gcc
598
599         * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have 
600         to document static functions
601
602         * configure.in: add summary to end of configure so it 
603         looks nice and attractive
604
605         * dbus/dbus-hash.c: finish implementation and write unit 
606         tests and docs
607
608         * configure.in: add --enable-tests to enable unit tests
609
610         * dbus/dbus-test.c: test program to run unit tests 
611         for all files in dbus/*, initially runs a test for 
612         dbus-hash.c
613         
614         * dbus/dbus-internals.h: file to hold some internal utility stuff
615
616 2002-11-22  Havoc Pennington  <hp@redhat.com>
617
618         * dbus/dbus-hash.c: copy in Tcl hash table, not yet 
619         "ported" away from Tcl
620
621         * dbus/dbus-types.h: header for types such as dbus_bool_t
622
623 2002-11-22  Havoc Pennington  <hp@redhat.com>
624
625         * dbus/dbus.h: fixups for doc warnings
626
627         * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up 
628         macros
629         (QUIET): make it quiet so we can see warnings
630
631         * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
632
633 2002-11-22  Havoc Pennington  <hp@redhat.com>
634
635         * Makefile.am: include "Doxyfile" target in all-local
636
637         * configure.in: generate the Doxyfile
638
639         * Doxyfile.in: move Doxyfile here, so we can use 
640         configure to generate a Doxyfile with the right 
641         version number etc.
642
643 2002-11-22  Havoc Pennington  <hp@redhat.com>
644
645         * dbus/dbus-message.c: move inline docs into .c file
646
647         * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
648         so all docs are under doc/
649         (MAN_EXTENSION): generate man pages. Use extension 
650         ".3dbus" which matches ".3qt" on my system, 
651         I guess this is OK, I don't know really.
652         (FILE_PATTERNS): look for .c files not .h, makes sense
653         for plain C I think
654
655 2002-11-22  Havoc Pennington  <hp@pobox.com>
656
657         * Makefile.am (SUBDIRS): rename subdir "server" to "bus" 
658         because any app can be a server, and any app can be a client, 
659         the bus is a special kind of server.
660
661 Thu Nov 21 23:35:31 2002  Zack Rusin  <zack@kde.org>
662
663         * Doxyfile : adding. Still needs Makefile rules to be generated
664         automatically (just run "doxygen" in the toplevel dir for now to
665         generate docs)
666         
667         * dbus/dbus-message.h : Adding sample docs (javadoc since
668         resembles gtk-doc a little more)
669
670         * dbus/dbus.h : Adding sample docs
671
672 2002-11-21  Havoc Pennington  <hp@redhat.com>
673
674         * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION 
675         so we can allow ourselves to include files directly, 
676         instead of having to use dbus.h
677
678         * dbus/dbus.h: fill in
679
680         * dbus/dbus-message.h: sketch out a sample header file.
681         Include griping if you include it directly instead of 
682         via dbus.h
683
684         * dbus/dbus-macros.h: new file with macros for extern "C", 
685         TRUE/FALSE, NULL, etc.
686
687         * doc/file-boilerplate.c: put include guards in here
688
689 2002-11-21  Havoc Pennington  <hp@redhat.com>
690
691         * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
692
693         * COPYING: include the GPL as well, and license code 
694         under both AFL and GPL.
695
696 2002-11-21  Havoc Pennington  <hp@redhat.com>
697
698         * acconfig.h: get rid of this
699
700         * autogen.sh (run_configure): add --no-configure option
701
702         * configure.in: remove AC_ARG_PROGRAM to make
703         autoconf complain less. add AC_PREREQ. 
704         add AC_DEFINE third arg.
705         
706 2002-11-21  Anders Carlsson  <andersca@codefactory.se>
707
708         * doc/Makefile.am:
709         Fix references so we can distcheck.
710
711 2002-11-21  Havoc Pennington  <hp@redhat.com>
712
713         * Initial module creation
714