Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « fribidi « 3party - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3696667cef3a5c92cb2668327116227850ade3fa (plain)
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
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
commit 6b0423949010d4aa596099bba62992b8c28b5abf
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Mon Aug 27 14:19:37 2012 -0400

    0.19.4

 NEWS         |    5 +++++
 configure.ac |    4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 3ef15e5f0aa4f000f8bacb6af190daa57f8897c4
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Sat Aug 25 17:41:02 2012 -0400

    Add git.mk

 Makefile.am         |    2 +
 bin/Makefile.am     |    2 +
 charset/Makefile.am |    2 +
 doc/Makefile.am     |    2 +
 gen.tab/Makefile.am |    2 +
 git.mk              |  224
 +++++++++++++++++++++++++++++++++++++++++++++++++++
 lib/Makefile.am     |    2 +
 test/Makefile.am    |    2 +
 8 files changed, 238 insertions(+), 0 deletions(-)

commit 40b469fd91a2bfc94dba04f837e2cec4098164e9
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Sat Aug 25 17:40:05 2012 -0400

    Update ChangeLog generation to git

 Makefile.am |   33 ++++++++++++++-------------------
 1 files changed, 14 insertions(+), 19 deletions(-)

commit fa21aa06dbc0b1f7e32665d7629bb4593c969495
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Sat Aug 25 17:36:07 2012 -0400

    Update Unicode data files to 6.1.0

 gen.tab/unidata/ArabicShaping.txt |  287 ++++++++------
 gen.tab/unidata/BidiMirroring.txt |   28 +-
 gen.tab/unidata/ReadMe.txt        |    6 +-
 gen.tab/unidata/UnicodeData.txt   |  799
 +++++++++++++++++++++++++++++++++++--
 4 files changed, 956 insertions(+), 164 deletions(-)

commit d39b179d8de65a19390e50cfb39bb36ae193d65b
Author: Behdad Esfahbod <behdad@behdad.org>
Date:   Sun Jun 17 15:01:09 2012 -0400

    Modernize autofoo a bit

 configure.ac |   24 ++++++++++++++++--------
 1 files changed, 16 insertions(+), 8 deletions(-)

commit 5a9009c8cc1c7825431df0d4e1002a0384f5d4c5
Author: behdad <behdad>
Date:   Wed May 4 18:04:29 2011 +0000

    Minor optimization in struct layout for 64bit systems

 lib/run.h |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

commit 4d8e4ddd627068d2088c7894925a7e3494ca671e
Author: behdad <behdad>
Date:   Fri Jan 21 22:49:59 2011 +0000

    Update to Unicode 6.0.0 and bump version to 0.19.3

 configure.ac                      |   12 +-
 gen.tab/unidata/ArabicShaping.txt |   68 +-
 gen.tab/unidata/BidiMirroring.txt |   27 +-
 gen.tab/unidata/ReadMe.txt        |   12 +-
 gen.tab/unidata/UnicodeData.txt   | 5261
 +++++++++++++++++++++++++++++++++----
 5 files changed, 4882 insertions(+), 498 deletions(-)

commit 6c535469bfbff7983f5052fa3cf6f8eb8dc2f26a
Author: behdad <behdad>
Date:   Tue Dec 7 19:44:24 2010 +0000

    Fix build without charset converters

 bin/Makefile.am                |    5 ++++-
 gen.tab/gen-joining-type-tab.c |    7 ++++---
 2 files changed, 8 insertions(+), 4 deletions(-)

commit ac47256bb07728c6e1a4debd9cee2600c48acab6
Author: behdad <behdad>
Date:   Wed Feb 24 19:40:04 2010 +0000

    Include toplevel glib.h only

 lib/common.h         |   12 ++++++------
 lib/fribidi-common.h |    8 ++++----
 lib/fribidi-types.h  |    9 ++++-----
 3 files changed, 14 insertions(+), 15 deletions(-)

commit 05c2637b3618ee6785774b6d080ac345489042d5
Author: behdad <behdad>
Date:   Tue Apr 14 03:49:52 2009 +0000

    Support win32 benchmarking

 bin/fribidi-benchmark.c |   25 +++++++++++++++++++++----
 1 files changed, 21 insertions(+), 4 deletions(-)

commit 9282f1fa2eada341fdf05e1167e317e084e37ad1
Author: behdad <behdad>
Date:   Fri Mar 27 16:14:33 2009 +0000

    [doc] Make sure a minus is used, not a hyphen.

 lib/fribidi-deprecated.h |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

commit 10f83ec197e821e72c6733fcc6ef763324d4ced4
Author: behdad <behdad>
Date:   Thu Mar 26 22:37:29 2009 +0000

    NEWS, configure.ac: Released GNU FriBidi 0.19.2.

 NEWS         |    6 ++++++
 configure.ac |   12 ++++++------
 2 files changed, 12 insertions(+), 6 deletions(-)

commit 8c13427b601bbbc03be58cc1b5aeaa6e31e65399
Author: behdad <behdad>
Date:   Thu Mar 26 22:25:39 2009 +0000

    Bugzilla – Bug 20887 Problem with handling a certain sequence of
    arabic characters in fribidi 0.19.1

    Fix typo in ligature table.

 lib/arabic-misc.tab.i |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit bd3cf818941aa166425b633f92ce0d0d8b0efb37
Author: behdad <behdad>
Date:   Tue Dec 30 18:42:37 2008 +0000

    Add AbsoluteTelnet.

 USERS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 2202f4310dbcb95b893e3342eeb9a48a49377294
Author: behdad <behdad>
Date:   Mon Nov 24 17:48:31 2008 +0000

    Fix typos.

 lib/fribidi-bidi-types.h |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

