Updated.
[gedcom-parse.git] / ChangeLog
index 8cc2d3aae86fee51f1e2808d2626c3922824f3d7..f23971d8a098d0800e63a7bb309b6803b75b4f94 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,147 @@
+2002-01-20  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * restructured the test setup
+
+2002-01-19  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * gedcom.h: Renamed to gedcom.h.in: at configure, the VERSION
+       variables are substituted and the file gedcom.h is written
+
+       * utf8-locale.c: Added parameter to conversion from UTF-8 to locale,
+       to return number of conversion failures.
+
+2002-01-16  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * gedcom/xref.c: Make sure that the 'string' member of an xref always
+       contains a valid string.
+
+       * gedcom/gedcom.y: in use of INVALID_TAG: tag is struct instead of
+       simple string.
+
+       * gedcom/multilex.c (gedcom_parse_file): setlocale returns a string
+       in static storage, so must use strdup and free afterwards.
+
+2002-01-15  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * gedcom/encoding.c: Separate the modification of GCONV_PATH from the
+       rest of the initialization, and let it be called before main (necessary
+       because iconv_open will only look at GCONV_PATH once, and e.g. GTK
+       calls iconv_open very early).
+
+       * gedcom/gedcom.y: Don't allow the parser to continue if the conversion
+       context couldn't be opened, even if IGNORE_ERRORS.
+
+       * gedcom/multilex.c (gedcom_parse_file): Save the old locale (in case
+       the application had set it).
+
+2002-01-13  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * utf8-locale.c: Example implementation for conversion UTF-8 to
+       locale.
+
+2002-01-12  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * more documentation...
+
+2002-01-10  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * doc/parser.html: Start of character set explanation.
+
+       * enhancements to Makefiles for documentation.
+
+       * gedcom/Makefile.am, gedcom/gedcom_lex_common.c: Some bugfixes for the
+       standalone lexers.
+
+2002-01-05  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * release 0.13
+
+       * xref.*, gedcom.y, gedcom.h: Parse and process cross-references.
+
+       * encoding.c: Bugfixes in using the hash implementation of kazlib.
+
+       * interface.h: Add a variable to the GEDCOM_MAKE_* macros, to be able
+       to have two of these macros in one statement.  Move GEDCOM_MAKE_DATE
+       to date.h.
+
+2002-01-03  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * gedcom.y: Bugfix for context handling of tags that are grouped in
+       the yacc file.
+
+       * gedcom.y, gedcom.h, standalone.c, interface.*: Record can also
+       have a value (e.g. the NOTE record), so extra value necessary on
+       start record callback.
+
+       * gedcom.y: Correct value of NOTE element (opt_line_item was missing
+       an action).
+
+2002-01-02  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * lots of files: Pass the parsed tag value (integer) together with
+       the string value in the callbacks.  For this, a separate header is
+       auto-generated, containing the #defines from bison.
+
+       * t/test_script: Return exit code from testgedcom.
+
+       * gedcom/hash.*, gedcom/encoding.*: Use hash implementation from
+       kazlib (see AUTHORS for pointer).
+
+2001-12-31  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * release 0.12
+
+2001-12-30  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * all: Added some initial documentation.
+
+       * gedcom/gedcom.y: Completed the calling of callbacks.
+
+2001-12-29  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * gedcom/gedcom_date.y: Added graceful fallback for date parse errors:
+       put everything as a 'date phrase'.
+
+2001-12-28  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * gedcom_date.*, date.*: Parsing dates via a separate yacc parser.
+
+       * gedcom/calendar/*: Calendar routines by Scott E. Lee
+
+       * gedcom.y: Added some more callbacks (not complete yet)
+
+2001-12-23  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * include/gedcom.h: Add some declarations so that the external header
+       can be used in C++ programs.
+
+2001-12-22  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * Makefile.am, gedcom/Makefile.am: Don't link libgedcom with libintl:
+       leave that to the applications.
+
+2001-12-15  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * release 0.11
+       Moved CVS repository to sourceforge.net (project gedcom-parse)
+
+2001-12-10  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * all: Use of gettext.
+
+       * gedcom/Makefile.am: Support for the lexer test programs.
+
+       * all: Moved to LGPL license.
+
+2001-12-09  Peter Verthez  <Peter.Verthez@advalvas.be>
+
+       * gedcom/encoding.c (init_encodings): Put data directory of libgedcom
+       in the GCONV_PATH environment variable (for the ANSEL encoding).
+
+       * release 0.10
+
+       * all: Full move to autoconf/automake.
+
 2001-12-08  Peter Verthez  <Peter.Verthez@advalvas.be>
 
        * all: Further specification of interface: message handler.