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