commit d60a4546004df012871348b00be28f57baca28a8
Author: behdad <behdad>
Date:   Tue Apr 22 19:50:46 2008 +0000

    Handle RLM/LRM in CP1255 charset converter.  (#15328, Artyom)

 charset/fribidi-char-sets-cp1255.c |   18 ++++++++++++++----
 1 files changed, 14 insertions(+), 4 deletions(-)

commit 4b8dde2be6c0ed0a28ba54e0fe204f821dd5a88f
Author: behdad <behdad>
Date:   Tue Apr 8 21:38:22 2008 +0000

    Update to Unicode Character Database 5.1.0

 gen.tab/unidata/ArabicShaping.txt |   34 +-
 gen.tab/unidata/BidiMirroring.txt |   42 +-
 gen.tab/unidata/ReadMe.txt        |   10 +-
 gen.tab/unidata/UnicodeData.txt   | 1694
 ++++++++++++++++++++++++++++++++++++-
 lib/Makefile.am                   |    2 +-
 lib/common.h                      |   10 +-
 6 files changed, 1721 insertions(+), 71 deletions(-)

commit 66839714d9773a37f6e653fc150f7ef685fe673f
Author: behdad <behdad>
Date:   Tue Jan 15 23:15:45 2008 +0000

    Released GNU FriBidi 0.19.1.

 NEWS         |   36 ++++++++++++++++++++++++++++++++----
 README       |    3 +--
 configure.ac |   12 ++++++------
 3 files changed, 39 insertions(+), 12 deletions(-)

commit ff8fdfae41cace1151dee4adac035e0708f3a5d2
Author: behdad <behdad>
Date:   Tue Jan 15 22:53:06 2008 +0000

    Remove RPM versioning cruft.

 configure.ac |   15 ++++-----------
 1 files changed, 4 insertions(+), 11 deletions(-)

commit 97287207e2b1fafbd027050d96222b6b672c91b3
Author: behdad <behdad>
Date:   Tue Jan 15 19:59:34 2008 +0000

    Remove spec file.  Nobody uses upstream spec files these days.

 configure.ac    |    9 ++--
 fribidi.spec.in |  145
 -------------------------------------------------------
 2 files changed, 4 insertions(+), 150 deletions(-)

commit 753ed9aed90f9d31e6ff404c0c7befadbfd18d23
Author: behdad <behdad>
Date:   Thu Jun 7 16:33:51 2007 +0000

    Add remaining issues before a release can be made.

 TODO |   12 +++++++++++-
 1 files changed, 11 insertions(+), 1 deletions(-)

commit 9cf48565b4eae059dece1bb25a2758f86c003509
Author: behdad <behdad>
Date:   Thu Apr 5 16:14:39 2007 +0000

    Avoid non-const struct initializer.

 lib/fribidi-arabic.c |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

commit a04ddf676dec48112e077c8c3f727a313433c09f
Author: behdad <behdad>
Date:   Thu Apr 5 16:14:14 2007 +0000

    Make sure we err if stringize is not available.

 lib/common.h |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

commit 28dc6041e9f0074c68ce23a67a3b5f0ff3717241
Author: behdad <behdad>
Date:   Thu Apr 5 16:13:24 2007 +0000

    Check for (defined(WIN32)) || (defined(_WIN32_WCE)) to detect
    WinCE too

 lib/common.h         |    8 ++++----
 lib/fribidi-common.h |    8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

commit 1a25b4e31a1e0560c82086a5216cd7b064a9ca0c
Author: behdad <behdad>
Date:   Thu Mar 15 18:09:25 2007 +0000

    Skip explicits-list reinsertion if list is empty.

 lib/fribidi-bidi.c |   38 +++++++++++++++++++++-----------------
 1 files changed, 21 insertions(+), 17 deletions(-)

commit fa423e19309e5de2e8e5671dedaf04e66a2b3ff8
Author: behdad <behdad>
Date:   Fri Jul 21 22:29:10 2006 +0000

    Update to Unicode Character Database 5.0.0.

 gen.tab/unidata/ArabicShaping.txt |   45 +-
 gen.tab/unidata/BidiMirroring.txt |   42 +-
 gen.tab/unidata/ReadMe.txt        |   31 +-
 gen.tab/unidata/UnicodeData.txt   | 1493
 +++++++++++++++++++++++++++++++++++--
 4 files changed, 1520 insertions(+), 91 deletions(-)

commit 105e8f3c8f67fcd5a1620f9a9059b550067c1ac0
Author: behdad <behdad>
Date:   Tue Jun 13 00:59:08 2006 +0000

    Add Nokia 9110 Hebrew Support package.

 USERS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit d7a0bb2e00f061481f83d77293834f9fde594b5f
Author: behdad <behdad>
Date:   Thu Jun 1 22:53:55 2006 +0000

    More comments.

 lib/fribidi-deprecated.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

commit a97826cdebe9be46421cea7fa7379a4c43947dec
Author: behdad <behdad>
Date:   Thu Jun 1 22:52:29 2006 +0000

    Note about line-breaking.

 lib/fribidi-deprecated.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

commit b6100183464b26258c8ebb454e857aae295f30de
Author: behdad <behdad>
Date:   Fri Apr 28 02:00:31 2006 +0000

    Use -no-undefined unconditionally.

 lib/Makefile.am |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

commit 6bdbe74f19a97c855265d595ce0de48e66f28715
Author: behdad <behdad>
Date:   Tue Jan 31 03:23:12 2006 +0000

    Add an option --disable-deprecated.

 bin/fribidi-benchmark.c          |   16 ++++++------
 bin/fribidi-main.c               |   45
 ++++++++++++++++++++++----------------
 charset/fribidi-char-sets.c      |   16 ++++++------
 configure.ac                     |   23 ++++++++++++++-----
 gen.tab/gen-arabic-shaping-tab.c |   12 +++++-----
 gen.tab/gen-bidi-type-tab.c      |   12 +++++-----
 gen.tab/gen-joining-type-tab.c   |   12 +++++-----
 gen.tab/gen-mirroring-tab.c      |   12 +++++-----
 gen.tab/gen-unicode-version.c    |   12 +++++-----
 gen.tab/packtab.c                |    8 +++---
 lib/bidi-types.h                 |    8 +++---
 lib/common.h                     |   21 ++++++++---------
 lib/debug.h                      |    8 +++---
 lib/fribidi-arabic.c             |    8 +++---
 lib/fribidi-bidi-types.c         |    8 +++---
 lib/fribidi-bidi-types.h         |   17 ++-----------
 lib/fribidi-bidi.c               |    8 +++---
 lib/fribidi-common.h             |   18 +++++++-------
 lib/fribidi-deprecated.c         |   11 ++++++---
 lib/fribidi-deprecated.h         |   30 ++++++++++++++++++++++--
 lib/fribidi-joining-types.c      |    8 +++---
 lib/fribidi-joining.c            |    8 +++---
 lib/fribidi-mem.c                |   12 ++++++----
 lib/fribidi-run.c                |   30 +++++++++++-------------
 lib/fribidi-types.h              |   39 ++++++++++++++++----------------
 lib/fribidi-unicode.h            |   33 ++++++----------------------
 lib/fribidi.c                    |   21 +++++++++--------
 lib/fribidi.h                    |   13 ++++++----
 lib/joining-types.h              |    8 +++---
 lib/mem.h                        |   34 ++++++++++++++--------------
 lib/run.h                        |    8 +++---
 31 files changed, 269 insertions(+), 250 deletions(-)

commit 570efad0b961ad106a05f2dbabeedbed477ea161
Author: behdad <behdad>
Date:   Sun Jan 22 10:12:17 2006 +0000

    Add extra braces to shut gcc warnings up.

 charset/fribidi-char-sets-cap-rtl.c |   17 +++++++++--------
 lib/debug.h                         |   13 +++++++------
 lib/run.h                           |    9 +++++----
 3 files changed, 21 insertions(+), 18 deletions(-)

commit fd466b1f41cd1b0d1717eac9b18b188c58c2d479
Author: behdad <behdad>
Date:   Sun Jan 22 10:11:43 2006 +0000

    Shut gcc warnings up.

 bin/fribidi-main.c |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

commit 0c1a24cc05dc1d3b9500adbd1cc98956b27cfc12
Author: behdad <behdad>
Date:   Sun Jan 22 10:11:23 2006 +0000

    Use memcpy for duplicating str.

 lib/fribidi-deprecated.c |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

commit b4b92129d1d49dd926afdb2b15130345fd78ce24
Author: behdad <behdad>
Date:   Sun Jan 22 10:10:57 2006 +0000

    Include string.h.

 lib/common.h |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 deletions(-)

commit a23b982514520747e4012a7aa577607bea657fa8
Author: behdad <behdad>
Date:   Sat Jan 21 14:00:01 2006 +0000

    Added HebrewService.

 USERS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 763d386e7bd52925cf61c93e738e35525e311392
Author: behdad <behdad>
Date:   Sat Jan 14 12:09:29 2006 +0000

    Added fribidi_get_type_internal as a deprecated symbol.

 lib/fribidi-deprecated.c |   14 +++++++++++---
 lib/fribidi-deprecated.h |   19 ++++++++++++++-----
 lib/fribidi-shape.h      |    9 +++++----
 lib/fribidi.def          |   32 ++++++++++++++++++--------------
 4 files changed, 48 insertions(+), 26 deletions(-)

commit 2f2520ff14c086976507f7fdba39e56cf7652d8e
Author: behdad <behdad>
Date:   Wed Nov 23 19:29:44 2005 +0000

    Added Nano-X.

 USERS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 190e142a731b8a99c5ce837e48618061bc636ef5
Author: behdad <behdad>
Date:   Tue Nov 15 20:04:14 2005 +0000

    Set TESTS_ENVIRONMENT=/bin/sh to avoid problem when running with
    \r\n line
    endings on Linux.

 test/Makefile.am |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

commit 423ecf2a86a7ccb2f265ff7db3e6ec5b8d573ff5
Author: behdad <behdad>
Date:   Wed Nov 9 20:02:48 2005 +0000

    Added a FIXME about not handling First..Last ranges in
    UnicodeData.txt.

 gen.tab/gen-bidi-type-tab.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

commit cdf20461a666da4493fc279cd2257939663c3284
Author: behdad <behdad>
Date:   Thu Nov 3 01:39:01 2005 +0000

    Arabic shaping support added.

 HACKING                              |    1 +
 TODO                                 |    3 +
 bin/fribidi-main.c                   |    7 +-
 configure.ac                         |   20 +--
 doc/Makefile.am                      |    2 +-
 gen.tab/Makefile.am                  |   16 ++-
 gen.tab/gen-arabic-liga.sh           |    9 +
 gen.tab/gen-arabic-shaping-tab.c     |  310
 ++++++++++++++++++++++++++++++++++
 gen.tab/gen-bidi-type-tab.c          |   12 +-
 gen.tab/gen-joining-type-tab.c       |   10 +-
 gen.tab/gen-mirroring-tab.c          |   12 +-
 gen.tab/gen-unicode-version.c        |    7 +-
 gen.tab/packtab.c                    |    1 +
 lib/Headers.mk                       |    5 +-
 lib/Makefile.am                      |    8 +-
 lib/arabic-misc.tab.i                |   94 ++++++++++
 lib/debug.h                          |    7 +-
 lib/env.h                            |   62 -------
 lib/fribidi-arabic.c                 |  190 +++++++++++++++++++++
 lib/fribidi-arabic.h                 |   88 ++++++++++
 lib/fribidi-bidi.c                   |   62 +------
 lib/fribidi-bidi.h                   |   31 ++--
 lib/fribidi-common.h                 |   29 +++-
 lib/fribidi-config.h.in              |    3 -
 lib/fribidi-deprecated.c             |  296
 ++++++++++++++++++++++++++++++++
 lib/fribidi-deprecated.h             |  210 +++++++++++++++++++++++
 lib/fribidi-env.c                    |  121 -------------
 lib/fribidi-env.h                    |  126 --------------
 lib/fribidi-flags.h                  |   78 +++++++++
 lib/fribidi-joining-types.c          |   10 +-
 lib/fribidi-joining-types.h          |    9 +-
 lib/fribidi-joining.c                |   40 ++---
 lib/fribidi-mem.c                    |    8 +-
 lib/fribidi-mirroring.c              |   10 +-
 lib/fribidi-run.c                    |   13 +-
 lib/fribidi-shape.c                  |   69 ++++++++
 lib/fribidi-shape.h                  |   77 +++++++++
 lib/fribidi-types.h                  |   24 ++--
 lib/fribidi-unicode.h                |   12 +-
 lib/fribidi.c                        |  213 +++--------------------
 lib/fribidi.h                        |  116 ++-----------
 lib/joining-types.h                  |    8 +-
 test/test_UTF-8_persian.reference    |   28 ++--
 test/test_UTF-8_reordernsm.reference |   14 +-
 44 files changed, 1674 insertions(+), 797 deletions(-)

commit 7aa8a91edbc3325e8b179cc649be778dceb85499
Author: behdad <behdad>
Date:   Sun Sep 25 22:59:21 2005 +0000

    Replaced bug URL.

 configure.ac |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

commit 42b8f6c32751ec34df6b47292491a50fbf28e76f
Author: behdad <behdad>
Date:   Sun Sep 25 18:42:10 2005 +0000

    Use sed instead of $(SED).

 test/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit dc2d62315905e43fcddfe981171803f071facc9f
Author: behdad <behdad>
Date:   Sat Sep 24 01:04:15 2005 +0000

    Updated and annotated.

 USERS |   42 +++++++++++++++++++++++++++++++-----------
 1 files changed, 31 insertions(+), 11 deletions(-)

commit 1a84d35513e311b152c3147f8f6de613ef563c3a
Author: behdad <behdad>
Date:   Sat Sep 24 00:44:54 2005 +0000

    Moved BiCon up, since it's an easy sample to study.

 USERS |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit f2b7ba2cd28592c2a1bc8b8669ea6e3cf7697673
Author: behdad <behdad>
Date:   Sun Sep 4 16:57:09 2005 +0000

    Better handling of sys/times.h.  Also, don't pass -pedantic to gcc.

 bin/fribidi-benchmark.c |   10 +++++++---
 configure.ac            |   13 ++++++-------
 2 files changed, 13 insertions(+), 10 deletions(-)

commit a655e7cb79937f2a3b9c3caab5c57a228564f90a
Author: behdad <behdad>
Date:   Sun Sep 4 16:56:16 2005 +0000

    Added fribidi_version_info.

 lib/fribidi.def |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 0548d9cc1f6794ac714b66f8d870aeaa0d14da4a
Author: behdad <behdad>
Date:   Sun Sep 4 16:55:12 2005 +0000

    Use capital hex digits.

 bin/fribidi-bidi-types.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit ff7183b4f6f87ea018486334c5e9b73ceffbd360
Author: behdad <behdad>
Date:   Sat Aug 27 10:21:51 2005 +0000

    Small change to not run libtool if the package doesn't use it.

 bootstrap |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

commit 6f82bd2a21dd38e03bdecab889b9fc9f98fcfeb3
Author: behdad <behdad>
Date:   Thu Aug 25 18:35:34 2005 +0000

    Minor.

 Makefile.am |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

commit f7f7232e6322d493118dce829906b626c8dd2049
Author: behdad <behdad>
Date:   Wed Aug 10 23:16:31 2005 +0000

    Couple items added ;).

 TODO |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

