Use alertable wait functions so that I/O completion routines or user-mode
[platform/upstream/glib.git] / ChangeLog
1 2008-02-24  Tor Lillqvist  <tml@novell.com>
2
3         * glib/gmain.c (g_poll) [Win32]: Use alertable wait functions so
4         that I/O completion routines or user-mode Asynchronous Procedure
5         Calls can be run. (#517484, Vlad Grecescu)
6
7 2008-02-24  Tor Lillqvist  <tml@novell.com>
8
9         * glib/gwin32.c
10         (g_win32_get_package_installation_directory_of_module): New
11         function. Supersedes g_win32_get_package_installation_directory()
12         and g_win32_get_package_installation_directory().
13
14         It makes more sense to have the function for this functionality
15         take a HMODULE as parameter instead of DLL name. The typical use
16         scenario has been to have a DllMain() function that retrieves the
17         full pathname for the DLL in question, and saves just the basename
18         of that. Then later code passes that saved dll basename to
19         g_win32_get_package_installation_directory(), which retrieves the
20         corresponding DLL handle, and then retrieves up its full
21         pathname. (Which DLlMain() already had.) It is less convoluted to
22         have a DllMain() that just saves the DLL handle, and then when
23         needed call this function to get the corresponding installation
24         folder.
25
26         (get_package_directory_from_module): Use
27         g_win32_get_package_installation_directory_of_module().
28
29         (g_win32_get_package_installation_directory)
30         (g_win32_get_package_installation_subdirectory): Mention these
31         functions will be deprecated and recommend using
32         g_win32_get_package_installation_directory_of_module() instead.
33         
34         * glib/gwin32.h: Declare
35         g_win32_get_package_installation_directory_of_module().
36
37         * glib/glib.symbols: Add it.
38
39         * glib/gutils.h: Mention G_WIN32_DLLMAIN_FOR_DLL_NAME() will be
40         deprecated in the future.
41
42         * glib/gutils.c: Drop use of G_WIN32_DLLMAIN_FOR_DLL_NAME(). Use a
43         minimal DllMain() instead that just saves the DLL handle.
44         (g_win32_get_system_data_dirs_for_module, _glib_get_locale_dir)
45         (get_module_share_dir): Use
46         g_win32_get_package_installation_directory_of_module().
47
48 2008-02-23  Matthias Clasen  <mclasen@redhat.com> 
49
50         * NEWS: Updates
51
52 2008-02-23  Matthias Clasen  <mclasen@redhat.com> 
53
54         * glib/gkeyfile.c (g_key_file_get_string_list): Return
55         NULL when the key is not found.  (#513171, Дилян Палаузов)
56
57 2008-02-23  Matthias Clasen  <mclasen@redhat.com>
58
59         * tests/testglib.c: Don't test user directories for being
60         non-null.  (#517084, Yevgen Muntyan)
61
62 2008-02-22  Matthias Clasen  <mclasen@redhat.com>
63
64         * glib/gasyncqueue.c:
65         * glib/gtestutils.c: Documentation fixes
66
67 2008-02-21  Tor Lillqvist  <tml@novell.com>
68         
69         * glib/gutf8.c (g_get_charset)
70         * glib/gconvert.c (g_locale_from_utf8): Clarify character set
71         issues on Windows.
72
73 2008-02-20  Tor Lillqvist  <tml@novell.com>
74
75         * glib/gtestutils.c (g_test_trap_fork) [Win32]: Change the
76         g_error() to g_message() to avoid stopping on warnings. At least
77         now testglib runs to completion and the old tests in it get
78         exercised even if the newfangled ones don't.
79         (g_test_trap_assertions) [Win32]: Bypass on Windows.
80
81 2008-02-17  Marco Barisione  <marco@barisione.org>
82
83         * glib/gregex.c: (translate_compile_error), (g_regex_new): Avoid some
84         useless casts from const gchar * to gchar *.  (#516597, patch by
85         Yevgen Muntyan)
86
87 2008-02-17  Marco Barisione  <marco@barisione.org>
88
89         * glib/gregex.c: (match_info_new), (g_match_info_next): Don't return
90         duplicate matches when matching empty strings.  (#515944)
91         * tests/regex-test.c: Add tests.
92
93 2008-02-17  Hans Breuer  <hans@breuer.org>
94
95         * glib/gutils.c : define CSIDL_MYPICTURES if not available
96         * gthread/gthread-win32.c : use G_STRFUNC instead of compiler 
97         specific __FUNCTION__
98
99 2008-02-13  Tor Lillqvist  <tml@novell.com>
100
101         * glib/gwin32.c: Doc change: Deprecate passing anything but NULL
102         for the "package" parameter to
103         g_win32_get_package_installation_directory() and
104         g_win32_get_package_installation_subdirectory().
105
106 2008-02-11  Matthias Clasen <mclasen@redhat.com>
107
108         * configure.in: Bump version
109
110         * === Released 2.15.5 ===
111
112         * NEWS: Updates
113
114 2008-02-11  Matthias Clasen <mclasen@redhat.com>
115
116         * glib/gtestutils.h: Make the g_test_add macro work with 
117         gcc 4.3
118
119         * tests/gobject/paramspec-test.c: Adapt to recent changes in 
120         GParamGType initialization.
121
122 2008-02-10  Matthias Clasen <mclasen@redhat.com>
123
124         * glib/gtestutils.c: Fix a typo in the docs.
125
126 2008-02-09  Matthias Clasen <mclasen@redhat.com>
127
128         * configure.in: Check for getmntent_r.
129
130 2008-02-09  Matthias Clasen <mclasen@redhat.com>
131
132         * Makefile.decl: /bin/ksh can't handle a for-loop with no 
133         arguments, so add a "." for when $(SUBDIRS) is empty.
134
135         * glib/tests/option-context.c:
136         * glib/tests/testing.c:
137         * gthread/gthread-posix.c:
138         * tets/testingbase64.c:
139         * glib/gtester.c: 
140         * glib/gsequence.c: Portability fixes.  (#515154)
141
142 2008-02-07  Tor Lillqvist  <tml@novell.com>
143
144         * configure.in: Unfortunately the mingw implementations of
145         C99-style snprintf and vsnprintf don't seem to be quite good
146         enough, at least not in mingw-runtime-3.14. I don't know exactly
147         what the problem is, but it is related to floating point
148         formatting and decimal point vs. comma, and the symptoms show up
149         in some dialogs in GIMP, presumably also elsewhere. The simple
150         tests in AC_FUNC_VSNPRINTF_C99 and AC_FUNC_SNPRINTF_C99 aren't
151         rigorous enough to notice, though. So preset
152         ac_cv_func_vsnprintf_c99 and ac_cv_func_snprintf_c99 to "no".
153
154 2008-02-07 12:58:54  Tim Janik  <timj@imendio.com>
155
156         * Makefile.am: fixed build order to build gobject after gmodule gthread
157         so gobject tests can be threaded.
158
159 2008-02-07  Ryan Lortie  <desrt@desrt.ca>
160
161         * glib/gmessages.h (g_error): add for(;;); after the g_log call so
162         that GCC stops issuing false warnings about reachability  Bug #514920
163
164 2008-02-06  Matthias Clasen  <mclasen@redhat.com>
165
166         * glib/pcre/*: Update the internal copy of PCRE to 7.6
167
168 2008-02-06  Behdad Esfahbod  <behdad@gnome.org>
169
170         * glib/pltcheck.sh: Skip g_bit_*().  Inline functions may end up with
171         a local plt if the compiler doesn't support what we want.  Bug #514702
172
173 2008-02-06  Murray Cumming  <murrayc@murrayc.com>
174
175         * glib/gconvert.c:
176         * glib/pcre/pcre_internal.h: Fixed some minor typos in documentation.
177
178 2008-02-06  Christian Persch  <chpe@gnome.org>
179
180         * gio/gdesktopappinfo.c: (ensure_dir):
181         * gio/glocalfile.c: (g_local_file_query_filesystem_info),
182         (g_local_file_read), (g_local_file_delete), (g_local_file_trash),
183         (g_local_file_move):
184         * gio/glocalfileinfo.c: (set_xattr), (_g_local_file_info_get),
185         (_g_local_file_info_get_from_fd), (set_unix_mode),
186         (set_unix_uid_gid), (set_symlink), (set_mtime_atime):
187         * gio/glocalfileinputstream.c: (g_local_file_input_stream_read),
188         (g_local_file_input_stream_skip),
189         (g_local_file_input_stream_close),
190         (g_local_file_input_stream_seek):
191         * gio/glocalfileoutputstream.c: (g_local_file_output_stream_write),
192         (g_local_file_output_stream_close),
193         (g_local_file_output_stream_seek),
194         (g_local_file_output_stream_truncate), (copy_file_data),
195         (handle_overwrite_open):
196         * gio/gunixinputstream.c: (g_unix_input_stream_read),
197         (g_unix_input_stream_close), (read_async_cb), (close_async_cb):
198         * gio/gunixoutputstream.c: (g_unix_output_stream_write),
199         (g_unix_output_stream_close), (write_async_cb), (close_async_cb): Save
200         errno before calling other funcs that potentially alter it. Bug
201         #514766.
202
203 2008-02-05 18:42:42  Tim Janik  <timj@imendio.com>
204
205         * configure.in: generate gobject/tests/Makefile.
206
207 2008-02-05  Tor Lillqvist  <tml@novell.com>
208
209         * glib-zip.in: Include the gio import library and gio-2.0.pc in
210         the developer zipfile.
211
212 2008-02-02  Jonathon Jongsma  <jjongsma@gnome.org>
213
214         * gio/gbufferedoutputstream.c:
215         * gio/gbufferedoutputstream.h: modify the new_sized() constructor to take a
216         gsize param instead of guint to match the GBufferedInputStream constructor.
217
218 2008-02-03  Hans Breuer  <hans@breuer.org>
219
220         * **/makefile.msc.in : update
221
222 2008-02-03  Sebastian Dröge  <slomo@circular-chaos.org>
223
224         * configure.in: Check for gmtime_r. Missing part of bug #511807.
225
226 2008-02-01  Yannig Marchegay  <yannig@marchegay.org>
227
228         * configure.in: Add oc since oc.po is back.
229
230 2008-01-31  Michael Natterer  <mitch@imendio.com>
231
232         * glib/gmem.c: use %G_GSIZE_FORMAT instead of %lu since sizes have
233         changed from gulong to gsize in this file.
234
235 2008-01-30  Johan Dahlin  <johan@gnome.org>
236
237         * configure.in: Remove oc since oc.po is gone.
238
239 2008-01-30  Wouter Bolsterlee  <wbolster@svn.gnome.org>
240
241         * glib/gchecksum.c:
242         * glib/gtestutils.c:
243         * glib/gutils.c:
244
245         Fixed gtk-doc warnings by updating the documentation of
246         various functions.
247
248 2008-01-29 14:58:31  Tim Janik  <timj@imendio.com>
249
250         * glib/gmem.[hc]: changed size argument type from gulong to gsize as
251         discussed on gtk-devel-list:
252           http://mail.gnome.org/archives/gtk-devel-list/2007-March/msg00062.html
253         this should be ABI compatible on all platforms except win64 for which
254         no ABI binding port exists yet.
255
256 2008-01-29  Sebastian Wilhelmi  <wilhelmi@google.com>
257
258         * tests/threadpool-test.c (test_thread_pools): Grab
259         thread_counter_pools LOCK when increasing
260         leftover_task_counter. Fixes race in test. (#512624, Simon Murray)
261
262 2008-01-28  Matthias Clasen  <mclasen@redhat.com>
263
264         * configure.in: Bump version
265
266 2008-01-28  Matthias Clasen  <mclasen@redhat.com>
267
268         * === Released 2.15.4 ===
269
270         * NEWS: Updates
271
272 2008-01-28  Matthias Clasen  <mclasen@redhat.com>
273
274         * configure.in: Check for gmtime_r.  
275         * glib/gtimer.c: Use gmtime_r when available.  (#511807,
276         Sebastian Dröge)
277
278 2008-01-27  Matthias Clasen  <mclasen@redhat.com>
279
280         * glib/gnode.[hc]: Move docs inline.  (#316260, Philippe Blain)
281
282 2008-01-27  Matthias Clasen  <mclasen@redhat.com>
283
284         * glib/gutf8.c (g_utf8_strreverse): Document limitations
285         of this function.  (#487909, Peter Moulder)
286
287 2008-01-27  Matthias Clasen  <mclasen@redhat.com>
288
289         * glib/goption.c (group_list_has_visible_entries):
290         Removed unused variable is_main_group.  (#512381,
291         Wouter Bolsterlee)
292
293 2008-01-27  Matthias Clasen  <mclasen@redhat.com>
294
295         * glib/gmacros.h: Deprecate G_GNUC_(PRETTY)_FUNCTION. Bug #409360.
296
297 2008-01-27  Matthias Clasen  <mclasen@redhat.com>
298
299         * m4macros/glib-gettext.m4: Remove AC_CANONICAL_HOST from
300         GLIB_WITH_NLS again.  (#385132)
301
302 2008-01-27  Matthias Clasen  <mclasen@redhat.com>
303
304         * configure.in: Fix the pcre Unicode test to work with
305         LDFLAGS=-Wl,--as-needed.  (#484261, Mark Lee)
306
307 2008-01-27  Murray Cumming  <murrayc@murrayc.com>
308
309         * gio/gfile.c: (g_file_replace_contents),
310         (g_file_replace_contents_finish): Document that the new_etags output 
311         gchar* should be freed.
312
313 2008-01-25  Loïc Minier  <lool@dooz.org>
314
315         * glib/goption.c: (group_has_visible_entries),
316         (group_list_has_visible_entires), (g_option_context_get_help): Pass
317         context down the implementation to check for the main_group.
318         Bug #510292.
319         * glib/tests/option-context.c:
320         Don't set G_OPTION_FLAG_IN_MAIN in main_entries
321         (group_captions): only create group when actually adding it to the
322         context; add an exit(0) to make sure the test succeeds.
323
324 2008-01-23  Jens Granseuer  <jensgr@gmx.net>
325
326         * glib/gtestutils.c: (g_test_trap_fork):
327         * glib/tests/testing.c: (test_assertions): Only declare variables at
328         the beginning of a code block. Bug #511654.
329
330 2008-01-21  Matthias Clasen  <mclasen@redhat.com>
331
332         * configure.in: Bump version
333
334         * === Released 2.15.3 ===
335
336 2008-01-21  Tor Lillqvist  <tml@novell.com>
337
338         * glib-zip.in: Add the gio DLL to the runtime zipfile.
339
340 2008-01-21  Matthias Clasen  <mclasen@redhat.com>
341
342         * === Released 2.15.3 ===
343
344         * NEWS: Updates
345
346 2008-01-20  Murray Cumming  <murrayc@murrayc.com>
347
348         * glib/gchecksum.c: (g_checksum_update): Accept -1 for the data 
349         length if the data is a null-terminated string. Bug #510855.
350
351 2008-01-21  Alexander Larsson  <alexl@redhat.com>
352
353         * configure.in:
354         Only check for sys/inotify.h (see gio/ChangeLog) 
355
356 2008-01-18 16:51:23  Tim Janik  <timj@imendio.com>
357
358         * glib/gutils.h: don't define __GNUC_PREREQ which is not in the glib
359         namespace. for gcc, define G_INLINE_FUNC to "static inline" as with
360         all other C compilers, because newer GCC versions incompatibly
361         changed "extern inline" semantics.
362
363 2008-01-18  Murray Cumming  <murrayc@murrayc.com>
364
365         * glib/gfileutils.c:
366         * glib/gsequence.c:
367         * glib/gstring.c: Fixed some minor typos in the documentation.
368
369 2008-01-16  Dan Winship  <danw@gnome.org>
370
371         * glib/gchecksum.c (md5_sum_update): Fix another bug (which
372         doesn't affect the results, but may cause it to read bad memory).
373
374 2008-01-15  Alexander Larsson  <alexl@redhat.com>
375
376         * glib/gurifuncs.c:
377         Clarify docs for g_uri_unescape_string() (#508773)
378
379 2008-01-14  Dan Winship  <danw@gnome.org>
380
381         * m4macros/glib-2.0.m4: Support gio in AM_PATH_GLIB_2_0 (#509465)
382
383 2008-01-15  Dan Winship  <danw@gnome.org>
384
385         * glib/gchecksum.c (md5_sum_update): fix this; the previous code
386         gave the wrong md5sum when called in certain ways with buffers
387         larger than 64 bytes.
388         (g_checksum_update): remove the unnecessary "length > 1"
389         restriction
390
391         * tests/checksum-test.c: Rewrite this to be much more exhaustive
392         (and in particular to test the md5_sum_update bugfix).
393
394 2008-01-14  Matthias Clasen  <mclasen@redhat.com>
395
396         * configure.in: Bump version
397
398         * === Released 2.15.2 ===
399
400         * NEWS: Updates
401
402 2008-01-14  Alexander Larsson  <alexl@redhat.com>
403
404         * glib/gurifuncs.c:
405         Clarify docs for g_uri_escape_string (#508773)
406
407 2008-01-12  Andre Klapper  <a9016009@gmx.de>
408
409         * configure.in: ALL_LINGUAS: remove line breaks from previous 
410         commit to get damned-lies stats correct again. Add Sinhala (si).
411
412 2008-01-11  Matthias Clasen  <mclasen@redhat.com>
413
414         * glib/gtestutils.c: Fix a docs typo
415
416 2008-01-11 12:55:19  Tim Janik  <timj@imendio.com>
417
418         * tests/testingbase64.c: added g_base64_encode()/g_base64_decode()
419         test case by Asbjoern Pettersen. fixed up coding style.
420
421 2008-01-11 09:00:28  Tim Janik  <timj@imendio.com>
422
423         * glib/Makefile.am (install-exec-hook): use mv/sed/rm on a temporary
424         file instead of "sed -i" which is not portable enough.
425
426 2008-01-08  Alexander Larsson  <alexl@redhat.com>
427
428         * tests/cxx-test.C:
429         Add gio/gio.h include to check for c++ problems.
430
431 2008-01-07  Matthias Clasen  <mclasen@redhat.com>
432
433         * configure.in: Bump version
434
435         * === Released 2.15.1 ===
436
437 2008-01-07  Alexander Larsson  <alexl@redhat.com>
438
439         * configure.in:
440         Add gio/test/Makefile to AC_CONFIG_FILES
441
442 2008-01-07  Matthias Clasen  <mclasen@redhat.com>
443
444         * NEWS: Updates
445
446 2008-01-06  Matthias Clasen  <mclasen@redhat.com>
447
448         * glib/gregex.c: Add a translator comment (#503051, 
449         Pedro de Medeiros)
450
451 2008-01-06  Matthias Clasen  <mclasen@redhat.com>
452
453         * glib/gutils.h: Cope with gcc 4.3 changed 'extern inline'
454         semantics.  (#315437, patch by Loïc Minier)
455
456 2008-01-06  Matthias Clasen  <mclasen@redhat.com>
457
458         * glib/gspawn.c (fdwalk): Don't set open_max to
459         RLIM_INFINITY.  (#495589, Tommi Komulainen)
460
461 2008-01-06  Matthias Clasen  <mclasen@redhat.com>
462
463         * README.in, INSTALL.in: Document new dependencies.
464
465 2008-01-06  Matthias Clasen  <mclasen@redhat.com>
466
467         * gio-2.0.pc.in, gio-2.0-uninstalled.pc.in: Require glib-2.0
468         (#507628)
469
470 2008-01-04  Mathias Hasselmann  <mathias@openismus.com>
471
472         Resolve 64 bit-shift bug in g_markup_collect_attributes.
473         Spotted by Lieven van der Heide.
474
475         * glib/gmarkup.c: Use G_GUINT64_CONSTANT in bit-shift.
476
477 2008-01-02  Alvaro Lopez Ortega  <alvaro@sun.com>
478
479         * gio/gunixmount.c (g_unix_mount_unmount, g_unix_mount_eject):
480         These void functions were trying to return a value. It was causing
481         the compilation to fail.
482
483 2008-01-02  Alvaro Lopez Ortega  <alvaro@sun.com>
484
485         * glib/ghash.c (g_hash_table_replace, g_hash_table_insert): These
486         functions prototype defines its output as void, and therefore they
487         should not return any value. This patch fixes a compilation error:
488         the "return" clauses were incompatible with the functions prototype.
489
490 2007-12-31  Matthias Clasen  <mclasen@redhat.com>
491
492         * glib/gslice.c: Remove C99 comments
493
494 2007-12-24  Matthias Clasen  <mclasen@redhat.com>
495
496         * glib/gtestutils.h:
497         * glib/glib.symbols: Mark assertion functions as G_GNUC_NORETURN.
498         (#506461, Sebastian Dröge)
499
500 2007-12-24  Matthias Clasen  <mclasen@redhat.com>
501
502         * glib/gtestutils.c: Include sys/time.h.  (#505258)
503
504 2007-12-22  Mathias Hasselmann  <mathias@openismus.com>
505
506         Do not show empty groups in --help output. Initial patch from Yevgen
507         Muntyan. (#504142)
508
509         * glib/goption.c: Do not show empty groups in --help output.
510         * glib/tests/Makefile.am: Add option-context.c
511         * glib/tests/option-context.c: Test skipping of empty groups.
512
513 2007-12-22  Matthias Clasen  <mclasen@redhat.com>
514
515         * glib/gkeyfile.c: Remove wrong documentation about start group
516         handling.  (#476856, Areg Beketovski)
517
518 2007-12-21 18:02:30  Tim Janik  <timj@imendio.com>
519
520         * glib/Makefile.am: use "sed -i.bak <CMD> <FILE> && rm -f <FILE>.bak"
521         syntax for install-exec-hook, which seems to be the only "sed -i"
522         variant that is portable across linux and MacOS.
523
524 2007-12-21  Matthias Clasen  <mclasne@redhat.com>
525
526         * glib/gtestutils.h: Bring up to GLib coding standards: remove
527         C99 comments, trailing commas in enumerations and extra ; after
528         G_BEGIN/END_DECLS. Among other things, this makes xulrunner build
529         against GLib 2.15.
530
531         * glib/gtester.c: More of the same
532
533 2007-12-09  Hans Breuer  <hans@breuer.org>
534
535         * tests/gio-ls.c : adapt to recent api changes
536         * tests/testglib.c : variable declaration at the beginning of a block
537         
538         (Lieven van der Heide, #503602)
539         * win32-fixup.pl : process *.rc.in as well; substitute 
540         LT_CURRENT_MINUS_AGE
541         * glib/makefile.msc.in : alphabetic sorting of OBJECTS
542
543 2007-12-20  Matthias Clasen  <mclasen@redhat.com>
544
545         * configure.in: Bump version
546
547         * === Released 2.15.0 ===
548
549         * NEWS: Updates
550
551         * glib/Makefile.am: Fix make dist
552
553 2007-12-20 16:34:04  Tim Janik  <timj@imendio.com>
554
555         * glib/gtester-report: commented class definitions. moved HTML character
556         escaping out of javascript. fixed string->bool conversions. added performance
557         results to test case "Details" window.
558
559 2007-12-20  Matthias Clasen  <mclasen@redhat.com>
560
561         * glib/gchecksum.[hc] (g_checksum_new): Return NULL when 
562         the checksum_type is unknown.  (#501853)
563
564 2007-12-20  Christian Persch  <chpe@gnome.org>
565
566         * glib/gchecksum.c (g_checksum_new): Use g_slice_new0, to fix
567         "conditional jump or move depends on uninitialised value(s)" error
568         from valgrind. Bug #504527.
569
570 2007-12-20 15:17:04  Tim Janik  <timj@imendio.com>
571
572         * Makefile.decl: generate HTML reports for test-report perf-report full-report.
573
574 2007-12-20 15:03:51  Tim Janik  <timj@imendio.com>
575
576         * glib/gtester-report: new python script that generates an HTML
577         unit test report from the XML files generated by gtester.
578
579         * glib/Makefile.am: install gtester-report in $bindir and configure
580         it upon installation (version number and python shebang).
581
582 2007-12-19  Matthias Clasen  <mclasen@redhat.com>
583
584         * glib/glib.symbols: Add g_async_queue_new_full
585
586 2007-12-19 20:30:18  Tim Janik  <timj@imendio.com>
587
588         * glib/gtestutils.c: capture g_log() messages and send to gtester.
589         also, send assertion messages to gtester.
590
591         * glib/gtester.c: add error messages to output log file.
592         force child poll loop to abort if waitpid() signaled child exit,
593         eventhough the child's report file descriptor wasn't closed.
594
595 2007-12-19  Christian Persch  <chpe@gnome.org>
596
597         * glib/gchecksum.c: (g_checksum_type_get_length),
598         (g_checksum_get_digest):
599         * glib/gchecksum.h:
600         * glib/glib.symbols:
601         * tests/checksum-test.c: (test_checksum): Add
602         g_checksum_type_get_length, and change g_checksum_get_digest to use a
603         provided buffer instead of returning allocated memory. Bug #501853.
604
605 2007-12-19  Emmanuele Bassi  <ebassi@gnome.org>
606
607         * glib/gtimer.c (g_time_val_from_iso8601): Fix the date validation
608         check. (#503029)
609
610         * tests/testglib.c (various_string_tests): Add an invalid date
611         for testing the above fix.
612
613 2007-12-19  Alexander Larsson  <alexl@redhat.com>
614
615         * glib/gfileutils.[ch]:
616         * glib/glib.symbols:
617         Rename g_format_file_size_for_display to g_format_size_for_display.
618
619 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
620
621         * docs/reference/glib/glib-sections.txt:
622         * glib/gasyncqueue.c: (g_async_queue_new), (g_async_queue_new_full),
623           (g_async_queue_unref):
624         * glib/gasyncqueue.h: add g_async_queue_new_full() which takes a
625           GDestroyNotify function to free any remaining queue items when the
626           queue is destroyed after the final atomic unref (#367550).
627
628 2007-12-18 13:45:23  Tim Janik  <timj@imendio.com>
629
630         * glib/gtestutils.[hc]: added g_test_trap_assert_stdout_unmatched() and
631         g_test_trap_assert_stderr_unmatched(), based on a suggestion by Mathias
632         Hasselmann. reworked g_test_trap_assertions() to use flags to encode
633         assertion semantics, fixes #504227.
634
635 2007-12-16  Mathias Hasselmann  <mathias@openismus.com>
636
637         * glib/gutils.c:
638         Allow NULL strings in g_parse_debug_string. (#503862, Matthew Barnes)
639
640 2007-12-14  Matthias Clasen  <mclasen@redhat.com>
641
642         * glib/glib.symbols:
643         * glib/ghash.[hc]: Add hash table iterators.  (#500507,
644         Jean-Yves Lefort)
645
646         * tests/hash-test.c: Test iterators. 
647
648 2007-12-13  Mathias Hasselmann  <mathias@openismus.com>
649
650         Give exmples in error message unsupported case-changing escape
651         sequences. (503222)
652
653         * glib/gregex.c: Add examples to error message for PCRE-ERR37.
654
655 2007-12-13  Bastien Nocera  <hadess@hadess.net>
656
657         * glib/gtimer.c: (g_time_val_from_iso8601):
658         Don't try to parse dates that start with anything but a
659         digit, a plus or a minus sign, as those can't be valid
660         ISO8601 dates (Closes: #503029)
661
662 2007-12-13  Matthias Clasen  <mclasen@redhat.com>
663
664         * glib/gkeyfile.c (g_key_file_clear): Free group_hash.
665         (#503420, Christian Persch)
666
667 2007-12-12 16:06:11  Tim Janik  <timj@imendio.com>
668
669         * tests/testglib.c: split up tests and reworked code to use
670         the new test framework.
671
672         * tests/Makefile.am: added testglib to TEST_PROGS.
673
674 2007-12-11 Rahul Bhalerao <b.rahul.pm@gmail.com>
675
676         * configure.in: Added entry for Marathi Translations
677
678 2007-12-10  Matthias Clasen  <mclasen@redhat.com>
679
680         * glib/glib.h: Include gurifuncs.h
681
682 2007-12-10  Benjamin Otte  <otte@gnome.org>
683
684         * glib/garray.h: use an intermediate cast to void * in g_array_index()
685         to not trigger cast alignment warnings, fixes #502927.
686
687 2007-12-10 15:08:59  Tim Janik  <timj@imendio.com>
688
689         * let g_warn_if_fail replace g_assert as discussed here:
690           http://mail.gnome.org/archives/gtk-devel-list/2007-October/msg00089.html
691
692         * fix bug #502498: Test framework assertion failures should follow
693         gcc error format.
694
695         * gmessages.h, gmessages.c: deprecated g_assert_warning() which is
696         unused now. removed g_assert*() definitions whcih are provided by 
697         gtestutils.h now. added g_warn_if_reached() and g_warn_if_fail()  
698         which are recommended as g_assert/g_assert_not_reached replacements
699         for non-test programs.
700         added g_warn_message() to implement g_warn_*() macros.
701         use emacs-next-error friendly formatting for file:line: for warnings.
702
703         * gtestutils.h, gtestutils.c: use emacs-next-error friendly formatting.
704         implement g_assert_not_reached() with g_assertion_message() and
705         g_assert() in terms of g_assertion_message_expr() so we'll be able to
706         provide assertion messages in test logs.
707
708         * gkeyfile.c, gbookmarkfile.c: changed g_assert*() to g_warn_if_fail()
709         or g_return_if_fail() where suitable.
710
711         * gio/: changed g_assert to g_warn_if_fail.
712
713 2007-12-10 13:02:08  Tim Janik  <timj@imendio.com>
714
715         * glib/gtestutils.c (g_assertion_message_cmpnum): applied patch by Tommi
716         Komulainen to fix int64 printouts, fixes #502511.
717
718 2007-12-10  Matthias Clasen  <mclasen@redhat.com>
719
720         * glib/gstrfuncs.h:
721         * glib/gstrfuncs.c (g_dpgettext): Change prototype to take 
722         msgctxtid + offset instead of two strings, to avoid duplication
723         of string constants if the compiler/linker don't perform constant
724         suffix merging.  (#502590, Christian Persch)
725
726         * glib/gi18n.h:
727         * glib/gi18n-lib.h: Adapt the definitions of C_() and Q_().
728
729 2007-12-09  Hans Breuer  <hans@breuer.org>
730
731         * tests/gio-ls.c : (new file) a test program emulating some of 'ls'
732         * tests/makefile.msc.in : build it (currently on win32)
733
734         * **/makefile.msc glib/makefile.msc.in : removed -GD to compile
735         with msvc9 (vs2008) with less complains
736         
737         * glibconfig.h.win32.in : #define G_HAVE_ISO_VARARGS 1 for
738         msv8 (vs2005) and above
739         
740         * glib/gfileutils.c : s/stricmp/_stricmp/
741         * msvc_recommended_pragmas.h : work around Microsoft's premature 
742         attempt to deprecate the C-Library
743
744         * tests/makefile.msc.in : added checksum-test
745
746 2007-12-08  Christian Persch  <chpe@gnome.org>
747
748         * gio/glocalfileinfo.c: (get_thumbnail_attributes): Add forgotten
749         #ifdef G_OS_WIN32 to fix the build on linux.
750
751 2007-12-08  Hans Breuer  <hans@breuer.org>
752
753         * glib/makefile.msc.in : build gchecksum.obj
754
755 2007-12-06  Mathias Hasselmann  <mathias@openismus.com>
756
757         * glib/ghash.c: Call destroy notify when destroying
758         the hash table in g_hash_table_unref.
759
760 2007-12-06 13:29:00  Tim Janik  <timj@imendio.com>
761
762         * glib/gtester.c (child_report_cb): detect non-blocking fd EOF
763         by read()==0 following poll(), needed on MacOS.
764
765 2007-12-06  Mathias Hasselmann  <mathias@openismus.com>
766
767         * glib/gunidecomp.c: Mention g_utf8_normalize()
768         returns NULL on invalid string. (#501997)
769
770 2007-12-06  Mathias Hasselmann  <mathias@openismus.com>
771
772         * glib/gerror.c: Improve wording for g_propagate_error docs.
773
774 2007-12-06 09:27:42  Tim Janik  <timj@imendio.com>
775
776         * tests/scannerapi.c: added new scanner test from #501654, by
777         Patrick Hulin with various modifications.
778         reworked coding style, adapted to new testing framework, fixed
779         token parser test and use a forked sub process to test
780         g_scanner_error() output messages.
781
782 2007-12-05 17:58:18  Tim Janik  <timj@imendio.com>
783
784         * glib/gtester.c: added -m=thorough support to gtester.
785
786 2007-12-05 17:21:05  Tim Janik  <timj@imendio.com>
787
788         * glib/glib/gtestutils.c: print out random seed for verbose tests,
789         also adapted test result reporting slightly in verbose mode to allow
790         custom debugging output. support "thorough" as test mode alis for "slow".
791
792         * glib/glib/gtestutils.h: added g_test_thorough().
793
794         * glib/glib/gtester.c: print out the last random seed when tests fail.
795         added result attribute to test case status logging to easily spot
796         failing tests in log files. disabled debugging output when skipping tests.
797
798 2007-12-05 11:43:22  Tim Janik  <timj@imendio.com>
799
800         * glib/gtestutils.[hc]: added g_test_add_data_func() to pass data
801         into tests. allow data arguments for fixture tests.
802
803         * glib/gtestutils.c: fixed fatal log flag setup, so tests really abort
804         upon criticals/warnings/errors.
805
806         * glib/tests/testing.c: test test_data arguments.
807
808         * glib/gtester.c: some prototype fixups.
809
810 2007-12-05  Tor Lillqvist  <tml@novell.com>
811
812         * glib/win_iconv.c: Add "shift-jis" as an alternative spelling of
813         "shift_jis".
814
815 2007-12-05  Ryan Lortie  <desrt@desrt.ca>
816
817         * autogen.sh: for the benefit of git users, checkout build/ if it is
818         missing
819         * .gitignore: but after that, ignore it.
820
821 2007-12-05  Ryan Lortie  <desrt@desrt.ca>
822
823         * glib/ghash.c: ungtk-docify some comments for internal functions
824
825 2007-12-04  Emmanuele Bassi  <ebassi@gnome.org>
826
827         * gio/glocalfileinfo.c: Replace the copy-and-paste MD5 digest
828         generation with GChecksum.
829
830 2007-12-04  Emmanuele Bassi  <ebassi@gnome.org>
831
832         * glib/gchecksum.[ch]: Add GChecksum, a generic wrapper around
833         various hashing algorithms. At the moment, the MD5, SHA-1 and
834         SHA-256 algorithms are supported. (#443648)
835
836         * glib/glib.h:
837         * glib/Makefile.am:
838         * glib/glib.symbols: Build glue for GChecksum
839
840         * tests/Makefile.am
841         * tests/checksum-test.c: Add test suite for GChecksum.
842
843 2007-12-03  Ryan Lortie  <desrt@desrt.ca>
844
845         * glib/ghash.c: no code changes; add comments to document the internal
846         functions.
847
848 2007-12-03  Ryan Lortie  <desrt@desrt.ca>
849
850         * glib/ghash.c: no code changes; reorder functions to remove the need
851         for forward declarations.
852
853 2007-12-03  Ryan Lortie  <desrt@desrt.ca>
854
855         * glib/ghash.c (g_hash_table_lookup_node,
856         g_hash_table_lookup_extended, g_hash_table_insert_internal,
857         g_hash_node_new): improve clarity in some functions
858
859 2007-12-03  Ryan Lortie  <desrt@desrt.ca>
860
861         * glib/ghash.c: rename 'node' to 'node_ptr' where appropriate
862
863 2007-12-03  Ryan Lortie  <desrt@desrt.ca>
864
865         * glib/ghash.c: convert G_HASH_TABLE_RESIZE() macro to inline function
866
867 2007-12-03  Ryan Lortie  <desrt@desrt.ca>
868
869         * glib/glib.symbols (glib_gettext): remove stray (duplicate) entry
870         from file to fix the build
871
872 2007-12-03  Behdad Esfahbod  <behdad@gnome.org>
873
874         * glib/gnulib/Makefile.am: Fix EXTRA_DIST automake warnings. (#501107)
875
876 2007-12-03  Hans Breuer  <hans@breuer.org>
877
878         * glib/glib.symbols : added glib_gettext (in use by gio)
879         * makefile.msc : also try building gio
880         
881         * glib/gmarkup.c : use G_GUINT64_CONSTANT() to avoid 
882         'bad suffix on number'
883         * glib/gtestutils.c : declare cariable at the beginning of the block,
884         include <io.h> for G_OS_WIN32
885         * makefile.msc.in : add gurifuncs and gtestutils
886
887 2007-12-03  Ryan Lortie  <desrt@desrt.ca>
888
889         * glib/ghash.c: create a common function for the many places where all
890         nodes in the table are removed (remove_all, steal_all, destroy, unref,
891         etc...)
892
893 2007-12-03  Ryan Lortie  <desrt@desrt.ca>
894
895         * tests/hash-test.c (second_hash_test): fix memory leak, add a few
896         extra sanity tests.
897
898 2007-12-03  Matthias Clasen  <mclasen@redhat.com>
899         
900         * glib/gkeyfile.c: Don't call g_get_language_names() per-key.
901         (#500638, Michael Meeks)
902
903 2007-12-03  Marco Barisione <marco@barisione.org>
904
905         * glib/gregex.c:
906         * glib/gregex.h: Add new error codes for when compilation fails and
907         make compilation error translatable. (#482313, Morten Welinder)
908
909 2007-12-03  Matthias Clasen  <mclasen@redhat.com>
910
911         * glib/gkeyfile.c: Add a hash table to speed up group lookups,
912         which GKeyFile does quite a lot.  
913
914 2007-12-03  Alexander Larsson  <alexl@redhat.com>
915
916         * configure.in:
917         Add xattr checks for OSX style API (#500506)
918
919 2007-12-03  Ryan Lortie  <desrt@desrt.ca>
920
921         * glib/ghash.c: merge more common code into functions.  Vastly
922         simplify loop logic in g_hash_table_foreach_remove_or_steal().
923
924 2007-12-01  Behdad Esfahbod  <behdad@gnome.org>
925
926         * Makefile.am: Don't descend into build/. (#500875)
927
928 2007-11-28  Matthias Clasen  <mclasen@redhat.com>
929
930         * glib/gmarkup.h:
931         * glib/gmarkup.c: 
932         * glib/gerror.c: Add Since: tags to new API, other doc improvements.
933
934 2007-11-28  Matthias Clasen  <mclasen@redhat.com>
935
936         * glib/gurifuncs.c: Some doc cleanups
937
938 2007-11-28  Matthias Clasen  <mclasen@redhat.com>
939
940         * glib/gtestutils.c: Fix up some doc comments, avoid C99 comments
941
942         * glib/gconvert.c: De-doc-commentify static functions to
943         shut up gtk-doc.
944
945         * glib/gutils.c: Fix the glib_gettext doc comment.
946
947 2007-11-28  Tor Lillqvist  <tml@novell.com>
948
949         * config.h.win32.in: Update to match what configure produces.
950
951 2007-11-28  Alexander Larsson  <alexl@redhat.com>
952
953         * glib/gstring.c (g_string_append_uri_escaped):
954         Move this function before g_string_append_c so that
955         we avoid the plt call due to the undefinf of g_string_append_c
956
957 2007-11-28  Emmanuele Bassi  <ebassi@gnome.org>
958
959         * gio/Makefile.am: Remove makegioalias.pl from the marshal files
960         and avoid it being cleaned up when running make clean.
961
962 2007-11-28  Alexander Larsson  <alexl@redhat.com>
963
964         * glib/glib.symbols:
965         Add in the new symbols
966         
967         * glib/gurifuncs.c:
968         Use the aliases framework
969         
970         * glib/glibintl.h:
971         * glib/gutils.c:
972         Make the alias stuff work now that glib_gettext
973         is exported to libgio. 
974
975 2007-11-27  Ryan Lortie  <desrt@desrt.ca>
976
977         * glib/ghash.c (g_hash_table_insert, g_hash_table_replace,
978         g_hash_table_insert_internal): insert/replace were identical except
979         for a single line.  Replace both with a common function.
980
981 2007-11-27  Alexander Larsson  <alexl@redhat.com>
982
983         * gio/Makefile.am:
984         * gio/gurifuncs.[ch]:
985         * glib/Makefile.am:
986         * glib/gstring.[ch]:
987         * glib/gurifuncs.[ch]:
988         Moved gurifuncs from gio to glib
989
990 2007-11-27  Alexander Larsson  <alexl@redhat.com>
991
992         * gio/gfileinfo.[ch]:
993         * glib/gfileutils.[ch]:
994         Move g_format_file_size_for_display from gio to glib
995
996 2007-11-27  Alexander Larsson  <alexl@redhat.com>
997
998         * configure.in:
999         Allow configuration of gio-module-dir
1000         
1001         * gio-2.0.pc.in:
1002         Export giomodules location as giomodule variable
1003
1004 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
1005
1006         * tests/markup-collect.c: Add some tests for invalid booleans
1007
1008 2007-11-26  Ryan Lortie  <desrt@desrt.ca>
1009  
1010         Add new function g_markup_collect_attributes (bug #496847).
1011  
1012         * glib/glib.symbols: add g_markup_collect_attributes
1013  
1014         * docs/reference/glib/glib-sections.txt: 
1015         * glib/gmarkup.h:
1016         * glib/gmarkup.c: add g_markup_collect_attributes and new enumerated
1017         type GMarkupCollectType.  Add new error code
1018         G_MARKUP_ERROR_MISSING_ATTRIBUTE that is thrown by the attribute
1019         collector.
1020
1021 2007-11-27  Tor Lillqvist  <tml@novell.com>
1022
1023         * glib/win_iconv.c: Some improvements, being upstreamed.
1024         (must_use_null_useddefaultchar): New function, checks for those
1025         codepages for which one must pass a NULL lpUsedDefaultChar pointer
1026         to WideCharToMultiByte().
1027         (kernel_wctomb): Use it.
1028         (kernel_wctomb): Return with E2BIG immediately if bufsize is zero.
1029
1030 2007-11-27  Tor Lillqvist  <tml@novell.com>
1031
1032         * glib/gutils.c (_glib_get_locale_dir) [Win32]: Use either
1033         lib/locale or share/locale depending on which one is in
1034         GLIB_LOCALE_DIR. When the configury recognizes GNU gettext (based
1035         on the _nl_msg_cat_cntr variable, eek), share/locale gets used.
1036
1037         * glib-zip.in: Likewise, look for message catalogs either in
1038         lib/locale or share/locale.
1039
1040 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
1041
1042         * gio/gfileattribute.c: Fix up a doc comment.
1043
1044 2007-11-26  Alexander Larsson  <alexl@redhat.com>
1045
1046         * Makefile.am:
1047         * configure.in:
1048         * gio-2.0-uninstalled.pc.in:
1049         * gio-2.0.pc.in: 
1050         * gio-unix-2.0-uninstalled.pc.in:
1051         * gio-unix-2.0.pc.in:
1052         * gio/
1053         * docs/reference/gio
1054         Merged gio-standalone into glib.
1055         
1056         * glib/glibintl.h:
1057         * glib/gutils.c:
1058         Export glib_gettext so that gio can use it
1059         Add P_ (using same domain for now)
1060         Add I_ as g_intern_static_string
1061
1062 2007-11-26  Tor Lillqvist  <tml@novell.com>
1063
1064         * glib/win_iconv.c: ISO8859-1 is CP28591, not CP1252.
1065
1066 2007-11-26  Tor Lillqvist  <tml@novell.com>
1067
1068         Implement #491549: On Windows, always use the native API for
1069         character set conversions instead of GNU libiconv. Almost all
1070         codesets supported by GNU libiconv exist as Windows codepages.
1071         One missing feature is the "C99" and "JAVA" pseudo codesets, but I
1072         doubt that is worth worrying about.
1073         
1074         * glib/win_iconv.c: New file. iconv() implementation for
1075         Windows. Placed in the public domain by Yukihiro Nakadaira
1076         <yukihiro.nakadaira@gmail.com>. From
1077         http://yukihiro.nakadaira.googlepages.com/win_iconv.zip, his
1078         2007-11-17 version.
1079
1080         * glib/gconvert.c: Include win_iconv.c on Windows.
1081
1082         * glib/Makefile.am: Add win_iconv.c to EXTRA_DIST.
1083         
1084         * configure.in: Bypass iconv checks on Windows. 
1085
1086 2007-11-25  Tor Lillqvist  <tml@novell.com>
1087
1088         * glib/gtestutils.c: Add conditionals for non-Unix. Just g_error()
1089         unless G_OS_UNIX for now.
1090
1091 2007-11-25  Matthias Clasen  <mclasen@redhat.com>
1092
1093         * configure.in: Require gtk-doc 1.8.
1094
1095         * glib/gasyncqueue.c:
1096         * glib/gdate.c:
1097         * glib/gfileutils.c:
1098         * glib/gmain.c:
1099         * glib/gmarkup.c:
1100         * glib/gregex.c:
1101         * glib/gtestutils.c:
1102         * glib/gutils.c: Use gtk-doc abbreviations for 
1103         examples in doc comments.
1104
1105 2007-11-24  Matthias Clasen  <mclasen@redhat.com>
1106
1107         * */Makefile.am: Replace INCLUDES by AM_CPPFLAGS, other
1108         cleanups.
1109
1110 2007-11-24  Matthias Clasen  <mclasen@redhat.com>
1111
1112         * tests/base64-test.c: Fix a memory overrun.
1113
1114 2007-11-24  Matthias Clasen  <mclasen@redhat.com>
1115
1116         * glib/gutils.c: Remove leftover ENABLE_NLS #ifdefs.
1117
1118 2007-11-23  Matthias Clasen  <mclasen@redhat.com>
1119
1120         * glib/gbase64.c (g_base64_encode): Don't refuse to encode
1121         a single byte.  (Milan Crha)
1122
1123         * tests/base64-test.c: Test encoding short strings.
1124
1125 2007-11-23  Matthias Clasen  <mclasen@redhat.com>
1126
1127         * glib/gi18n-lib.h: 
1128         * glib/gi18n.h: Define a two-argument macro C_() for marking
1129         translatable strings with context and implement C_() and Q_()
1130         using g_dpgettext().  (#142676, Morten Welinder)
1131
1132         * glib/glib.symbols:
1133         * glib/gstrfuncs.[hc]: Implement g_dpgettext().
1134
1135 2007-11-23  Matthias Clasen  <mclasen@redhat.com>
1136
1137         * glib/goption.c: Use g_print to print out --help text in 
1138         locale encoding.  (#469551, Takao Fujiwara)
1139
1140 2007-11-22  Matthias Clasen  <mclasen@redhat.com>
1141
1142         * glib/gkeyfile.c: Set length out param in list-returning functions
1143         to 0 when returning NULL.  (#498728, Christian Persch)
1144
1145 2007-11-21 21:06:47  Tim Janik  <timj@imendio.com>
1146
1147         * Makefile.decl: initialize automake variables EXTRA_DIST and
1148         TEST_PROGS for unconditional appending via += in other makefiles.
1149         define recursive test targets: test, test-report, perf-report,
1150         full-report, as described here:
1151         http://mail.gnome.org/archives/gtk-devel-list/2007-November/msg00000.html
1152
1153         * Makefile.am:
1154         * build/win32/vs8/Makefile.am, build/win32/dirent/Makefile.am:
1155         * build/win32/Makefile.am, build/Makefile.am:
1156         * docs/Makefile.am, docs/reference/Makefile.am:
1157         * docs/reference/glib/Makefile.am, docs/reference/gobject/Makefile.am:
1158         * gmodule/Makefile.am, tests/Makefile.am:
1159         * tests/refcount/Makefile.am, tests/gobject/Makefile.am:
1160         * glib/update-pcre/Makefile.am, glib/libcharset/Makefile.am:
1161         * glib/tests/Makefile.am, glib/pcre/Makefile.am:
1162         * glib/gnulib/Makefile.am, gobject/Makefile.am, m4macros/Makefile.am:
1163         * gthread/Makefile.am, glib/Makefile.am:
1164         include $(top_srcdir)/Makefile.decl, adapted EXTRA_DIST assignments.
1165
1166         * glib/tests/Makefile.am: removed example testing rules.
1167
1168         * glib/tests/testing.c: conditionalized performance and slow tests.
1169
1170         * glib/gtestutils.h:
1171         * glib/gtestutils.c: work around g_test_config_vars not changing its
1172         exported value after value assignments, aparently due to symbol aliases.
1173
1174         * glib/gtester.c: fixed off-by-one error which produced junk in logs.
1175
1176         * configure.in: check for python >= 2.4 and provide $PYTHON for scripts.
1177
1178 Tue Nov 20 15:59:55 2007 +0100 Tim Janik
1179
1180         Renamed gtestframework to gtestutils.
1181
1182         * glib/glib.h:
1183         * glib/Makefile.am: added gtestutils.h to public includes.
1184
1185         * glib/gtestutils.c: include gtestutils.h.
1186
1187         * glib/gtestutils.h:
1188         * glib/glib.symbols:
1189         * glib/tests/testing.c: renamed gtestframework to gtestutils.
1190
1191         * glib/gtestframework.h: renamed to gtestutils.h.
1192
1193         * glib/gtestframework.c: renamed to gtestutils.c.
1194
1195 Tue Nov 20 15:29:34 2007 +0100 Tim Janik
1196
1197         glib/gtestframework.c: g_test_init(): make warnings and criticals fatal for all test programs.
1198
1199 Wed Nov 14 20:35:05 2007 +0100 Tim Janik
1200
1201         gtestframework.c: added test API documentation by Sven Herzberg and Tim Janik.
1202
1203 Wed Nov 14 19:10:28 2007 +0100 Tim Janik
1204
1205         gtestframework.[hc]: implemented g_test_queue_destroy() and g_test_queue_unref().
1206
1207 Fri Nov 9 12:28:52 2007 +0100 Tim Janik
1208
1209         Added g_test_bug() and related API.
1210
1211         * gtester.c: handle G_TEST_LOG_MESSAGE and test test message API.
1212
1213         * gtestframework.h, gtestframework.c: added test message API and convenience
1214         API to send test messages about bug URLs.
1215
1216 Fri Nov 9 11:35:11 2007 +0100 Tim Janik
1217
1218         Added API to access test framework configuration.
1219
1220         * gtestframework.h, gtestframework.c: export testing configuration to test
1221         programs with g_test_quick(), g_test_perf(), g_test_verbose(), g_test_quiet().
1222
1223 Thu Nov 8 17:55:09 2007 +0100 Tim Janik
1224
1225         gtester: implemented logic to handle failing tests, self tests, and validate XML reports.
1226
1227         * gtester.c: terminate when tests failed. keep XML valid when test cases fail.
1228         restart test binaries when tests fail, resuming after the last processed test.
1229         support --gtester-selftest to run gtester itself as test program.
1230         support --test-arg=<arg> to pass args along to test programs. added
1231         main_selftest() which does a simplistic fixture test. fail if exit
1232         code of test programs is not 0.
1233
1234         * gtestframework.h: added G_TEST_LOG_SKIP_CASE test log message type.
1235
1236         * gtestframework.c: support --GTestSkipCount=<n> to skip a number of tests.
1237
1238         * tests/Makefile.am: added test-report: for demonstration purposes.
1239         added gtester-xmllint-check: and hooked it up into check:, this rule calls
1240         gtester as test program, running it's selftest, and then uses xmllint to
1241         validate the generate XML test log file.
1242
1243 Thu Nov 8 14:51:37 2007 +0100 Tim Janik
1244
1245         gtester: implemented XML logging.
1246
1247         * glib/gtester.c: log test messages to XML output file. beautified normal test
1248         result output.
1249
1250         * glib/gtestframework.c: fixed GTimer leak.
1251
1252         * glib/tests/Makefile.am: start gtester with --verbose.
1253
1254 Thu Nov 8 12:33:31 2007 +0100 Tim Janik
1255
1256         tests/Makefile.am: execute test programs with gtester, add test: to check:
1257
1258 Thu Nov 8 12:18:51 2007 +0100 Tim Janik
1259
1260         Fixed PLT symbol exports for gtestframework.h.
1261
1262         * glib/glib.symbols: added all exported gtestframework.h symbols.
1263
1264         * glib/gtestframework.c: include galias.h, galiasdef.c, define __G_TESTFRAMEWORK_C__.
1265
1266 Thu Nov 8 11:31:12 2007 +0100 Tim Janik
1267
1268         glib/gtester.c: fixed debugging flag.
1269
1270 Wed Nov 7 17:56:26 2007 +0100 Tim Janik
1271
1272         fixed bogus unistd.h include.
1273
1274 Wed Nov 7 17:53:30 2007 +0100 Tim Janik
1275
1276         Implemented test log IPC.
1277
1278         * gtester.c: read and decode log messages from test binary child processes.
1279         fixed GIOChannel and child watch handling to process all messages and avoid
1280         hangs. pass --verbose and --quiet on to children, default to --quiet.
1281
1282         * gtestframework.h: export g_test_log_type_name().
1283
1284         * gtestframework.c: send test log to --GTestLogFD=<fd> if given, removed
1285         bogus -o-option.
1286
1287 Tue Nov 6 20:07:44 2007 +0100 Tim Janik
1288
1289         gtester.c: support test case listing through gtester.
1290
1291 Tue Nov 6 20:01:06 2007 +0100 Tim Janik
1292
1293         gtestframework.c: fixed testpath matches for automatic root suite.
1294
1295 Tue Nov 6 19:50:33 2007 +0100 Tim Janik
1296
1297         gtester.c: adapted to become a rudimentary test binary launcher.
1298
1299         * gtester.c: increased read buffer size to match common unix pipe buffer size.
1300         added argument parsing and usage. changed io handling to capture and replicate
1301         stdout. fixed io handlers to be cleaned up when the child process exits (catch
1302         G_IO_ERR | G_IO_HUP). we now use pending/iteration instead of a main loop
1303         structure, to keep running until the child process exits and all io has been
1304         processed. launch the test binaries given on the command line. don't quit when
1305         a child couldn't be launched but --keep-going was specified.
1306
1307 Tue Nov 6 17:11:37 2007 +0100 Tim Janik
1308
1309         Integrated gtester program into build process.
1310
1311         * Makefile.am: build and install gtester binary.
1312
1313         * gtester.c: fixed up coding style and removed hard wired test coded.
1314
1315 Tue Nov 6 16:12:32 2007 +0100 Sven Herzberg
1316
1317         glib/gtester.c:Small -Wall fix
1318
1319 Tue Nov 6 16:05:06 2007 +0100 Sven Herzberg
1320
1321         glib/gtester.c:Implemented nonblocking reading properly now
1322
1323 Mon Nov 5 13:53:23 2007 +0100 Sven Herzberg
1324
1325         glib/gtester.c:Quit the application when the output is parsed completely, not just the process finished
1326
1327 Mon Nov 5 12:00:16 2007 +0100 Sven Herzberg
1328
1329         glib/gtester.c:Read the output of the child process
1330
1331 Mon Nov 5 11:50:59 2007 +0100 Sven Herzberg
1332
1333         glib/gtester.c:Use g_spawn_async_with_pipes()
1334
1335 Mon Nov 5 11:50:08 2007 +0100 Sven Herzberg
1336
1337         glib/gtester.c:Spawn a process async and quit gtester after the child process exited
1338
1339 Mon Nov 5 11:30:45 2007 +0100 Sven Herzberg
1340
1341         glib/gtester.c:Added a first revision of gtester
1342
1343 Tue Nov 6 16:47:06 2007 +0100 Tim Janik
1344
1345         Implemented test log serialization.
1346
1347         * glib/gtestframework.h: added g_test_log*() API.
1348
1349         * glib/gtestframework.c: implement test log serialization.
1350
1351 Tue Nov 6 14:24:54 2007 +0100 Tim Janik
1352
1353         Implemented test logging basics.
1354
1355         * glib/gtestframework.c: added --debug-log and --verbose, implemented
1356         test information logging.
1357
1358         * testing.c: test g_test_maximized_result() and g_test_minimized_result().
1359
1360 Tue Nov 6 11:52:14 2007 +0100 Tim Janik
1361
1362         Implemented g_test_timer*().
1363
1364         * gtestframework.c: implemented g_test_timer*().
1365
1366         * tests/testing.c: added a g_test_timer*() test.
1367
1368 Mon Nov 5 18:28:24 2007 +0100 Tim Janik
1369
1370         Implemented support for testpaths.
1371
1372         * gtestframework.c: implemented g_test_add_vtable() and g_test_add_func().
1373
1374         * tests/testing.c: use g_test_add() and g_test_add_func() to majorly simplify main().
1375
1376 Mon Nov 5 15:56:42 2007 +0100 Tim Janik
1377
1378         testing.c: added tests for the g_test_rand*() API.
1379
1380 Mon Nov 5 15:55:38 2007 +0100 Tim Janik
1381
1382         Implemented g_test_rand*().
1383
1384         * gtestframework.h: fixed g_assert_cmp*() to evaluate arguments only once.
1385         added g_assert_cmpuint(). completed g_test_rand*() to cover bits, ints,
1386         doubles and ranges.
1387
1388         * gtestframework.c: fixed "--seed" option and implemented g_test_rand*().
1389
1390 Mon Nov 5 15:51:43 2007 +0100 Tim Janik
1391
1392         testing.c: added tests for g_assert_cmphex() and forked test traps.
1393
1394 Mon Nov 5 15:10:18 2007 +0100 Tim Janik
1395
1396         Implemented g_test_trap_fork() API.
1397
1398         * gtestframework.h: added g_assert_cmphex(). reworked g_test_trap*() API.
1399
1400         * gtestframework.c: implemented g_test_trap_fork() API.
1401
1402 Thu Nov 1 15:05:07 2007 +0100 Tim Janik
1403
1404         * glib/gtestframework.c:
1405
1406         that match a given test path.
1407         (g_test_run_suite): run suite only if it matches the existing test paths.
1408
1409         * glib/tests/testing.c: minor rename.
1410
1411 Thu Nov 1 13:45:55 2007 +0100 Tim Janik
1412
1413         GTest framework started.
1414
1415         * glib/gtestframework.h: testing framework API as proposed on gtk-devel-list.
1416         includes elaborate assertions, performance report functions, test traps,
1417         test timer, test random numbers, teardoiwn garbage collection functions
1418         and general test case / test suite management APIs.
1419
1420         * glib/gtestframework.c: first test framework implementation. already covers
1421         some test suite management APIs and assertion message implementations.
1422
1423         * glib/tests/testing.c: test program for the testing framework.
1424
1425         * glib/tests/Makefile.am: complie testing.c as test. run all tests as part of
1426         make test:.
1427
1428 Wed Oct 31 15:42:48 2007 +0100 Tim Janik
1429
1430         glib/Makefile.am: build tests/ subdir after building libglib.
1431
1432 Tue Oct 30 16:17:32 2007 +0100 Tim Janik
1433
1434         Fixed up internal 'g_test*' names.
1435
1436         * refcount/signals.c:
1437         * refcount/objects.c:
1438         * refcount/objects2.c:
1439         * refcount/closures.c:
1440         * refcount/properties.c:
1441         * refcount/properties2.c: changed namespace prefix from g_test_* to my_test_*
1442         to not clash with newly introduced g_test* API in glib.
1443
1444 Tue Oct 30 14:41:26 2007 +0100 Tim Janik
1445
1446         Added gtestframework.[hc] and glib/tests/.
1447
1448 2007-11-20  Sven Neumann  <sven@gimp.org>
1449
1450         * glib/gerror.c (g_error_add_prefix): use g_strconcat() instead of
1451         g_strjoin() to concatenate two strings.
1452
1453 2007-11-19  Marco Barisione  <marco@barisione.org>
1454
1455         * glib/gregex.c: When the compilation of a pattern fails in the error
1456         message use the character offset and not the byte offset.
1457
1458         * glib/gregex.c: Pass an unsigned long instead of an int to
1459         pcre_fullinfo() to avoid problems on 64-bit systems (#498113, Kouhei
1460         Sutou)
1461
1462 2007-11-19 10:30:33  Tim Janik  <timj@imendio.com>
1463
1464         * configure.in: updated version number to 2.15.0 for development.
1465
1466 2007-11-18  Matthias Clasen  <mclasen@redhat.com>
1467
1468         * glib/gbase64.c: Documentation improvements.  (#496518,
1469         Stefan Schulze Frielinghaus)
1470
1471 2007-11-18  Matthias Clasen  <mclasen@redhat.com>
1472
1473         * configure.in: Check whether assembler supports numerical local
1474         labels.  
1475
1476         * glib/gatomic.c: Fix powerpc implementation of atomic ops for 
1477         platforms where the assembler doesn't support numerical local
1478         labels.  (#445362)
1479
1480 2007-11-15  Ryan Lortie  <desrt@desrt.ca>
1481
1482         * docs/reference/glib/tmpl/markup.sgml:
1483         * glib/gmarkup.h:
1484         * glib/gmarkup.c: new flag G_MARKUP_PREFIX_ERROR_POSITION to cause the
1485         parser to prepend location information (ie: "Error on line %d, char
1486         %d:") to errors generated by the GMarkupParser callbacks.
1487
1488         Closes #496046.
1489
1490 2007-11-15  Ryan Lortie  <desrt@desrt.ca>
1491
1492         * docs/reference/glib/glib-sections.txt:
1493         * glib/glib.symbols:
1494         * glib/gerror.h:
1495         * glib/gerror.c: new functions g_prefix_error and
1496         g_propagate_prefixed_error.
1497
1498 2007-11-13  Cody Russell  <bratsche@gnome.org>
1499
1500         * docs/reference/gobject/gobject-docs.sgml:
1501         * docs/reference/gobject/tut_gsignal.xml:
1502         * docs/reference/gobject/tut_gtype.xml:
1503         * docs/reference/gobject/tut_intro.xml:
1504         * docs/reference/gobject/tut_tools.xml:
1505         * docs/reference/gobject/tut_howto.xml:
1506         * docs/reference/gobject/tut_gobject.xml: Documentation fixes.
1507         Recommend macro type names such as NAUTILUS_TYPE_WINDOW (not
1508         NAUTILUS_WINDOW_TYPE).  Fixed text which erroneously stated that 
1509         superclass initializers don't run when an object is 
1510         instantiated.  Fixed numerous spelling mistakes.  Minor grammar 
1511         edits. (#490637, Adam Dingle)
1512
1513 2007-11-09  Matthias Clasen <mclasen@redhat.com>
1514
1515         * glib/gkeyfile.c: Coding style cleanups and doc 
1516         improvements.  (#491979, #491982, Areg Beketovski)
1517
1518 2007-11-09  Matthias Clasen <mclasen@redhat.com>
1519
1520         * glib/giochannel.c: Coding style cleanups and doc 
1521         improvements.  (#491975, Areg Beketovski)
1522
1523 2007-11-09  Matthias Clasen <mclasen@redhat.com>
1524
1525         * glib/gmain.c (g_main_context_iteration): Improve the
1526         docs.  (#491974, Areg Beketovski)
1527
1528 2007-11-09  Matthias Clasen <mclasen@redhat.com>
1529
1530         * glib/gdate.c: Coding style fixes.
1531
1532 2007-11-09  Matthias Clasen <mclasen@redhat.com>
1533
1534         * configure.in: Add AM_PROG_CC_C_O.
1535
1536         * Makefile.am: Remove the install-exec-local hook and use
1537         configexecincludedir_DATA instead, in an attempt to avoid
1538         automake 1.9 <> 1.10 incompatibilities.
1539
1540         * glib/Makefile.am: Rename MIRRORING_TAB_SOURCES, since
1541         automake 1.10 complains.
1542
1543 2007-11-09  Matthias Clasen <mclasen@redhat.com>
1544
1545         * glib/gspawn.c (g_spawn_sync): Improve the docs.  (#491968,
1546         Areg Beketovski)
1547
1548 2007-11-08  Matthias Clasen <mclasen@redhat.com>
1549
1550         * glib/gmain.c (g_main_context_release): 
1551         (g_main_context_acquire):
1552         (g_main_context_new): Fix the doc wording.  (#491957, 
1553         #491965, #491966, Areg Beketovski)
1554
1555 2007-11-08  Matthias Clasen <mclasen@redhat.com>
1556
1557         * glib/gutils.c (g_set_application_name): Add a missing
1558         since tag.  (#464259, Mark Doliner)
1559
1560 2007-11-08  Matthias Clasen <mclasen@redhat.com>
1561
1562         * glib/goption.c (g_option_context_new): Improve the docs.
1563         (#436293, Vincent Untz)
1564
1565 2007-11-08  Matthias Clasen <mclasen@redhat.com>
1566
1567         * glib/gmain.c (g_main_loop_quit): Expand the docs 
1568         a bit.  (#317775, Søren Sandmann)
1569
1570 2007-11-08  Matthias Clasen <mclasen@redhat.com>
1571         
1572         * autogen.sh: Accept automake 1.10, too
1573
1574         * mkinstalldirs: Temporarily add this script, to fix building
1575         from svn.
1576
1577         * Makefile.am: Use MKDIRS_P instead of mkinstalldirs, add
1578         ChangeLog.pre-2-14 and mkinstalldirs to EXTRA_DIST.
1579
1580 2007-11-08  Matthias Clasen <mclasen@redhat.com>
1581
1582         * glib/gmarkup.h: Include gslist.h. Pointed out by Michael Natterer.
1583
1584 2007-11-08  Matthias Clasen <mclasen@redhat.com>
1585
1586         * glib/gconvert.c (g_convert_with_iconv): Try harder to reset
1587         shift state with AIX iconv().  (#467537)
1588
1589 2007-11-08  Matthias Clasen <mclasen@redhat.com>
1590
1591         * configure.in:
1592         * m4macros/glib-2.0.m4: Require pkg-config 0.16 in configure
1593         and in AM_PATH_GLIB_2_0 to be consistent with the use of
1594         PKG_PROG_PKG_CONFIG which was introduced in 0.16.  (#418778,
1595         Loïc Minier)
1596
1597 2007-11-08  Matthias Clasen <mclasen@redhat.com>
1598
1599         * glib/gstrfuncs.c (g_parse_long_long): Don't leave
1600         out parameters uninitialized.  (#490061, Benjamin Otte)
1601
1602 2007-11-07  Matthias Clasen <mclasen@redhat.com>
1603
1604         * glib/gmain.c (g_main_context_unref): Don't leak the
1605         condvar.  (#479724, Areg Beketovski)
1606
1607 2007-11-07  Matthias Clasen <mclasen@redhat.com>
1608
1609         * glib/glib.symbols:
1610         * glib/gmarkup.[hc] (g_markup_parse_context_get_element_stack): 
1611         New function, to get the stack of open elements.  (#452887,
1612         Ryan Lortie)
1613
1614 2007-11-07  Matthias Clasen <mclasen@redhat.com>
1615
1616         * glib/gkeyfile.[hc]: Make some functions that take
1617         a GError return boolean instead of void.  (#375651, Matt Barnes)
1618
1619 2007-11-07  Matthias Clasen <mclasen@redhat.com>
1620         
1621         * autogen.sh: Use automake 1.9
1622
1623         * acinclude.m4:
1624         * configure.in: Move some inter-*.m4 includes from
1625         configure.in to acinclude.m4 to avoid warnings when
1626         using automake 1.9.  (#449937)
1627
1628 2007-11-07  Matthias Clasen <mclasen@redhat.com>
1629
1630         === Branch for 2.14 ===