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