commit e8bca571a125502fe0735cf45d6af1d3a85a49c7
Author: behdad <behdad>
Date:   Sat Jul 30 09:06:27 2005 +0000

    Small changes to shut gcc warnings up.

 .cvsignore                          |    1 +
 Makefile.am                         |    7 ++-
 USERS                               |    4 +-
 bin/fribidi-benchmark.c             |   17 ++++----
 bin/fribidi-bidi-types.c            |    7 ++-
 bin/fribidi-caprtl2utf8.c           |   17 ++++---
 bin/fribidi-main.c                  |   30 +++++++-------
 charset/fribidi-char-sets-cap-rtl.c |   78
 ++++++++++++++++++++---------------
 charset/fribidi-char-sets-utf8.c    |   12 +++---
 configure.ac                        |   20 ++++----
 gen.tab/gen-unicode-version.c       |   33 ++++++++-------
 lib/fribidi-bidi.c                  |   10 ++--
 lib/fribidi-types.h                 |   10 ++--
 lib/fribidi.c                       |    8 ++--
 14 files changed, 138 insertions(+), 116 deletions(-)

commit 6f84aff9f7901178ef9e7e2e463a04e639b5a606
Author: behdad <behdad>
Date:   Wed Jun 8 18:53:50 2005 +0000

    Small edits.

 README |    4 ++--
 THANKS |    2 +-
 TODO   |    2 ++
 3 files changed, 5 insertions(+), 3 deletions(-)

commit 3c5b16d01c37a03e790617ff59fbdb634f859933
Author: behdad <behdad>
Date:   Tue Jun 7 08:44:23 2005 +0000

    Misc fixes.

 TODO         |   11 -----------
 USERS        |    1 +
 configure.ac |   10 +++++-----
 3 files changed, 6 insertions(+), 16 deletions(-)

commit 24d75cf7f42251ccb7a00f5469d8e172cf10061d
Author: behdad <behdad>
Date:   Tue Jun 7 08:43:17 2005 +0000

    In Unicode 4.1.0, the ReadMe.txt doesn't contain the Unicode version
    anymore.
    Updated to read version from BidiMirroring.txt, if not found in
    ReadMe.txt.

 gen.tab/Makefile.am           |    5 ++-
 gen.tab/gen-unicode-version.c |   75
 +++++++++++++++++++++++++++-------------
 gen.tab/unidata/ReadMe.txt    |    3 --
 3 files changed, 53 insertions(+), 30 deletions(-)

commit 589404c4a8e4cc462931d390badf397dae93a433
Author: behdad <behdad>
Date:   Tue Jun 7 08:42:15 2005 +0000

    Extra space removed!

 gen.tab/gen-bidi-type-tab.c    |    8 ++++----
 gen.tab/gen-joining-type-tab.c |    8 ++++----
 gen.tab/gen-mirroring-tab.c    |    8 ++++----
 3 files changed, 12 insertions(+), 12 deletions(-)

commit 7693cd077b01f38470235322785488eaf3935cde
Author: behdad <behdad>
Date:   Tue Jun 7 08:40:21 2005 +0000

    Small fixes.

 THANKS |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

commit 6cd91b5e87ee7c33cfad2db686cc0e05bba2f547
Author: behdad <behdad>
Date:   Tue Jun 7 08:39:14 2005 +0000

    An integrated CapRTL to UTF-8 converter added.

 bin/Makefile.am           |    2 +-
 bin/fribidi-caprtl2utf8.c |   32 ++++++++++++++
 test/caprtl2unicode.py    |  102
 ---------------------------------------------
 3 files changed, 33 insertions(+), 103 deletions(-)

commit 10a1d7d29e5fc41f27e6296382c6de9a82aa5a99
Author: behdad <behdad>
Date:   Tue Jun 7 08:20:05 2005 +0000

    Added.  Enumerates bidi char types into stdout.

 bin/Makefile.am          |    2 +-
 bin/fribidi-bidi-types.c |   14 ++++++++++++++
 2 files changed, 15 insertions(+), 1 deletions(-)

commit d993a60a47b582fbf48da9d9fb6b0a49b80ac7b6
Author: behdad <behdad>
Date:   Tue Jun 7 07:31:13 2005 +0000

    Unicode 4.1 character database update.

 gen.tab/unidata/ArabicShaping.txt |  105 +++-
 gen.tab/unidata/BidiMirroring.txt |   39 +-
 gen.tab/unidata/ReadMe.txt        |   47 +-
 gen.tab/unidata/UnicodeData.txt   | 1383
 +++++++++++++++++++++++++++++++++++--
 4 files changed, 1448 insertions(+), 126 deletions(-)

commit 004756f080f6bf20b27b61b419317a05a529227a
Author: behdad <behdad>
Date:   Mon Jan 10 06:43:53 2005 +0000

    Better conversion table from CapRTL to Unicode.

 charset/fribidi-char-sets-cap-rtl.c |   40
 ++++++++++++++++++++++++++--------
 1 files changed, 30 insertions(+), 10 deletions(-)

commit 294e001ae47168d63a2e7e7eaf7ede2a7a3dc1ae
Author: roozbeh <roozbeh>
Date:   Sun Jan 9 11:18:30 2005 +0000

    Made the wording a little more formal, removed jokes and sad stories.

 AUTHORS |   43 ++++++++++++++++++++-----------------------
 1 files changed, 20 insertions(+), 23 deletions(-)

commit 17fc4cc584586887bb075e6759b6b9817136bff0
Author: behnam <behnam>
Date:   Sat Jan 8 15:27:20 2005 +0000

    Correcting the table.

 test/caprtl2unicode.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit 9c069fc714a833165ce62638e3769f88187e55c7
Author: behnam <behnam>
Date:   Sat Jan 8 13:26:58 2005 +0000

    Clearing some typos.

 test/caprtl2unicode.py |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

commit 9c41b72c0911188bb31821256f5d9594370cd323
Author: behnam <behnam>
Date:   Wed Jan 5 16:45:56 2005 +0000

    Adding CapRTL to Unicode (UTF-8) convertor.

 test/caprtl2unicode.py |  104
 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 104 insertions(+), 0 deletions(-)

commit 5db31e96f3c6b904325939e648a363cbcac56b14
Author: behdad <behdad>
Date:   Fri Oct 29 18:49:48 2004 +0000

    Added Geresh.

 USERS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 16912ed41fda35ca84cf7cdcffafd063813084d6
Author: behdad <behdad>
Date:   Tue Sep 28 07:58:57 2004 +0000

    Minor change in comments:  Using "Authors(s)" in the file header.

 lib/fribidi-mirroring.c |    8 ++++----
 lib/fribidi-mirroring.h |    8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

commit e9682b9d9c3aab7cc9b84f6f7038f2d91dd7eeae
Author: behdad <behdad>
Date:   Fri Aug 27 21:55:59 2004 +0000

    Here and there small improvements.

 Makefile.am                    |   14 +++++++-------
 TODO                           |    4 ++--
 USERS                          |    1 +
 configure.ac                   |   12 ++++++------
 gen.tab/gen-bidi-type-tab.c    |   10 ++++++----
 gen.tab/gen-joining-type-tab.c |   10 ++++++----
 gen.tab/gen-mirroring-tab.c    |   10 ++++++----
 gen.tab/gen-unicode-version.c  |    9 +++++----
 8 files changed, 39 insertions(+), 31 deletions(-)

commit 72e40abf49046452016b994e2e3e390460b2d757
Author: behdad <behdad>
Date:   Fri Jul 16 08:39:14 2004 +0000

    Added.  List of projects using FriBidi.

 USERS |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

commit 3218f6b1213fe224ad0e1aac5ce0680fc08fb711
Author: behdad <behdad>
Date:   Sat Jul 3 20:49:32 2004 +0000

    Added test_UTF-8_reordernsm to Makefile.

 test/Makefile.am |   41 ++++++++++++++++++++++-------------------
 1 files changed, 22 insertions(+), 19 deletions(-)

