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