1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
|
2006-08-05 Theppitak Karoonboonyanan <thep@linux.thai.net>
* NEWS, configure.in:
Version 0.1.6.
2006-08-05 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.in: Update library version info, according to recent API
additions.
2006-08-02 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.in: Disable debug by default.
2006-08-02 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.in: Enable doxygen by default.
* configure.in, doc/Makefile.am: Use htmldocdir variable instead of
pkgdocdir/docdir. Let default behavior install html under html/ subdir.
* configure.in, Makefile.am: Exclude man/ subdir, and use
doxygen-generated man pages instead.
* doc/Doxyfile.in: Disable SHOW_INCLUDE_FILES, as showing include
files included from the documented file just confuses readers in the
man pages.
2006-08-02 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/thctype.h, man/man3/thctype.3: Clarify character level
2 and 3 in the document.
2006-08-02 Theppitak Karoonboonyanan <thep@linux.thai.net>
* src/thinp/thinp.c: Use WTTOp enum instead of int, as per recent
change in wtt.h
2006-08-01 Theppitak Karoonboonyanan <thep@linux.thai.net>
* doc/Makefile.am: Rearrange the man pages.
2006-08-01 Theppitak Karoonboonyanan <thep@linux.thai.net>
* doc/Makefile.am, doc/Doxyfile.in: Generate man links and selectively
install man pages.
2006-08-01 Theppitak Karoonboonyanan <thep@linux.thai.net>
* doc/Makefile.am: Use html.stamp target to prevent unneccessary
generation of document.
2006-08-01 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/thctype.h: Fix HTML errors in documentation comments.
* include/thai/thctype.h, man/man3/thctype.3: Fix typo.
* include/thai/thrend.h: Fix errors in doxygen tags in comments.
2006-08-01 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/wtt.h, src/thctype/wtt.c: Add documentation from wtt.3.
Use enum instead of #define.
* man/man3/wtt.c: Revised.
2006-08-01 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/thctype.h: Add documentation taken from thctype.3.
* man/man3/thctype.3: Revised.
* doc/Doxyfile.in: Append "include" to STRIP_FROM_PATH.
2006-07-31 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thailib.h: Add main page using content from libthai.3.
* man/man3/libthai.3: Fix typos.
2006-07-31 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/{thbrk,thcoll}.h: Fix typos in comments.
* include/thai/{thwbrk,thwchar,thwcoll,thwctype,thwstr}.h:
Edit comments for documentation.
* include/thai/thwctype.h, src/thwctype/thwctype.c: Add missing
functions corresponding to thctype: th_wcisthdiac,
th_wcistaillesscons, th_wcisovershootcons, th_wcisundershootcons,
th_wcisundersplitcons.
2006-07-31 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.in, Makefile.am, +doc/, +doc/Doxyfile.in,
+doc/Makefile.am: Add document generation with doxygen.
* include/thai/{thailib,thbrk,thcell,thcoll,thctype,thinp,thrend,
thstr}.h: Edit comments for documentation.
2006-07-03 Theppitak Karoonboonyanan <thep@linux.thai.net>
* src/thcoll/cweight.c (th_char_weight_()): Remove unnecessary check
of c's range that always yields true.
* src/thwchar/thwchar.c (uni2thai_ext_()): Fix loop condition that
always yielded true due to range of data type.
2006-07-03 Theppitak Karoonboonyanan <thep@linux.thai.net>
* src/thinp/thinp.c, src/thrend/thrend.c: Add missing <string.h>.
2006-05-04 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.in, src/Makefile.am: Add check and condition for Win32
build with cygwin/mingw.
2006-03-13 Theppitak Karoonboonyanan <thep@linux.thai.net>
* NEWS, configure.in:
Version 0.1.5.
2006-03-13 Theppitak Karoonboonyanan <thep@linux.thai.net>
* tests/test_thwbrk.c: Allocate more buffer for th_brk_line() output,
fixing bogus bug that blocks the test.
2006-03-13 Theppitak Karoonboonyanan <thep@linux.thai.net>
* tests/test_thwbrk.c: Print out the strings in problem when the
result from th_brk_line() and th_wbrk_line() do not match.
2006-03-13 Theppitak Karoonboonyanan <thep@linux.thai.net>
* tests/test_thcell.c: Fix bug in test_th_prev_cell() due to wrong
variable referencing.
2006-02-18 Theppitak Karoonboonyanan <thep@linux.thai.net>
* src/tkbrk/Makefile.am: Remove map.c from cttex sources, to fix
compiling bug caused by building map.o with and without libtool.
2006-02-18 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.in, src/Makefile.am: Add -version-info into LDFLAGS.
We start maintaining library version info from now on.
2005-10-28 Theppitak Karoonboonyanan <thep@linux.thai.net>
* COPYING: Update FSF address.
2005-10-09 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.in:
Formatted configure options help strings with AC_HELP_STRING().
Used --disable/--enable help style rather than --enable with default
yes or no.
2005-03-15 Theppitak Karoonboonyanan <thep@linux.thai.net>
* src/thrend/thrend.c:
Add Mac PUAs for baseless Tho Than and Yo Ying, as well as lowered
version of lower marks.
* tests/test_thrend.c:
Update tester accodingly.
2005-03-02 Pattara Kiatisevi <ott@linux.thai.net>
* src/thbrk/:
Debug information (default commented out)
Some new words added to tdict.txt
2005-01-13 Pattara Kiatisevi <ott@linux.thai.net>
* src/thbrk/thbrk.c:
A space is considered and returned as a breakable point
2004-10-16 Theppitak Karoonboonyanan <thep@linux.thai.net>
* NEWS, configure.in:
Version 0.1.4.
2004-10-13 Theppitak Karoonboonyanan <thep@linux.thai.net>
* src/thstr/thstr.c (th_normalize):
Handle char of "Level 3".
* src/thinp/thinp.c (th_validate):
Handle correction of char of "Level 3".
2004-10-13 Theppitak Karoonboonyanan <thep@linux.thai.net>
* src/thcell/thcell.c (th_next_cell):
Check for acell.hilo before placing repeated SARA AM into the same
cell.
* tests/test_thcell.c:
Add test case for repeated SARA AM.
2004-10-12 Theppitak Karoonboonyanan <thep@linux.thai.net>
* tests/test_thctype.c (test_bool_funcs):
Rewrite if-do-while loops with clearer while loops. Get rid of warning
of range checking.
* tests/test_thbrk.c, tests/test_thwbrk.c, test_thwchar.c:
Add missing string.h includes.
2004-10-12 Theppitak Karoonboonyanan <thep@linux.thai.net>
Handle the case of NIKHAHIT and MAITAIKHU, which can be in either
above or top level. This behavior is defined as "level 3" in
th_chlevel() returning value.
* src/thcell/thcell.c (th_next_cell, th_prev_cell):
Conditionally place character of weight 3 at above or top level.
* src/thctype/thctype.h (th_chlevel):
Document the "level 3".
* src/thctype/thctype.c (_th_chlevel_tbl):
Change levels of NIKHAHIT and MAITAIKHU to 3.
* tests/test_thcell.c, tests/test_thrend.c:
Add the test cases of NIKHAHIT and MAITAIKHU at top level.
2004-05-15 Pattara Kiatisevi <ott@linux.thai.net>
* set the mode of cttex to firstmode=1 (we want it fast)
2004-04-08 Theppitak Karoonboonyanan <thep@linux.thai.net>
* AUTHORS:
Update e-mail addresses.
2004-02-22 Theppitak Karoonboonyanan <thep@linux.thai.net>
* tests/test_thrend.c:
Update check values as per new blank base glyph.
* NEWS, configure.in:
Version 0.1.3
2004-01-20 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/thrend.h, src/thrend/thrend.c:
Use TH_BLANK_BASE_GLYPH as a base for floating upper/lower vowels.
2003-09-10 Theppitak Karoonboonyanan <thep@linux.thai.net>
*** Stop using CVS-generated ChangeLog, as it's hard to read ***
* include/thai/Makefile.am:
List the missing thwstr.h.
* man/man3/Makefile.am:
Add EXTRA_DIST to include missing man pages.
* man/template.3, man/man3/*.3:
Change my e-mail address.
* tests/test-thcoll.sh:
Also remove out.txt, to pass 'make distcheck'.
* TODO:
Add TODO about normalization rules.
* NEWS, configure.in:
Version 0.1.2.
2003-03-23 Sunday 20:26 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.55), src/thctype/wtt.c (1.3): Fix TACio_op_[] data
for (FV1,NON) and (FV1,LV).
2003-03-23 Sunday 20:23 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.54), include/thai/thcell.h (1.6),
src/thcell/thcell.c (1.7): Add th_cell_init() function.
2003-02-02 Sunday 15:45 Pattara Kiatisevi <ott@linux.thai.net>
* debian/: ex.package.doc-base (1.2), files (1.2),
libthai0.postinst.debhelper (1.2), libthai0.postrm.debhelper (1.2),
libthai0.substvars (1.2): -some more bullshits
2003-02-02 Sunday 15:44 Pattara Kiatisevi <ott@linux.thai.net>
* debian/: conffiles.ex (1.2), cron.d.ex (1.2), emacsen-install.ex
(1.2), emacsen-remove.ex (1.2), emacsen-startup.ex (1.2), init.d.ex
(1.2), manpage.1.ex (1.2), manpage.sgml.ex (1.2), menu.ex (1.2),
postinst.ex (1.2), postrm.ex (1.2), preinst.ex (1.2), prerm.ex
(1.2), shlibs.local.ex (1.2), watch.ex (1.2): -remove these
bullshits
2003-02-02 Sunday 15:35 Pattara Kiatisevi <ott@linux.thai.net>
* debian/: README.Debian (1.1), changelog (1.1), conffiles.ex
(1.1), control (1.1), copyright (1.1), cron.d.ex (1.1), dirs (1.1),
docs (1.1), emacsen-install.ex (1.1), emacsen-remove.ex (1.1),
emacsen-startup.ex (1.1), ex.package.doc-base (1.1), files (1.1),
init.d.ex (1.1), libthai-dev.dirs (1.1), libthai-dev.files (1.1),
libthai0.dirs (1.1), libthai0.files (1.1),
libthai0.postinst.debhelper (1.1), libthai0.postrm.debhelper (1.1),
libthai0.substvars (1.1), manpage.1.ex (1.1), manpage.sgml.ex
(1.1), menu.ex (1.1), postinst.ex (1.1), postrm.ex (1.1),
preinst.ex (1.1), prerm.ex (1.1), rules (1.1), shlibs.local.ex
(1.1), watch.ex (1.1): -let's debianize it
2002-09-20 Friday 21:40 Theppitak Karoonboonyanan <thep@linux.thai.net>
* libthai.pc.in (1.2): Fix Cflags to not descend to thai/ subdir in
include path
2001-10-03 Wednesday 21:52 poonlap
* man/man3/libthai.3 (1.1): Main manpage.
2001-09-30 Sunday 21:03 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.53), configure.in (1.18), include/thai/thwstr.h
(1.2), src/Makefile.am (1.13), src/thwstr/.cvsignore (1.1),
src/thwstr/Makefile.am (1.1), src/thwstr/thwstr.c (1.1): Add a
quick-and-dirty implementation of thwstr.
2001-09-30 Sunday 18:48 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.52), tests/test_thwchar.c (1.4): Add tests for
uni<->win/mac conversion. Use stderr in output messages.
2001-09-25 Tuesday 19:26 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.51), Makefile.am (1.4), configure.in (1.17),
man/.cvsignore (1.1), man/Makefile.am (1.1), man/man3/.cvsignore
(1.1), man/man3/Makefile.am (1.1): Add Makefiles for man pages.
2001-09-22 Saturday 15:19 poonlap
* src/Makefile.am (1.12): Thwbrk is not listed in the
library(typo-error), fixed.
2001-09-17 Monday 08:53 Theppitak Karoonboonyanan <thep@linux.thai.net>
* AUTHORS (1.4), ChangeLog (1.50), include/thai/thwinp.h (1.4): Add
K.Poonlap to AUTHORS. Rename thwciscompose() to thwcisaccept().
2001-09-16 Sunday 21:59 poonlap
* man/: template.3 (1.1), man3/thctype.3 (1.1), man3/wtt.3 (1.1):
Create first man pages for thctype.3, wtt.3 Also template.3
2001-09-14 Friday 21:36 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.48), configure.in (1.16), include/thai/thwctype.h
(1.3), src/Makefile.am (1.11), src/thwctype/.cvsignore (1.1),
src/thwctype/Makefile.am (1.1), ChangeLog (1.49),
src/thwctype/thwctype.c (1.1): Add a quick implementation of
thwctype.
2001-09-14 Friday 21:07 Theppitak Karoonboonyanan <thep@linux.thai.net>
* tests/: test_thbrk.c (1.5), test_thcell.c (1.5): Fix warning.
2001-09-14 Friday 21:05 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.47), src/thwchar/Makefile.am (1.3),
src/thwchar/hashtbl.c (1.2), src/thwchar/hashtbl.h (1.2),
src/thwchar/thwchar.c (1.7): Remove hashing. Use simple linear
search, to get rid of memory leak.
2001-09-14 Friday 20:48 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.46), include/thai/thwchar.h (1.8),
src/thwchar/thwchar.c (1.6): Use lazy creation for hash tables.
2001-09-14 Friday 00:54 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.45), include/thai/thwchar.h (1.7),
src/thwchar/Makefile.am (1.2), src/thwchar/hashtbl.c (1.1),
src/thwchar/hashtbl.h (1.1), src/thwchar/thwchar.c (1.5): Implement
uni2winthai(), uni2macthai() with hash table added in hashtbl.[ch].
2001-08-22 Wednesday 11:41 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.44), include/thai/wtt.h (1.2), src/thcell/thcell.c
(1.6), src/thctype/wtt.c (1.2), src/thinp/thinp.c (1.8),
src/thrend/thrend.c (1.10), src/thstr/thstr.c (1.3),
src/thwchar/thwchar.c (1.4): Add comments. Check naming convention.
Refine coding style.
2001-08-14 Tuesday 13:18 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.43), NEWS (1.5) (utags: r0_1_1): Release Version
0.1.1.
2001-08-14 Tuesday 13:16 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.42): Prepare to release Version 0.1.1.
2001-08-14 Tuesday 13:14 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.ac (1.3): Remove configure.ac.
2001-08-14 Tuesday 13:11 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.in (1.15), include/thai/thctype.h (1.8), src/dummy.c
(1.2), src/thbrk/dict2state.c (1.3), src/thcoll/cweight.c (1.3),
src/thcoll/cweight.h (1.3), src/thinp/thinp.c (1.7),
src/thstr/thstr.c (1.2) (utags: r0_1_1): Require autoconf 2.50. Add
--enable-ansi and --enable-debug flags. Turn on all warnings. Fix
warnings.
2001-08-13 Monday 13:07 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.41), NEWS (1.4), README (1.6, r0_1_1), TODO (1.2,
r0_1_1), configure.ac (1.2), configure.in (1.14): Version 0.1.1
2001-08-10 Friday 18:09 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.40), src/thrend/thrend.c (1.9, r0_1_1): Merge
special case of NIKHAHIT with tone/ad in general.
2001-08-10 Friday 18:07 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.39), include/thai/thrend.h (1.8, r0_1_1),
src/thrend/thrend.c (1.8), tests/Makefile.am (1.10, r0_1_1),
tests/test_thrend.c (1.1, r0_1_1): Add test suite for thrend. Fix
bugs in thrend: th_chlevel() typo; treat NIKHAHIT and MAITAIKHU
with shift_left_tone_ad() in th_render_cell(); also shift top-level
character left when collapsed with NIKHAHIT split from SARA_AM.
2001-08-10 Friday 15:25 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.38), include/thai/thcell.h (1.5, r0_1_1),
src/thcell/thcell.c (1.5, r0_1_1): Allow null pointer to struct
thcell_t to be passed in th_next_cell() and th_prev_cell(), where
no cell data will be written back.
2001-08-09 Thursday 20:33 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.37), tests/test_thcell.c (1.4, r0_1_1),
tests/test_thstr.c (1.3, r0_1_1): Add header comments.
2001-08-09 Thursday 20:27 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.35), tests/Makefile.am (1.9), ChangeLog (1.36),
tests/test_thinp.c (1.1, r0_1_1): Add thinp test suite.
2001-08-09 Thursday 18:52 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.34), include/thai/thcell.h (1.4),
src/thcell/thcell.c (1.4), src/thrend/thrend.c (1.7),
tests/test_thcell.c (1.3): Change return types and arguments of
thcell functions to reduce information redundancy.
2001-08-09 Thursday 18:13 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.33), tests/test_thcell.c (1.2): Add
test_th_make_cells().
2001-08-09 Thursday 17:55 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.32), tests/Makefile.am (1.8), tests/test_thcell.c
(1.1): Add thcell test suite.
2001-08-09 Thursday 00:57 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.31), include/thai/thcell.h (1.3),
include/thai/thinp.h (1.8, r0_1_1), include/thai/thrend.h (1.7),
src/thcell/thcell.c (1.3), src/thinp/thinp.c (1.6),
src/thrend/thrend.c (1.6): Rename struct thcell to struct thcell_t,
for naming consistency.
2001-08-09 Thursday 00:52 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.30), include/thai/thinp.h (1.7), src/thinp/thinp.c
(1.5): Change th_validate() to use a cell as context. Define struct
thinpconv_t for describing input buffer conversion.
2001-08-08 Wednesday 20:58 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.29), include/thai/thcell.h (1.2),
src/thcell/thcell.c (1.2): Add th_prev_cell().
2001-08-08 Wednesday 19:49 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.28), autogen.sh (1.4, r0_1_1), configure.ac (1.1):
Add result checking in autogen.sh. Add configure.ac for autoconf
2.50+.
2001-08-08 Wednesday 19:39 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.27), configure.in (1.13), include/thai/Makefile.am
(1.5, r0_1_1), include/thai/thcell.h (1.1), include/thai/thrend.h
(1.6), src/Makefile.am (1.10, r0_1_1), src/thcell/.cvsignore (1.1,
r0_1_1), src/thcell/Makefile.am (1.1, r0_1_1), src/thcell/thcell.c
(1.1), src/thrend/thrend.c (1.5): Split thcell functions into a
separate module.
2001-08-08 Wednesday 11:45 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.26), src/thrend/thrend.c (1.4): Add guards for cells
without base or hilo char.
2001-08-07 Tuesday 19:43 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.25), src/thinp/thinp.c (1.4): Remove uncommon
predefined sequence correction.
2001-08-07 Tuesday 19:40 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.24), include/thai/thrend.h (1.5), include/thai/tis.h
(1.2, r0_1_1), src/thrend/thrend.c (1.3): Fix NULL redefinition in
tis.h. Change rendering function API to return total glyphs.
Implement Win/Mac shaping. Implement string rendering functions.
2001-08-07 Tuesday 17:29 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.23), include/thai/thrend.h (1.4),
src/thrend/thrend.c (1.2): Treat SARA_AM cases. Add is_decomp_am
argument to determine its appearance. Redefine WTT "cell" for
decomposed SARA_AM case. Add code for plain TIS rendering with
SARA_AM concerned.
2001-08-07 Tuesday 16:12 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.22), include/thai/thctype.h (1.7),
src/thctype/thctype.c (1.7, r0_1_1), tests/test_thctype.c (1.2,
r0_1_1): Add consonant shapes classification in thctype, for the
use of elegant renderers.
2001-08-06 Monday 21:08 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.21), configure.in (1.12), include/thai/thrend.h
(1.3), src/Makefile.am (1.9), src/thinp/thinp.c (1.3),
src/thrend/.cvsignore (1.1, r0_1_1), src/thrend/Makefile.am (1.1,
r0_1_1), src/thrend/thrend.c (1.1): Add partial implementation for
thrend (cell clustering). Change cell definition (WTT hilo byte
encoding is too complicated). Use menomic TIS character names in
thinp.c.
2001-08-05 Sunday 19:42 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.20), include/thai/thinp.h (1.6), src/thinp/thinp.c
(1.2): Change th_validate() to take more context. Define conversion
mechanism more deliberately. Implement th_validate().
2001-08-04 Saturday 23:04 Pattara Kiatisevi <ott@linux.thai.net>
* ChangeLog (1.19, r0_1_0): -before release 0.1.0
2001-08-04 Saturday 22:46 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/thailib.h (1.5, r0_1_1, r0_1_0): Resolve conflict.
2001-08-04 Saturday 22:32 Pattara Kiatisevi <ott@linux.thai.net>
* include/thai/thailib.h (1.4): -sunCC prefers ((thchar_t) ~0) than
~((thchar_t) 0) (from P'Thep)
2001-08-04 Saturday 22:26 Pattara Kiatisevi <ott@linux.thai.net>
* src/thwbrk/thwbrk.c (1.5), tests/test_thbrk.c (1.4) (utags:
r0_1_1, r0_1_0): -casting
2001-08-04 Saturday 22:11 Pattara Kiatisevi <ott@linux.thai.net>
* tests/test_thwbrk.c (1.3, r0_1_1, r0_1_0): -casting
2001-08-04 Saturday 22:08 Pattara Kiatisevi <ott@linux.thai.net>
* tests/test_thwchar.c (1.3, r0_1_1, r0_1_0): -change comments to
C-style
2001-08-04 Saturday 21:59 Pattara Kiatisevi <ott@linux.thai.net>
* src/thbrk/thbrk.c (1.8, r0_1_1, r0_1_0): -fix missing casting
between char * and unsigned char *
2001-08-04 Saturday 21:58 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/thwchar.h (1.6, r0_1_1, r0_1_0): Remove duplicated
macro THCHAR_ERR (already defined in thailib.h)
2001-08-04 Saturday 21:45 Pattara Kiatisevi <ott@linux.thai.net>
* src/: thbrk/thbrk.c (1.7), thwbrk/thwbrk.c (1.4): -change
comments to C-style :(
2001-08-04 Saturday 21:40 Pattara Kiatisevi <ott@linux.thai.net>
* tests/test_thbrk.c (1.3): -change comments to C-style :(
2001-08-04 Saturday 21:24 Theppitak Karoonboonyanan <thep@linux.thai.net>
* tests/test_thstr.c (1.2, r0_1_0): Fix signed/unsigned char
warning.
2001-08-04 Saturday 20:57 Theppitak Karoonboonyanan <thep@linux.thai.net>
* src/thctype/thctype.c (1.6, r0_1_0): Remove weird characters.
2001-08-04 Saturday 20:41 Pattara Kiatisevi <ott@linux.thai.net>
* ChangeLog (1.18): -hmm, do I always need to commit this
ChangeLog?
2001-08-04 Saturday 20:35 Pattara Kiatisevi <ott@linux.thai.net>
* tests/test_thwchar.c (1.2): -remove wprintf, useless
2001-08-04 Saturday 20:29 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.17), NEWS (1.3, r0_1_0): More detailed info in NEWS.
2001-08-04 Saturday 20:16 Pattara Kiatisevi <ott@linux.thai.net>
* NEWS (1.2), README (1.5, r0_1_0): -move release information to
NEWS
2001-08-04 Saturday 20:11 Pattara Kiatisevi <ott@linux.thai.net>
* README (1.4): -more info in RELEASE INFORMATION
2001-08-04 Saturday 20:07 Pattara Kiatisevi <ott@linux.thai.net>
* README (1.3), AUTHORS (1.3, r0_1_1, r0_1_0): -more descriptive
2001-08-04 Saturday 20:04 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.in (1.11), include/thai/Makefile.am (1.4),
include/thai/thinp.h (1.5), include/thai/wtt.h (1.1, r0_1_1),
src/Makefile.am (1.8), src/thctype/Makefile.am (1.2, r0_1_1),
src/thctype/wtt.c (1.1, r0_1_1), src/thinp/.cvsignore (1.1,
r0_1_1), src/thinp/Makefile.am (1.1, r0_1_1), src/thinp/thinp.c
(1.1) (utags: r0_1_0): Add WTT 2.0 tables. Partially implement
thinp.
2001-08-04 Saturday 18:08 Theppitak Karoonboonyanan <thep@linux.thai.net>
* AUTHORS (1.2), ChangeLog (1.16), README (1.2), TODO (1.1,
r0_1_0), configure.in (1.10): Release first version 0.1.0
2001-08-03 Friday 18:20 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.15), src/thbrk/Makefile.am (1.7, r0_1_1, r0_1_0),
src/thbrk/cttex.c (1.3, r0_1_1, r0_1_0), src/thbrk/thbrk.c (1.6),
tests/Makefile.am (1.7, r0_1_0): Make thbrk and cttex use thstr
instead of fixline() and adj(). Fix a memory leak.
2001-08-03 Friday 17:51 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.14), configure.in (1.9), include/thai/Makefile.am
(1.3), include/thai/thstr.h (1.1, r0_1_1, r0_1_0),
include/thai/thwstr.h (1.1, r0_1_1, r0_1_0), src/Makefile.am (1.7),
src/thctype/thctype.c (1.5), src/thstr/.cvsignore (1.1, r0_1_1,
r0_1_0), src/thstr/Makefile.am (1.1, r0_1_1, r0_1_0),
src/thstr/thstr.c (1.1, r0_1_0), tests/.cvsignore (1.5, r0_1_1,
r0_1_0), tests/Makefile.am (1.6), tests/test_thstr.c (1.1): Add
thstr, thwstr API set. Add th_normalize() implementation (extracted
from cttex). Fix level table for top characters in thctype.
2001-08-01 Wednesday 20:13 Pattara Kiatisevi <ott@linux.thai.net>
* src/thwbrk/thwbrk.c (1.3): -new implementation, not convert
cutCode to tis620 back and forth
2001-08-01 Wednesday 05:21 Pattara Kiatisevi <ott@linux.thai.net>
* tests/test_thbrk.c (1.2): -cosmetic on error messages
2001-08-01 Wednesday 05:20 Pattara Kiatisevi <ott@linux.thai.net>
* src/thbrk/thbrk.c (1.5): -fix const casting problem
2001-07-31 Tuesday 22:03 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.13), src/thwbrk/thwbrk.c (1.2), tests/test_thwbrk.c
(1.2): Fix changes affected by the revised thwchar.
2001-07-31 Tuesday 22:01 Theppitak Karoonboonyanan <thep@linux.thai.net>
* src/thwchar/thwchar.c (1.3, r0_1_1, r0_1_0): Revise thwchar.
2001-07-31 Tuesday 20:51 Theppitak Karoonboonyanan <thep@linux.thai.net>
* tests/test_thctype.c (1.1, r0_1_0): Add test_thctype.c to
repository.
2001-07-31 Tuesday 20:50 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.12), tests/.cvsignore (1.4): Add .cvsignore entries
in tests/.
2001-07-31 Tuesday 20:47 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/thctype.h (1.6, r0_1_0), src/thctype/thctype.c
(1.4), tests/Makefile.am (1.5): Add test program for thctype. Fix
many bugs in thctype.
2001-07-31 Tuesday 18:14 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.11), include/thai/thctype.h (1.5),
src/thcoll/thcoll.c (1.3, r0_1_1, r0_1_0), src/thctype/thctype.c
(1.3): Refine thctype interface & implementation (remove win/mac
checking, add combining char checking, fix vowel class bitmasks).
Make thcoll use thctype.
2001-07-30 Monday 18:43 Pattara Kiatisevi <ott@linux.thai.net>
* src/thwbrk/.cvsignore (1.1, r0_1_1, r0_1_0): -.cvsignore
2001-07-30 Monday 18:42 Pattara Kiatisevi <ott@linux.thai.net>
* configure.in (1.8): -add thwbrk
2001-07-30 Monday 18:41 Pattara Kiatisevi <ott@linux.thai.net>
* tests/: Makefile.am (1.4), test_thwbrk.c (1.1), test_thwchar.c
(1.1): -test drivers for thwbrk and thwchar
2001-07-30 Monday 18:40 Pattara Kiatisevi <ott@linux.thai.net>
* src/thwbrk/: Makefile.am (1.1, r0_1_1, r0_1_0), thwbrk.c (1.1):
-thwbrk implementation
2001-07-30 Monday 18:38 Pattara Kiatisevi <ott@linux.thai.net>
* src/: Makefile.am (1.6), thwchar/thwchar.c (1.2): -thwchar
uni2tis620-0 implementation
2001-07-30 Monday 18:37 Pattara Kiatisevi <ott@linux.thai.net>
* include/thai/: thbrk.h (1.4, r0_1_1, r0_1_0), thwbrk.h (1.3,
r0_1_1, r0_1_0), thwchar.h (1.5): -add new interfaces and
descriptions.
2001-07-27 Friday 17:43 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.in (1.7), include/thai/thwchar.h (1.4), src/Makefile.am
(1.5), src/thwchar/.cvsignore (1.1, r0_1_1, r0_1_0),
src/thwchar/Makefile.am (1.1, r0_1_1, r0_1_0),
src/thwchar/thwchar.c (1.1): Add half-implementation of thwchar.
2001-07-27 Friday 17:17 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.10), src/thbrk/.cvsignore (1.4, r0_1_1, r0_1_0),
tests/.cvsignore (1.3): Update .cvsignore's in accordance with
test_thbrk
2001-07-27 Friday 17:12 Theppitak Karoonboonyanan <thep@linux.thai.net>
* src/thbrk/Makefile.am (1.6), src/thbrk/test_thbrk.c (1.5),
tests/Makefile.am (1.3), tests/test_thbrk.c (1.1): Move test_thbrk
to tests/.
2001-07-25 Wednesday 09:11 Theppitak Karoonboonyanan <thep@linux.thai.net>
* .cvsignore (1.3, r0_1_1, r0_1_0), ChangeLog (1.9),
include/.cvsignore (1.2, r0_1_1, r0_1_0), include/thai/.cvsignore
(1.2, r0_1_1, r0_1_0), src/.cvsignore (1.2, r0_1_1, r0_1_0),
src/thbrk/.cvsignore (1.3), src/thcoll/.cvsignore (1.2, r0_1_1,
r0_1_0), src/thctype/.cvsignore (1.2, r0_1_1, r0_1_0),
tests/.cvsignore (1.2): List more auto-generated files to
.cvsignore's.
2001-07-25 Wednesday 04:31 Pattara Kiatisevi <ott@linux.thai.net>
* include/thai/thbrk.h (1.3), src/thbrk/test_thbrk.c (1.4),
src/thbrk/thbrk.c (1.4): -modified the th_brk_line to accept
cutCode as char* instead of int. -modified according to the
changed interface the test program.
2001-07-24 Tuesday 21:23 Theppitak Karoonboonyanan <thep@linux.thai.net>
* Makefile.am (1.3, r0_1_1, r0_1_0), configure.in (1.6),
libthai.pc.in (1.1, r0_1_1, r0_1_0): Add pkg-config metadata.
2001-07-24 Tuesday 20:14 Theppitak Karoonboonyanan <thep@linux.thai.net>
* autogen.sh (1.3, r0_1_0): Remove ineffective warning message
about 'configure'.
2001-07-24 Tuesday 20:00 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/.cvsignore (1.1), include/thai/.cvsignore (1.1),
src/.cvsignore (1.1), src/thbrk/.cvsignore (1.2),
src/thcoll/.cvsignore (1.1), src/thctype/.cvsignore (1.1),
tests/.cvsignore (1.1): Add .cvsignore to subdirs.
2001-07-24 Tuesday 19:51 Theppitak Karoonboonyanan <thep@linux.thai.net>
* COPYING (1.3, r0_1_1, r0_1_0), src/thbrk/Makefile (1.3): Change
license to LGPL. Remove excessive Makefile.
2001-07-24 Tuesday 19:49 Theppitak Karoonboonyanan <thep@linux.thai.net>
* autogen.sh (1.2), configure.in (1.5), src/thbrk/Makefile (1.2):
Remove 'configure' invoking from autogen.sh, output some message.
2001-07-24 Tuesday 19:41 Theppitak Karoonboonyanan <thep@linux.thai.net>
* .cvsignore (1.2), COPYING (1.2), ChangeLog (1.8), INSTALL (1.2),
Makefile.in (1.7), aclocal.m4 (1.3), config.guess (1.2), config.sub
(1.2), configure (1.4), install-sh (1.2), ltmain.sh (1.2), missing
(1.2), mkinstalldirs (1.2), include/Makefile.in (1.6),
include/thai/Makefile.in (1.6), src/Makefile.in (1.6),
src/thbrk/Makefile.in (1.6), src/thcoll/Makefile.in (1.6),
src/thctype/Makefile.in (1.5), tests/Makefile.in (1.6): Remove
autotool-generated files.
2001-07-24 Tuesday 19:31 Theppitak Karoonboonyanan <thep@linux.thai.net>
* .cvsignore (1.1), Makefile.in (1.6), autogen.sh (1.1),
include/Makefile.in (1.5), include/thai/Makefile.in (1.5),
src/Makefile.in (1.5), src/thbrk/Makefile.in (1.5),
src/thcoll/Makefile.in (1.5), src/thctype/Makefile.in (1.4),
tests/Makefile.in (1.5): Add .cvsignore and autogen.sh
2001-07-23 Monday 04:44 Pattara Kiatisevi <ott@linux.thai.net>
* src/thbrk/Makefile.am (1.5): -changed to use dynamic link instead
of static for test_thwbk
2001-07-23 Monday 04:32 Pattara Kiatisevi <ott@linux.thai.net>
* src/thbrk/: test_thbrk.c (1.3), thbrk.c (1.3): -fix the segfault
in char* stuff
2001-07-23 Monday 04:30 Pattara Kiatisevi <ott@linux.thai.net>
* src/thbrk/.cvsignore (1.1): -testing
2001-07-19 Thursday 06:43 Pattara Kiatisevi <ott@linux.thai.net>
* src/thbrk/test_thbrk.c (1.2): -change to be non-interactive
unless "-i" option is specified. -still segfault, not yet finished
2001-07-17 Tuesday 12:23 Chanop Silpa-Anan <chanop@linux.thai.net>
* ChangeLog (1.7): latest updated
2001-07-17 Tuesday 12:20 Chanop Silpa-Anan <chanop@linux.thai.net>
* src/thbrk/: Makefile.am (1.4), Makefile.in (1.4): merge map.c and
map.h into one target, save typo error
2001-07-17 Tuesday 12:00 Chanop Silpa-Anan <chanop@linux.thai.net>
* src/thbrk/: Makefile.am (1.3), Makefile.in (1.3), map.c (1.2),
map.h (1.2): Dynamically generate map.c and map.h in a build
directory. Remove map.c and map.h from the repository.
2001-07-17 Tuesday 10:54 Theppitak Karoonboonyanan <thep@linux.thai.net>
* Makefile.in (1.5), include/Makefile.in (1.4),
include/thai/Makefile.in (1.4), src/Makefile.in (1.4),
src/thbrk/Makefile.am (1.2), src/thbrk/Makefile.in (1.2),
src/thcoll/Makefile.in (1.4), src/thctype/Makefile.in (1.3),
tests/Makefile.in (1.4): Fix dependencies for test_thbrk, so map.c
won't always be rebuilt.
2001-07-17 Tuesday 05:30 Pattara Kiatisevi <ott@linux.thai.net>
* ChangeLog (1.6): -ChangeLog is now automatically generated by
manually run ../bin/cvs2cl.pl :)
2001-07-17 Tuesday 05:27 Pattara Kiatisevi <ott@linux.thai.net>
* ChangeLog (1.5): -add cvs2cl.pl
2001-07-16 Monday 17:54 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.4), Makefile.in (1.4), aclocal.m4 (1.2), configure
(1.3), configure.in (1.4), include/Makefile.in (1.3),
include/thai/Makefile.in (1.3), src/Makefile.am (1.4),
src/Makefile.in (1.3), src/thbrk/Makefile.am (1.1),
src/thbrk/Makefile.in (1.1), src/thbrk/Makefile.ott (1.1, r0_1_1,
r0_1_0), src/thbrk/cttex.c (1.2), src/thbrk/dict2state.c (1.2,
r0_1_0), src/thbrk/map.c (1.1), src/thbrk/map.h (1.1),
src/thbrk/thbrk.c (1.2), src/thcoll/Makefile.in (1.3),
src/thctype/Makefile.in (1.2), tests/Makefile.in (1.3): Add
automake files for building thbrk.
2001-07-15 Sunday 23:35 Pattara Kiatisevi <ott@linux.thai.net>
* include/thai/thbrk.h (1.2): -add th_brk_line interface
2001-07-15 Sunday 23:31 Pattara Kiatisevi <ott@linux.thai.net>
* src/thbrk/: Makefile (1.1), README.TXT (1.1, r0_1_1, r0_1_0),
cttex.c (1.1), dict2state.c (1.1), tdict.txt (1.1, r0_1_1, r0_1_0),
test_thbrk.c (1.1), thbrk.c (1.1): -first version. -wrapper for
P'Hui's cttex.
2001-07-09 Monday 21:54 Pattara Kiatisevi <ott@linux.thai.net>
* src/thbrk/tdict-preparation/: Makefile (1.1), README.TXT (1.1),
dictsort (1.1), dictsort.c (1.1), tdict.local (1.1),
tdict.nonsorted (1.1), tdict.org (1.1), tdict.txt (1.1),
nectec/adjv.txt (1.1), nectec/archaic.txt (1.1), nectec/conj.txt
(1.1), nectec/exclam.txt (1.1), nectec/formal.txt (1.1),
nectec/idiom.txt (1.1), nectec/local.txt (1.1), nectec/nibat.txt
(1.1), nectec/nouns.txt (1.1), nectec/obsolete.txt (1.1),
nectec/poem.txt (1.1), nectec/prefix.txt (1.1), nectec/prep.txt
(1.1), nectec/pron.txt (1.1), nectec/raja.txt (1.1),
nectec/riheads.txt (1.1), nectec/riheads_org.txt (1.1),
nectec/riwords.txt (1.1), nectec/riwords_org.txt (1.1),
nectec/slang.txt (1.1), nectec/suffix.txt (1.1), nectec/verb.txt
(1.1) (utags: r0_1_1, r0_1_0): -tdict.txt preparation part from
cttex with some modifications
2001-06-15 Friday 19:01 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.3), Makefile.in (1.3), include/thai/thctype.h (1.4),
src/thctype/thctype.c (1.2): Add th_isdiac() API. Add function body
for thctype functions.
2001-06-14 Thursday 10:29 Theppitak Karoonboonyanan <thep@linux.thai.net>
* ChangeLog (1.2): Add ChangeLog item.
2001-06-13 Wednesday 22:35 Theppitak Karoonboonyanan <thep@linux.thai.net>
* Makefile.in (1.2), configure (1.2), configure.in (1.3),
include/Makefile.in (1.2), include/thai/Makefile.in (1.2),
include/thai/thctype.h (1.3), src/Makefile.am (1.3),
src/Makefile.in (1.2), src/blank.c (1.2), src/dummy.c (1.1,
r0_1_0), src/thcoll/Makefile.in (1.2), src/thctype/Makefile.am
(1.1), src/thctype/Makefile.in (1.1), src/thctype/thctype.c (1.1),
tests/Makefile.in (1.2): Add thctype implementation (first draft,
so dirty)
2001-06-12 Tuesday 20:18 Theppitak Karoonboonyanan <thep@linux.thai.net>
* Makefile.am (1.2), configure.in (1.2), include/Makefile.am (1.2,
r0_1_1, r0_1_0), include/thai/Makefile.am (1.2), src/Makefile.am
(1.2), src/thcoll/Makefile.am (1.2, r0_1_1, r0_1_0),
tests/Makefile.am (1.2): Add $Id: ChangeLog,v 1.96 2006-08-05 02:04:38 thep Exp $
2001-06-12 Tuesday 20:14 Theppitak Karoonboonyanan <thep@linux.thai.net>
* src/thcoll/cweight.c (1.2, r0_1_0), src/thcoll/cweight.h (1.2,
r0_1_0), src/thcoll/thcoll.c (1.2), tests/test-thcoll.sh (1.2,
r0_1_1, r0_1_0), tests/thsort.c (1.2, r0_1_1, r0_1_0): Add $Id: ChangeLog,v 1.96 2006-08-05 02:04:38 thep Exp $
2001-06-12 Tuesday 20:12 Theppitak Karoonboonyanan <thep@linux.thai.net>
* AUTHORS (1.1), COPYING (1.1), ChangeLog (1.1), INSTALL (1.1),
Makefile.am (1.1), Makefile.in (1.1), NEWS (1.1), README (1.1),
aclocal.m4 (1.1), config.guess (1.1), config.sub (1.1), configure
(1.1), configure.in (1.1), install-sh (1.1), ltmain.sh (1.1),
missing (1.1), mkinstalldirs (1.1), include/Makefile.am (1.1),
include/Makefile.in (1.1), include/thai/Makefile.am (1.1),
include/thai/Makefile.in (1.1), src/Makefile.am (1.1),
src/Makefile.in (1.1), src/blank.c (1.1), src/cweight.c (1.2),
src/cweight.h (1.2), src/thcoll.c (1.2), src/thcoll/Makefile.am
(1.1), src/thcoll/Makefile.in (1.1), src/thcoll/cweight.c (1.1),
src/thcoll/cweight.h (1.1), src/thcoll/thcoll.c (1.1),
tests/Makefile.am (1.1), tests/Makefile.in (1.1), tests/sorted.txt
(1.1, r0_1_1, r0_1_0), tests/test-thcoll.sh (1.1): add building
system
2001-06-11 Monday 21:16 Theppitak Karoonboonyanan <thep@linux.thai.net>
* src/cweight.c (1.1), src/cweight.h (1.1), src/thcoll.c (1.1),
tests/sorttest.txt (1.1, r0_1_1, r0_1_0), tests/thsort.c (1.1): add
a draft thcoll implementation
2001-05-18 Friday 11:51 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/: thailib.h (1.3), thcoll.h (1.3, r0_1_1, r0_1_0),
thinp.h (1.4), thwcoll.h (1.3, r0_1_1, r0_1_0), thwinp.h (1.3,
r0_1_1, r0_1_0): size_t definition in <thai/thailib.h>, strict_t to
thstrict_t in <thai/thinp.h>
2001-05-18 Friday 01:15 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/thinp.h (1.3): Change the spec (comment) of
th_validate()
2001-05-18 Friday 01:07 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/thwchar.h (1.3): fix arg & return types of uni2*
2001-05-18 Friday 01:04 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/thbrk.h (1.1): use thbrk.h for 8-bit code, to
prevent confusion
2001-05-18 Friday 00:58 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/: thailib.h (1.2), thcoll.h (1.2), thctype.h (1.2),
thinp.h (1.2), thrend.h (1.2, r0_1_0), thwbrk.h (1.2), thwchar.h
(1.2), thwcoll.h (1.2), thwctype.h (1.2, r0_1_1, r0_1_0), thwinp.h
(1.2), thwrend.h (1.2, r0_1_1, r0_1_0): Add comments. Fix many
declarations. Add thglyph_t.
2001-05-17 Thursday 23:12 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/: thailib.h (1.1.1.1), thcoll.h (1.1.1.1), thctype.h
(1.1.1.1), thinp.h (1.1.1.1), thrend.h (1.1.1.1), thwbrk.h
(1.1.1.1), thwchar.h (1.1.1.1), thwcoll.h (1.1.1.1), thwctype.h
(1.1.1.1), thwinp.h (1.1.1.1), thwrend.h (1.1.1.1), tis.h (1.1.1.1,
r0_1_0) (utags: libthai_0_1): first draft API
2001-05-17 Thursday 23:12 Theppitak Karoonboonyanan <thep@linux.thai.net>
* include/thai/: thailib.h (1.1), thcoll.h (1.1), thctype.h (1.1),
thinp.h (1.1), thrend.h (1.1), thwbrk.h (1.1), thwchar.h (1.1),
thwcoll.h (1.1), thwctype.h (1.1), thwinp.h (1.1), thwrend.h (1.1),
tis.h (1.1): Initial revision
|