commit ecf61996551cf322195cec23e52ea2203461728c
Author: behdad <behdad>
Date:   Sat Jul 3 11:36:14 2004 +0000

    Here and there fixes, found by trying to compile on sf.net Compile
    Farm!

 AUTHORS             |    6 +++---
 TODO                |    3 ---
 configure.ac        |   17 +++++++++--------
 gen.tab/Makefile.am |   17 +++++++++++++++++
 lib/Makefile.am     |   13 ++++++++++---
 lib/fribidi-types.h |   15 ++++-----------
 6 files changed, 43 insertions(+), 28 deletions(-)

commit 9172b19c7bff40e6dafb08e2c09bf4a8d095bfd0
Author: behdad <behdad>
Date:   Sat Jul 3 06:01:04 2004 +0000

    Well, just testing new maildiff script.

 HACKING |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit e252f1935eedfbda10b7748332ba6083844b04fe
Author: behdad <behdad>
Date:   Sat Jul 3 01:45:08 2004 +0000

    Another TODO item added.

 TODO |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

commit 39eb7cee872fe37844cb7c4e929b69afd1998924
Author: behdad <behdad>
Date:   Sat Jul 3 00:04:27 2004 +0000

    Boring addition of new TODO items :-(.

 TODO |   18 +++++++++++-------
 1 files changed, 11 insertions(+), 7 deletions(-)

commit 584ed3fc6c0a99624ed8c77247ef5533ef7e613c
Author: behdad <behdad>
Date:   Wed Jun 23 22:26:06 2004 +0000

    Two small fixes to make compilation with -DDONT_HAVE_FRIBIDI_CONFIG_H
    go on.

 bin/fribidi-main.c   |    8 ++++----
 lib/fribidi-common.h |    7 ++++---
 2 files changed, 8 insertions(+), 7 deletions(-)

commit 5dae46a14998243dc121cc0a8f72176cae6e43c8
Author: behdad <behdad>
Date:   Mon Jun 21 21:15:31 2004 +0000

    Reimplemented Arabic joining.  Hopefullly it's conforming to the
    standard now,
    with the exception that we assume "level run" instead of "directional
    run",
    which is a proposed changed to be applied for Unicode 4.1.

 .indent.pro                 |    2 +-
 lib/fribidi-bidi.h          |   17 +++--
 lib/fribidi-joining-types.h |   18 ++++--
 lib/fribidi-joining.c       |  133
 +++++++++++++++++++++++++-----------------
 lib/fribidi-joining.h       |   15 +++--
 lib/fribidi-unicode.h       |   14 +---
 lib/fribidi.c               |   10 ++--
 lib/fribidi.h               |    8 +-
 8 files changed, 124 insertions(+), 93 deletions(-)

commit 597b12bc95d465aab5402b0a5b75516fc339e6e4
Author: behdad <behdad>
Date:   Mon Jun 21 18:49:23 2004 +0000

    We need bidi_types all over the place (in joining, in shaping,
    ...), so
    make them mandatory.  As a consequence, many of our functions don't
    need str
    anymore:  they just need this bidi_types.

 lib/bidi-types.h         |    8 ++----
 lib/common.h             |   11 ++++++--
 lib/fribidi-bidi-types.h |   14 +++++++----
 lib/fribidi-bidi.c       |   55
 ++++++++++++++++++++--------------------------
 lib/fribidi-bidi.h       |   43 ++++++------------------------------
 lib/fribidi-joining.c    |   17 +++++++++++---
 lib/fribidi-run.c        |   15 ++++++------
 lib/fribidi-unicode.h    |   18 +++++++++++----
 lib/fribidi.c            |   20 ++++++++++++----
 lib/run.h                |   11 ++++-----
 10 files changed, 104 insertions(+), 108 deletions(-)

commit b1a9af57fe88c46b5f9f7fd47db37895b3e58e78
Author: behdad <behdad>
Date:   Mon Jun 21 16:15:27 2004 +0000

    Fixed a bug in fribidi_log2vis(), also changed fribidi_reorder_line()
    api to
    allow not passing visual_str, by passing str instead.

 lib/fribidi-bidi.c |   37 ++++++++++++++++++++-----------------
 lib/fribidi-bidi.h |   22 +++++++++++++++-------
 lib/fribidi.c      |   41 +++++++++++++++++++++--------------------
 3 files changed, 56 insertions(+), 44 deletions(-)

commit 9ccf303994daef7417fe30bce7cf7d9ec8f9a59c
Author: behdad <behdad>
Date:   Fri Jun 18 22:41:39 2004 +0000

    Rever back to our old level setting for BN and explicits.  The new
    method was
    buggy.  A test case added to capture that.

 lib/fribidi-bidi.c                  |   20 ++++++--------------
 test/Makefile.am                    |   10 +++++-----
 test/test_CapRTL_explicit.input     |    1 +
 test/test_CapRTL_explicit.reference |    1 +
 4 files changed, 13 insertions(+), 19 deletions(-)

commit 23b5d2354cff9b790f0e19bd78e5084b069f5679
Author: behdad <behdad>
Date:   Fri Jun 18 19:21:33 2004 +0000

    Fixed good catch by Mark Davis that rule L1 is partly done after line
    breaking.  Also calculate more reasonable levels for explicit marks
    and BN.

 lib/fribidi-bidi-types.h |   13 ++++++----
 lib/fribidi-bidi.c       |   56
 +++++++++++++++++++++++++++++++++++----------
 lib/fribidi-bidi.h       |   30 +++++++++++++++---------
 lib/fribidi-types.h      |   10 ++++----
 lib/fribidi.c            |   10 +++-----
 5 files changed, 79 insertions(+), 40 deletions(-)

commit 7ca6352ed7890ea20a23e6957c7cd4928c0fe7d1
Author: behdad <behdad>
Date:   Tue Jun 15 20:54:00 2004 +0000

    Oh, no need to add tables for general category Cf, it can roughly
    be obtained
    by doing JOINING_TYPE_T - BIDI_TYPE_NSM...

 gen.tab/Makefile.am      |   16 +---------------
 lib/Makefile.am          |    4 +---
 lib/fribidi-bidi-types.h |   17 +++--------------
 3 files changed, 5 insertions(+), 32 deletions(-)

commit e6086775cc1d123d94127ee618fe6aaa0c10134a
Author: behdad <behdad>
Date:   Tue Jun 15 11:52:02 2004 +0000

    Arabic joining is almost complete.  Going for Shaping.

 .indent.pro                         |    1 +
 TODO                                |   11 +--
 charset/fribidi-char-sets-cap-rtl.c |    8 +-
 configure.ac                        |   10 +-
 gen.tab/Makefile.am                 |   16 +++-
 gen.tab/gen-bidi-type-tab.c         |    9 +-
 gen.tab/gen-joining-type-tab.c      |    9 +-
 gen.tab/gen-mirroring-tab.c         |    9 +-
 gen.tab/gen-unicode-version.c       |    9 +-
 lib/Makefile.am                     |    4 +-
 lib/common.h                        |   10 ++-
 lib/fribidi-bidi-types.c            |   12 ++--
 lib/fribidi-bidi-types.h            |   68 +++++++++++----
 lib/fribidi-bidi.c                  |  119 +++++++++++++++-----------
 lib/fribidi-bidi.h                  |   94 +++++++++++++++------
 lib/fribidi-joining-types-list.h    |   10 +-
 lib/fribidi-joining-types.c         |   30 ++++---
 lib/fribidi-joining-types.h         |  124 ++++++++++++++++++++++-----
 lib/fribidi-joining.c               |  161
 +++++++++++++++++++++++++++++++++++
 lib/fribidi-joining.h               |   36 +++++++-
 lib/fribidi-mirroring.c             |   14 ++--
 lib/fribidi-mirroring.h             |   27 ++++--
 lib/fribidi-types.h                 |   24 +++++-
 lib/fribidi.c                       |   97 +++++++++++++---------
 lib/fribidi.def                     |    6 +-
 lib/fribidi.h                       |   93 +++++++++++---------
 lib/joining-types.h                 |    9 +-
 27 files changed, 734 insertions(+), 286 deletions(-)

commit 8a20d52ddb30e073762ec17afda2e1b9257be568
Author: behdad <behdad>
Date:   Tue Jun 15 09:21:32 2004 +0000

    Oops, I changed Persian Yeh to Arabic Yeh last time :">.

 test/test_UTF-8_persian.input     |   26 +++++++++++++-------------
 test/test_UTF-8_persian.reference |   26 +++++++++++++-------------
 2 files changed, 26 insertions(+), 26 deletions(-)

commit e5583f7430272861120627c3262cc1b80f020206
Author: behdad <behdad>
Date:   Tue Jun 15 09:19:16 2004 +0000

    Replace Arabic Yeh with Persian Yeh.

 test/test_UTF-8_persian.input     |   22 +++++++++++-----------
 test/test_UTF-8_persian.reference |   22 +++++++++++-----------
 2 files changed, 22 insertions(+), 22 deletions(-)

commit 08dd824be4a114ed07d67c5dabc12c33fd6ba3ae
Author: behdad <behdad>
Date:   Mon Jun 14 18:43:48 2004 +0000

    fribidi-bidi-type.[ch] merged into fribidi-bidi-types.[ch].
    fribidi-joining-type.[ch] merged into fribidi-joining-types.[ch].

 charset/fribidi-char-sets-cap-rtl.c |    8 ++--
 configure.ac                        |   22 +++++++--
 doc/Makefile.am                     |   14 +++----
 lib/Headers.mk                      |    3 +-
 lib/Makefile.am                     |    2 -
 lib/fribidi-bidi-type.c             |   80
 -----------------------------------
 lib/fribidi-bidi-type.h             |   72
 -------------------------------
 lib/fribidi-bidi-types.c            |   69 ++++++++++++++++++++++++------
 lib/fribidi-bidi-types.h            |   34 +++++++++++++--
 lib/fribidi-bidi.c                  |   48 ++++----------------
 lib/fribidi-bidi.h                  |   27 +++---------
 lib/fribidi-config.h.in             |    3 +
 lib/fribidi-joining-type.c          |   56 ------------------------
 lib/fribidi-joining-type.h          |   59 -------------------------
 lib/fribidi-joining-types.c         |   66 +++++++++++++++++++++++------
 lib/fribidi-joining-types.h         |   36 +++++++++++++--
 lib/fribidi-mirroring.c             |   34 +++++++++++++-
 lib/fribidi-mirroring.h             |   22 ++++++++-
 lib/fribidi-run.c                   |    8 ++--
 lib/fribidi.c                       |   11 +++--
 lib/fribidi.def                     |   18 +++++---
 lib/fribidi.h                       |   14 ++++--
 22 files changed, 296 insertions(+), 410 deletions(-)

commit 5e32eff3de2d41d4a1674e28991eb82c1d00dd79
Author: behdad <behdad>
Date:   Mon Jun 14 17:00:33 2004 +0000

    fribidi_get_bidi_types is back.  Allow passing bidi types to
    get_par_embedding_levels and reorder_line functions.

 lib/bidi-types.h        |    8 ++++--
 lib/fribidi-bidi-type.c |   24 ++++++++++++++++++--
 lib/fribidi-bidi-type.h |   19 ++++++++++++++--
 lib/fribidi-bidi.c      |   53
 ++++++++++++++++++++++++++--------------------
 lib/fribidi-bidi.h      |   33 +++++++++++++++++++++++------
 lib/fribidi-run.c       |   13 ++++++-----
 lib/fribidi.c           |   10 ++++----
 lib/run.h               |    9 ++++---
 8 files changed, 115 insertions(+), 54 deletions(-)

commit 55c61f3adbd4bd6ccfc3a2a26fb926adfa3a4082
Author: behdad <behdad>
Date:   Sun Jun 13 20:11:41 2004 +0000

    First joining stuff checked in.  Generate joining table using
    my beloved
    packtab, in gen-joining-type-tab.c.  Defined FriBidiJoiningType type
    and wrote
    accompanying functions and macros.

 .indent.pro                         |    3 +-
 TODO                                |   20 +-
 charset/Makefile.am                 |   10 +-
 charset/fribidi-char-sets-cap-rtl.c |    8 +-
 doc/Makefile.am                     |   10 +-
 gen.tab/Makefile.am                 |   92 ++++------
 gen.tab/gen-bidi-type-tab.c         |   65 ++++---
 gen.tab/gen-joining-type-tab.c      |  355
 +++++++++++++++++++++++++++++++++++
 gen.tab/gen-mirroring-tab.c         |   52 +++---
 gen.tab/gen-unicode-version.c       |   42 ++--
 gen.tab/packtab.c                   |   16 +-
 gen.tab/packtab.h                   |    2 +-
 lib/Headers.mk                      |    7 +-
 lib/Makefile.am                     |   29 +++-
 lib/common.h                        |   12 +-
 lib/debug.h                         |   11 +-
 lib/env.h                           |    7 +-
 lib/fribidi-bidi-type.c             |    9 +-
 lib/fribidi-bidi-types-list.h       |    8 +-
 lib/fribidi-bidi-types.c            |    8 +-
 lib/fribidi-bidi-types.h            |  140 +++++++--------
 lib/fribidi-joining-type.c          |   56 ++++++
 lib/fribidi-joining-type.h          |   59 ++++++
 lib/fribidi-joining-types-list.h    |   50 +++++
 lib/fribidi-joining-types.c         |   78 ++++++++
 lib/fribidi-joining-types.h         |  143 ++++++++++++++
 lib/fribidi-joining.h               |   50 +++++
 lib/fribidi-mirroring.c             |   12 +-
 lib/fribidi.def                     |    9 +-
 lib/joining-types.h                 |   58 ++++++
 lib/run.h                           |   10 +-
 31 files changed, 1147 insertions(+), 284 deletions(-)

commit c4ac68eb37169192b1f72bd09e2fc80302cad20d
Author: behdad <behdad>
Date:   Wed Jun 9 20:01:00 2004 +0000

    Wow!!!  I use the wonderful packtab to compress the mirroring
    table now!  It
    gives an smaller and faster table than the old binary search one!
    Moreover,
    packtab deals with tables with empty heads much better.  Voila!

 bin/fribidi-main.c          |   13 +++--
 charset/fribidi-char-sets.c |    7 +-
 configure.ac                |    9 +--
 gen.tab/Makefile.am         |    4 +-
 gen.tab/gen-bidi-type-tab.c |   15 +++--
 gen.tab/gen-mirroring-tab.c |   99 +++++++++++++++++++----------
 gen.tab/packtab.c           |  147
 +++++++++++++++++++++++++++++++++----------
 gen.tab/packtab.h           |   13 ++--
 lib/fribidi-bidi-type.c     |   14 ++---
 lib/fribidi-bidi-types.h    |   10 ++--
 lib/fribidi-mirroring.c     |   48 ++------------
 lib/fribidi-types.h         |   79 ++++++++++++-----------
 lib/fribidi.h               |    8 +-
 13 files changed, 276 insertions(+), 190 deletions(-)

commit a7baa9a7e957ea338e3c683f8d85ad4bc5a533c5
Author: behdad <behdad>
Date:   Wed Jun 9 14:59:21 2004 +0000

    Redundant and compatibility stuff removed.  A few macros added,
    to compile
    AbiWord from CVS.  The most important is the FRIBIDI_TYPE_PRIVATE in
    fribidi-bidi-types.h

 bin/fribidi-main.c                    |   25 ++++++++++---
 charset/Headers.mk                    |    8 +----
 charset/fribidi-char-sets-cap-rtl.h   |    8 +++--
 charset/fribidi-char-sets-cp1255.h    |    8 +++--
 charset/fribidi-char-sets-cp1256.h    |    8 +++--
 charset/fribidi-char-sets-iso8859-6.h |    8 +++--
 charset/fribidi-char-sets-iso8859-8.h |    8 +++--
 charset/fribidi-char-sets-list.h      |   14 ++++----
 charset/fribidi-char-sets-utf8.h      |    8 +++--
 charset/fribidi-char-sets.c           |   18 ++++++---
 charset/fribidi-char-sets.h           |   13 ++-----
 configure.ac                          |   18 +++------
 doc/Makefile.am                       |    1 +
 lib/common.h                          |   28 +++++++-------
 lib/debug.h                           |   10 +++---
 lib/fribidi-bidi-type.c               |   62
 +++------------------------------
 lib/fribidi-bidi-type.h               |   39 ++-------------------
 lib/fribidi-bidi-types-list.h         |   14 ++++----
 lib/fribidi-bidi-types.h              |   35 ++++++++++--------
 lib/fribidi-bidi.h                    |    7 ++--
 lib/fribidi-common.h                  |   14 +++-----
 lib/fribidi-mirroring.c               |   12 +++---
 lib/fribidi-mirroring.h               |   12 +++---
 lib/fribidi-types.h                   |   26 +++++++-------
 lib/fribidi.c                         |    8 ++--
 lib/fribidi.def                       |    3 --
 lib/fribidi.h                         |   18 +++++++---
 lib/mem.h                             |   10 +++---
 28 files changed, 189 insertions(+), 254 deletions(-)

commit 7e382d2cc7f5c08bda7d0d7195b074d91811c5d7
Author: behdad <behdad>
Date:   Wed Jun 9 08:56:53 2004 +0000

    Not serious changed.  Going to remove easy-to-replace compatibility
    stuff.

 bin/fribidi-benchmark.c |    8 ++++----
 bin/fribidi-main.c      |   14 +++++++-------
 lib/fribidi-bidi-type.h |   12 +++++++-----
 lib/fribidi.h           |   16 ++++++++++++----
 4 files changed, 30 insertions(+), 20 deletions(-)

commit 5a52ab708d73f6b8929856ddf7238ecdb04a36b0
Author: behdad <behdad>
Date:   Mon Jun 7 20:38:21 2004 +0000

    Finally done with the clean API for bidi functionality.  The API is
    not final
    yet, but does the job.  Also define FriBidiCharType as an enum
    if possible.
    Added type FriBidiParType for paragraph direction types.

 .cvsignore                        |    2 +-
 .indent.pro                       |    4 +-
 TODO                              |    2 +
 lib/fribidi-bidi-types-list.h     |   11 +-
 lib/fribidi-bidi-types.h          |  134 +++++++++++-----
 lib/fribidi-bidi.c                |  314
 +++++++++++++++----------------------
 lib/fribidi-bidi.h                |  100 +++++-------
 lib/fribidi-mirroring.c           |    9 +-
 lib/fribidi-mirroring.h           |    9 +-
 lib/fribidi.c                     |  170 ++++++++++++++++++++-
 lib/fribidi.def                   |    2 +-
 lib/fribidi.h                     |   95 +++++++++++-
 test/test_UTF-8_persian.reference |   16 +-
 13 files changed, 541 insertions(+), 327 deletions(-)

commit 8fee958d0e10db5516f3897e6dc832ef56b13fcd
Author: behdad <behdad>
Date:   Fri Jun 4 16:43:51 2004 +0000

    Isolating bidi reordering call, take 1.

 lib/fribidi-bidi.c |  338
 ++++++++++++++++++----------------------------------
 lib/fribidi-bidi.h |   14 +-
 lib/fribidi-run.c  |   39 ++++---
 lib/run.h          |    8 +-
 4 files changed, 149 insertions(+), 250 deletions(-)

commit a6fde7f289ff58990148caef9b69283ab6263b04
Author: behdad <behdad>
Date:   Fri Jun 4 09:43:57 2004 +0000

    Anyone seen my log ;-).

 doc/Makefile.am |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

