2002-11-25 Havoc Pennington <hp@pobox.com>
[platform/upstream/dbus.git] / ChangeLog
1 2002-11-25  Havoc Pennington  <hp@pobox.com>
2
3         * dbus/dbus-internals.c (_dbus_verbose): fix to not 
4         always print the first verbose message.
5
6 2002-11-24  Havoc Pennington  <hp@pobox.com>
7
8         * test/echo-client.c, test/echo-server.c: cheesy test 
9         clients.
10         
11         * configure.in (AC_CHECK_FUNCS): check for writev
12
13         * dbus/dbus-message.c (_dbus_message_get_network_data): new
14         function
15
16         * dbus/dbus-list.c (_dbus_list_foreach): new function
17
18         * dbus/dbus-internals.c (_dbus_verbose): new function
19
20         * dbus/dbus-server.c, dbus/dbus-server.h: public object
21         representing a server that listens for connections.
22
23         * dbus/.cvsignore: create
24
25         * dbus/dbus-errors.h, dbus/dbus-errors.c:
26         public API for reporting errors
27
28         * dbus/dbus-connection.h, dbus/dbus-connection.c:
29         public object representing a connection that 
30         sends/receives messages. (Same object used for 
31         both client and server.)
32
33         * dbus/dbus-transport.h, dbus/dbus-transport.c:
34         Basic abstraction for different kinds of stream
35         that we might read/write messages from.
36
37 2002-11-23  Havoc Pennington  <hp@pobox.com>
38
39         * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN 
40         _DBUS_INT_MAX
41
42         * dbus/dbus-test.c (main): add list test, and include 
43         dbus-test.h as intended
44
45         * dbus/dbus-hash.c (_dbus_hash_table_remove_string) 
46         (_dbus_hash_table_remove_int): return value indicates 
47         whether the entry existed to remove
48
49         * dbus/dbus-list.c: add linked list utility class, 
50         with docs and tests
51
52         * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket 
53         array sometimes.
54
55 2002-11-23  Havoc Pennington  <hp@pobox.com>
56
57         * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
58         DBUS_END_DECLS to nothing, that should fix this once and for all
59
60         * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
61
62         * dbus/dbus-message.c, dbus/dbus-hash.c: 
63         add some missing @brief
64
65 2002-11-23  Havoc Pennington  <hp@pobox.com>
66
67         * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS 
68         to avoid confusing Doxygen
69
70         * dbus/dbus-hash.c: @} not }@
71
72         * dbus/dbus-message.c (struct DBusMessage): split out 
73         internals docs
74
75 2002-11-23  Havoc Pennington  <hp@pobox.com>
76
77         * configure.in: pile on more warning flags if using gcc
78
79         * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have 
80         to document static functions
81
82         * configure.in: add summary to end of configure so it 
83         looks nice and attractive
84
85         * dbus/dbus-hash.c: finish implementation and write unit 
86         tests and docs
87
88         * configure.in: add --enable-tests to enable unit tests
89
90         * dbus/dbus-test.c: test program to run unit tests 
91         for all files in dbus/*, initially runs a test for 
92         dbus-hash.c
93         
94         * dbus/dbus-internals.h: file to hold some internal utility stuff
95
96 2002-11-22  Havoc Pennington  <hp@redhat.com>
97
98         * dbus/dbus-hash.c: copy in Tcl hash table, not yet 
99         "ported" away from Tcl
100
101         * dbus/dbus-types.h: header for types such as dbus_bool_t
102
103 2002-11-22  Havoc Pennington  <hp@redhat.com>
104
105         * dbus/dbus.h: fixups for doc warnings
106
107         * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up 
108         macros
109         (QUIET): make it quiet so we can see warnings
110
111         * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
112
113 2002-11-22  Havoc Pennington  <hp@redhat.com>
114
115         * Makefile.am: include "Doxyfile" target in all-local
116
117         * configure.in: generate the Doxyfile
118
119         * Doxyfile.in: move Doxyfile here, so we can use 
120         configure to generate a Doxyfile with the right 
121         version number etc.
122
123 2002-11-22  Havoc Pennington  <hp@redhat.com>
124
125         * dbus/dbus-message.c: move inline docs into .c file
126
127         * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
128         so all docs are under doc/
129         (MAN_EXTENSION): generate man pages. Use extension 
130         ".3dbus" which matches ".3qt" on my system, 
131         I guess this is OK, I don't know really.
132         (FILE_PATTERNS): look for .c files not .h, makes sense
133         for plain C I think
134
135 2002-11-22  Havoc Pennington  <hp@pobox.com>
136
137         * Makefile.am (SUBDIRS): rename subdir "server" to "bus" 
138         because any app can be a server, and any app can be a client, 
139         the bus is a special kind of server.
140
141 Thu Nov 21 23:35:31 2002  Zack Rusin  <zack@kde.org>
142
143         * Doxyfile : adding. Still needs Makefile rules to be generated
144         automatically (just run "doxygen" in the toplevel dir for now to
145         generate docs)
146         
147         * dbus/dbus-message.h : Adding sample docs (javadoc since
148         resembles gtk-doc a little more)
149
150         * dbus/dbus.h : Adding sample docs
151
152 2002-11-21  Havoc Pennington  <hp@redhat.com>
153
154         * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION 
155         so we can allow ourselves to include files directly, 
156         instead of having to use dbus.h
157
158         * dbus/dbus.h: fill in
159
160         * dbus/dbus-message.h: sketch out a sample header file.
161         Include griping if you include it directly instead of 
162         via dbus.h
163
164         * dbus/dbus-macros.h: new file with macros for extern "C", 
165         TRUE/FALSE, NULL, etc.
166
167         * doc/file-boilerplate.c: put include guards in here
168
169 2002-11-21  Havoc Pennington  <hp@redhat.com>
170
171         * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
172
173         * COPYING: include the GPL as well, and license code 
174         under both AFL and GPL.
175
176 2002-11-21  Havoc Pennington  <hp@redhat.com>
177
178         * acconfig.h: get rid of this
179
180         * autogen.sh (run_configure): add --no-configure option
181
182         * configure.in: remove AC_ARG_PROGRAM to make
183         autoconf complain less. add AC_PREREQ. 
184         add AC_DEFINE third arg.
185         
186 2002-11-21  Anders Carlsson  <andersca@codefactory.se>
187
188         * doc/Makefile.am:
189         Fix references so we can distcheck.
190
191 2002-11-21  Havoc Pennington  <hp@redhat.com>
192
193         * Initial module creation
194