dda43a87df07af589ec2b92a00f6d65dcbf168d8
[platform/upstream/glib.git] / ChangeLog.pre-2-12
1 2006-06-05  Matthias Clasen  <mclasen@redhat.com>
2
3         * glib/gmain.c (get_dispatch): Don't leak the
4         dispatch struct.  (#321886)
5
6         * tests/strtod-test.c: Add some tests involving
7         leading whitespace.
8
9         * glib/gstrfuncs.c (g_ascii_formatd): Skip leading 
10         whitespace.  (#343899, Ã˜ystein Johansen)
11
12 2006-06-01  Matthias Clasen  <mclasen@redhat.com>
13
14         * glib/gmain.h: 
15         * glib/gmain.c: Add three new functions, 
16         g_main_current_source, g_source_set_funcs and 
17         g_source_is_destroyed, that will be necessary to 
18         solve thread-safety issues with idles in GTK+.  
19         (#321886, Chris Wilson)
20
21 2006-06-01  Matthias Clasen  <mclasen@redhat.com>
22
23         * glib/giochannel.c (g_io_channel_write_chars): Avoid
24         running in an assertion with small writes.  (#343566, Chris
25         Wilson)
26
27         * tests/iochannel-test.c: Add a testcase for small writes.
28
29         * glib/glib.symbols: 
30         * glib/ghash.h: 
31         * glib/ghash.c: Add g_hash_table_{remove,steal}_all to
32         remove all nodes from a hash table.  (#168538, Matt Barnes)
33
34 2006-06-01  Behdad Esfahbod  <behdad@gnome.org>
35
36         * glib/gkeyfile.c (g_key_file_to_data),
37         (g_key_file_parse_value_as_comment),
38         (g_key_file_parse_comment_as_value):
39         * glib/gscanner.c (g_scanner_get_token_ll): Cleanup. Use return
40         value of g_string_free(...). (#343548, Chris Wilson)
41
42 2006-05-28  Matthias Clasen  <mclasen@redhat.com>
43
44         * glib/gmarkup.c (g_markup_parse_context_parse): 
45         Don't use g_str_has_{prefix,suffix} here.
46
47 2006-05-28  Matthias Clasen  <mclasen@redhat.com>
48
49         * glib/gmarkup.h: Add a GMarkupParseFlags flag for
50         treating CDATA as text. 
51
52         * glib/gmarkup.c (g_markup_parse_context_parse): 
53         Implement it here.
54
55 2006-05-28  Matthias Clasen  <mclasen@redhat.com>
56
57         * tests/markups/expected-*: Output that test-markup
58         is expected to produce when run on the valid gmarkup 
59         examples.
60
61         * tests/markup-test.c: Only dump the results of the
62         first, unchunked parse, to compare it against the expected
63         output. 
64
65         * tests/run-markup-tests.sh: For valid examples, compare
66         the output of test-markup against the corresponding
67         expected-<n> file.
68         
69 2006-05-24  Matthias Clasen  <mclasen@redhat.com>
70
71         * configure.in: Don't compile timeloop on Minix. 
72         (Leonard den Ottolander)
73
74 2006-05-22  Sebastian Wilhelmi  <wilhelmi@google.com>
75
76         * glib/gthread.c (g_thread_init_glib): Run _g_atomic_thread_init
77         as the first of the full fledged initializers to allow the later
78         to potentially use atomic ints (which they currently do
79         not). (#342563, Peter Kjellerstedt)
80
81 2006-05-16  Matthias Clasen  <mclasen@redhat.com>
82
83         * tests/Makefile.am: 
84         * tests/strtoll-test.c: Add tests for g_ascii_strtoll()
85         and g_ascii_strtoull().
86
87         * glib/glib.symbols:
88         * glib/gstrfuncs.h: 
89         * glib/gstrfuncs.c (g_ascii_strtoll): New function to
90         parse signed 64bit integers like strtoll does.  
91
92         * glib/goption.c (parse_int64): Use g_ascii_strtoll(),
93         since strtoll() is C99 and not available on some
94         systems.  (#341826, Kazuki Iwamoto)
95
96 2006-05-15  Matthias Clasen  <mclasen@redhat.com>
97         
98         * configure.in: Bump version
99
100         * === Released 2.11.1 ===
101
102         * NEWS: Updates
103
104 2006-05-13  Matthias Clasen  <mclasen@redhat.com>
105
106         * glib/grel.c: Fix several cases of deref-before-NULL-check.
107         (#341191, Pascal Terjan)
108
109         * glib/glib.symbols: 
110         * glib/goption.h: 
111         * glib/goption.c: Allow optional summary and description
112         texts before and after the option descriptions, and add
113         a way to translate them.  (#336120, Behdad Esfahbod)
114
115 2006-05-12  Tor Lillqvist  <tml@novell.com>
116
117         * glib/giowin32.c (g_io_win32_sock_set_flags): Implement
118         setting/clearing G_IO_FLAG_NONBLOCK for channels attached to
119         sockets. (#341192)
120         (g_io_win32_unimpl_set_flags): set_flags method for the
121         unimplemented case.
122         
123 2006-05-11  Bastien Nocera  <hadess@hadess.net>
124
125         * glib/goption.c: (parse_int64), (parse_arg), (free_changes_list):
126         * glib/goption.h:
127         * tests/option-test.c: (arg_test6), (main): add an int64 type for
128         GOption (G_OPTION_ARG_INT64) (#341237)
129
130 2006-05-10  Sebastian Wilhelmi  <wilhelmi@google.com>
131
132         * glib/gthread.h, gthread/gthread-impl.c: Make the magic and
133         location arguments to the error-checking-mutex functions const and
134         do not write to them, as we might not own them. Clean up the
135         error-checking-mutex code quite a bit. (#335198, Chris Wilson)
136
137         * glib/gthread.c: Use g_atomic_pointer_set instead of old
138         homegrown version now that we have it. (#335198, Chris Wilson)
139
140         * gthread/gthread-posix.c, gthread/gthread-win32.c: Prevent
141         calling into g_cond_wait resp. g_mutex_lock/unlock directly to
142         avoid recursions into the errorcheking mutex code (and out of
143         principle anyway). (#335198, Chris Wilson)
144
145         * tests/errorcheck-mutex-test.c: Adapt to GLib coding standards.
146
147 2006-05-09  Sebastian Wilhelmi  <wilhelmi@google.com>
148
149         * glib/gthreadinit.h: Renamed to glib/gthreadprivate.h and moved
150         system thread identifier comparision and assignment macros from
151         glib/gthread.c to glib/gthreadprivate.h.
152
153         * glib/Makefile.am, glib/gatomic.c, glib/gconvert.c, glib/gmain.c,
154         glib/gmem.c, glib/gmessages.c, glib/grand.c, glib/gslice.c,
155         glib/gthread.c, glib/gutils.c, gthread/gthread-impl.c: Use
156         glib/gthreadprivate.h instead of glib/gthreadinit.h.
157
158         * gthread/gthread-impl.c: Use GSystemThread instead of GThread for
159         owner determination. (#311043, jylefort@FreeBSD.org)
160
161         * tests/Makefile.am, tests/errorcheck-mutex-test: New test program
162         to test for all checked violations.
163
164         * glib/gprintf.c, glib/gspawn-win32.c, glib/gutf8.c,
165         gthread/gthread-impl.c, gthread/gthread-posix.c,
166         gthread/gthread-win32.c: Use canonical include form for internal
167         headers. config.h is always there.
168
169         * Remove obsolete gthread/gthread-solaris.c.
170
171 2006-05-08  Matthias Clasen  <mclasen@redhat.com>
172
173         * tests/convert-test.c (test_one_half): Use encoding names which 
174         may work better on Solaris.  (#340434, Alessandro Vesely)
175
176         * tests/keyfile-test.c (test_number): Add some tests for
177         invalid floating point numbers.
178
179         * glib/gkeyfile.c (g_key_file_parse_value_as_double): Return
180         an error for the empty string.  (#339105, Morten Welinder)
181
182         * glib/gscanner.c (g_scanner_config_template): Make const,
183         noticed by Kjartan Maraas.
184
185 2006-05-06  Matthias Clasen  <mclasen@redhat.com>
186
187         * glib/gkeyfile.c (g_key_file_set_string_list)
188         (g_key_file_set_locale_string_list): Fix invalid memory
189         reads.  (#340816, Nick Treleaven)
190
191 2006-05-04  Alexander Larsson  <alexl@redhat.com>
192
193         * glib/gbase64.c: (g_base64_decode_step):
194         Fix OOB write (#340538)
195
196 2006-05-03  Matthias Clasen  <mclasen@redhat.com>
197
198         * tests/base64-test.c: Add some more tests.
199
200         * glib/gbase64.c (g_base64_decode_step): Avoid writing
201         beyond the guaranteed lenght of the output buffer, if
202         there is padding.
203
204         * tests/base64-test.c (test_incremental): Use malloced memory
205         instead of stack-allocated, so that MALLOC_CHECK_=2 catches
206         the OOB write...
207
208         * glib/gbookmarkfile.c (g_bookmark_file_load_from_data): Remove
209         an overzealous return_if_fail check that causes make check to 
210         fail.
211
212 2006-05-02  Matthias Clasen  <mclasen@redhat.com>
213
214         * configure.in: Bump version
215         
216         * === Released 2.11.0 ===
217
218         * NEWS: Updates
219
220         * tests/casemap.txt: 
221         * tests/casefold.txt: Regenerate from Unicode 5.0 data. 
222
223         * glib/guniprop.c: Make interval_compare static.
224
225 Tue May  2 15:00:00 2006  Tim Janik  <timj@gtk.org>
226
227         * tests/gobject/deftype.c: added test code from Behdad Esfahbod, 
228         see #337128.
229
230 Tue May  2 14:18:25 2006  Tim Janik  <timj@gtk.org>
231
232         * glib/goption.c (g_option_context_parse): fixed leak in short
233         option parsing. rewrote parts of the code to be more concise to
234         enhance readability. fixed exaggerated uses of strlen.
235
236 2006-04-28  Behdad Esfahbod  <behdad@gnome.org>
237
238         * glib/guniprop.c: #include <stdlib.h>
239
240 2006-04-27  Matthias Clasen  <mclasen@redhat.com>
241
242         * glib/glib.symbols: Add g_unichar_iswide_cjk.
243         * glib/guniprop.c: Add a "Since: 2.12".
244
245         * NEWS: Updates
246
247 2006-04-27  Behdad Esfahbod  <behdad@gnome.org>
248
249         * docs/reference/glib/glib-sections.txt,
250         * glib/gunicode.h glib/guniprop.c: Implement g_unichar_iswide_cjk().
251         (#105626)
252
253 2006-04-27  Matthias Clasen  <mclasen@redhat.com>
254
255         * glib/gbookmarkfile.c (g_bookmark_file_set_description) 
256         (g_bookmark_file_set_title, g_bookmark_file_set_icon): 
257         Remove some special-casing of empty string which led to 
258         dangling pointers.  (#339337, Morten Welinder)
259         (expand_exec_line): Don't use printf() needlessly, handle
260         trailing '%' gracefully.  (#339338, Morten Welinder)
261         (is_element_full): Silence the compiler.
262         (g_bookmark_file_dump, bookmark_metadata_dump): 
263         (bookmark_app_info_dump): Escape strings before dumping 
264         them in xml.  (#339340, Morten Welinder)
265
266 2006-04-27  Behdad Esfahbod  <behdad@gnome.org>
267
268         * glib/gunibreak.h, glib/gunichartables.h: Regenerated using
269         Unicode Character Database 5.0 beta.
270
271 2006-04-26  Matthias Clasen  <mclasen@redhat.com>
272
273         * glib/grand.c (g_rand_new): Don't repeat a failed fclose()
274         call, since that invokes undefined behaviour.  (Coverity)
275
276 2006-04-25  Matthias Clasen  <mclasen@redhat.com>
277
278         * glib/gbookmarkfile.c (is_element_full): Avoid a possible
279         NULL dereference (found by Coverity), also avoid some 
280         pointless strdups.
281
282         * tests/keyfile-test.c (test_comments): Add a test for
283         the previous change.
284
285         * glib/gkeyfile.c (g_key_file_lookup_group_node): Remove
286         redundant code.
287         (g_key_file_get_group_comment): Don't dereference before
288         checking for NULL.  (#338572, Coverity, Pascal Terjan)
289
290 2006-04-19  Matthias Clasen  <mclasen@redhat.com>
291
292         * glib/gdataset.c: Add some missing Since: 2.8 tags.
293
294 2006-04-19  Tor Lillqvist  <tml@novell.com>
295
296         * glib/gatomic.c: Adapt to the changed prototype of
297         InterlockedCompareExchange() in newer SDKs. Use
298         InterlockedCompareExchangePointer() when applicable. (#155884,
299         John Ehresman)
300
301 2006-04-18  Matthias Clasen  <mclasen@redhat.com>
302
303         * glib/gkeyfile.h:
304         * glib/glib.symbols:
305         * glib/gkeyfile.c: Add api to get and set doubles and 
306         lists of doubles.  (#164719, Maurizio Monge, Dom Lachowicz)
307
308         * tests/keyfile-test.c: Add tests for new api.
309
310         * glib/gkeyfile.c (g_key_file_add_group): Accept duplicate
311         groups.  (#157877, Sebastien Bacher)
312
313         * tests/keyfile-test.c: Add tests for duplicate key and
314         duplicate group handling.
315
316 2006-04-17  Matthias Clasen  <mclasen@redhat.com>
317
318         * glib/gcompletion.c (g_completion_complete_utf8): Make passing
319         NULL for new_prefix work as documented.  (#338845, Yevgen Muntyan)
320
321         * tests/completion-test.c: Test that passing NULL for 
322         new_prefix in g_completion_complete_utf8 works.
323
324 2006-04-17  Kjartan Maraas  <kmaraas@gnome.org>
325
326         * configure.in: Remove obsolete entry for no_NO.
327         * po/no.po: And the translation.
328
329 2006-04-16  Matthias Clasen  <mclasen@redhat.com>
330
331         * glib/gdate.c (g_date_fill_parse_tokens): Avoid an array
332         overrun.  (Coverity, fix by Pascal Terjan)
333
334 2006-04-12  Bastien Nocera  <hadess@hadess.net>
335
336         reviewed by: Matthias Clasen <mclasen@redhat.com>
337
338         * glib/gconvert.c: add more details about which RFC is concerned
339         when using g_filename_to_uri (#337553)
340
341 2006-04-12  Matthias Clasen  <mclasen@redhat.com>
342
343         * glib/goption.c (parse_arg): Add an assert to make it
344         clear when value can be NULL.
345
346 2006-04-07  Martyn Russell  <martyn@imendio.com>
347
348         * tests/threadpool-test.c: (test_thread_stop_unused): Removed an
349         assertion which can fail and is not a critical test.
350
351 2006-04-07  Hans Breuer  <hans@breuer.org>
352
353         * glib/makefile.msc.in : added gbase64.obj and derive the static libs
354         name from auto* variables
355         * glib/makefile.msc.in : link user32.lib for MessageBox()
356
357 2006-04-07  Martyn Russell  <martyn@imendio.com>
358
359         * glib/gasyncqueue.[ch]: Added private API
360         _g_async_queue_get_mutex so that g_thread_pool_free() can use the
361         async queue mutex. 
362         
363         * glib/gthreadpool.c: Make sure
364         g_thread_pool_stop_unused_threads() actually stops unused threads
365         and global limits (like max idle time and max unused threads) can
366         be set without creating a thread pool first. Fixed #335215 (patch
367         from Chris Wilson).  
368         
369         * tests/threadpool-test.c: Added two new tests, tests setting
370         global limits before creating a thread pool. The second test
371         makes sure unused threads are actually stopped when using the
372         g_thread_pool_stop_unused_threads(). 
373
374 2006-04-05  Matthias Clasen  <mclasen@redhat.com>
375
376         * glib/gnulib/vasnprintf.c (vasnprintf): Make
377         long long printing work if snprintf is not 
378         available.  (#332841, Michael McDonald)
379
380 2006-04-05  Behdad Esfahbod  <behdad@gnome.org>
381
382         * tests/option-test.c: Check the return value of g_get_prgname for
383         NULL before passing to strcmp.
384
385         * tests/slice-test.c: Report the correct name in Usage summary.
386
387 2006-04-05  Matthias Clasen  <mclasen@redhat.com>
388
389         * tests/run-collate-tests.sh: Fix up shell script.
390
391         * tests/option-test.c (arg_test5): Skip the test if
392         setting the locale fails.
393         (empty_test1): Reset prgname before the test.
394
395         * tests/Makefile.am: Arrange for run-bookmark-test.sh
396         to be run by make check.
397
398         * tests/utf8-pointer.c: 
399         * tests/tree-test.c: Silence warnings.
400
401 2006-04-04  Matthias Clasen  <mclasen@redhat.com>
402
403         * glib/glib.symbols:
404         * glib/gbase64.[hc]: Add G_GNUC_MALLOC where
405         appropriate, use glib types.
406
407 2006-04-04  Alexander Larsson  <alexl@redhat.com>
408
409         * glib/Makefile.am:
410         * glib/gbase64.[ch]:
411         * glib/glib.symbols:
412         Add base64 encode/decode functions
413         
414         * glib/glib.h:
415         Include gbase64.h
416         
417         * tests/Makefile.am:
418         * tests/base64-test.c:
419         Tests for base64 functions
420
421 2006-04-04  Matthias Clasen  <mclasen@redhat.com>
422
423         * glib/gdate.c: Move short_month_names and long_month_names
424         to bss.
425
426         * glib/gspawn-win32.c (g_spawn_error_quark):
427         * glib/gspawn.c (g_spawn_error_quark):
428         * glib/gshell.c (g_shell_error_quark):
429         * glib/gmarkup.c (g_markup_error_quark):
430         * glib/goption.c (g_option_error_quark):
431         * glib/gkeyfile.c (g_key_file_error_quark):
432         * glib/giochannel.c (g_io_channel_error_quark):
433         * glib/gfileutils.c (g_file_error_quark):
434         * glib/gconvert.c (g_convert_error_quark):
435         * glib/gbookmarkfile.c (g_bookmark_file_error_quark):
436         * glib/gthread.c (g_thread_error_quark): No point in making
437         the error path fast by caching quarks.
438
439         * glib/gbookmarkfile.c: Make the parser struct const.
440
441 2006-04-04  Behdad Esfahbod  <behdad@gnome.org>
442
443         * glib/gbookmarkfile.c: Fix accidentally broken build.
444
445 2006-04-03  Matthias Clasen  <mclasen@redhat.com>
446
447         * glib/gbookmarkfile.c: Don't include sys/time.h  (#337027,
448          Kazuki IWAMOTO)
449
450 2006-03-31  Tor Lillqvist  <tml@novell.com>
451
452         * glib/gstdio.c (g_remove): Revert change below. It wasn't a good
453         idea after all, says the original bug reporter. See bug for
454         discussion.
455
456 2006-03-30  Tor Lillqvist  <tml@novell.com>
457
458         * glib/gstdio.c (g_remove): [Win32] call rmdir() only if remove()
459         fails with errno set to ENOENT, to leave errno set to EACCESS if
460         that is the problem. (#334799, Yevgen Muntyan)
461
462 2006-03-30  Matthias Clasen  <mclasen@redhat.com>
463
464         * glib/gbookmarkfile.c (g_bookmark_file_get_app_info): Sync
465         the parameter names with the .h files, otherwise gtk-doc
466         misbehaves.
467
468 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
469
470         * tests/.cvsignore: Add bookmarkfile-test to the ignored files.
471
472 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
473
474         * tests/Makefile.am:
475         * tests/bookmarkfile-test.c:
476         * tests/run-bookmark-test.sh:
477         * tests/bookmarks/*.xbel: Add test suite for GBookmarkFile.
478
479 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
480
481         * docs/reference/glib/glib-docs.sgml:
482         * docs/reference/glib/glib-sections.txt:
483         * docs/reference/glib/tmpl/bookmarkfile.sgml: Add documentation for
484         GBookmarkFile to GLib's reference guide.
485
486 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
487
488         * glib/glib.h:
489         * glib/gbookmarkfile.h
490         * glib/gbookmarkfile.c: Add GBookmarkFile, a parser for files
491         containing bookmarks stored using the Desktop Bookmark
492         specification. Fixes bug #327662.
493
494         * glib/glib.symbols:
495         * glib/Makefile.am:
496         * glib/makefile.msc.in:
497         * glib/makefile.mingw.in: Build glue for GBookmarkFile.
498
499 2006-03-27  Dom Lachowicz  <cinamod@hotmail.com>
500
501         * tests/option-test.c: Copy-and-paste error slipped into test5. Enable
502         test5, as per Matthias' comments in bug 329548#c11.
503
504         Change a gboolean to an int. Fixes bug #329789.
505
506         * configure.in: Bump version number to 2.11.0
507         
508 2006-03-27  Matthias Clasen  <mclasen@redhat.com>
509
510         Add support for floating point numbers to goption.
511         (#329548, Behdad Esfahbod, patch by Antoine Dopffer and 
512          Dom Lachowicz)
513
514         * glib/goption.h:
515         * glib/goption.c: Support double arguments.
516
517         * tests/option-test.c: Test double arguments.`
518
519 2006-03-26  Matthias Clasen  <mclasen@redhat.com>
520
521         * glib/goption.c (g_option_context_new): Improve the description
522         of parameter_string in the docs.  (#336085, Claudio Saavedra)
523
524 2006-03-24  Martyn Russell  <martyn@imendio.com>
525
526         * glib/gthreadpool.c: Updated the documentation to explain that
527         when the maximum threads is > 1 the sort functionality is not 100%
528         accurate due to the ramdom nature of the scheduler choosing which
529         threads to execute. Fixes bug #334943.
530
531         * tests/threadpool-test.c: Disabled the debugging by default and
532         fixed the sort test to set the maximum threads to 1 to guarantee
533         the thread entry function is called in order. 
534
535 2006-03-23  Matthias Clasen  <mclasen@redhat.com> 
536
537         === Branch for 2.10 ===