commit 526172111aaf46da0f28ed57917179779d1a266b
Author: behdad <behdad>
Date:   Fri Jun 4 09:41:11 2004 +0000

    Cleaning up here and there.  Last lingers before adding joining.

 Makefile.am                         |   49 ++++--
 TODO                                |    9 +-
 bin/fribidi-main.c                  |   12 +-
 bootstrap                           |  130 +++++++++++-----
 charset/fribidi-char-sets-cap-rtl.c |   12 +-
 configure.ac                        |    9 +-
 doc/Makefile.am                     |   18 ++-
 gen.tab/.cvsignore                  |    4 +-
 gen.tab/Makefile.am                 |    1 +
 gen.tab/gen-bidi-type-tab.c         |   20 ++--
 lib/Headers.mk                      |    2 +-
 lib/fribidi-bidi-type.c             |   17 ++-
 lib/fribidi-bidi-type.h             |   23 ++-
 lib/fribidi-bidi-types-list.h       |   39 +++--
 lib/fribidi-bidi-types.c            |   10 +-
 lib/fribidi-bidi-types.h            |   17 ++-
 lib/fribidi-bidi.c                  |  297
 +++++++++++++++++------------------
 lib/fribidi-bidi.h                  |   28 +++-
 lib/fribidi-common.h                |    8 +-
 lib/fribidi-config.h.in             |    3 +
 lib/fribidi.def                     |   28 ++--
 21 files changed, 430 insertions(+), 306 deletions(-)

