2010-04-07 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / eglib / ChangeLog
1 2010-03-05  Zoltan Varga  <vargaz@gmail.com>
2
3         * test/test.c (_GNU_SOURCE): Fix compilation if _GNU_SOURCE is already defined.
4
5
6 Thu Mar 4 16:34:37 CET 2010 Paolo Molaro <lupus@ximian.com>
7
8         * src/unicode-data.h: save 70 KB.
9
10 Thu Mar 4 16:18:34 CET 2010 Paolo Molaro <lupus@ximian.com>
11
12         * src/eglib-remap.h, src/glib.h: header file to remap the symbols
13         so there is no clash with system glib.
14         * src/Makefile.am: build static lib as well.
15
16 2010-03-04  Zoltan Varga  <vargaz@gmail.com>
17
18         * configure.ac: Add a check for ISO varargs.
19
20         * test/test.c: Fix the build.
21
22         * src/glib.h src/goutput.c: Emit asserts through a g_assertion_message ()
23         function which is decorated with G_GNUC_NORETURN, to fix many warnings when using
24         the eglib build.
25
26 Mon Mar 1 17:12:24 CET 2010 Paolo Molaro <lupus@ximian.com>
27
28         * src/unicode-data.h, src/gutf8.c: don't export private symbols.
29
30 2009-12-03  Zoltan Varga  <vargaz@gmail.com>
31
32         * src/gmisc-unix.c (g_get_user_name): Avoid returning NULL if the env
33         var is not set.
34
35 2009-10-15 Andreia Gaita <avidigal@novell.com>
36
37         * src/gptrarray.c: implement g_ptr_array_remove_index_fast
38         * src/glib.h: fix g_ptr_array_remove_index_fast declaration
39         * test/ptrarray.c: new tests
40
41 2009-10-15 Andreia Gaita <avidigal@novell.com>
42
43         * src/garray.c: (g_array_remove_index_fast) only move 1 element
44         and not the whole shebang
45
46 2009-09-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
47
48         * test/queue.c: new tests.
49         * src/gqueue.c: fixed pop_head.
50
51 2009-09-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
52
53         * src/gqueue.c: add g_queue_push_tail.
54
55 2009-06-20  Zoltan Varga  <vargaz@gmail.com>
56
57         * src/glib.h: Add GUINT32_FROM/TO_BE macros.
58
59 2009-06-09  Jonathan Chambers <joncham@gmail.com>
60         
61         * CMakeLists.txt: Add start of CMake build.
62         * src/CMakeLists.txt: Add start of CMake build.
63         
64         Contribution is licensed as MIT/X11.
65
66 2009-06-02  Bill Holmes  <billholmes54@gmail.com>
67
68         * src/gpath.c (g_find_program_in_path):  While searching on Windows
69           also try additional suffixes .exe, .cmd, .bat, and.com.
70
71         Contributed under MIT/X11 license.
72
73 2009-05-27  Geoff Norton  <gnorton@novell.com>
74
75         * src/gfile-posix.c: Fix g_get_current_dir on amd64
76
77 2009-04-22  Jeffrey Stedfast  <fejj@novell.com>
78
79         * src/gtimer-win32.c (g_timer_elapsed): Avoid re-querying freq by
80         just saving it in a static variable. Also modified microseconds
81         calculation to avoid overflow.
82
83 2009-04-05  Miguel de Icaza  <miguel@novell.com>
84
85         * src/gpath.c: Avoid situations where we add the separator if one
86         of the elements is the separator.
87
88 2009-04-02  Miguel de Icaza  <miguel@novell.com>
89
90         * src/gpath.c: If the first element is NULL, return an empty
91         string. 
92
93 2009-02-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
94
95         * src/gstr.c: use memset in g_strnfill.
96
97 2009-01-19  Bill Holmes  <billholmes54@gmail.com>
98
99         * src/gstr.c (g_strnfill):  Fixing a warning for MSVC.
100
101         Contributed under MIT/X11 license.
102
103 2009-02-05  Miguel de Icaza  <miguel@novell.com>
104
105         * src/gstr.c: Add g_strnfill
106
107         * src/glib.h: Add g_list_previous
108
109 2009-01-19  Bill Holmes  <billholmes54@gmail.com>
110
111         * gmisc-win32.c (g_path_is_absolute):  Adding support for UNC
112           paths on Windows.
113
114         Contributed under MIT/X11 license.
115
116 2009-01-08  Bill Holmes  <billholmes54@gmail.com>
117
118         * winconfig.h, src/gfile-posix.c :
119           Fixing the MSVC builds.
120
121         Contributed under MIT/X11 license.
122
123 2009-01-07  Miguel de Icaza  <miguel@novell.com>
124
125         * src/gfile-posix.c: Move g_get_current_dir, as it is a
126         POSIX-esque feature, and some other systems do not have current
127         directories. 
128
129         * src/glib.h (G_LOCK_DEFINE, G_LOCK_DEFINE_STATIC): 
130
131         Embedded support from Paolo's work on quack.
132         
133         * configure.ac: check for strtok_r, langinfo.h and iconv.h
134         
135         * src/gpath.c (strtok_r): Add a strtok_r implementation if it is
136         not available on the target system.
137
138 2008-11-05  Bill Holmes  <billholmes54@gmail.com>
139
140         * src/gutf8.c, src/unicode-data.h, src/gunicode.c :
141           Fixing the MSVC builds.
142
143         Contributed under MIT/X11 license.
144
145 2008-11-04  Atsushi Enomoto  <atsushi@ximian.com>
146
147         * src/gutf8.c, src/gunicode.c, src/glib.h:
148           implemented g_unichar_type(), g_unichar_toupper(),
149           g_unichar_tolower(), g_unichar_totitle(), g_utf8_strup()
150           and g_utf8_strdown(). Fixed some surrogate pair bugs.
151         * TODO : removed implemented things.
152         * test/unicode.c, test/tests.h, test/utf8.c, test/Makefile.am:
153           added new tests.
154
155 2008-11-04  Atsushi Enomoto  <atsushi@ximian.com>
156
157         * src/unicode-data.h : new header for some new unicode manipulation
158           functions.
159
160 2008-10-17  Miguel de Icaza  <miguel@novell.com>
161
162         * Allow types to be defined on the eglib-config.h file, that could
163         be a platform specific generated type file.
164
165         * gtimer.c: split functionality in platforms.
166
167 2008-10-13  Bill Holmes  <billholmes54@gmail.com>
168
169         * src/gdate-win32.c : Fix compiler errors for MSVC.
170
171         * src/gpath.c : Fix compiler errors for MSVC.
172
173         * src/gfile-posix.c : Adding declaration for mkstemp for the win 32
174           implementation in gfile-win32.c.
175
176         Contributed under MIT/X11 license.
177
178 2008-10-11  Miguel de Icaza  <miguel@novell.com>
179
180         * gtimer.c: Same process.
181
182         * src/glib.h: Move g_strdup here, to consolidate all allocations
183         in this header, will help for merging the allocation work later. 
184
185         * src/gpattern.c (compile_pattern): From Unity, use -1 in the enum
186         for MatchType.
187
188         * src/gpath.c: Split this one as well.
189
190         * src/gmodule-win32.c, src/gmisc-unix.c, src/gmisc-win32.c,
191         src/gmodule-unix.c: split functionality in platforms.
192         
193         * src/goutput.c (g_logv): On some platforms, before we abort we
194         want to flush the stdout/stderr.
195
196 2008-10-10  Miguel de Icaza  <miguel@novell.com>
197
198         * Split functionality that is operating system specific into
199         -win32.c, -unix.c and -posix.c 
200
201         * Use g_malloc everywhere, and g_free, so that these can be easily
202         overwritten consistently.
203
204 2008-09-16  Bill Holmes  <billholmes54@gmail.com>
205
206         * src/gunicode.c : Fix a warning.
207
208         Contributed under MIT/X11 license.
209
210 2008-08-28  Bill Holmes  <billholmes54@gmail.com>
211
212         * src/glib.h : Adding a c++ definition for G_BEGIN_DECLS.
213
214         Contributed under MIT/X11 license.
215
216 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
217
218         * glib.h, gunicode.c : Fixing some compiler errors.
219
220         Contributed under MIT/X11 license.
221
222 2008-08-20  Mike Voorhees <vernish13@gmail.com>
223
224         * Patch from Mike Voorhees to fix various problems with
225         g_utf8_validate compared to the glib implementation and unit tests
226         to ensure that there are no regressions.
227
228         From a mailing list post to mono-devel-list on August 19th, 2008
229
230         [Mono-dev] utf8 related patches. Please review.
231
232 2008-08-20  Mike Voorhees  <vernish13@gmail.com>
233
234         * src/glib.h : Adding declarations for g_utf8_strlen, g_utf8_get_char,
235         and g_utf8_next_char.
236
237         * src/gunicode.c : Adding implementation for g_utf8_strlen, g_utf8_get_char,
238         and g_utf8_next_char.
239
240         * src/gunicode.c : Rewrote g_utf8_validate.
241
242         * test/utf8.c Adding tests for g_utf8_strlen, g_utf8_get_char,
243         g_utf8_next_char, and g_utf8_validate.
244
245         Contributed under MIT/X11 license.
246         
247 2008-08-05  Andreas Faerber  <andreas.faerber@web.de>
248
249         * autogen.sh: Suppress arguments warning for NOCONFIGURE.
250         
251         Contributed under MIT/X11 license.
252
253 2008-08-04  Bill Holmes  <billholmes54@gmail.com>
254
255         * test/tests.h, test/Makefile.am, test/memory.c : Adding memory tests to test
256           allocation routines return NULL when 0 size is passed in.
257
258         Contributed under MIT/X11 license.
259
260 2008-08-04  Bill Holmes  <billholmes54@gmail.com>
261
262         * src/glib.h : Changing the allocation routines to return null if 0 size is
263           passed in.
264
265         Contributed under MIT/X11 license.
266
267 2008-06-16  Zoltan Varga  <vargaz@gmail.com>
268
269         * src/vasprintf.c (vasprintf): Applied patch from Michail Ushakov 
270         <migelU@gmail.com>. Workaround broken vsnprintf on windows. Fixes
271         #400445.
272
273 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
274
275         * src/goutput.c (g_log): Remove unnecessary and incorrect call to 
276         g_strdup_printf (). Fixes #398918.
277
278 2008-05-01  Bill Holmes  <billholmes54@gmail.com>
279
280         * src/glib.h : Adding declarations for g_ucs4_to_utf16 and g_utf16_to_ucs4.
281
282         * src/gutf8.c : Adding implementation for g_ucs4_to_utf16 and g_utf16_to_ucs4.
283
284         * test/utf8.c Adding tests for g_ucs4_to_utf16 and g_utf16_to_ucs4.
285
286         Contributed under MIT/X11 license.
287
288 2008-04-20  Geoff Norton  <gnorton@novell.com>
289
290         * src/gspan.c: Fix the _NSGetEnviron define to prevent an impropoer
291         pointer dereference.
292
293 2008-03-19  Bill Holmes  <billholmes54@gmail.com>
294
295         * src/gpath.c (g_path_is_absolute) : Adding a case for '/'
296           on Windows.
297         
298         * src/gpath.c (g_get_user_name) : On Windows add a check for %USERNAME%
299           when %USER% fails.
300
301         * src/gstr.c (g_strsplit, g_strsplit_set):  Change to remove truncation
302           errors with MSVC build.
303
304         * src/gstr.c (g_filename_to_uri, g_filename_from_uri):  Fixes to handle
305           Windows paths.
306
307         * src/gstr.c (g_ascii_strncasecmp):  Convert each character to lower case
308           before comparing.
309
310         * src/gunicode.c (g_get_charset):  Implement for Windows.
311
312         Contributed under MIT/X11 license.
313
314 2008-03-12  Geoff Norton  <gnorton@novell.com>
315
316         * src/gutf8.c: Implement g_ucs4_to_utf16 and g_utf16_to_ucs4 as
317         asserts.  They're needed to build mono with eglib.
318         * src/gutil.h: Add a few missing function declarations to the header.
319         * src/gspawn.c: Some darwin implementations don't have crt_externs.h
320         So we'll just define _NSGetEnviron() ourselves.
321         * Makefile.am: Dont build test when cross compiling.
322         * configure.ac: Define CROSS_COMPILING when cross compiling.
323         Undefine _FORTIFY_SOURCE on arm-apple-darwin as the headers it 
324         requires are not available.
325
326 2008-01-15  Andreas Faerber  <andreas.faerber@web.de>
327
328         * configure.ac: Add default G_BREAKPOINT implementation.
329         Fix typo in breakpoint CPU output.
330
331 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
332
333         * src/glib.h: Include <limits.h>. Fixes #350482.
334
335 2007-11-21  Dick Porter  <dick@ximian.com>
336
337         * src/gslist.c (g_slist_find_custom): Implement
338
339         * src/glist.c (g_list_find_custom): Implement
340
341         * test/list.c: Test g_list_find_custom()
342
343         * test/slist.c: Test g_slist_find_custom()
344
345 2007-11-20  Dick Porter  <dick@ximian.com>
346
347         * src/gstr.c: Implement g_strsplit_set() and re-implement
348         g_strsplit() so it passes the additional tests. (g_strsplit()
349         should treat multi-char delimiters as just a single token, rather
350         than a set of delimiters.)
351
352         * src/gslist.c: Implement g_slist_index(), g_slist_nth() and
353         g_slist_nth_data().
354
355         * test/string-util.c: Test g_strsplit_set() and more tests for
356         g_strsplit().
357
358         * test/slist.c: Test g_slist_nth() and
359         g_slist_index().
360
361 2007-11-06  Geoff Norton  <gnorton@novell.com>
362
363         * configure.ac: Check for libiconv_open as the previous check was failing against 
364         some versions of libiconv.
365
366 2007-11-06  Andreas Faerber  <andreas.faerber@web.de>
367
368         * test/Makefile.am: Fix noinst_PROGRAMS for automake 1.6.3
369                             Add support for VPATH
370
371 2007-11-06  Geoff Norton  <gnorton@novell.com>
372
373         * configure.ac: Determing if glib-2.0 is installed and set HAVE_GLIB appropriately
374         * test/Makefile.am: Only build test-glib if glib-2.0 is available
375
376 2007-11-05  Geoff Norton  <gnorton@novell.com>
377
378         * configure.ac: Check for getpwent_r and wether libiconv is needed to be linked.
379         Also look to see if we can use export-dynamic in the test suite.
380         * test/Makefile.am: Get LDFLAGS from configure instead of setting them.
381         * src/gerror.c: Implement g_clear_error.
382         * src/glib.h: Only use the format, ... convention is HAVE_C99_SUPPORT is available.
383         * src/gpath.c: Only use the getpwent_r codepath if getpwent_r is available.
384         * src/gspawn.c: Define environ to call _NSGetEnviron() on Apple.
385         * src/Makefile.am: Remove -Werror so we dont fail on different function declarations.
386                 Portions of all of the above are from Andreas Faerber & Jonathan Chambers
387         
388 2007-10-31  Jonathan Chambers <joncham@gmail.com>
389         
390         * src/ghashtable.c: Add g_hash_table_foreach_steal.
391         * src/garray.c: Add g_array_remove_index_fast.
392         * src/gpath.c (g_path_is_absolute): Handle windows paths.
393         * src/glib.h: Add g_hash_table_foreach_steal and g_array_remove_index_fast
394         
395         Contribution is licensed as MIT/X11.
396
397 2007-06-13  Jonathan Chambers <joncham@gmail.com>
398         
399         * src/gunicode.c: Add g_unichar_isxdigit and g_unichar_xdigit_value.
400         * src/gmisc.c: Add g_win32_getlocale stub.
401         * src/glib.h: Add declarations of above functions,
402         GFreeFunc typedef, and CLAMP, GUINT_TO_LE, and threading
403         macros.
404         
405         * test/string-util.c: Fix warning.
406         * test/utf8.c: Add test for g_unichar_xdigit_value.
407         
408         Contribution is licensed as MIT/X11.
409
410 2007-05-05  Aaron Bockover  <abockover@novell.com>
411
412         * src/gstr.c:
413         * src/glib.h: Added g_ascii_tolower implementation; make g_ascii_strdown
414         use it to do the transformation
415
416         * test/string-util.c: Added a test for g_ascii_strdown
417
418 2007-04-27  Jonathan Chambers <joncham@gmail.com>
419         
420         * src/gstr.c: Fix off by one error in g_strdup allocation.
421
422 2007-04-27  Jonathan Chambers <joncham@gmail.com>
423         
424         * src/eglib-config.hw: Forgot to add for msvc build.
425         * src/vasprintf: Forgot to add for msvc build.
426
427 2007-04-27  Jonathan Chambers <joncham@gmail.com>
428         
429         * src/gstr.c: Fix off by one error for NULL terminator.
430
431 2007-04-27  Jonathan Chambers <joncham@gmail.com>
432         
433         Combined patch from Michael Jerris <mike@jerris.com> and me.
434         * winconfig.h: Config file for msvc builds.
435         * configure.ac: Add AC_CHECK_HEADERS for getopt.h,  sys/time.h,
436         sys/wait.h, and pwd.h.
437         
438         * src/gspawn.c: Include config.h and use HAVE_* macros.
439         * src/eglib-config.h.in: Add inclusion guards.
440         * src/ghashtable.c: Fix warnings.
441         * src/gmisc.c: Windows implementation of g_getenv, g_setenv,
442         and g_unsetenv.
443         * src/gpath.c: Include config.h and use HAVE_* macros.
444         * src/gmarkup.c: Fix warnings.
445         * src/gptrarray.c: Fix warnings.
446         * src/gstr.c: Fix warnings and use HAVE_* macros.
447         * src/glib.h: Move macros to eglib-config.h and include it.
448         * src/gdate.c: Implement g_get_current_time on windows.
449         * src/gpattern.c: Fix warnings.
450         * src/gdir.c: Implement g_dir on windows.
451         * src/gfile.c: Implement mkstemp and g_file_test on windows.
452         * src/gtimer.c: Implement g_timer on windows.
453         * src/gmodule.c: Fix warnings.
454         * src/gunicode.c: Fix warnings.
455         * src/gutf8.c: Fix warnings.
456         
457         * test/ptrarray.c: Fix warnings.
458         * test/string.c: Fix warnings.
459         * test/list.c: Fix warnings.
460         * test/pattern.c: Use HAVE_* macros.
461         * test/dir.c: Use HAVE_* macros.
462         * test/file.c: Use HAVE_* macros and use system specific files for tests.
463         * test/test.c: Fix warnings and use HAVE_* macros.
464         * test/timer.c: Use HAVE_* macros.
465         * test/string-util.c: Fix warnings.
466         * test/test.h: Supress warnings on msvc.
467         * test/module.c: Use HAVE_* macros.
468         * test/utf8.c: Fix warnings.
469         * test/spawn.c: Use HAVE_* macros.
470         * test/driver.c: Fix warnings and use HAVE_* macros.
471         * test/path.c: Use HAVE_* macros and use system specific files for tests.
472         * test/sizes.c: Fix warnings.
473
474 2007-04-24  Jonathan Chambers <joncham@gmail.com>
475         
476         Patch from Michael Jerris <mike@jerris.com>
477         * src/gspawn.c: Start msvc build.
478         * src/gpath.c: Start msvc build.
479         * src/gmarkup.c: Start msvc build.
480         * src/gshell.c: Start msvc build.
481         * src/gstr.c: Start msvc build.
482         * src/glist.c: Start msvc build.
483         * src/glib.h: Start msvc build.
484         * src/gdate.c: Start msvc build.
485         * src/gpattern.c: Start msvc build.
486         * src/gdir.c: Start msvc build.
487         * src/gfile.c: Start msvc build.
488         * src/gtimer.c: Start msvc build.
489         * src/gmodule.c: Start msvc build.
490         * src/gunicode.c: Start msvc build.
491
492 2007-01-27  Robert Jordan  <robertj@gmx.net>
493
494         * test/Makefile.am: Add linker option to be able to
495         load symbols from the main program.
496         * test/module.c: Clean-ups.
497
498 2007-01-26  Robert Jordan  <robertj@gmx.net>
499
500         * configure.ac: Add PLATFORM_WIN32 conditional.
501         * src/Makefile.ac: Use PLATFORM_WIN32 conditional for psapi, iconv
502         * test/module.c, test/tests.h, test/Makefile.am: New test for gmodule.
503         * src/gmodule.h: Add G_MODULE_{IMPORT|EXPORT} defines.
504         * src/gmodule.c (g_module_symbol): Implement in-proc symbol lookup
505         for Win32.
506         * src/gmodule.c: Add GModule.main_module, consider it in
507         g_module_close ().
508         * src/gpath.c (g_get_home_dir): Add dummy Win32 implementation to
509         fix the build.
510
511 2006-11-03  Miguel de Icaza  <miguel@novell.com>
512
513         * src/gpath.c (g_path_get_dirname): If the pathname starts with a
514         "/", return the "/".
515
516         * test/string-util.c (test_strlcpy): Add new test.
517
518         * src/gunicode.c (g_filename_from_utf8): g_strlcpy needs the full
519         size, with the extra zero at the end;  Fixes the stack trace
520         issue. 
521
522 2006-10-30  Miguel de Icaza  <miguel@novell.com>
523
524         * test/utf8.c (test_utf8_seq): Add new failing test.
525
526 2006-10-30  Atsushi Enomoto  <atsushi@ximian.com>
527
528         * src/gutf8.c : several fixes:
529           - fixed incorrect mb_size clear and mb_remain computation.
530           - initialize items_written to 0 for error case.
531           - in utf8_to_utf16_len differentiate error messages completely.
532           - in g_utf8_to_utf16 use guchar instead of gchar.
533         * test/utf8.c : added test case string in test_utf8_seq() to
534           both test_utf8_to_utf16() and test_utf16_to_utf8().
535
536 2006-10-21  Miguel de Icaza  <miguel@novell.com>
537
538         * src/gunicode.c (g_filename_from_utf8): Use g_strlcpy here. 
539
540         * src/gmarkup.c (g_markup_parse_context_parse): Do not dereference
541         null values here.   This gets things a little bit further in
542         corlib, but not too far.
543
544         * src/gdir.c (g_dir_read_name): Do not return . or ..
545
546         * src/gstr.c (g_ascii_xdigit_value): Make this into a function,
547         thanks to Paolo for pointing the problem with the double macro
548         expansion. 
549
550         * src/gmodule.c (g_module_open): Actually return NULL if we fail
551         to load the module (was hiding the real bug in the pinvoke tests).
552
553         (g_module_build_path): Do not prepend "lib" if the "lib" is part
554         of the call.
555
556         * src/gstr.c (g_strsplit): this routine has some non-expected
557         behavior, if the string begins with the delimiter, it will return
558         an empty first string, unlike strtok
559
560         * src/gpath.c (g_path_get_dirname): Return "." as a dirname for
561         paths that do not contain a directory.
562
563 2006-10-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
564
565         * test/array.c: new test for insertion in the middle of other values.
566         * src/garray.c: fixed destination index.
567
568 2006-10-18  Miguel de Icaza  <miguel@novell.com>
569
570         * src/gpath.c (g_build_path): Do not append terminator if the next
571         string is empty.
572
573         * src/gutf8.c (g_utf8_to_utf16): Include trailing zero as
574         documented.
575         (g_utf16_to_utf8): Include trailing zero as documented.
576
577 2006-10-17  Miguel de Icaza  <miguel@novell.com>
578
579         * src/gstr.c (g_strdown): Actually move.
580
581         * src/gmarkup.c (g_markup_parse_context_parse): Accept dots in the
582         sequence, reset the state after a closing element.
583
584         * src/garray.c (g_array_insert_vals): Shift the elements the
585         correct amount.
586
587         (g_array_insert_vals): Should actually use the
588         number of elements to insert.
589
590         * test/array.c: Add new test case, this was happening in the JIT. 
591
592         * Add _GNU_SOURCE at configure time, remove from sources.
593         
594         * src/gstr.c (g_strsplit): Empty strings return a 0 value vector.
595
596         * src/glib.h (G_MAXINT64, G_MININT64): Add another set of macros
597         for the support stuff.
598         
599         Move private prototypes elsewhere
600
601         * src/glib.h (g_thread_init): Adding missing brace
602         (g_list_next): remove ; from the macro definition.
603
604 2006-10-17  Miguel de Icaza  <miguel@novell.com>
605
606         * src/gutf8.c: internal methods
607
608         * src/ghashtable.c: internal methods.
609
610 2006-10-16  Miguel de Icaza  <miguel@novell.com>
611
612         * src/gerror.c (g_propagate_error): Implement.
613
614         * src/gstr.c (g_strjoinv, g_ascii_strncasecmp): implement.
615
616         * test/string-util.c (test_ascii_strncasecmp): test
617
618 2006-10-15  Miguel de Icaza  <miguel@novell.com>
619
620         * configure.in: Fix detection of platforms the [3456] stuff does
621         not work inside autoconf.
622
623         * src/eglib-config.h.in: Make G_BREAKPOINT into a function-macro
624
625         * src/glib.h (offsetof): Mono sources depend on this, bring this
626         from the standard definition.  Redefine G_STRUCT_OFFSET in terms
627         of this. 
628         
629         * src/glib.h (G_STRUCT_OFFSET): fix macro definition. 
630         fix typo.
631
632         * src/sizes.c: Add test.
633
634         * src/gshell.c: Make it build
635         
636 2006-10-14  Miguel de Icaza  <miguel@novell.com>
637
638         * src/glib.h: add various _TO_LE and _FROM_LE macros.
639
640         * test/endian.c: tests for endian conversion macros.
641
642 2006-10-09  Miguel de Icaza  <miguel@novell.com>
643
644         * src/gmodule.h: Move definitions of gmodule to gmodule.h because
645         Mono expects it there.
646
647 Mon Oct 9 12:59:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
648
649         * src/ghashtable.c: s/to_prime/g_spaced_primes_closest/g
650         and put the array in readonly memory.
651         * src/gstr.c: fixed the build and made array const.
652         * src/gmodule.c: fixed thinko.
653
654 2006-10-08  Miguel de Icaza  <miguel@novell.com>
655
656         * src/gstr.c (g_strdup): should allow NULL as an argument.
657
658 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
659
660         * test/string-util.c:
661         * TODO:
662         * src/gstr.c:
663         * src/glib.h: implemented g_strescape.
664
665 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
666
667         * test/string-util.c:
668         * configure.ac:
669         * TODO:
670         * src/gstr.c:
671         * src/glib.h: implemented g_strlcpy.
672
673 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
674
675         * test/string-util.c:
676         * TODO:
677         * src/gstr.c:
678         * src/glib.h: implemented g_strdelimit.
679
680 2006-10-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
681
682         * test/spawn.c: add search path flag when running ls.
683         * src/gspawn.c: g_spawn_command_line_sync searches the program in the
684         PATH if it's not an absolute path.
685
686 2006-10-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
687
688         * test/string-util.c:
689         * src/glib.h: implement g_ascii_xdigit_value and tests.
690
691 2006-10-06  Miguel de Icaza  <miguel@novell.com>
692
693         * src/gstr.c (g_ascii_strdown): Implement.
694
695         * str/glib.c (g_log_set_handler): empty.
696         (g_printerr): empty.
697         (GMemVTable): define, empty, ignored.
698         (G_USEC_PER_SEC) :-)
699
700         * src/gunicode.c (g_convert): Add bytes_read, bytes_written
701         support;   Small fixes to avoid valgrind errors. 
702         
703         (g_utf8_validate): Add, based on the libxml code.
704
705         gstr.c: implement g_strdown. 
706
707 2006-10-05  Miguel de Icaza  <miguel@novell.com>
708
709         * src/gunicode.c: Some work in progress to implement g_convert
710         (which is needed by g_locale_to_utf8).    
711
712 2006-09-18  Miguel de Icaza  <miguel@novell.com>
713
714         * test/string-util.c (test_filename_from_uri): tests for new
715         methods.
716
717         * src/gstr.c (g_filename_to_uri, g_filename_from_uri): implement. 
718
719 2006-09-14  Atsushi Enomoto  <atsushi@ximian.com>
720
721         * src/gutf8.c, test/utf8.c : EOL fix.
722
723 2006-09-04  Miguel de Icaza  <miguel@novell.com>
724
725         * src/gmarkup.c: The leak fixing commit.
726         
727         * src/gmarkup.c (g_markup_parse_context_end_parse): Add missing
728         method. 
729         (g_markup_parse_context_free): Implement. 
730         (parse_attributes): Store the value, not the attribute name
731         twice. 
732         Properly check the /> section.
733         (g_markup_parse_context_parse): When checking for error, use the
734         "error!=NULL && *error != NULL" upon return from callbacks,
735         it is only then that its valid to check for *error for error
736         conditions. 
737         (g_markup_parse_context_parse): Add comment processing.
738
739         Only release one element of the list.
740
741         * test/markup.c: Incorporate the kind of code that is used in Mono
742         for domain loading;  Will test the rest later. 
743
744 2006-09-01  Miguel de Icaza  <miguel@novell.com>
745
746         * src/gmarkup.c (g_markup_parse_context_parse): Add text parsing
747         support, and end-element support; not tested yet.
748
749 2006-09-01 Atsushi Enomoto <atsushi@ximian.com>
750
751         * gutf8.c : bad allocation size. multiply sizeof gchar/gunichar2.
752
753 2006-09-01 Atsushi Enomoto <atsushi@ximian.com>
754
755         * gutf8.c : when error is null, utf8_to_utf16_len() and
756           utf16_to_utf8_len() could return -1, so return NULL for those
757           cases in g_utf8_to_utf16() and g_utf16_to_utf8().
758
759 2006-09-01  Miguel de Icaza  <miguel@novell.com>
760
761         * src/gmarkup.c: Builds and does minimal parsing.
762
763         * test/markup.c: Sample test cases I have been using
764
765 2006-08-31 Atsushi Enomoto <atsushi@ximian.com>
766
767         * src/gerror.h,
768           src/gerror.c : added g_set_error().
769         * src/gutf8.c :
770           g_utf8_to_utf16() and g_utf16_to_utf8() implementation.
771         * src/glib.h : added all above, and some dependent bits.
772         * src/Makefile.am : added gutf8.c.
773         * TODO: removed above.
774         * test/Makefile.am,
775           test/tests.h : added utf8 tests.
776         * test/utf8.c : test for g_utf8_to_utf16 and g_utf16_to_utf8.
777           It still needs more tests e.g. for multibytes.
778
779 2006-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
780
781         * src/gspawn.c: small touch-ups and make read/write EINTR-proof.
782
783 2006-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
784
785         * test/file.c: remove useless test.
786
787         * test/spawn.c: new g_spawn_async_with_pipes test.
788         * src/glib.h: Modified file.
789         * src/gspawn.c: implemented g_spawn_async_with_pipes. Needs fine tuning.
790
791 2006-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
792
793         * TODO: Modified file.
794         * test/tests.h:
795         * test/pattern.c:
796         * test/dir.c:
797         * test/Makefile.am:
798         * src/Makefile.am:
799         * src/glib.h:
800         * src/gdir.c:
801         * src/gfile.c: implemented g_dir_*, unix version.
802
803 2006-08-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
804
805         * src/glib.h:
806         * test/Makefile.am: Modified file.
807         * test/tests.h:
808         * src/Makefile.am: Modified file.
809         * test/pattern.c:
810         * src/gpattern.c: implemented the 3 pattern matching functions used.
811
812         * test/ptrarray.c: fix the compare function to work with qsort.
813
814         * test/file.c:
815         * test/path.c:
816         * src/gspawn.c:
817         * src/gpath.c: made valgrind happy.
818
819 2006-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
820
821         * test/file.c:
822         * src/glib.h:
823         * src/gfile.c:  implemented g_file_test. Changed the default mask to
824         .XXXXXX. Add tests.
825
826 2006-08-26  Raja R Harinath  <rharinath@novell.com>
827
828         * src/sort.frag.h (digit): Declare here based on externally
829         provided typedef 'list_node'.
830         (MAX_DIGITS): Use 'sizeof (list_node)'.
831         * src/gslist.c (list_node): Declare instead of 'digit'.
832         * src/glist.c: Likewise.
833
834         * test/slist.c (verify_sort): Verify the length of the list too.
835         (test_slist_sort): Free the correct list.
836         * test/list.c: Likewise.
837         * src/sort.frag.h (MAX_DIGITS): Rename from N_DIGITS.
838         (combine_sort): Change 'max_pos' argument to more natural
839         'n_digits'.
840         (increment): Likewise.  Use 'n_digits' to avoid reading at an
841         offset that hasn't been initialized.
842         (do_sort): Remove memset.
843
844 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
845
846         * TODO:
847         * test/file.c:
848         * src/glib.h:
849         * src/gfile.c: implement g_file_open_tmp.
850
851 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
852
853         * TODO:
854         * src/glib.h:
855         * src/gdate.c: New file.
856         * src/gfile.c: New file.
857         * src/Makefile.am: implemented g_file_get_contents and
858         g_get_current_time.
859
860         * test/tests.h:
861         * test/file.c: New file.
862         * test/Makefile.am: tests for the above.
863
864 2006-08-26  Raja R Harinath  <rharinath@novell.com>
865
866         * src/sort.frag.h: Add copyright notice and some explanation.
867         (increment): Remove null check.
868         (combine_digits): Add 'list' argument to seed the summation.
869         (do_sort): Use the empty or singleton tail as the seed, rather
870         than calling 'increment'.
871
872 2006-08-25  Raja R Harinath  <rharinath@novell.com>
873
874         * TODO: Remove 'List' entries.
875         * src/Makefile.am (libeglib_la_SOURCES): Add sort.frag.h.
876         * src/sort.frag.h: New.  Implements a "generic" bottom-up "counting"
877         mergesort that works both on singly- and doubly-linked lists.
878         * src/gslist.c (g_slist_sort): Use it.
879         * src/glist.c (g_list_sort): Likewise.
880         * src/glib.h (g_slist_sort, g_list_sort): Declare.
881         * test/slist.c, test/list.c: Add basic testcases.
882
883 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
884
885         * src/gspawn.c: propagate errors from reads.
886         * src/gpath.c: an empty PATH is like a NULL one.
887
888 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
889
890         * test/tests.h:
891         * test/timer.c:
892         * test/Makefile.am:
893         * TODO:
894         * src/glib.h:
895         * src/gtimer.c:
896         * src/Makefile.am: implemented GTimer.
897
898 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
899
900         * test/tests.h:
901         * test/Makefile.am:
902         * test/spawn.c:
903         * src/gspawn.c:
904         * src/glib.h:
905         * src/Makefile.am: initial implentation of g_spawn_command_line_sync.
906         Still need better error handling, but works for the most part.
907
908 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
909
910         * src/garray.c: grow faster so that the 'big' test does not crawl.
911
912 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
913
914         * test/shell.c:
915         * src/gqueue.c: plugged leaks.
916
917 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
918
919         * test/path.c:
920         * src/gpath.c: when PATH is not defined, the current dir is used.
921         See execvp(3).
922
923 2006-08-25  Alp Toker  <alp@atoker.com>
924
925         * src/gstr.c: g_strv_length() should return guint, not gint
926         * src/glib.h: Add g_strv_length() prototype
927         
928 2006-08-24  Miguel de Icaza  <miguel@novell.com>
929
930         * src/gpath.c (g_get_home_dir, g_get_tmp_dir, g_get_user_name,
931         g_get_prgname, g_set_prgname): implemented.
932
933         * test/ Fix leaks.
934         
935         * src/gpath.c (g_get_current_dir): Implement.
936
937         (g_find_program_in_path, g_path_is_absolute): implement.
938         
939         Add g_path_get_dirname, g_path_get_basename
940
941         * src/gpath.c: Path routines
942
943 2006-08-23  Miguel de Icaza  <miguel@novell.com>
944
945         * src/gerror.c: Implement. 
946
947         * src/glist.c (g_list_sort): Remove routine instead of hoping that
948         it wont crash when we run it.
949
950 2006-08-23  Raja R Harinath  <rharinath@novell.com>
951
952         * src/glist.c (g_list_insert_before): Avoid non-head declaration.
953
954         * test/slist.c (test_slist_insert_before): Add.
955         * src/gslist.c (g_slist_insert_before): Append if 'sibling' is null.
956
957         * test/list.c (test_list_insert_before): Add test for return value
958         of g_list_insert_before.
959         * test/Makefile.am (test_eglib_LDADD): Refer to the .la file so as
960         to rebuild test if eglib changes.
961         * src/glist.c (new_node, disconnect_node): New helpers that
962         maintain doubly-linked list invariants.
963         (g_list_prepend, g_list_append): Express in terms of new_node.
964         (g_list_insert_before): Likewise.  Fix return value when inserting
965         in the middle of the list.
966         (g_list_concat): Reorganize to make more compact.
967         (g_list_nth): Likewise.
968         (g_list_nth_data): Don't segfault if 'n' is too large.
969         (g_list_remove): Rewrite using _find and disconnect_node.
970         (g_list_remove_link): Don't traverse list: use disconnect_node.
971         (g_list_insert_sorted): Rewrite to make more compact.  Use new_node.
972         (g_list_copy): Likewise.
973         (_prepend, _concat): Remove.
974         * src/gslist.c (insert_after, find_prev, find_prev_link):
975         New helpers.
976         (g_slist_copy): Simplify slightly, using insert_after.
977         (g_slist_concat): Reorganize to make more compact.
978         (g_slist_find): Likewise.
979         (g_slist_insert_sorted): Likewise.
980         (g_slist_remove): Rewrite using find_prev.
981         (g_slist_remove_link): Rewrite using find_prev_link.
982         (g_slist_remove_all, g_slist_insert_before): New.
983
984 2006-08-21  Duncan Mak  <duncan@a-chinaman.com>
985
986         * src/gqueue.c: GQueue implementation.
987         * src/glib.h: Add prototypes.
988         * src/Makefile.am (libeglib_la_SOURCES): Include gqueue.c.
989
990         * test/queue.c:         
991         * test/Makefile.am (SOURCES):
992         * test/tests.h (DEFINE_TEST_GROUP_INIT_H): add tests for GQueue.
993
994 2006-08-21  Aaron Bockover  <abockover@novell.com>
995
996         * src/gstr.c: fixed bug/invalid read/write on malloc-only case (no
997         realloc/delimiter token not found); use memcpy instead of strncpy for
998         better performance
999
1000         * test/test.c (run_group): allow running specific tests under a group;
1001         added copied g_strsplit/g_strfreev from EGlib source as eg_strsplit
1002         and eg_strfreev to avoid performance skews in the driver
1003         
1004         * test/driver.c: allow user-specified group name to contain specific
1005         test to run under the group as 'group_name:test1,test2,...testN'
1006
1007         * test/string-util.c: Added more g_strsplit tests
1008
1009         * test/slist.c:
1010         * test/ptrarray.c:
1011         * test/fake.c:
1012         * test/string.c:
1013         * test/list.c:
1014         * test/array.c:
1015         * test/hashtable.c: make test names shorter (no need to prefix with
1016         the group since it runs under the group)
1017
1018 2006-08-21  Miguel de Icaza  <miguel@novell.com>
1019
1020         * src/glib.h (g_hash_table_new_full): Add missing prototype.
1021         Replace g_free(x) with plain free, so it can be used as a function
1022         argument. 
1023         Add ABS
1024
1025         * src/ghashtable.c: Add rehashing. 
1026
1027         * test/hashtable.c: Add a bunch of extra tests.
1028
1029         * src/goutput.c: Fix g_log so it actually formats the data. 
1030
1031         * src/ghashtable.c (g_hash_table_new): The glib test suite
1032         uncovered a bunch of bugs, the g_hash_table_new should actually
1033         have parameters.
1034
1035         (g_hash_table_remove, g_hash_table_foreach_remove): Fixed bugs
1036         uncovered. 
1037
1038 2006-08-20  Aaron Bockover  <abockover@novell.com>
1039
1040         * src/gmisc.c: added g_setenv, g_getenv, g_unsetenv
1041
1042         * src/gstr.c: added g_snprintf, g_sprintf, g_fprintf, g_printf
1043
1044         * src/glib.h: added macros for above va_args printf functions
1045
1046         * src/Makefile.am: added gmisc.c
1047
1048         * test/whats-implemented: script to see what needs to be implemented
1049
1050 2006-08-20  Chris Toshok  <toshok@ximian.com>
1051
1052         * test/array.c (test_array_big): add a test from the glib
1053         documentation.
1054
1055 2006-08-20  Chris Toshok  <toshok@ximian.com>
1056
1057         * test/tests.h: add array tests to the mix.
1058
1059         * test/array.c: a few array tests.
1060
1061         * src/glib.h: add array prototypes.
1062
1063         * src/garray.c: initial array foo.
1064
1065         * test/Makefile.am (SOURCES): add array.c
1066
1067         * src/Makefile.am (libeglib_la_SOURCES): add garray.c
1068
1069 2006-08-19  Aaron Bockover  <abockover@novell.com>
1070
1071         * src/gstring.c: optimize and generalize reallocation by providing
1072         a GROW_IF_NECESSARY macro, do not use strcpy/strcat as they are 
1073         very, very slow; GString is now much closer to GLib's implementation
1074         in terms of performance
1075
1076         * test/string.c: added speed-specific tests to beat on reallocation code
1077
1078         * test/test-both: run make if the test drivers don't exist
1079
1080 2006-08-19  Jonathan Chambers  <jonathan.chambers@gmail.com>
1081
1082         * src/gmodule.c: Add gmodule support for windows and fix
1083         windows build. Contribution is licensed as MIT/X11.
1084         
1085 2006-08-19  Aaron Bockover  <abockover@novell.com>
1086
1087         * test/driver.c: Added --debug mode that allows for testing all paths
1088         of the driver without actually running real tests; runs only the 'fake'
1089         test, which does nothing; useful for running the driver through valgrind
1090
1091         * test/Makefile.am:
1092         * test/tests.h:
1093         * test/fake.c: Added fake test for valgrinding the driver
1094
1095         * test/ptrarray.c: update sort test
1096
1097 2006-08-19  Aaron Bockover  <abockover@novell.com>
1098
1099         * test/test-both: added --help
1100
1101 2006-08-19  Aaron Bockover  <abockover@novell.com>
1102
1103         * test/driver.c: added -n mode to show only raw global run times,
1104         which is useful for scripts (test-both --speed-compare)
1105
1106         * test/test-both: added --speed-compare mode
1107
1108         * test/README: updated with information on --speed-compare
1109
1110 2006-08-19  Aaron Bockover  <abockover@novell.com>
1111
1112         * test/test.c: do not print times if -t is not passed
1113
1114         * test/driver.c: removed use of GList from the driver to avoid skews due
1115         to performance differences between GLib and EGLib
1116         
1117 2006-08-19  Aaron Bockover  <abockover@novell.com>
1118
1119         * test/test.c: Perform iterations at the test level, only output one
1120         report for all iterations of tests in a group to produce more usable
1121         output; add timing for the tests and group; added get_timestamp for
1122         easy code timing
1123
1124         * test/test.h: Removed run_test as it should only be called from 
1125         run_group, added get_timestamp
1126
1127         * test/Makefile.am: Added -DDRIVER_NAME 
1128
1129         * test/test-both: simple script to run both drivers with the same options
1130
1131         * test/driver.c: Iterations are now run at the test level, show a global
1132         status (OK/FAIL) indicator
1133
1134         * test/README: Updated
1135
1136         * configure.ac: Renamed from configure.in as configure.in naming 
1137         convention is deprecated in favor of configure.ac
1138
1139         * autogen.sh: s/configure.in/configure.ac/
1140
1141 2006-08-19  Miguel de Icaza  <miguel@novell.com>
1142
1143         * Makefile.am: Removed MAINTAINERCLEANFILES that was too
1144         aggresive, it failed make distcheck and the resulting tarball was
1145         not buildable.
1146
1147         * src/glib.h: remove the various GPOINTER_TO_*, G*_TO_POINTER,
1148         GSIZE_FORMAT macros, and move them into src/eglib-config.h
1149
1150         Moved also gssize and gsize to be arch specific.   This should fix
1151         the 32/64 problems that Jon Chambers reported. 
1152
1153         * configure.in: test for pointer size, define the various values
1154         depending on 32 vs 32/64 worlds, might need further porting in the
1155         future. 
1156
1157         Change package name to eglib
1158
1159         * test/slist.c, test/list.c, test/hashtable.c: Update tests to use
1160         FAILURE macro.
1161
1162         * test/string-util.c: fix leak for valgrind tests.
1163
1164         * test/tests.h: New size test, for testing datatypes.
1165
1166         * test/sizes.c: New tests.
1167         
1168 2006-08-19  Aaron Bockover  <abockover@novell.com>
1169
1170         * test/README: Added quick guide on adding new tests/groups to the 
1171         driver and some examples on how to perform various tests with the driver
1172
1173 2006-08-18  Aaron Bockover  <abockover@novell.com>
1174
1175         * test/driver.c: Added getopt support and code timing, among other 
1176         nice features to make testing/profiling easier
1177
1178         * test/test.c: Add support for suppressing output (quiet) and
1179         define RESULT, FAILED, and OK
1180
1181         * src/glib.h:
1182         * src/glist.c: Added g_list_nth_data implementation
1183
1184         * test/slist.c:
1185         * test/string-util.c:
1186         * test/ptrarray.c:
1187         * test/string.c:
1188         * test/hashtable.c:
1189         * test/list.c: Use RESULT, FAILURE, and OK for tests
1190
1191 2006-08-18  Miguel de Icaza  <miguel@novell.com>
1192
1193         * src/gstring.c (g_string_truncate): Implement truncate. 
1194         (g_string_prepend): implement. 
1195
1196         Fix various bugs uncovered by new tests. 
1197
1198         * src/glib.h: introduce gssize type, the signed one.  Important. 
1199
1200         * src/eglib-config.h (G_OS_): Add the G_OS_UNIX and G_OS_WIN32
1201         defines that we can use to check on the host OS.
1202
1203 2006-08-18  Aaron Bockover  <abockover@novell.com>
1204
1205         * test/test.[ch]:
1206         * test/driver.c: Support pass/fail logging on tests to show group report
1207
1208 2006-08-18  Aaron Bockover  <abockover@novell.com>
1209
1210         * test/test.c: 
1211         * test/test.h: Added result() to be used in place of g_strdup_printf(),
1212         it's shorter to write and allows the duped string to be freed safely;
1213         added license header to file
1214
1215         * test/driver.c: Added license header to file
1216
1217         * test/string-util.c:
1218         * test/ptrarray.c:
1219         * test/string.c:
1220         * test/list.c: Use result() in place of g_strdup_printf(), it's nicer
1221
1222 2006-08-18  Aaron Bockover  <abockover@novell.com>
1223
1224         * src/gptrarray.c: Implemented g_ptr_array_sort
1225
1226         * test/ptrarray.c: Added sort test
1227         
1228         * test/driver.c: Added --help; support running N iterations and allow
1229         selecting which test groups to run; uses the test group table in tests.h
1230         
1231         * test/tests.h: Added group table
1232         
1233         * test/test.h:
1234         * test/test.c: Using a Group structure and table, removed run_groups
1235         as we only need run_group now
1236
1237         * test/slist.h: Removed, not needed, tests/groups defined in tests.h
1238
1239 2006-08-18  Miguel de Icaza  <miguel@novell.com>
1240
1241         * src/unicode.c: New file, to host unicode code, it will throw as
1242         this code is no longer used in the Mono runtime anyways.
1243         
1244         * src/glib.h: Use stdint.h types, a lot of the good stuff is
1245         replicated by glib.
1246
1247 2006-08-18  Duncan Mak  <duncan@a-chinaman.com>
1248
1249         * src/glist.c (g_list_remove, g_list_remove_link): Implemented. 
1250
1251         * src/gslist.c (g_slist_remove): Remember to set the next pointer
1252         to NULL when the item to remove is the first item in the list.
1253         
1254 2006-08-18  Duncan Mak  <duncan@a-chinaman.com>
1255
1256         * src/glist.c: Implemented. Missing remove,
1257         remove_link and insert_before.
1258
1259         * test/list.c: Tests for GList.
1260
1261 2006-08-17  Aaron Bockover  <abockover@novell.com>
1262
1263         * src/gptrarray.c: Implemented g_ptr_array_remove and 
1264         g_ptr_array_remove_index
1265
1266         * test/other: Removed, rewritten in Makefile.am
1267
1268         * test/Makefile.am: Build test-eglib against local eglib and 
1269         test-glib against GLib 2.0 (replaces 'other')
1270
1271         * test/ptrarray.c: Added tests for g_ptr_array_remove and
1272         g_ptr_array_remove_index
1273
1274 2006-08-17  Duncan Mak  <duncan@a-chinaman.com>
1275
1276         * src/gslist.c: Added MIT license.
1277         (g_slist_insert_sorted): Forgot the case where the data is
1278         appended to the end of the list.
1279
1280         * test/slist.c (test_slist_insert_sorted): Fix the test.        
1281
1282 2006-08-17  Aaron Bockover  <abockover@novell.com>
1283
1284         * src/gptrarray.c: Added g_ptr_array_set_size implementation
1285
1286         * test/ptrarray.c: Added test for g_ptr_array_set_size
1287
1288 2006-08-17  Miguel de Icaza  <miguel@novell.com>
1289
1290         * src/glib.h: A handful of extra macros
1291
1292         * configure.in, src/eglib-config.h.in: Set some system-specific
1293         settings that are probed at configure time.
1294
1295 2006-08-17  Aaron Bockover  <abockover@novell.com>
1296
1297         * src/gptrarray.c: Added beginnings of GPtrArray (alloc, free, add, iterate)
1298
1299         * src/glib.h: Added GPtrArray signatures
1300
1301         * src/Makefile.am: Added gptrarray.c to build
1302
1303         * test/ptrarray.c:
1304         * test/tests.h:
1305         * test/driver.c:
1306         * test/Makefile.am: Add ptrarray tests for available functionality
1307
1308 2006-08-17  Aaron Bockover  <abockover@novell.com>
1309         
1310         * test/test.h: 
1311         * test/test.c: Added group iterator/test driver functionality
1312         
1313         * test/driver.c: Added groups to run using new test functionality
1314         
1315         * test/slist.h:
1316         * test/hashtable.h:
1317         * test/string-util.h: Test group definitions for string util/hashtable
1318
1319         * test/slist.c:
1320         * test/str.c: 
1321         * test/hash.c: Added test definition table 
1322
1323         * test/Makefile.am: Added -Wall -Werror -D_FORTIFY_SOURCE=2
1324
1325         * src/gstr.c: Added implementation for g_str_has_prefix, g_str_has_suffix
1326
1327         * src/glib.h: Added missing function signatures
1328
1329         * src/Makefile.am: added -D_FORTIFY_SOURCE=2 
1330
1331 2006-08-17  Duncan Mak  <duncan@a-chinaman.com>
1332
1333         * src/gslist.c (g_slist_remove_link): I misread the function
1334         signature. Re-implemented.
1335         (g_slist_delete_link): Implemented.
1336         (g_slist_reverse): Implemented.
1337         (g_slist_insert_sorted): Implemented.
1338
1339 2006-08-17  Duncan Mak  <duncan@a-chinaman.com>
1340
1341         * src/gslist.c (g_slist_find): 
1342         (g_slist_length):
1343         (g_slist_remove):
1344         (g_slist_remove_link): Implemented.
1345
1346         * test/slist.c: Tests for GSList.
1347
1348 2006-08-17  Raja R Harinath  <harinath@gmail.com>
1349
1350         * src/gslist.c (g_slist_free_1): New.  Free a single list node.
1351         (g_slist_free): Use it to free the list nodes.  Don't free the
1352         data, since the list doesn't own it.
1353         (g_slist_append): Convert into a one-liner.
1354         (g_slist_foreach): Remove redundant null check.
1355         (g_slist_last): Actually return the last node.
1356         (g_slist_copy): Simplify.
1357         * src/gslist.h (g_slist_free_1): Add.
1358
1359 2006-08-16  Duncan Mak  <duncan@a-chinaman.com>
1360
1361         * src/gslist.c:
1362
1363         * src/gslist.h: First attempt at implementing GSList, incomplete.
1364
1365         * src/Makefile.am (libeglib_la_SOURCES): add gslist.c
1366         * src/glib.h: Add GFunc definition. #include the new gslist.h.
1367
1368 2006-08-16  Miguel de Icaza  <miguel@novell.com>
1369
1370         * src/Makefile.am: Added -Wall,-Werror, corrected lots of
1371         mistakes.
1372
1373         * src/gstring.c: Gstring implementation.
1374
1375         * test/str.c (test_gstring): string tests.
1376
1377 2006-08-16  Aaron Bockover  <abockover@novell.com>
1378
1379         * src/gstr.c: Added g_strsplit implementation
1380
1381         * test/driver.c: Run the split test
1382
1383         * test/str.c: Added a test for g_strsplit
1384
1385         * Makefile.am:
1386         * src/Makefile.am:
1387         * test/Makefile.am: Added MAINTAINERCLEANFILES
1388
1389 2006-08-16  Miguel de Icaza  <miguel@novell.com>
1390
1391         * src/gouput.c: Implement some output routines, update missing
1392         progress. 
1393
1394         * test: Add test driver, and initial tests. 
1395
1396 2006-08-15  Miguel de Icaza  <miguel@novell.com>
1397
1398         * src/ghashtable.c: Implement most of this, it is completely
1399         untested at this point.
1400
1401
1402