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