commit a6b4f96acbd71fd8cc05e136a9bcb2ffc594b2a1
Author: behdad <behdad>
Date:   Mon May 31 18:43:26 2004 +0000

    GNU Coding Standards applied and typos fixed.

 AUTHORS                             |   45 +++++++++++++++++-
 Makefile.am                         |   10 ++--
 README                              |   26 +++++-----
 THANKS                              |    2 +-
 TODO                                |   41 ++++++++++++++++
 bin/fribidi-main.c                  |   10 ++--
 charset/fribidi-char-sets-cap-rtl.c |    8 ++--
 configure.ac                        |   40 ++++++++-------
 doc/Makefile.am                     |    4 +-
 gen.tab/Makefile.am                 |   12 ++--
 gen.tab/gen-bidi-type-tab.c         |    8 ++--
 gen.tab/gen-mirroring-tab.c         |    8 ++--
 gen.tab/gen-unicode-version.c       |   20 +++++--
 lib/bidi-types-list.h               |   85
 ---------------------------------
 lib/fribidi-bidi-type.c             |   10 ++--
 lib/fribidi-bidi-types-list.h       |   90
 +++++++++++++++++++++++++++++++++++
 16 files changed, 259 insertions(+), 160 deletions(-)

commit 339717751b86715f78bd9d02159813c29c650a0a
Author: behdad <behdad>
Date:   Mon May 31 18:39:39 2004 +0000

    GNU Coding Standards applied where appropriate.

 lib/Headers.mk           |    1 +
 lib/Makefile.am          |    1 -
 lib/common.h             |   10 +++--
 lib/debug.h              |    8 ++--
 lib/fribidi-bidi-types.c |   10 +++---
 lib/fribidi-bidi.c       |   84
 +++++++++++++++++++++++-----------------------
 lib/fribidi-common.h     |   33 +++++++++---------
 lib/fribidi-config.h.in  |    3 +-
 lib/fribidi.c            |   20 +++++-----
 lib/run.h                |    8 ++--
 10 files changed, 91 insertions(+), 87 deletions(-)

commit 18e3dfa79857422629e1c790890e77be31a97507
Author: behdad <behdad>
Date:   Mon May 31 10:59:14 2004 +0000

    To be moved to gen.tab/

 gen.tab/unidata/README |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

commit 477d11a4cda120d3e877302d0fc6485cbd8b2caf
Author: behdad <behdad>
Date:   Mon May 31 10:43:44 2004 +0000

    We need UnicodeData.txt for shaping tables, so seems like we are
    forced to use
    the big fat huge UnicodeData.txt, so no need to used extracted/Derived
    files
    anymore. :-(

 gen.tab/unidata/ArabicShaping.txt                  |  240 +
 gen.tab/unidata/README                             |    1 +
 gen.tab/unidata/UnicodeData.txt                    |15100
 ++++++++++++++++++++
 gen.tab/unidata/extracted/DerivedBidiClass.txt     | 1299 --
 .../unidata/extracted/DerivedDecompositionType.txt |  933 --
 gen.tab/unidata/extracted/DerivedJoiningType.txt   |  215 -
 6 files changed, 15341 insertions(+), 2447 deletions(-)

commit 28f7f004848d56fb148290428ecff8ab3b568cdd
Author: behdad <behdad>
Date:   Sat May 29 11:32:23 2004 +0000

    Tweaked the headers again.  According to GNU GPL now.

 lib/fribidi-mirroring.c |   36 ++++++++++++++++++------------------
 lib/fribidi-mirroring.h |   38 ++++++++++++++++++++------------------
 lib/fribidi.c           |   10 ++++++----
 3 files changed, 44 insertions(+), 40 deletions(-)

commit 08e0eaa79d69c795eff3f46e42f48978390dce35
Author: behdad <behdad>
Date:   Tue May 25 12:41:17 2004 +0000

    Ok, now DLL build works with Cygwin.  Still remains to test with
    Mingw.

 lib/Makefile.am |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

commit 0134010bc16b3d8305f84ced5d869ad8ea74e59c
Author: behdad <behdad>
Date:   Tue May 25 12:28:11 2004 +0000

    Ok, seems like there are a few bits wrong in Pango, and I simply
    copied :">.

 configure.ac |   30 +++++++++---------------------
 1 files changed, 9 insertions(+), 21 deletions(-)

commit a721146c70de7d537bd307f3422fc159d90825b2
Author: behdad <behdad>
Date:   Tue May 25 12:15:44 2004 +0000

    Seems like using $build_os instead of broken $host should fix the
    problem.

 configure.ac |   17 ++++++++---------
 1 files changed, 8 insertions(+), 9 deletions(-)

commit ff55b08eb992fde9c99711c744aee6763adfbf4d
Author: behdad <behdad>
Date:   Tue May 25 12:09:39 2004 +0000

    Trying to build DLL on Cygwin.

 configure.ac |   22 +++++++++++++++++-----
 1 files changed, 17 insertions(+), 5 deletions(-)

commit 564566593800ae5b29a73d1cfee424f78eb3bbc7
Author: behdad <behdad>
Date:   Tue May 25 12:00:29 2004 +0000

    Define extra GNU function attributes only if using GLIB.

 lib/fribidi-common.h |   31 +++++++++++++++++--------------
 1 files changed, 17 insertions(+), 14 deletions(-)

commit f4dd6b6017ca84c7649ddef2e9408a6dcb4ea1c0
Author: behdad <behdad>
Date:   Tue May 25 11:35:39 2004 +0000

    Added a dummy gettext.h that simply defines "gettext" to null.

 bin/Makefile.am |    2 +-
 bin/gettext.h   |    2 ++
 2 files changed, 3 insertions(+), 1 deletions(-)

commit 780f36974ad355dc931fb8d9ea94327a0e4b0d18
Author: behdad <behdad>
Date:   Tue May 25 11:27:50 2004 +0000

    Another oops.  You know, it's 7:30 in the morning!

 gen.tab/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit ae620c51565dcab4493d8c221dece66cdbe68f8a
Author: behdad <behdad>
Date:   Tue May 25 11:26:28 2004 +0000

    My oops.  Sorry.

 gen.tab/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 7333eb868af79cae67e9fd6e89ded327412c6ec6
Author: behdad <behdad>
Date:   Tue May 25 11:21:06 2004 +0000

    Added $(EXEEXT) to binaries we build and run, to make cygwin-safe.

 gen.tab/Makefile.am |   24 +++++++++++++++---------
 1 files changed, 15 insertions(+), 9 deletions(-)

commit e7798ad595b3e90ff3077a65f0e342637fdeb0de
Author: behdad <behdad>
Date:   Tue May 25 11:14:14 2004 +0000

    Moved gen.tab to the first subdir.

 Makefile.am |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

commit a0897904ce19ea9f17de60c4ec13d3bd1186d43e
Author: behdad <behdad>
Date:   Mon May 24 06:45:42 2004 +0000

    Small fixes.

 AUTHORS                       |    1 +
 HACKING                       |    7 -------
 doc/Makefile.am               |   23 +++++++++++++++--------
 gen.tab/gen-bidi-type-tab.c   |   14 +++++++-------
 gen.tab/gen-mirroring-tab.c   |   15 ++++++---------
 gen.tab/gen-unicode-version.c |   10 +++++-----
 6 files changed, 34 insertions(+), 36 deletions(-)

commit 3fe934b572660936b4e494a3694714a10ed12a1b
Author: behdad <behdad>
Date:   Sat May 22 12:17:10 2004 +0000

    When reading DerivedBidiClass.txt, should only default to L.

 TODO                        |    5 ++-
 gen.tab/gen-bidi-type-tab.c |   45
 ++++++++++++++++++++++++++++++------------
 2 files changed, 35 insertions(+), 15 deletions(-)

commit fc64781b05223801b6b69ecba791a31f5166bdbe
Author: behdad <behdad>
Date:   Sat May 22 11:21:39 2004 +0000

    Make gen-mirroring-tab and gen-unicode-version work.  gen.tab/
    works now.

 Makefile.am                         |   10 +++-
 bin/Makefile.am                     |    4 +-
 bin/fribidi-benchmark.c             |   16 ++++--
 charset/fribidi-char-sets-cap-rtl.c |   16 +++---
 charset/fribidi-char-sets.c         |    8 ++--
 gen.tab/Makefile.am                 |   95
 ++++++++++++++++++++++++++---------
 gen.tab/gen-bidi-type-tab.c         |    8 ++--
 gen.tab/gen-mirroring-tab.c         |   10 ++--
 gen.tab/gen-unicode-version.c       |   11 ++--
 lib/common.h                        |   20 ++++----
 lib/fribidi-bidi-type.c             |    7 +--
 lib/fribidi-mem.c                   |   13 +++--
 12 files changed, 137 insertions(+), 81 deletions(-)

commit 285b3de138e8a4f790fe07519c1a90d759a61598
Author: behdad <behdad>
Date:   Sat May 22 10:35:30 2004 +0000

    Making gen-bidi-tab work, and more clean up.

 bin/Makefile.am               |    4 +-
 charset/Makefile.am           |    2 +-
 configure.ac                  |   29 ++++---
 doc/Makefile.am               |    2 +-
 fribidi.pc.in                 |    2 +-
 gen.tab/Makefile.am           |   52 +++++++++++++-
 gen.tab/gen-bidi-type-tab.c   |  163
 ++++++++++++++++++++++++++++++-----------
 gen.tab/gen-mirroring-tab.c   |   79 +++++++++++++-------
 gen.tab/gen-unicode-version.c |   48 ++++++------
 gen.tab/packtab.c             |    5 +-
 gen.tab/packtab.h             |    2 +-
 lib/Makefile.am               |   31 ++------
 lib/common.h                  |   48 +++++++-----
 lib/fribidi-bidi.h            |   12 ++-
 lib/fribidi-mirroring.c       |   10 +-
 lib/fribidi-mirroring.h       |   10 +-
 16 files changed, 323 insertions(+), 176 deletions(-)

commit c33ae846fd05d20a4e557dd1b6ab1ca4a77ee796
Author: behdad <behdad>
Date:   Wed May 12 23:13:55 2004 +0000

    gen-unicode-version is operational now.

 gen.tab/.cvsignore            |    5 +-
 gen.tab/Makefile.am           |    6 +-
 gen.tab/gen-bidi-type-tab.c   |   10 +-
 gen.tab/gen-mirroring-tab.c   |    8 +-
 gen.tab/gen-unicode-version.c |  170
 +++++++++++++++++++++++++++++++++++++++++
 5 files changed, 187 insertions(+), 12 deletions(-)

commit 8bc4b0a145e828a6c9e90d18e4f06900291d1d3a
Author: behdad <behdad>
Date:   Wed May 12 08:17:19 2004 +0000

    Better handling with Unicode info.

 gen.tab/gen-bidi-type-tab.c |   13 +++++--------
 lib/.cvsignore              |    2 +-
 lib/Makefile.am             |    4 ++--
 lib/common.h                |    7 ++++---
 lib/fribidi-bidi-type.c     |   24 +++++++++---------------
 lib/fribidi-common.h        |   10 +++-------
 lib/fribidi-unicode.h       |   11 ++++++++---
 7 files changed, 32 insertions(+), 39 deletions(-)

commit 4400e84cad664c8bd863596aa53f6e3fe0866156
Author: behdad <behdad>
Date:   Wed May 12 07:09:09 2004 +0000

    Updated .cvsignore files.

 doc/.cvsignore                |    4 ++++
 lib/.cvsignore                |    2 ++
 lib/fribidi-unicode-version.h |    4 ----
 3 files changed, 6 insertions(+), 4 deletions(-)

commit d7b141a2521ad40a1c75c0aeb43920225bd08317
Author: behdad <behdad>
Date:   Wed May 12 07:06:21 2004 +0000

    Updated the gen.tab to work again.  Other fixes here and there.

 .indent.pro                 |    1 +
 TODO                        |    2 +
 bin/fribidi-main.c          |   11 +-
 bootstrap                   |    9 +-
 charset/fribidi-char-sets.c |   12 +-
 gen.tab/Makefile.am         |    9 ++
 gen.tab/gen-bidi-type-tab.c |  298
 +++++++++++++++++++++----------------------
 gen.tab/gen-mirroring-tab.c |  223 ++++++++++++++++++--------------
 gen.tab/packtab.c           |   18 +--
 lib/bidi-types-list.h       |   18 ++-
 lib/common.h                |   12 +-
 lib/fribidi-bidi-type.c     |    8 +-
 lib/fribidi-mirroring.h     |   13 +-
 13 files changed, 340 insertions(+), 294 deletions(-)

commit 4b03bbd7b4368cde918197875a83ff4661ca4857
Author: behdad <behdad>
Date:   Fri May 7 06:30:37 2004 +0000

    Cleaning here and there.  We may be ready for a release tonight :).

 Makefile.am                         |    8 +-
 TODO                                |    3 +-
 bin/fribidi-main.c                  |   28 +-
 charset/fribidi-char-sets-cap-rtl.c |   92 +-
 configure.ac                        |   10 +-
 doc/Makefile.am                     |    2 +
 lib/Makefile.am                     |    8 +-
 lib/bidi-type-table.i               | 5228
 -----------------------------------
 lib/bidi-types-list.h               |   11 +-
 lib/bidi-types.h                    |   25 +-
 lib/common.h                        |   10 +-
 lib/debug.h                         |    7 +-
 lib/fribidi-bidi-type.c             |   61 +-
 lib/fribidi-bidi.c                  |    8 +-
 lib/fribidi-common.h                |   12 +-
 lib/fribidi-mem.c                   |   20 +-
 lib/fribidi-mirroring.c             |   13 +-
 lib/fribidi-types.h                 |    9 +-
 lib/fribidi-unicode.h               |   16 +-
 lib/fribidi.c                       |    8 +-
 lib/mem.h                           |    8 +-
 lib/mirroring-table.i               |  360 ---
 22 files changed, 181 insertions(+), 5766 deletions(-)

