Set version to 2.12
[platform/upstream/glib.git] / ChangeLog.pre-2-12
1 2006-06-30  Matthias Clasen  <mclasen@redhat.com>
2
3         * configure.in: Set version to 2.12.0
4
5 2006-06-20  Matthias Clasen  <mclasen@redhat.com>
6
7         * glib/gtimer.c (mktime_utc): Fix an off-by-2 error
8         in the leap year calculation.  (#344905, Dan Winship)
9
10         * tests/testglib.c (main): Change the test data for
11         the g_time_val_from_iso8601 tests to expose an off-by-2
12         error in the leap year calculation.
13
14         * configure.in: Bump version
15
16         * === Released 2.11.4 ===
17
18         * NEWS: Updates
19
20 2006-06-16  Matthias Clasen  <mclasen@redhat.com>
21
22         * tests/file-test.c (test_mkstemp): Add tests.
23
24         * glib/gfileutils.c (g_mkstemp): Allow the XXXXXX to occur
25         inside the template, not just at the end.  
26
27 2006-06-14  Matthias Clasen  <mclasen@redhat.com>
28         
29         * glib/gkeyfile.c (g_key_file_to_data): Separate groups by
30         an empty line  (#344868, Christian Persch)
31
32 2006-06-14  Tor Lillqvist  <tml@novell.com>
33
34         * glib/gutils.c (g_listenv): Add Windows notes to doc comment.
35
36 2006-06-12  Emmanuele Bassi  <ebassi@cvs.gnome.org>
37
38         * glib/gbookmarkfile.h:
39         * glib/gbookmarkfile.c (g_bookmark_file_remove_item): Return
40         a boolean instead of void.
41
42         * tests/bookmarkfile-test.c (test_modify): Add a test case
43         for g_bookmark_file_remove_item().
44
45 2006-06-12  Matthias Clasen  <mclasen@redhat.com>
46
47         * Bump version
48
49         * === Released 2.11.3 ===
50
51         * NEWS: Updates
52
53 2006-06-09  Emmanuele Bassi  <ebassi@cvs.gnome.org>
54
55         * glib/gbookmarkfile.c (g_bookmark_file_remove_application): Use
56         an empty string to pass the test in set_app_info.
57
58         (g_bookmark_file_move_item): Remove the old item from the
59         look up table; return success in case of empty target.
60
61 2006-06-08  Tor Lillqvist  <tml@novell.com>
62
63         * glib/gunicollate.c (msc_strxfrm_wrapper): Workaround for bug in
64         strxfrm() in Microsoft's newer C runtimes. (#343919, Kazuki
65         Iwamoto)
66
67 2006-06-05  Matthias Clasen  <mclasen@redhat.com>
68
69         * configure.in: Bump version
70
71         * === Released 2.11.2 ===
72
73         * configure.in: Set interface age to 0.
74
75         * NEWS: Updates
76
77         * glib/gmain.c: Fix some doc formatting issues.
78
79         * glib/gstrfuncs.c: Revert accidental commit.
80
81         * glib/gmain.c (get_dispatch): Don't leak the
82         dispatch struct.  (#321886)
83
84         * tests/strtod-test.c: Add some tests involving
85         leading whitespace.
86
87         * glib/gstrfuncs.c (g_ascii_formatd): Skip leading 
88         whitespace.  (#343899, Ã˜ystein Johansen)
89
90 2006-06-01  Matthias Clasen  <mclasen@redhat.com>
91
92         * glib/gmain.h: 
93         * glib/gmain.c: Add three new functions, 
94         g_main_current_source, g_source_set_funcs and 
95         g_source_is_destroyed, that will be necessary to 
96         solve thread-safety issues with idles in GTK+.  
97         (#321886, Chris Wilson)
98
99 2006-06-01  Matthias Clasen  <mclasen@redhat.com>
100
101         * glib/giochannel.c (g_io_channel_write_chars): Avoid
102         running in an assertion with small writes.  (#343566, Chris
103         Wilson)
104
105         * tests/iochannel-test.c: Add a testcase for small writes.
106
107         * glib/glib.symbols: 
108         * glib/ghash.h: 
109         * glib/ghash.c: Add g_hash_table_{remove,steal}_all to
110         remove all nodes from a hash table.  (#168538, Matt Barnes)
111
112 2006-06-01  Behdad Esfahbod  <behdad@gnome.org>
113
114         * glib/gkeyfile.c (g_key_file_to_data),
115         (g_key_file_parse_value_as_comment),
116         (g_key_file_parse_comment_as_value):
117         * glib/gscanner.c (g_scanner_get_token_ll): Cleanup. Use return
118         value of g_string_free(...). (#343548, Chris Wilson)
119
120 2006-05-28  Matthias Clasen  <mclasen@redhat.com>
121
122         * glib/gmarkup.c (g_markup_parse_context_parse): 
123         Don't use g_str_has_{prefix,suffix} here.
124
125 2006-05-28  Matthias Clasen  <mclasen@redhat.com>
126
127         * glib/gmarkup.h: Add a GMarkupParseFlags flag for
128         treating CDATA as text. 
129
130         * glib/gmarkup.c (g_markup_parse_context_parse): 
131         Implement it here.
132
133 2006-05-28  Matthias Clasen  <mclasen@redhat.com>
134
135         * tests/markups/expected-*: Output that test-markup
136         is expected to produce when run on the valid gmarkup 
137         examples.
138
139         * tests/markup-test.c: Only dump the results of the
140         first, unchunked parse, to compare it against the expected
141         output. 
142
143         * tests/run-markup-tests.sh: For valid examples, compare
144         the output of test-markup against the corresponding
145         expected-<n> file.
146         
147 2006-05-24  Matthias Clasen  <mclasen@redhat.com>
148
149         * configure.in: Don't compile timeloop on Minix. 
150         (Leonard den Ottolander)
151
152 2006-05-22  Sebastian Wilhelmi  <wilhelmi@google.com>
153
154         * glib/gthread.c (g_thread_init_glib): Run _g_atomic_thread_init
155         as the first of the full fledged initializers to allow the later
156         to potentially use atomic ints (which they currently do
157         not). (#342563, Peter Kjellerstedt)
158
159 2006-05-16  Matthias Clasen  <mclasen@redhat.com>
160
161         * tests/Makefile.am: 
162         * tests/strtoll-test.c: Add tests for g_ascii_strtoll()
163         and g_ascii_strtoull().
164
165         * glib/glib.symbols:
166         * glib/gstrfuncs.h: 
167         * glib/gstrfuncs.c (g_ascii_strtoll): New function to
168         parse signed 64bit integers like strtoll does.  
169
170         * glib/goption.c (parse_int64): Use g_ascii_strtoll(),
171         since strtoll() is C99 and not available on some
172         systems.  (#341826, Kazuki Iwamoto)
173
174 2006-05-15  Matthias Clasen  <mclasen@redhat.com>
175         
176         * configure.in: Bump version
177
178         * === Released 2.11.1 ===
179
180         * NEWS: Updates
181
182 2006-05-13  Matthias Clasen  <mclasen@redhat.com>
183
184         * glib/grel.c: Fix several cases of deref-before-NULL-check.
185         (#341191, Pascal Terjan)
186
187         * glib/glib.symbols: 
188         * glib/goption.h: 
189         * glib/goption.c: Allow optional summary and description
190         texts before and after the option descriptions, and add
191         a way to translate them.  (#336120, Behdad Esfahbod)
192
193 2006-05-12  Tor Lillqvist  <tml@novell.com>
194
195         * glib/giowin32.c (g_io_win32_sock_set_flags): Implement
196         setting/clearing G_IO_FLAG_NONBLOCK for channels attached to
197         sockets. (#341192)
198         (g_io_win32_unimpl_set_flags): set_flags method for the
199         unimplemented case.
200         
201 2006-05-11  Bastien Nocera  <hadess@hadess.net>
202
203         * glib/goption.c: (parse_int64), (parse_arg), (free_changes_list):
204         * glib/goption.h:
205         * tests/option-test.c: (arg_test6), (main): add an int64 type for
206         GOption (G_OPTION_ARG_INT64) (#341237)
207
208 2006-05-10  Sebastian Wilhelmi  <wilhelmi@google.com>
209
210         * glib/gthread.h, gthread/gthread-impl.c: Make the magic and
211         location arguments to the error-checking-mutex functions const and
212         do not write to them, as we might not own them. Clean up the
213         error-checking-mutex code quite a bit. (#335198, Chris Wilson)
214
215         * glib/gthread.c: Use g_atomic_pointer_set instead of old
216         homegrown version now that we have it. (#335198, Chris Wilson)
217
218         * gthread/gthread-posix.c, gthread/gthread-win32.c: Prevent
219         calling into g_cond_wait resp. g_mutex_lock/unlock directly to
220         avoid recursions into the errorcheking mutex code (and out of
221         principle anyway). (#335198, Chris Wilson)
222
223         * tests/errorcheck-mutex-test.c: Adapt to GLib coding standards.
224
225 2006-05-09  Sebastian Wilhelmi  <wilhelmi@google.com>
226
227         * glib/gthreadinit.h: Renamed to glib/gthreadprivate.h and moved
228         system thread identifier comparision and assignment macros from
229         glib/gthread.c to glib/gthreadprivate.h.
230
231         * glib/Makefile.am, glib/gatomic.c, glib/gconvert.c, glib/gmain.c,
232         glib/gmem.c, glib/gmessages.c, glib/grand.c, glib/gslice.c,
233         glib/gthread.c, glib/gutils.c, gthread/gthread-impl.c: Use
234         glib/gthreadprivate.h instead of glib/gthreadinit.h.
235
236         * gthread/gthread-impl.c: Use GSystemThread instead of GThread for
237         owner determination. (#311043, jylefort@FreeBSD.org)
238
239         * tests/Makefile.am, tests/errorcheck-mutex-test: New test program
240         to test for all checked violations.
241
242         * glib/gprintf.c, glib/gspawn-win32.c, glib/gutf8.c,
243         gthread/gthread-impl.c, gthread/gthread-posix.c,
244         gthread/gthread-win32.c: Use canonical include form for internal
245         headers. config.h is always there.
246
247         * Remove obsolete gthread/gthread-solaris.c.
248
249 2006-05-08  Matthias Clasen  <mclasen@redhat.com>
250
251         * tests/convert-test.c (test_one_half): Use encoding names which 
252         may work better on Solaris.  (#340434, Alessandro Vesely)
253
254         * tests/keyfile-test.c (test_number): Add some tests for
255         invalid floating point numbers.
256
257         * glib/gkeyfile.c (g_key_file_parse_value_as_double): Return
258         an error for the empty string.  (#339105, Morten Welinder)
259
260         * glib/gscanner.c (g_scanner_config_template): Make const,
261         noticed by Kjartan Maraas.
262
263 2006-05-06  Matthias Clasen  <mclasen@redhat.com>
264
265         * glib/gkeyfile.c (g_key_file_set_string_list)
266         (g_key_file_set_locale_string_list): Fix invalid memory
267         reads.  (#340816, Nick Treleaven)
268
269 2006-05-04  Alexander Larsson  <alexl@redhat.com>
270
271         * glib/gbase64.c: (g_base64_decode_step):
272         Fix OOB write (#340538)
273
274 2006-05-03  Matthias Clasen  <mclasen@redhat.com>
275
276         * tests/base64-test.c: Add some more tests.
277
278         * glib/gbase64.c (g_base64_decode_step): Avoid writing
279         beyond the guaranteed lenght of the output buffer, if
280         there is padding.
281
282         * tests/base64-test.c (test_incremental): Use malloced memory
283         instead of stack-allocated, so that MALLOC_CHECK_=2 catches
284         the OOB write...
285
286         * glib/gbookmarkfile.c (g_bookmark_file_load_from_data): Remove
287         an overzealous return_if_fail check that causes make check to 
288         fail.
289
290 2006-05-02  Matthias Clasen  <mclasen@redhat.com>
291
292         * configure.in: Bump version
293         
294         * === Released 2.11.0 ===
295
296         * NEWS: Updates
297
298         * tests/casemap.txt: 
299         * tests/casefold.txt: Regenerate from Unicode 5.0 data. 
300
301         * glib/guniprop.c: Make interval_compare static.
302
303 Tue May  2 15:00:00 2006  Tim Janik  <timj@gtk.org>
304
305         * tests/gobject/deftype.c: added test code from Behdad Esfahbod, 
306         see #337128.
307
308 Tue May  2 14:18:25 2006  Tim Janik  <timj@gtk.org>
309
310         * glib/goption.c (g_option_context_parse): fixed leak in short
311         option parsing. rewrote parts of the code to be more concise to
312         enhance readability. fixed exaggerated uses of strlen.
313
314 2006-04-28  Behdad Esfahbod  <behdad@gnome.org>
315
316         * glib/guniprop.c: #include <stdlib.h>
317
318 2006-04-27  Matthias Clasen  <mclasen@redhat.com>
319
320         * glib/glib.symbols: Add g_unichar_iswide_cjk.
321         * glib/guniprop.c: Add a "Since: 2.12".
322
323         * NEWS: Updates
324
325 2006-04-27  Behdad Esfahbod  <behdad@gnome.org>
326
327         * docs/reference/glib/glib-sections.txt,
328         * glib/gunicode.h glib/guniprop.c: Implement g_unichar_iswide_cjk().
329         (#105626)
330
331 2006-04-27  Matthias Clasen  <mclasen@redhat.com>
332
333         * glib/gbookmarkfile.c (g_bookmark_file_set_description) 
334         (g_bookmark_file_set_title, g_bookmark_file_set_icon): 
335         Remove some special-casing of empty string which led to 
336         dangling pointers.  (#339337, Morten Welinder)
337         (expand_exec_line): Don't use printf() needlessly, handle
338         trailing '%' gracefully.  (#339338, Morten Welinder)
339         (is_element_full): Silence the compiler.
340         (g_bookmark_file_dump, bookmark_metadata_dump): 
341         (bookmark_app_info_dump): Escape strings before dumping 
342         them in xml.  (#339340, Morten Welinder)
343
344 2006-04-27  Behdad Esfahbod  <behdad@gnome.org>
345
346         * glib/gunibreak.h, glib/gunichartables.h: Regenerated using
347         Unicode Character Database 5.0 beta.
348
349 2006-04-26  Matthias Clasen  <mclasen@redhat.com>
350
351         * glib/grand.c (g_rand_new): Don't repeat a failed fclose()
352         call, since that invokes undefined behaviour.  (Coverity)
353
354 2006-04-25  Matthias Clasen  <mclasen@redhat.com>
355
356         * glib/gbookmarkfile.c (is_element_full): Avoid a possible
357         NULL dereference (found by Coverity), also avoid some 
358         pointless strdups.
359
360         * tests/keyfile-test.c (test_comments): Add a test for
361         the previous change.
362
363         * glib/gkeyfile.c (g_key_file_lookup_group_node): Remove
364         redundant code.
365         (g_key_file_get_group_comment): Don't dereference before
366         checking for NULL.  (#338572, Coverity, Pascal Terjan)
367
368 2006-04-19  Matthias Clasen  <mclasen@redhat.com>
369
370         * glib/gdataset.c: Add some missing Since: 2.8 tags.
371
372 2006-04-19  Tor Lillqvist  <tml@novell.com>
373
374         * glib/gatomic.c: Adapt to the changed prototype of
375         InterlockedCompareExchange() in newer SDKs. Use
376         InterlockedCompareExchangePointer() when applicable. (#155884,
377         John Ehresman)
378
379 2006-04-18  Matthias Clasen  <mclasen@redhat.com>
380
381         * glib/gkeyfile.h:
382         * glib/glib.symbols:
383         * glib/gkeyfile.c: Add api to get and set doubles and 
384         lists of doubles.  (#164719, Maurizio Monge, Dom Lachowicz)
385
386         * tests/keyfile-test.c: Add tests for new api.
387
388         * glib/gkeyfile.c (g_key_file_add_group): Accept duplicate
389         groups.  (#157877, Sebastien Bacher)
390
391         * tests/keyfile-test.c: Add tests for duplicate key and
392         duplicate group handling.
393
394 2006-04-17  Matthias Clasen  <mclasen@redhat.com>
395
396         * glib/gcompletion.c (g_completion_complete_utf8): Make passing
397         NULL for new_prefix work as documented.  (#338845, Yevgen Muntyan)
398
399         * tests/completion-test.c: Test that passing NULL for 
400         new_prefix in g_completion_complete_utf8 works.
401
402 2006-04-17  Kjartan Maraas  <kmaraas@gnome.org>
403
404         * configure.in: Remove obsolete entry for no_NO.
405         * po/no.po: And the translation.
406
407 2006-04-16  Matthias Clasen  <mclasen@redhat.com>
408
409         * glib/gdate.c (g_date_fill_parse_tokens): Avoid an array
410         overrun.  (Coverity, fix by Pascal Terjan)
411
412 2006-04-12  Bastien Nocera  <hadess@hadess.net>
413
414         reviewed by: Matthias Clasen <mclasen@redhat.com>
415
416         * glib/gconvert.c: add more details about which RFC is concerned
417         when using g_filename_to_uri (#337553)
418
419 2006-04-12  Matthias Clasen  <mclasen@redhat.com>
420
421         * glib/goption.c (parse_arg): Add an assert to make it
422         clear when value can be NULL.
423
424 2006-04-07  Martyn Russell  <martyn@imendio.com>
425
426         * tests/threadpool-test.c: (test_thread_stop_unused): Removed an
427         assertion which can fail and is not a critical test.
428
429 2006-04-07  Hans Breuer  <hans@breuer.org>
430
431         * glib/makefile.msc.in : added gbase64.obj and derive the static libs
432         name from auto* variables
433         * glib/makefile.msc.in : link user32.lib for MessageBox()
434
435 2006-04-07  Martyn Russell  <martyn@imendio.com>
436
437         * glib/gasyncqueue.[ch]: Added private API
438         _g_async_queue_get_mutex so that g_thread_pool_free() can use the
439         async queue mutex. 
440         
441         * glib/gthreadpool.c: Make sure
442         g_thread_pool_stop_unused_threads() actually stops unused threads
443         and global limits (like max idle time and max unused threads) can
444         be set without creating a thread pool first. Fixed #335215 (patch
445         from Chris Wilson).  
446         
447         * tests/threadpool-test.c: Added two new tests, tests setting
448         global limits before creating a thread pool. The second test
449         makes sure unused threads are actually stopped when using the
450         g_thread_pool_stop_unused_threads(). 
451
452 2006-04-05  Matthias Clasen  <mclasen@redhat.com>
453
454         * glib/gnulib/vasnprintf.c (vasnprintf): Make
455         long long printing work if snprintf is not 
456         available.  (#332841, Michael McDonald)
457
458 2006-04-05  Behdad Esfahbod  <behdad@gnome.org>
459
460         * tests/option-test.c: Check the return value of g_get_prgname for
461         NULL before passing to strcmp.
462
463         * tests/slice-test.c: Report the correct name in Usage summary.
464
465 2006-04-05  Matthias Clasen  <mclasen@redhat.com>
466
467         * tests/run-collate-tests.sh: Fix up shell script.
468
469         * tests/option-test.c (arg_test5): Skip the test if
470         setting the locale fails.
471         (empty_test1): Reset prgname before the test.
472
473         * tests/Makefile.am: Arrange for run-bookmark-test.sh
474         to be run by make check.
475
476         * tests/utf8-pointer.c: 
477         * tests/tree-test.c: Silence warnings.
478
479 2006-04-04  Matthias Clasen  <mclasen@redhat.com>
480
481         * glib/glib.symbols:
482         * glib/gbase64.[hc]: Add G_GNUC_MALLOC where
483         appropriate, use glib types.
484
485 2006-04-04  Alexander Larsson  <alexl@redhat.com>
486
487         * glib/Makefile.am:
488         * glib/gbase64.[ch]:
489         * glib/glib.symbols:
490         Add base64 encode/decode functions
491         
492         * glib/glib.h:
493         Include gbase64.h
494         
495         * tests/Makefile.am:
496         * tests/base64-test.c:
497         Tests for base64 functions
498
499 2006-04-04  Matthias Clasen  <mclasen@redhat.com>
500
501         * glib/gdate.c: Move short_month_names and long_month_names
502         to bss.
503
504         * glib/gspawn-win32.c (g_spawn_error_quark):
505         * glib/gspawn.c (g_spawn_error_quark):
506         * glib/gshell.c (g_shell_error_quark):
507         * glib/gmarkup.c (g_markup_error_quark):
508         * glib/goption.c (g_option_error_quark):
509         * glib/gkeyfile.c (g_key_file_error_quark):
510         * glib/giochannel.c (g_io_channel_error_quark):
511         * glib/gfileutils.c (g_file_error_quark):
512         * glib/gconvert.c (g_convert_error_quark):
513         * glib/gbookmarkfile.c (g_bookmark_file_error_quark):
514         * glib/gthread.c (g_thread_error_quark): No point in making
515         the error path fast by caching quarks.
516
517         * glib/gbookmarkfile.c: Make the parser struct const.
518
519 2006-04-04  Behdad Esfahbod  <behdad@gnome.org>
520
521         * glib/gbookmarkfile.c: Fix accidentally broken build.
522
523 2006-04-03  Matthias Clasen  <mclasen@redhat.com>
524
525         * glib/gbookmarkfile.c: Don't include sys/time.h  (#337027,
526          Kazuki IWAMOTO)
527
528 2006-03-31  Tor Lillqvist  <tml@novell.com>
529
530         * glib/gstdio.c (g_remove): Revert change below. It wasn't a good
531         idea after all, says the original bug reporter. See bug for
532         discussion.
533
534 2006-03-30  Tor Lillqvist  <tml@novell.com>
535
536         * glib/gstdio.c (g_remove): [Win32] call rmdir() only if remove()
537         fails with errno set to ENOENT, to leave errno set to EACCESS if
538         that is the problem. (#334799, Yevgen Muntyan)
539
540 2006-03-30  Matthias Clasen  <mclasen@redhat.com>
541
542         * glib/gbookmarkfile.c (g_bookmark_file_get_app_info): Sync
543         the parameter names with the .h files, otherwise gtk-doc
544         misbehaves.
545
546 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
547
548         * tests/.cvsignore: Add bookmarkfile-test to the ignored files.
549
550 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
551
552         * tests/Makefile.am:
553         * tests/bookmarkfile-test.c:
554         * tests/run-bookmark-test.sh:
555         * tests/bookmarks/*.xbel: Add test suite for GBookmarkFile.
556
557 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
558
559         * docs/reference/glib/glib-docs.sgml:
560         * docs/reference/glib/glib-sections.txt:
561         * docs/reference/glib/tmpl/bookmarkfile.sgml: Add documentation for
562         GBookmarkFile to GLib's reference guide.
563
564 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
565
566         * glib/glib.h:
567         * glib/gbookmarkfile.h
568         * glib/gbookmarkfile.c: Add GBookmarkFile, a parser for files
569         containing bookmarks stored using the Desktop Bookmark
570         specification. Fixes bug #327662.
571
572         * glib/glib.symbols:
573         * glib/Makefile.am:
574         * glib/makefile.msc.in:
575         * glib/makefile.mingw.in: Build glue for GBookmarkFile.
576
577 2006-03-27  Dom Lachowicz  <cinamod@hotmail.com>
578
579         * tests/option-test.c: Copy-and-paste error slipped into test5. Enable
580         test5, as per Matthias' comments in bug 329548#c11.
581
582         Change a gboolean to an int. Fixes bug #329789.
583
584         * configure.in: Bump version number to 2.11.0
585         
586 2006-03-27  Matthias Clasen  <mclasen@redhat.com>
587
588         Add support for floating point numbers to goption.
589         (#329548, Behdad Esfahbod, patch by Antoine Dopffer and 
590          Dom Lachowicz)
591
592         * glib/goption.h:
593         * glib/goption.c: Support double arguments.
594
595         * tests/option-test.c: Test double arguments.`
596
597 2006-03-26  Matthias Clasen  <mclasen@redhat.com>
598
599         * glib/goption.c (g_option_context_new): Improve the description
600         of parameter_string in the docs.  (#336085, Claudio Saavedra)
601
602 2006-03-24  Martyn Russell  <martyn@imendio.com>
603
604         * glib/gthreadpool.c: Updated the documentation to explain that
605         when the maximum threads is > 1 the sort functionality is not 100%
606         accurate due to the ramdom nature of the scheduler choosing which
607         threads to execute. Fixes bug #334943.
608
609         * tests/threadpool-test.c: Disabled the debugging by default and
610         fixed the sort test to set the maximum threads to 1 to guarantee
611         the thread entry function is called in order. 
612
613 2006-03-23  Matthias Clasen  <mclasen@redhat.com> 
614
615         === Branch for 2.10 ===