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