commit 7fafb2d9754e6dab124dff5b2b5ba89e69e042f7
Author: behdad <behdad>
Date:   Wed May 5 21:47:34 2004 +0000

    More TODO.  And change autoconf requirement to 2.56 from 2.59.

 TODO         |    8 ++++++++
 configure.ac |   10 +++++-----
 2 files changed, 13 insertions(+), 5 deletions(-)

commit 2a3c067871dcd2b595a1f3d0d79c3e0660270653
Author: behdad <behdad>
Date:   Mon May 3 22:05:19 2004 +0000

    Changed the run data structure from a double-terminated deque, to a
    circular deque with a single sentinel.  To debug that, also added
    some assert
    stuff, added function attributes, deprecated old interfaces, and humm,
    that it
    for now.

 .indent.pro                           |    2 +-
 TODO                                  |    4 +
 bin/fribidi-benchmark.c               |   10 +-
 bin/fribidi-main.c                    |   20 +-
 charset/fribidi-char-sets-cap-rtl.c   |   11 +-
 charset/fribidi-char-sets-cp1255.c    |   10 +-
 charset/fribidi-char-sets-cp1256.c    |   10 +-
 charset/fribidi-char-sets-iso8859-6.c |   10 +-
 charset/fribidi-char-sets-iso8859-8.c |   10 +-
 charset/fribidi-char-sets-utf8.c      |   10 +-
 charset/fribidi-char-sets.c           |   10 +-
 charset/fribidi-char-sets.h           |    8 +-
 configure.ac                          |   11 +-
 doc/Makefile.am                       |   11 +-
 lib/Headers.mk                        |   14 +-
 lib/Makefile.am                       |    6 +-
 lib/bidi-type-table.i                 |    8 +-
 lib/bidi-types-list.h                 |   15 +-
 lib/bidi-types.h                      |   20 +-
 lib/common.h                          |   48 ++-
 lib/debug.h                           |   66 ++-
 lib/env.h                             |   10 +-
 lib/fribidi-bidi-type.c               |   37 +-
 lib/fribidi-bidi-type.h               |   33 +-
 lib/fribidi-bidi-types.c              |   12 +-
 lib/fribidi-bidi-types.h              |   50 +-
 lib/fribidi-bidi.c                    | 1173
 +++++++++++++++++----------------
 lib/fribidi-bidi.h                    |   19 +-
 lib/fribidi-common.h                  |   29 +-
 lib/fribidi-env.c                     |   17 +-
 lib/fribidi-env.h                     |   27 +-
 lib/fribidi-mem.c                     |   39 +-
 lib/fribidi-mirroring.c               |   24 +-
 lib/fribidi-run.c                     |  395 +++++++----
 lib/fribidi-types.h                   |   10 +-
 lib/fribidi.c                         |   10 +-
 lib/fribidi.def                       |   13 +
 lib/mem.h                             |   25 +-
 lib/mirroring-table.i                 |    8 +-
 lib/run.h                             |  110 +++-
 test/run.tests                        |    4 +-
 41 files changed, 1348 insertions(+), 1011 deletions(-)

commit 3961e54d055a45b4ed096a08c661bf2a00a77a41
Author: behdad <behdad>
Date:   Wed Apr 28 03:20:22 2004 +0000

    Cleaning up exported symbols.

 THANKS               |   23 ++++++++----------
 bin/fribidi-main.c   |   62
 +++++++++++++++++++++++++-------------------------
 charset/Makefile.am  |   13 +---------
 doc/Makefile.am      |    1 +
 lib/Makefile.am      |   16 ++++++------
 lib/fribidi-common.h |    8 +++---
 6 files changed, 55 insertions(+), 68 deletions(-)

