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