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