commit 1fb4c69145a5222169e8b8f852807046a30d6870
Author: behdad <behdad>
Date:   Wed Apr 28 02:37:56 2004 +0000

    Added FriBidiRun type, private for now.  Moved all library-wide
    static variables to env.h.

 lib/Makefile.am          |    5 +-
 lib/bidi-types.h         |   12 +-
 lib/common.h             |   23 ++--
 lib/env.h                |   63 ++++++++
 lib/fribidi-bidi-type.c  |    8 +-
 lib/fribidi-bidi-types.c |    8 +-
 lib/fribidi-bidi-types.h |    8 +-
 lib/fribidi-bidi.c       |  357
 +++++++---------------------------------------
 lib/fribidi-env.c        |   27 +++-
 lib/fribidi-mem.c        |   64 ++++++---
 lib/fribidi-run.c        |  267 ++++++++++++++++++++++++++++++++++
 lib/mem.h                |   16 ++-
 lib/run.h                |   86 +++++++++++
 13 files changed, 587 insertions(+), 357 deletions(-)

commit ac43f238748ad5b874089a8c27d8c1eb7150859d
Author: behdad <behdad>
Date:   Tue Apr 27 23:53:43 2004 +0000

    Nothing really important.

 doc/Makefile.am         |    1 -
 lib/common.h            |    8 ++++----
 lib/fribidi-mirroring.c |   10 ++++++----
 3 files changed, 10 insertions(+), 9 deletions(-)

commit 211d0f322cdb279a69c04f8212f9b1e541ecb369
Author: behdad <behdad>
Date:   Tue Apr 27 16:47:22 2004 +0000

    First try to integrate c2man manual generation in build system.

 charset/Headers.mk               |   21 ++++++++-----
 charset/fribidi-char-sets-list.h |   10 ++++--
 doc/Makefile.am                  |   62
 ++++++++++++++++++++++++++-----------
 lib/Headers.mk                   |   16 +++++++++-
 lib/bidi-types-list.h            |   10 +++---
 lib/common.h                     |   10 +++---
 lib/debug.h                      |    8 ++--
 lib/fribidi-begindecls.h         |    2 +
 lib/fribidi-enddecls.h           |    2 +
 lib/fribidi-types.h              |   14 ++++----
 lib/mem.h                        |    8 ++--
 11 files changed, 107 insertions(+), 56 deletions(-)

commit a1b38172b8f2ecdc1101d2c71043ef56cb865c5d
Author: behdad <behdad>
Date:   Tue Apr 27 15:23:25 2004 +0000

    Header changed so RCS header and Authors follow the copyright notice.

 lib/fribidi-mirroring.c |   20 ++++++++++----------
 lib/fribidi-mirroring.h |   18 +++++++++---------
 2 files changed, 19 insertions(+), 19 deletions(-)

commit 14fe97a882a9fb368d084af1dd9537c036bf7030
Author: behdad <behdad>
Date:   Tue Apr 27 15:22:53 2004 +0000

    New items added.  Should be cleared before the release.

 TODO |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

commit afc8fca15a8a4ef1a028ea4a84f12b78572c5c97
Author: behdad <behdad>
Date:   Sun Apr 25 19:13:35 2004 +0000

    More .cvsignore's added.

 bin/.cvsignore     |    2 ++
 gen.tab/.cvsignore |    2 ++
 lib/.cvsignore     |    1 +
 3 files changed, 5 insertions(+), 0 deletions(-)

commit b2c7e5956487b23feb49b35bae7d22422c4d5d59
Author: behdad <behdad>
Date:   Sun Apr 25 19:13:04 2004 +0000

    Renamed subdir tablegen to gentable.

 Makefile.am  |    8 ++++----
 configure.ac |   10 +++++-----
 2 files changed, 9 insertions(+), 9 deletions(-)

commit b1ed9614d2569ec00aeaab506e18deee65b66cc5
Author: behdad <behdad>
Date:   Sun Apr 25 19:12:42 2004 +0000

    More recovery after the unintentionaly rm -f *.c!

 lib/fribidi-bidi.c |    7 ++++---
 lib/fribidi.c      |    8 ++++----
 2 files changed, 8 insertions(+), 7 deletions(-)

commit be247ddb41bd2c1467f5582427388711b23087db
Author: behdad <behdad>
Date:   Sun Apr 25 18:58:25 2004 +0000

    No #ifdef or #ifndef when possible.  #if or #if ! is a better way
    most of the times.  See the examples in source.

 configure.ac       |    9 ++++-----
 lib/fribidi-bidi.c |    8 ++++----
 lib/fribidi-mem.c  |    8 ++++----
 3 files changed, 12 insertions(+), 13 deletions(-)

commit 304aac260efd5b143067b0ff6f4a5c56f3169f2e
Author: behdad <behdad>
Date:   Sun Apr 25 18:49:12 2004 +0000

    The ChangeLog from the old days.

 ChangeLog.old |  703
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 703 insertions(+), 0 deletions(-)

commit 63d12e574eb5cfe95290b303bac0950c25afe397
Author: behdad <behdad>
Date:   Sun Apr 25 18:47:56 2004 +0000

    Initial revision

 .cvsignore                                         |   19 +
 .indent.pro                                        |   19 +
 AUTHORS                                            |    1 +
 COPYING                                            |  504 ++
 HACKING                                            |    7 +
 HISTORY                                            |   34 +
 Makefile.am                                        |   54 +
 NEWS                                               |   18 +
 README                                             |  152 +
 THANKS                                             |   33 +
 TODO                                               |   13 +
 bin/Makefile.am                                    |   25 +
 bin/fribidi-benchmark.c                            |  278 ++
 bin/fribidi-main.c                                 |  597 +++
 bin/getopt.c                                       | 1268 +++++
 bin/getopt.h                                       |  187 +
 bin/getopt1.c                                      |  213 +
 bin/getopt_int.h                                   |  145 +
 bootstrap                                          |  110 +
 charset/Headers.mk                                 |    9 +
 charset/Makefile.am                                |   48 +
 charset/fribidi-char-sets-cap-rtl.c                |  336 ++
 charset/fribidi-char-sets-cap-rtl.h                |   70 +
 charset/fribidi-char-sets-cp1255.c                 |  106 +
 charset/fribidi-char-sets-cp1255.h                 |   62 +
 charset/fribidi-char-sets-cp1256.c                 |  223 +
 charset/fribidi-char-sets-cp1256.h                 |   62 +
 charset/fribidi-char-sets-iso8859-6.c              |   81 +
 charset/fribidi-char-sets-iso8859-6.h              |   62 +
 charset/fribidi-char-sets-iso8859-8.c              |  120 +
 charset/fribidi-char-sets-iso8859-8.h              |   62 +
 charset/fribidi-char-sets-list.h                   |   56 +
 charset/fribidi-char-sets-utf8.c                   |  126 +
 charset/fribidi-char-sets-utf8.h                   |   66 +
 charset/fribidi-char-sets.c                        |  230 +
 charset/fribidi-char-sets.h                        |  125 +
 configure.ac                                       |  208 +
 doc/Makefile.am                                    |   27 +
 fribidi.pc.in                                      |   13 +
 fribidi.spec.in                                    |  145 +
 gen.tab/gen-bidi-type-tab.c                        |  267 +
 gen.tab/gen-mirroring-tab.c                        |  152 +
 gen.tab/packtab.c                                  |  364 ++
 gen.tab/packtab.h                                  |   49 +
 gen.tab/unidata/BidiMirroring.txt                  |  525 ++
 gen.tab/unidata/ReadMe.txt                         |   40 +
 gen.tab/unidata/extracted/DerivedBidiClass.txt     | 1299 +++++
 .../unidata/extracted/DerivedDecompositionType.txt |  933 ++++
 gen.tab/unidata/extracted/DerivedJoiningType.txt   |  215 +
 lib/Headers.mk                                     |   14 +
 lib/Makefile.am                                    |   75 +
 lib/bidi-type-table.i                              | 5228
 ++++++++++++++++++++
 lib/bidi-types-list.h                              |   69 +
 lib/bidi-types.h                                   |   78 +
 lib/common.h                                       |  110 +
 lib/debug.h                                        |   87 +
 lib/fribidi-begindecls.h                           |    1 +
 lib/fribidi-bidi-type.c                            |   79 +
 lib/fribidi-bidi-type.h                            |   74 +
 lib/fribidi-bidi-types.c                           |   76 +
 lib/fribidi-bidi-types.h                           |  278 ++
 lib/fribidi-bidi.c                                 | 1424 ++++++
 lib/fribidi-bidi.h                                 |  112 +
 lib/fribidi-common.h                               |   83 +
 lib/fribidi-config.h.in                            |   22 +
 lib/fribidi-enddecls.h                             |    1 +
 lib/fribidi-env.c                                  |  107 +
 lib/fribidi-env.h                                  |  125 +
 lib/fribidi-mem.c                                  |   94 +
 lib/fribidi-mirroring.c                            |   90 +
 lib/fribidi-mirroring.h                            |   67 +
 lib/fribidi-types.h                                |  143 +
 lib/fribidi-unicode-version.h                      |    4 +
 lib/fribidi-unicode.h                              |  101 +
 lib/fribidi.c                                      |   68 +
 lib/fribidi.h                                      |   48 +
 lib/mem.h                                          |   90 +
 lib/mirroring-table.i                              |  358 ++
 test/Makefile.am                                   |   33 +
 test/run.tests                                     |   74 +
 test/test_CapRTL_explicit.input                    |   13 +
 test/test_CapRTL_explicit.reference                |   13 +
 test/test_CapRTL_implicit.input                    |   26 +
 test/test_CapRTL_implicit.reference                |   26 +
 test/test_ISO8859-8_hebrew.input                   |   17 +
 test/test_ISO8859-8_hebrew.reference               |   17 +
 test/test_UTF-8_persian.input                      |   14 +
 test/test_UTF-8_persian.reference                  |   14 +
 test/test_UTF-8_reordernsm.input                   |    7 +
 test/test_UTF-8_reordernsm.reference               |    7 +
 90 files changed, 19125 insertions(+), 0 deletions(-)