update.
[chise/concord.git] / ChangeLog
1 2013-05-22  MORIOKA Tomohiko  <tomo.git@chise.org>
2
3         * concord.c (concord_opened_feature_list_limit): Changed to 640.
4         (concord_tenure_feature_list): New variable.
5         (concord_tenure_feature_list_last): New variable.
6         (concord_tenure_feature_list_length): New variable.
7         (concord_genre_open_feature): Initialize `table->number_of_hits'.
8         (concord_feature_setup_db): Use `concord_tenure_feature_list' for
9         hit features.
10
11         * cos-i.h (struct COS_Feature_ent): Add new member
12         `number_of_hits'.
13
14 2013-05-19  MORIOKA Tomohiko  <tomo.git@chise.org>
15
16         * cos.h: Include <stdint.h>.
17
18 2013-05-19  MORIOKA Tomohiko  <tomo.git@chise.org>
19
20         * cos.c (concord_object_get_attribute): Renamed from
21         `concord_object_get_feature_value'.
22
23         * concord.h (concord_object_get_attribute): Renamed from
24         `concord_object_get_feature_value'.
25
26 2013-05-18  MORIOKA Tomohiko  <tomo.git@chise.org>
27
28         * concord.c (concord_opened_feature_list): New variable.
29         (concord_opened_feature_list_last): New variable.
30         (concord_opened_feature_list_length): New variable.
31         (concord_opened_feature_list_limit): New variable.
32         (concord_opened_index_list): New variable.
33         (concord_opened_index_list_last): New variable.
34         (concord_opened_index_list_length): New variable.
35         (concord_opened_index_list_limit): New variable.
36         (concord_genre_open_feature): Initialize `table->next'.
37         (concord_feature_setup_db): Use `concord_opened_feature_list'.
38         (concord_genre_open_index): Initialize `table->next'.
39         (concord_index_setup_db): Use `concord_opened_index_list'.
40
41         * cos-i.h (struct COS_Feature_ent): Add new member `next'.
42         (struct COS_Feature_INDEX_ent): Add new member `next'.
43
44 2013-05-17  MORIOKA Tomohiko  <tomo.git@chise.org>
45
46         * cos.c (concord_decode_object): Use `index->decoding_table' as a
47         decoding cache.
48         (concord_object_get_feature_value): Retain `object' too.
49
50 2013-05-02  MORIOKA Tomohiko  <tomo.git@chise.org>
51
52         * Makefile.in (LDFLAGS): New variable.
53         (libconcord.la): Use `LDFLAGS'.
54
55 2013-04-24  MORIOKA Tomohiko  <tomo.git@chise.org>
56
57         * concord.c (struct COS_Feature_INDEX_ent): Moved to cos-i.h.
58         (concord_genre_open_index): Reset `table->decoding_table'.
59
60         * cos-i.h (struct COS_Feature_INDEX_ent): Moved from concord.c;
61         add new member `decoding_table'.
62
63 2013-04-23  MORIOKA Tomohiko  <tomo.git@chise.org>
64
65         * Makefile.in (OBJS): Add cos-hash.lo.
66         (cos.lo): Add `cos-hash.h' as a dependency.
67         (symbol.lo): Likewise.
68         (concord.lo): Likewise.
69         (name.lo): Add `hash-i.h' as a dependency.
70         (cos-hash.lo): New target.
71         (hash-test): New target.
72
73         * cos.c (cos_release_object): Fixed.
74         (concord_object_get_feature_value): Use `fobj->value_table' as an
75         object cache.
76
77         * cos-i.h: Include "cos-hash.h".
78         (struct COS_Feature_ent): Moved from concord.c.
79
80         * concord.c: Include "cos-hash.h".
81         (struct COS_Feature_ent): Moved to cos-i.h.
82         (concord_genre_open_feature): Setup `table->value_table'.
83
84         * hash-test.c: New file.
85
86         * cos-hash.h: New file.
87
88         * cos-hash.c: New file.
89
90         * hash-i.h: New file.
91
92         * name.c: Include "hash-i.h".
93         (struct CONCORD_HASH_TABLE_ENTRY): Moved to hash-i.h.
94         (struct CONCORD_HASH_TABLE): Ditto.
95         (concord_make_hash_table): Move prototype to hash-i.h.
96         (concord_destroy_hash_table): Ditto.
97         (concord_hash_c_string): Ditto.
98
99 2013-04-22  MORIOKA Tomohiko  <tomo.git@chise.org>
100
101         * Makefile.in (ABI_VERSION): Update to 2:0:1.
102
103         * configure.in: Update version to 0.9.0; change mail-address to
104         chise-en@lists.chise.org.
105
106 2013-04-22  MORIOKA Tomohiko  <tomo.git@chise.org>
107
108         * Makefile.in (CONCORD_DB_FORMAT_VERSION): Changed to 1.0.
109
110 2013-04-21  MORIOKA Tomohiko  <tomo.git@chise.org>
111
112         * concord.h (concord_ds_p): New prototype.
113
114         * cos.c (concord_ds_p): New function.
115
116 2013-04-21  MORIOKA Tomohiko  <tomo.git@chise.org>
117
118         * cos.c (concord_object_get_feature_value): If
119         `concord_current_env' is not a valid CONCORD_DS object, set NULL.
120
121         * symbol.c (cos_release_symbol): Treat `composition' as a builtin
122         symbol.
123
124 2013-04-20  MORIOKA Tomohiko  <tomo.git@chise.org>
125
126         * cos.c (concord_decode_object): Delete printf to debug.
127         (concord_object_get_feature_value): Likewise.
128
129 2013-04-20  MORIOKA Tomohiko  <tomo.git@chise.org>
130
131         * cos.h (cos_Qcomposition): New variable.
132         (COS_NIL): New macro.
133         (COS_T): New macro.
134         (COS_COMPOSITION): New macro.
135
136         * symbol.c (cos_string_ent_composition): New variable.
137         (cos_symbol_ent_composition): New variable.
138         (cos_Qcomposition): New variable.
139         (cos_intern): Setup `composition'.
140
141 2013-04-20  MORIOKA Tomohiko  <tomo.git@chise.org>
142
143         * symbol.c (cos_release_symbol): Add check for builtin symbols.
144
145 2013-04-19  MORIOKA Tomohiko  <tomo.git@chise.org>
146
147         * concord.h (CONCORD_Genre_Table): Revived as an alias of
148         `COS_Genre_ent'.
149
150 2013-04-18  MORIOKA Tomohiko  <tomo.git@chise.org>
151
152         * symbol.c (cos_retain_symbol): Don't use `cos_retain_object'
153         recursively.
154         (cos_symbol_p): New function.
155         (cos_symbol_table_intern): Check type of each entry of the hash;
156         use `cos_retain_object' for the returned symbol.
157         (cos_print_symbol_table): New function.
158
159         * cos.c (cos_char_id): Fixed.
160         (cos_release_object): Fixed.
161         (cos_retain_cons): Don't use `cos_retain_object' recursively.
162         (cos_assoc): New function.
163         (cos_alist_get): New function.
164
165 2013-04-18  MORIOKA Tomohiko  <tomo.git@chise.org>
166
167         * read.c (is_delimiter): New function.
168         (cos_read_int): Use `is_delimiter'.
169         (cos_read_string): Fixed.
170         (cos_read_symbol): New function.
171         (cos_read_object): Use `cos_read_symbol' to support symbol.
172
173         * cos.h (cos_symbol_p): New prototype.
174         (cos_assoc): New prototype.
175         (cos_alist_get): New prototype.
176
177         * cos-read.h (cos_read_symbol): New prototype.
178
179 2013-04-17  MORIOKA Tomohiko  <tomo.git@chise.org>
180
181         * read.c (cos_skip_space): New function.
182         (cos_read_int): Fix to support separator.
183         (cos_read_list0): New function.
184         (cos_read_list): New function.
185         (cos_read_object): New function.
186
187         * print.c (cos_print_object): Fix duplicated `?' when printing a
188         character.
189
190         * cos.h (cos_cons_p): New prototype.
191
192         * cos.c (cos_cons_p): New function.
193         (concord_object_get_feature_value): Use `cos_read_object'.
194
195         * cos-read.h (cos_read_list): New prototype.
196         (cos_read_object): New prototype.
197
198 2013-04-16  MORIOKA Tomohiko  <tomo.git@chise.org>
199
200         * symbol.c (cos_make_symbol): Use `cos_retain_object' for
201         `obj->name'.
202         (cos_retain_symbol): New function.
203
204         * cos.c (COS_Object_retain_function_table): New variable.
205         (cos_retain_object): Call a retain-function in
206         `COS_Object_retain_function_table'.
207         (cos_retain_string): New function.
208         (cos_retain_cons): New function.
209         (cos_retain_container): New function.
210         (cos_retain_sexp): New function.
211         (cos_retain_binary): New function.
212         (cos_retain_ds): New function.
213         (cos_retain_genre): New function.
214         (cos_retain_feature): New function.
215         (cos_retain_index): New function.
216         (cos_retain_db_object): New function.
217
218         * cos-i.h (COS_Object_retain_function_table): New variable.
219         (cos_retain_string): New prototype.
220         (cos_retain_symbol): New prototype.
221         (cos_retain_cons): New prototype.
222         (cos_retain_container): New prototype.
223         (cos_retain_sexp): New prototype.
224         (cos_retain_binary): New prototype.
225         (cos_retain_ds): New prototype.
226         (cos_retain_genre): New prototype.
227         (cos_retain_feature): New prototype.
228         (cos_retain_index): New prototype.
229         (cos_retain_db_object): New prototype.
230
231 2013-04-16  MORIOKA Tomohiko  <tomo.git@chise.org>
232
233         * Makefile.in (symbol-test): New target.
234
235 2013-04-16  MORIOKA Tomohiko  <tomo.git@chise.org>
236
237         * name.c (concord_name_table_grow): Release old `table->data'.
238
239         * cos.h: Include <stdlib.h>.
240         (cos_Qnil): New variable.
241         (cos_Qt): New variable.
242         (cos_print_object): New prototype.
243
244         * symbol.c (cos_string_ent_nil): New variable.
245         (cos_symbol_ent_nil): New variable.
246         (cos_Qnil): New variable.
247         (cos_string_ent_t): New variable.
248         (cos_symbol_ent_t): New variable.
249         (cos_Qt): New variable.
250         (cos_intern): Setup `nil' and `t'.
251         (cos_symbol_table_grow): Release old `table->data'.
252
253         * print.c (cos_print_object): New function.
254
255 2013-04-16  MORIOKA Tomohiko  <tomo.git@chise.org>
256
257         * cos.c (COS_Object_release_function_table): Add
258         `cos_release_cons'.
259         (cos_retain_object): Use `COS_OBJECT_P' to check `obj' is a fat
260         object.
261         (cos_release_object): Likewise.
262         (cos_cons): New function.
263         (cos_release_cons): New function.
264         (cos_car): New function.
265         (cos_cdr): New function.
266
267         * cos-i.h (enum COS_Object_Type): Add COS_Object_Type_Cons.
268         (COS_OBJECT_CONS_P): New macro.
269         (struct COS_Cons_ent): New structure.
270         (COS_CAR): New macro.
271         (COS_CDR): New macro.
272         (cos_release_cons): New prototype.
273
274         * cos.h (struct COS_Cons_ent): New structure.
275         (COS_Cons): New type.
276         (cos_cons): New prototype.
277         (cos_car): New prototype.
278         (cos_cdr): New prototype.
279
280 2013-04-15  MORIOKA Tomohiko  <tomo.git@chise.org>
281
282         * cos.c (concord_object_get_feature_value): Use `cos_read_int' to
283         parse integer.
284
285         * read.c: Include <ctype.h>.
286         (cos_read_int): New function.
287
288         * cos-read.h (cos_read_int): New prototype.
289
290 2013-04-14  MORIOKA Tomohiko  <tomo.git@chise.org>
291
292         * cos.c (cos_string_p): New function.
293         (concord_object_get_feature_value): Use `cos_read_char' and
294         `cos_read_string' to parse character and string.
295
296         * read.c (cos_read_string): New function.
297
298         * cos.h (cos_string_p): New prototype.
299
300         * cos-read.h: Include "cos.h".
301         (cos_read_string): New prototype.
302
303 2013-04-06  MORIOKA Tomohiko  <tomo.git@chise.org>
304
305         * cos.c: Include "cos-print.h".
306         (concord_current_env): New variable.
307         (concord_open_env): Setup `concord_current_env'.
308         (concord_object_get_feature_value): New function.
309
310 2013-04-04  MORIOKA Tomohiko  <tomo.git@chise.org>
311
312         * print.c:
313         - Don't include <stdlib.h>.
314         - Include "cos-i.h".
315         (cos_utf8_encode_char): Renamed from `cos_encode_char_as_utf8'.
316         (cos_utf8_print_char): New function.
317
318         * cos-print.h: Include stdlib.h and cos.h.
319         (cos_utf8_encode_char): Renamed from `cos_encode_char_as_utf8'.
320         (cos_utf8_print_char): New prototype.
321
322         * concord.h (concord_object_get_feature_value): New prototype.
323
324 2013-04-02  MORIOKA Tomohiko  <tomo.git@chise.org>
325
326         * print.c: New file.
327
328         * cos-print.h: New file.
329
330         * Makefile.in (OBJS): Add print.lo.
331         (print.lo): New target.
332
333 2013-04-01  MORIOKA Tomohiko  <tomo.git@chise.org>
334
335         * concord.c (struct COS_DS_ent): Delete member `symbol_names'.
336         (concord_open_ds): Delete code to initialize `ds->symbol_names'.
337         (concord_close_ds): Delete code to destroy `ds->symbol_names'.
338
339 2013-03-30  MORIOKA Tomohiko  <tomo.git@chise.org>
340
341         * cos-read.h: New file.
342
343         * cos.h: New file.
344
345         * symbol.c: New file.
346
347         * cos-i.h: New file.
348
349         * cos.c: New file.
350
351         * concord-bdb.c: Move code to include "config.h" into sysdep.h.
352
353         * concord.c:
354         - Move code to include "config.h" into sysdep.h.
355         - Include "cos-i.h".
356         (concord_close_genre): Move prototype into cos-i.h.
357         (concord_close_feature): Likewise.
358         (concord_close_index): Likewise.
359         (struct CONCORD_Object_Header): Renamed to `COS_Object_Header';
360         moved to cos-i.h; add new member `reference_count'.
361         (CONCORD_OBJECT_TYPE_NULL): Renamed to `COS_Object_Type_NULL';
362         moved to cos-i.h; use `enum COS_Object_Type'.
363         (CONCORD_OBJECT_TYPE_C_STRING): Renamed to
364         `COS_Object_Type_C_String'; moved to cos-i.h; use `enum
365         COS_Object_Type'.
366         (CONCORD_OBJECT_TYPE_INT): Renamed to `COS_Object_Type_int'; moved
367         to cos-i.h; use `enum COS_Object_Type'.
368         (CONCORD_OBJECT_TYPE_DS): Renamed to `COS_Object_Type_DS'; moved
369         to cos-i.h; use `enum COS_Object_Type'.
370         (CONCORD_OBJECT_TYPE_GENRE): Renamed to `COS_Object_Type_Genre';
371         moved to cos-i.h; use `enum COS_Object_Type'.
372         (CONCORD_OBJECT_TYPE_FEATURE): Renamed to
373         `COS_Object_Type_Feature'; moved to cos-i.h; use `enum
374         COS_Object_Type'.
375         (CONCORD_OBJECT_TYPE_INDEX): Renamed to
376         `COS_Object_Type_Feature_INDEX'; moved to cos-i.h; use `enum
377         COS_Object_Type'.
378         (CONCORD_OBJECT_TYPE_OBJECT): Renamed to
379         `COS_Object_Type_DB_Object'; moved to cos-i.h; use `enum
380         COS_Object_Type'.
381         (struct CONCORD_DS_Table): Renamed to `struct COS_DS_ent'; add new
382         member `symbol_names'.
383         (concord_open_ds): Use `COS_ALLOCATE_OBJECT'; initialize
384         `ds->symbol_names'.
385         (concord_close_ds): Destroy `ds->symbol_names'.
386         (struct CONCORD_Genre_Table): Renamed to `struct COS_Genre_ent'.
387         (concord_ds_open_genre): Use `COS_ALLOCATE_OBJECT'.
388         (struct CONCORD_Feature_Table): Renamed to `struct
389         COS_Feature_ent'.
390         (concord_genre_open_feature): Use `COS_ALLOCATE_OBJECT'.
391         (struct CONCORD_INDEX_Table): Renamed to `struct
392         COS_Feature_INDEX_ent'.
393         (concord_genre_open_index): Use `COS_ALLOCATE_OBJECT'.
394         (concord_index_get_name): New function.
395         (concord_index_get_genre): New function.
396
397         * concord.h: Include <cos.h>.
398         (CONCORD_Object): Use `COS_Object' instead of `void*' as the type.
399         (COS_DS_ent): Renamed from `CONCORD_DS_Table'.
400         (COS_DS): New type.
401         (CONCORD_DS): Use `COS_DS' instead of `CONCORD_DS_Table*' as the
402         type.
403         (concord_open_env): New prototype.
404         (COS_Genre_ent): Renamed from `CONCORD_Genre_Table'.
405         (COS_Genre): New type.
406         (CONCORD_Genre): Use `COS_Genre' instead of `CONCORD_Genre_Table*'
407         as the type.
408         (concord_get_genre): New prototype.
409         (COS_Feature_ent): Renamed from `CONCORD_Feature_Table'.
410         (COS_Feature): New type.
411         (CONCORD_Feature): Use `COS_Feature' instead of
412         `CONCORD_Feature_Table*' as the type.
413         (concord_get_feature): New prototype.
414         (COS_Feature_INDEX_ent): Renamed from `CONCORD_INDEX_Table'.
415         (COS_Feature_INDEX): New type.
416         (CONCORD_INDEX): Use `COS_Feature_INDEX' instead of
417         `CONCORD_INDEX_Table*' as the type.
418         (concord_get_feature_index): New prototype.
419         (concord_index_get_name): New prototype.
420         (concord_index_get_genre): New prototype.
421         (concord_decode_object): New prototype.
422
423         * sysdep.h: Include "config.h" if `HAVE_CONFIG_H' is defined.
424
425 2013-03-30  MORIOKA Tomohiko  <tomo.git@chise.org>
426
427         * read.c: New file.
428
429 2013-03-29  MORIOKA Tomohiko  <tomo.git@chise.org>
430
431         * Makefile.in (localstatedir): New variable.
432         (CONCORD_DB_PREFIX): New variable.
433         (CONCORD_DB_FORMAT_VERSION): New variable.
434         (CONCORD_DB_DIR): New variable.
435         (CONCORD_SI_DB_DIR): New variable.
436         (CONCORD_CFLAGS): New variable.
437         (HEADERS): Add cos.h.
438         (OBJS): Add cos.lo, symbol.lo and read.lo.
439         (cos.lo): New target.
440         (symbol.lo): New target.
441         (read.lo): New target.
442         (concord.lo): Depend on cos-i.h and cos.h.
443
444 2013-03-22  MORIOKA Tomohiko  <tomo.git@chise.org>
445
446         * name.c (concord_hash_c_string): Use `unsigned long' instead of
447         int' as the type of return value.
448
449 2013-03-21  MORIOKA Tomohiko  <tomo.git@chise.org>
450
451         * config.h.in (SIZEOF_INT): New macro.
452         (SIZEOF_LONG): New macro.
453         (SIZEOF_LONG_LONG): New macro.
454         (SIZEOF_VOID_P): New macro.
455         (BITS_PER_CHAR): New macro.
456
457         * configure.in: Add `AC_CHECK_SIZEOF(int)',
458         `AC_CHECK_SIZEOF(long)', `AC_CHECK_SIZEOF(long long)' and
459         `AC_CHECK_SIZEOF(void *)'.
460
461 2011-10-31  MORIOKA Tomohiko  <tomo.git@chise.org>
462
463         * Makefile.in (ABI_VERSION): Update to 1:0:1.
464
465         * concord.c (struct CONCORD_Object_Header): New structure.
466         (CONCORD_OBJECT_TYPE_NULL): New macro.
467         (CONCORD_OBJECT_TYPE_C_STRING): New macro.
468         (CONCORD_OBJECT_TYPE_INT): New macro.
469         (CONCORD_OBJECT_TYPE_DS): New macro.
470         (CONCORD_OBJECT_TYPE_GENRE): New macro.
471         (CONCORD_OBJECT_TYPE_FEATURE): New macro.
472         (CONCORD_OBJECT_TYPE_INDEX): New macro.
473         (CONCORD_OBJECT_TYPE_OBJECT): New macro.
474         (struct CONCORD_DS_Table): Add new member `header'.
475         (concord_open_ds): Setup ds->header.
476         (struct CONCORD_Genre_Table): Add new member `header'.
477         (concord_ds_open_genre): Setup ds->header.
478         (struct CONCORD_Feature_Table): Add new member `header'.
479         (concord_genre_open_feature): Setup ds->header.
480         (struct CONCORD_INDEX_Table): Add new member `header'.
481         (concord_genre_open_index): Setup ds->header.
482
483 2012-07-07  MORIOKA Tomohiko  <tomo.git@chise.org>
484
485         * configure.in: Support db5 in Fink.
486
487 2012-04-25  MORIOKA Tomohiko  <tomo.git@chise.org>
488
489         * README.en (Reporting Bugs): Modify for
490         chise-{en|ja}@lists.chise.org.
491
492 2012-04-09  MORIOKA Tomohiko  <tomo.git@chise.org>
493
494         * README.en: Remove descriptions about CVS and add description
495         about the new Git repository.
496
497 2012-02-08  MORIOKA Tomohiko  <tomo@zinbun.kyoto-u.ac.jp>
498
499         * configure.in:
500         - Don't use "AC_CHECK_FUNCS(strnlen)".
501         - When $ac_cv_func_strnlen_working = "yes", define HAVE_STRNLEN.
502
503 2011-08-24  MORIOKA Tomohiko  <tomo@zinbun.kyoto-u.ac.jp>
504
505         * Makefile.in (CFLAGS): Add $(DEFS).
506
507 \f
508 2010-06-10  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
509
510         * Concord 0.0.2 released.
511
512         * configure.in: Update version to 0.0.2.
513
514 2008-07-21  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
515
516         * configure.in: Add settings for --with-site-includes=PATH and
517         --with-site-libraries=PATH.
518
519 \f
520 2008-05-27  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
521
522         * Concord 0.0.1 released.
523
524 2008-01-12  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
525
526         * Makefile.in (MKDIR): New variable.
527         (install.h): Make $(INCLUDE_INSTALLDIR).
528         (install.libs): Make $(LIB_INSTALLDIR).
529
530 2006-12-22  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
531
532         * configure.in: Update version to 0.0.1.
533
534         * Makefile.in (libconcord.la): Specify `-no-undefined' to avoid
535         error on Cygwin [suggested by KAMICHI Koichi <kamichi@fonts.jp>].
536         (concord.lo): Specify `--mode=compile'.
537         (concord-bdb.lo): ditto.
538         (name.lo): ditto.
539         (install.libs): Specify `--mode=install'.
540
541 \f
542 2006-05-11  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
543
544         * Concord 0.0.0 released.
545
546         * Makefile.in (tar): Fixed.
547
548 2006-04-14  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
549
550         * concord.c (concord_ds_open_genre): Use <char*> instead of
551         <unsigned char*> for genre-name.
552         (concord_genre_open_feature): Likewise.
553         (concord_genre_open_index): Use <char*> instead of <unsigned
554         char*> for index-name.
555         (concord_genre_get_feature_0): Use <char*> instead of <unsigned
556         char*> for feature-name.
557         (struct CONCORD_DS_Table): Use <char*> instead of <unsigned char*>
558         for member `location'.
559         (concord_default_read_object): Cast to avoid warning.
560         (concord_open_ds): Use <char*> instead of <unsigned char*> for
561         ds->location.
562         (concord_ds_foreach_genre_name): Use <char*> instead of <unsigned
563         char*> for ds->location; cast to avoid warning.
564         (struct CONCORD_Genre_Table): Use <char*> instead of <unsigned
565         char*> for member `name'.
566         (concord_ds_open_genre): Use <char*> instead of <unsigned char*>
567         for genre-name.
568         (concord_genre_foreach_feature_name): Use <char*> instead of
569         <unsigned char*> for ds->location.
570         (concord_genre_get_feature_0): Use <char*> instead of <unsigned
571         char*> for genre-name.
572         (concord_genre_get_feature): Use <char*> instead of <unsigned
573         char*> for t_name.
574         (struct CONCORD_Feature_Table): Use <char*> instead of <unsigned
575         char*> for member `name'.
576         (concord_genre_open_feature): Use <char*> instead of <unsigned
577         char*> for feature-name.
578         (concord_obj_gets_feature_value): Cast to avoid warning.
579         (struct CONCORD_INDEX_Table): Use <char*> instead of <unsigned
580         char*> for member `name'.
581         (concord_genre_open_index): Use <char*> instead of <unsigned
582         char*> for index-name.
583         (concord_index_strid_put_obj): Cast to avoid warning.
584
585         * name.c, concord-name.h (concord_name_table_put): Use <char*>
586         instead of <unsigned char*> for key.
587         (concord_name_table_get): Likewise.
588
589 2006-04-14  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
590
591         * concord-bdb.c, concord-bdb.h (CONCORD_BDB_open): Use <char*>
592         instead of <unsigned char*> for db_dir, genre, key_type and name.
593         (CONCORD_BDB_get): Use <char*> instead of <unsigned char*> for
594         key.
595         (CONCORD_BDB_put): Likewise.
596
597         * concord.c, concord.h (concord_open_ds): Use <char*> instead of
598         <unsigned char*> for location.
599         (concord_ds_location): Likewise.
600         (concord_ds_foreach_genre_name): Use <char*> instead of <unsigned
601         char*> for genre-name.
602         (concord_ds_get_genre): Likewise.
603         (concord_genre_get_name): Likewise.
604         (concord_genre_foreach_feature_name): Likewise.
605         (concord_genre_get_feature): Use <char*> instead of <unsigned
606         char*> for feature-name.
607         (concord_feature_get_name): Likewise.
608         (concord_obj_put_feature_value_str): Use <char*> instead of
609         <unsigned char*> for object-id.
610         (concord_obj_get_feature_value): Likewise.
611         (concord_obj_get_feature_value_string): Likewise.
612         (concord_obj_gets_feature_value): Likewise.
613         (concord_genre_get_index): Use <char*> instead of <unsigned char*>
614         for index-name.
615         (concord_index_strid_put_obj): Use <char*> instead of <unsigned
616         char*> for indexer and object-id.
617         (concord_index_strid_get_obj_string): Use <char*> instead of
618         <unsigned char*> for indexer.
619
620 2006-02-24  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
621
622         * README.en: New file.
623
624 2005-12-04  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
625
626         * concord.h (concord_genre_get_name): New prototype.
627         (concord_feature_get_genre): New prototype.
628
629         * concord.c (concord_genre_get_name): New function.
630         (concord_feature_get_genre): New function.
631
632 2005-06-30  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
633
634         * concord.c (concord_ds_set_object_failure): Renamed from
635         `concord_ds_set_object_nil'.
636         (concord_genre_get_feature_0): New function.
637         (concord_genre_get_feature): New implementation; use
638         `concord_genre_get_feature_0'; support feature alias.
639
640 2005-06-24  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
641
642         * concord.h (concord_ds_set_object_failure): Renamed from
643         `concord_ds_set_object_nil'.
644
645 2005-06-24  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
646
647         * concord.c, concord.h (concord_obj_put_feature_value_str):
648         Renamed from `concord_stroid_set_feature_str'.
649         (concord_obj_get_feature_value): Renamed from
650         `concord_stroid_get_feature_object'.
651         (concord_obj_get_feature_value_string): Renamed from
652         `concord_stroid_get_feature_string'.
653         (concord_obj_gets_feature_value): Renamed from
654         `concord_stroid_gets_feature'.
655         (concord_feature_foreach_obj_string): Renamed from
656         `concord_feature_foreach_object_string'.
657         (concord_index_strid_get_obj_string): Renamed from
658         `concord_index_strid_get_object_string'.
659         (concord_index_strid_put_obj): Renamed from
660         `concord_index_strid_set_object_str'.
661
662 2005-06-24  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
663
664         * concord.c, concord.h (concord_close_ds): Renamed from
665         `CONCORD_DS_close'.
666
667 2005-06-22  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
668
669         * concord-bdb.c, concord-bdb.h, concord.c, concord.h: New files.
670
671 2005-06-21  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
672
673         * Makefile.in: New file.
674
675 2005-06-20  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
676
677         * sysdep.h: New file.
678
679 2005-06-18  MORIOKA Tomohiko  <tomo@kanji.zinbun.kyoto-u.ac.jp>
680
681         * aclocal.m4, concord-name.h, config.h.in, configure.in,
682         config.guess, config.sub, install-sh, ltmain.sh, name.c: New
683         files.