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 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299
|
2008-01-31 Neil Williams <linux@codehelp.co.uk>
* configure.in : 0.7.5 release to expand symbol
versioning support to any -gnu platform.
2008-01-29 Neil Williams <linux@codehelp.co.uk>
* configure.in : 0.7.4 release.
* NEWS, README : Document provision of qof.pc in advance
of libqof2 to ease transition - packages can now check for
qof via pkg-config and still build against libqof2 when
qof-1.pc is removed.
2008-01-21 Neil Williams <linux@codehelp.co.uk>
* backend/gda/qof-gda.c: (qgda_session_begin),
(qof_gda_provider_init): Test home_dir before trying to
make gda directory.
* backend/sqlite/qof-sqlite.c: Migrate module name into
main library.
* qof/qof.h: Add backend log modules to main library
* qof/qoflog.c: (qof_log_set_default): Log backend modules
by default.
* qof/qofsession.c: Enable the GDA backend upon request.
2008-01-14 Neil Williams <linux@codehelp.co.uk>
* NEWS: release update.
* README: release update.
* debian/rules: omit docs in Emdebian.
* qof/qofclass.h: Explain about registering dynamic objects.
* qof/test/test-object.c: (test_dyn_printable), (dyn_create),
(dynamic_get_string), (dynamic_get_int), (dynamic_get_boolean),
(add_boolean_param), (test_boolean_param), (test_class_register),
(test_dynamic_object), (main): Test dynamic object support.
* website/hacking.html: 0.7.4 updates
* website/index.html: pre-release updates.
2008-01-11 Neil Williams <linux@codehelp.co.uk>
* .cvsignore: Ignore the built symbols file.
* configure.in: Generate the symbols file for
libqof1. Test for versioned symbol support and
use --version-script.
* debian/libqof-backend-qsf0.symbols: Temporary
symbols file alongside generated libqof1 symbols.
* debian/libqof-backend-sqlite0.symbols: Temporary
symbols file alongside generated libqof1 symbols.
* debian/rules: Copy the generated symbols file into
debian directory.
* qof.symbols.in: Static list of symbols for
pre-processing.
* qof/libqof.ver: Implement symbol versioning alongside
the symbols file.
* Prepare 0.7.4.
2008-01-02 Neil Williams <linux@codehelp.co.uk>
* configure.in,
qof/Makefile.am,
qof/libqof.ver : Implement baseline symbol
versioning support, prior to libqof2.
2007-12-24 Neil Williams <linux@codehelp.co.uk>
* configure.in,
backend/gda/Makefile.am,
backend/gda/qof-gda.c,
backend/gda/qof-gda.h : Migrate prototype GDA backend
to libgda3-3 - not working yet.
2007-12-23 Neil Williams <linux@codehelp.co.uk>
* qof/qofquery.c: (qof_query_init): Ensure that
qof_date_init is called even if only queries are
initialised. Fix for Gnotime.
* configure.in : Allow gdabackend but not as a default.
* qof.pc.in : New pkgconfig file for libqof2.
* backend/Makefile.am,
backend/gda/Makefile.am,
backend/gda/qof-gda.c,
backend/gda/qof-gda.h : Begin the transition to
libgda3-3.
2007-12-15 Neil Williams <linux@codehelp.co.uk>
* configure.in : Remove need for perl. Add the
--disable-gdasql configure option and tie it into
--enable-embedded.
* lib/libsql/Makefile.am : Ensure libqofsql is linked
against libglib2.0-0
* qof/Makefile.am,
qof/test/Makefile.am : Rationalise the SQL_PKG_LIB
support in libqof1 and the test suite.
* website/hacking.html : Update hacking advice for
0.7.3 changes.
2007-12-13 Neil Williams <linux@codehelp.co.uk>
* backend/sqlite/qof-sqlite.c: (qsql_load_kvp): Create the
new sqlite_kvp table if not already present.
2007-12-10 Neil Williams <linux@codehelp.co.uk>
* Makefile.am: Build library before backends.
* TODO: Notes on linking issues.
* backend/file/Makefile.am: Link the built qof library
* backend/sqlite/Makefile.am: Link the built qof library
and the built qofsql library.
* backend/sqlite/qof-sqlite.c: Note presence of a bug
(unfixed). Sqlite-kvp table is not being created.
* configure.in: Migrate to libgda3-3.
* qof-1.pc.in: Remove Requires.private as libxml2 is
no longer needed, even for static. The XML backend
is a GModule.
* qof/Makefile.am: Prune the linkages and use libgdasql-3.0
instead of the entire libgda3-3.
* qof/qofsql.c: New header location for libgda3-3.
* qof/test/Makefile.am: Prune linkages.
2007-11-15 Neil Williams <linux@codehelp.co.uk>
* HACKING,
configure.in,
Makefile.am,
autogen.sh : Remove intltool and glib-gettextize
in favour of plain gettext.
2007-11-15 gettextize <bug-gnu-gettext@gnu.org>
* Makefile.am (ACLOCAL_AMFLAGS): New variable.
(EXTRA_DIST): Add config.rpath, m4/ChangeLog.
2007-11-15 Neil Williams <linux@codehelp.co.uk>
* configure.in : Make the sqlite backend build
by default. Tidy up the embedded option to drop
libgda and use internal SQL parsing.
2007-09-19 Neil Williams <linux@codehelp.co.uk>
* backend/sqlite/qof-sqlite.c:
(delete_event): Improve debug message to show the status of the instance.
(kvpvalue_to_sql), qsql_create): Avoid trying to create a kvp record
for an empty frame.
* qof/qofevent.c: (qof_event_generate_internal): Improve debug
messages to show the entity type affected by the event.
2007-09-17 Neil Williams <linux@codehelp.co.uk>
* backend/sqlite/qof-sqlite.c:
(kvp_value_to_qof_type_helper), (sql_to_kvp_helper),
(string_to_kvp_value), (kvpvalue_to_sql), (build_kvp_table),
(qsql_load_kvp) : New functions to support KVP
(string_param_to_sql), (create_param_list), (create_each_param),
(delete_event), (create_event), (qsql_modify), (record_foreach),
(string_param_foreach), (update_param_foreach), (update_dirty),
(create_dirty_list), (mark_entity), (qsql_create), (check_state),
(qsql_class_foreach), (qsql_backend_createdb), (qsql_backend_opendb),
(qsqlite_session_begin), (qsqlite_db_load), (qsqlite_write_db),
(qsql_determine_file_type), (qsqlite_session_end),
(qsqlite_destroy_backend), (qsql_provider_free),
(qsql_backend_new), (qof_sqlite_provider_init): KVP support and indent
/ whitespace fixes.
* backend/sqlite/qof-sqlite.h: KVP support.
* qof/deprecated.c: (qof_commit_edit_part2): whitespace tweaks.
2007-09-16 Neil Williams <linux@codehelp.co.uk>
* backend/sqlite/qof-sqlite.c: (delete_event), (create_event),
(qsql_modify), (update_dirty), (create_dirty_list), (mark_entity),
(qsql_class_foreach), (qsql_backend_createdb), (qsql_create) :
Debug message tweaks - most to be removed before release.
(check_state) : Pass the GUID string to SQLite.
2007-09-15 Neil Williams <linux@codehelp.co.uk>
* backend/file/qsf-backend.c: (qsf_provider_init),
* backend/gda/qof-gda.c: (qof_gda_provider_init):
Expose translatable strings via bindtextdomain for qof.
* backend/sqlite/qof-sqlite.c:
(add_to_sql) : Improve memory efficiency when preparing the SQL strings.
(qsql_kvpvalue_to_sql): Prepare for KVP support (incomplete).
(qsql_param_to_sql): Support entity GUID and reference GUID - incomplete.
(create_param_list), (create_each_param) : use the new add_to_sql function.
(delete_event) : Ensure an entity of registered with QofClass before
trying to delete it. Collapse SQL generation into a single command.
(create_event) : Ensure an entity of registered with QofClass before
trying to create it. Improve memory handling when generating the SQL
CREATE string.
(qsql_modify): Collapse SQL generation into a single command.
(qsql_record_foreach): skip empty values (no param_setfcn)
(qsql_param_foreach), (update_param_foreach) : Use the new add_to_sql
function.
(update_dirty), (create_dirty_list), (check_state) : Remove the static
buffer and allocate the GUID buffer dynamically.
(qsql_create), (qsql_class_foreach) : Use the new add_to_sql function.
(qsql_backend_createdb) : Create a KVP table in any new file
(qsql_backend_opendb), (qsqlite_session_begin) : whitespace tweaks.
(qsqlite_db_load) : Mark up possible KVP support.
(qsql_backend_new), (qof_sqlite_provider_init) : whitespace tweaks and
ensure bindtextdomain is called.
* backend/sqlite/qof-sqlite.h: Documentation tweak.
* qof/deprecated.c: (qof_commit_edit_part2): Check the backend supports
commit.
* qof/deprecated.h: (QOF_COMMIT_EDIT_PART2): Use the same definition as
before deprecation.
* qof/qofutil.c: (qof_util_param_to_string): Require sensible arguments.
2007-08-09 Neil Williams <linux@codehelp.co.uk>
* configure.ac : Remove ALL_LINGUAS in preference
for po/LINGUAS to remove the need to edit
configure.ac for translation additions.
* po/LINGUAS : new file.
2007-07-03 Neil Williams <linux@codehelp.co.uk>
* backend/sqlite/qof-sqlite.c : Prevent be->begin
operating *during* the loading of a sqlite database.
* qof/deprecated.c,
qof/deprecated.h : Migrate edit and commit macros and
functions to parameter edit and parameter commit. Advise
in docs that this increases backend workload considerably
so users need to refactor before libqof2.
2007-06-30 Neil Williams <linux@codehelp.co.uk>
* backend/sqlite/qof-sqlite.c : Ensure the current
QofParam is always available to the SQLite backend.
* Bump to 0.7.3
* Fix POTFILES.skip
2007-05-21 Neil Williams <linux@codehelp.co.uk>
* qof/qof-util.h,
qof/qof-util.c : Port qof UTF8 conversion from
qof-main to qof-util, rename qof_util_make_utf8.
2007-02-22 Neil Williams <linux@codehelp.co.uk>
* Makefile.am : prevent code churn in the
translation files.
* qof/qoferror.c : fix QofError handling
to ensure filenames are used when requested
and missing values are handled without a crash.
2006-12-26 Neil Williams <linux@codehelp.co.uk>
* backend/sqlite/qof-sqlite.c : Don't try to
update backend data unless it has actually
changed.
* backend/file/qsf-backend.c : In case of a stat
error, see if we can't create a file at that path.
QSF is meant to accept beginning or ending a QofSession
with an empty file.
2006-11-30 Neil Williams <linux@codehelp.co.uk>
* qof/deprecated.c : Remove struct tm.tm_gmtoff
define and wrapper - tm_gmtoff is required for
QofTime.
* configure.in : Remove struct tm.tm_gmtoff detection
macro which complicates cross-compilation.
2006-11-27 Neil Williams <linux@codehelp.co.uk>
* Makefile.am : package the .pot file directly.
TP is simply too slow.
* emdebian/ : "emdebian method changed -
remove control files.
* qof/deprecated.h,
qof/deprecated.c : Fix compatibility issue.
Replace QofErrorId with original QofBackendError
in the deprecated support code.
2006-10-29 Neil Williams <linux@codehelp.co.uk>
* configure.in,
doc/Makefile.am : Allow doxygen to be
disabled correctly.
2006-10-15 Neil Williams <linux@codehelp.co.uk>
* qof/qofutil.c : Set the current parameter
before asking the backend to commit that
parameter value.
2006-10-10 Neil Williams <linux@codehelp.co.uk>
* autogen.sh : Remove maintainer mode.
* configure.in : Remove maintainer mode,
fix gettext problem in familiar build.
* backend/file/qsf-xml.c : Prevent seg.
fault if object count is missing.
2006-10-09 Neil Williams <linux@codehelp.co.uk>
* qof/qoftime.h : Add <time.h> to solve
problem on familiar build.
* qof/qoftime.c : Replace g_date_set_timeval
which is not available in glib2-0 2.6.
* qof/deprecated.c : Regress deprecated
qof_is_same_day back to original version to
allow builds against glib-2.0 2.6.
2006-10-02 Neil Williams <linux@codehelp.co.uk>
* configure.in,
doc/Makefile.am : Ensure Doxygen build
can be disabled correctly.
* lib/libsql/Makefile.am : Remove useless
INCLUDES instruction that complicates
the embedded build.
2006-09-30 Neil Williams <linux@codehelp.co.uk>
* configure.in : Support new Brazilian
Portuguese and Indonesian translations.
2006-09-21 Neil Williams <linux@codehelp.co.uk>
* backend/sqlite/qof-sqlite.c : Check path is
writeable before trying to create a database.
* qof/qoferror.c,
qof/qofsession-p.h : Use the session error Id
and message strings for times that no backend
is available.
* qof/qofsession.c : Improve error string.
* po/en_GB.po : New string for permission error.
2006-09-21 Neil Williams <linux@codehelp.co.uk>
* backend/sqlite/qof-sqlite.c : Fix input_session XML
to export_session SQLITE failure by ensuring
entities are created in the backend at the same
time as the book.
2006-09-19 Neil Williams <linux@codehelp.co.uk>
* backend/sqlite/qof-sqlite.c : Fix update
mode, avoid "database is locked" from sqlite
by separating SELECT from UPDATE/INSERT.
2006-09-17 Neil Williams <linux@codehelp.co.uk>
* backend/file/qsf-backend.c,
qof/deprecated.h,
qof/kvpframe.c,
qof/kvpframe.h,
qof/kvputil-p.h,
qof/kvputil.c,
qof/kvputil.h,
qof/qofbackend.c,
qof/qofsql.c : Beginning the update of KVP
and addition of KVP_TYPE_BOOLEAN.
* qof/qofutil.c,
qof/qofutil.h,
qof/deprecated.c,
qof/deprecated.h : move qof_util_double_compare
from kvp (deprecate old name double_compare).
2006-09-14 Neil Williams <linux@codehelp.co.uk>
* qof/qofinstance.h,
qof/qof.h,
qof/qofbook.h,
qof/qofquerycore.h,
qof/kvputil-p.h,
qof/qofsql.h,
qof/Makefile.am,
qof/qofinstance.c,
qof/kvpframe.c,
qof/qofbook-p.h : Fixing kvp filenames.
2006-09-13 Neil Williams <linux@codehelp.co.uk>
* configure.in,
NEWS,
doc/doxygen.cfg.in,
make-potfiles.in,
backend/Makefile.am,
backend/README,
website/index.html,
website/hacking.html : Explaining decision to stall
the libqof-backend-gda0 module until such time as
libgda supports creating tables in new or existing
data sources.
2006-09-13 Neil Williams <linux@codehelp.co.uk>
* configure.in,
backend/Makefile.am,
backend/sqlite/Makefile.am : Fix detection
of sqlite and backend selection options.
* backend/file/qsf-backend.c : Avoid closing
a test file if open failed.
* doc/Makefile.am : Ensure doxy symlink is
cleaned up.
* po/en_GB.po : New strings.
* qof/kvp-util.c : Tweak.
* qof/qofbookmerge.c : Tweak.
* qof/qoferror.c : Clarify variable names.
Improve handling of errors from deprecated
code.
* qof/qofsession.c : Improve error handling
using QofError. Add libgda backend to provider
list.
* backend/sqlite/qof-sqlite.c : Implement
QofError handling.
* qof/qoferror.c,
qof/qoferror.h : Support unregistering errors
manually.
* qof/qoflog.c : Support logging of the error
module.
2006-09-12 Neil Williams <linux@codehelp.co.uk>
* debian/changelog : fix priority setting for
the new backend packages.
* backend/Makefile.am,
backend/dwi/README,
po/POTFILES.skip : only distribute DWI, don't
try to build it anymore.
* backend/gda/qof-gda.c,
backend/gda/qof-gda.h : improve gda backend
with error handling and data sources. Correct
gettext setup. Move to QofError.
* backend/sqlite/qof-sqlite.c : Implement gettext
handling via dgettext.
* qof/qof.h,
qof/qoferror-p.h,
qof/qoferror.c,
qof/qoferror.h,
qof/Makefile.am : New Error handler files.
* backend/file/qsf-backend.c,
backend/file/qsf-xml-map.c : Beginning move to QofError.
* backend/file/qsf-backend.c,
backend/file/qsf-xml-map.c,
backend/file/qsf-xml.c,
backend/file/qsf-xml.h : Fixing struct name conventions,
completely use of QofError.
* qof/deprecated.c,
qof/deprecated.h : Deprecating backend and session error
handlers in favour of QofError.
* qof/qofbackend-p.h,
qof/qofbackend.c,
qof/qofbackend.h,
qof/qofsession-p.h,
qof/qofsession.c,
qof/qofsession.h : Removing deprecated code.
* qof/qofutil.c,
qof/qofutil.h : Start and close QofError by default.
* po/en_GB.po : New strings added.
2006-09-09 Neil Williams <linux@codehelp.co.uk>
* configure.in : Support for gda backend.
* backend/Makefile.am : Build GDA only when
libgda2 is available.
* backend/gda/.cvsignore : new file.
* backend/gda/Makefile.am : new file.
* backend/gda/qof-gda.c : Outline.
* backend/gda/qof-gda.h : Outline.
* doc/doxygen.cfg.in : Include GDA in libqof-doc.
* backend/sqlite/qof-sqlite.c,
backend/sqlite/qof-sqlite.h : unregister
handlers and tidy up g_free use.
2006-08-31 Neil Williams <linux@codehelp.co.uk>
* backend/file/qsf-backend.c : Ensure a book
is marked clean after a save.
* backend/sqlite/qof-sqlite.c : Fix sync method
to insert new data and update old.
* qof/qofsession.c : Tweak debug messages.
* qof/qofutil.c : Decrement editlevel on commit.
2006-08-29 Neil Williams <linux@codehelp.co.uk>
* qof/qofbackend.c : Log module errors instead of
bothering the user on stderr.
* qof/qofsession.c : Add the sqlite module
backend so it can be loaded when available.
* website/hacking.html :
* backend/file/qsf-backend.c : Make sure the
book_path is available to error handlers.
* qof/qofsession.h : Adjust Doxygen layout.
* backend/sqlite/qof-sqlite.c : Fix handling
of multiple tables. Implement sync: method to
support conversion from other data sources.
* debian/changelog,
debian/control,
debian/libqof-backend-qsf0.install,
debian/libqof-backend-sqlite0.install,
debian/libqof-dev.install,
debian/libqof1.install,
debian/rules,
debian/linda/overrides/libqof-backend-qsf0,
debian/linda/overrides/libqof-backend-sqlite0 :
New Debian packaging for two new packages.
* debian/linda/overrides/libqof1 : Removed.
* emdebian/changelog,
emdebian/control,
emdebian/libqof-backend-sqlite0.install,
emdebian/libqof-dev.install,
emdebian/libqof1.install,
emdebian/rules : New emdebian packaging that
is independent of libxml2 (when compiled without
libgda installed).
* configure.in,
backend/Makefile.am : Reverse previous change to
always build qsqlite and omit qsf if embedded
enabled. Host machines build both.
* backend/sqlite/Makefile.am : Build qsqlite
as a shared module, not a package library.
* backend/sqlite/qof-sqlite.c : Support building
without deprecated code.
* debian/changelog,
debian/control,
debian/libqof-dev.install : Prepare for release.
* doc/doxygen.cfg.in : Enable qsqlite in doxygen.
* doc/gnc-numeric-example.txt : Update example
to QofNumeric.
* po/en_GB.po,
po/ro.po,
po/sv.po,
po/vi.po : Updated translation string locations.
* qof/deprecated.h : Documenting each new
deprecated function, macro and data structure.
* Various .h files : Reorganise Doxygen module
layout to clarify library purposes.
* website/index.html : New release.
2006-08-25 Neil Williams <linux@codehelp.co.uk>
* various :
Build without deprecated QOF code.
* backend/sqlite : New directory for
QSQLite backend that *REPLACES* QSF XML
for embedded systems. Host systems will get
comprehensive support for SQLite and other
database managers with gnome-db later.
2006-08-24 Neil Williams <linux@codehelp.co.uk>
* qof/gnc-numeric.c,
qof/gnc-numeric.h : Renamed.
* qof/qofnumeric.c,
qof/qofnumeric.h : New names.
* qof/Makefile.am,
qof/deprecated.c,
qof/deprecated.h,
qof/kvp_frame.h,
qof/qof.h,
qof/qofmath128.c,
qof/qofmath128.h,
qof/qofquerycore.h,
qof/test/test-book-merge.c,
qof/test/test-numeric.c : Phase 1 of replacing
gnc-numeric with QofNumeric.
2006-08-21 Neil Williams <linux@codehelp.co.uk>
* qof/qofdate.c,
qof/qofstrftime.c : Protect against timezone
errors.
* qof/qoftime.c : Re-implement qof_time_to_gdate,
qof_time_from_gdate and qof_time_set_day_start
to avoid using GDate.
2006-08-21 Neil Williams <linux@codehelp.co.uk>
* qof/deprecated.h,
qof/deprecated.c : Deprecate qof_begin_edit,
qof_commit_edit and MACRO versions in favour of
parameter based edit and commit to make undo and
SQL backends simpler.
* qof/qofbackend.c : Omit deprecated members of
QofBackend.
* qof/qofinstance-p.h : Track the current parameter
within the instance.
* qof/qofutil.h :
* qof/qofutil.c : Deprecate old edit functions and
insert new ones that handle parameter based edits and
undo handling internally.
2006-08-15 Neil Williams <linux@codehelp.co.uk>
* configure.in : Enable extra compiler checks.
2006-08-14 Neil Williams <linux@codehelp.co.uk>
* qof/test/test-book-merge.c :
* qof/test/test-date.c :
* qof/test/test-event.c :
* qof/test/test-guid.c :
* qof/test/test-numeric.c :
* qof/test/test-object.c :
* qof/test/test-querynew.c :
* qof/test/test-recursive.c : Remove obsolete
struct initialisers.
2006-08-13 Neil Williams <linux@codehelp.co.uk>
* configure.in : Enable -Wextra under
--enable-compiler-warnings.
Implement -Wextra. File list:
* backend/file/qsf-backend.c :
* backend/file/qsf-xml-map.c :
* backend/file/qsf-xml.c :
* backend/file/qsf-xml.h :
* debian/changelog :
* qof/deprecated.c :
* qof/kvp-util.c :
* qof/kvp_frame.c :
* qof/qofbook.c :
* qof/qofbookmerge.c :
* qof/qofclass.c :
* qof/qofdate.c :
* qof/qofgobj.c :
* qof/qofid.c :
* qof/qoflog.c :
* qof/qoflog.h :
* qof/qofmath128.c :
* qof/qofobject.c :
* qof/qofquery.c :
* qof/qofquerycore.c :
* qof/qofsession.c :
* qof/qofsql.c :
* qof/test/test-book-merge.c :
* qof/test/test-date.c :
* qof/test/test-event.c :
* qof/test/test-guid.c :
* qof/test/test-numeric.c :
* qof/test/test-object.c :
* qof/test/test-querynew.c :
* qof/test/test-recursive.c :
2006-07-26 Neil Williams <linux@codehelp.co.uk>
* po/vi.po : Updated Vietnamese translation by
Clytie Siddall.
* po/ro.po : New Romanian translation by
Laurentiu Buzdugan.
2006-07-24 Neil Williams <linux@codehelp.co.uk>
* qof/qofquerycore.c : Fix --disable-deprecated-qof
build.
* website/hacking.html :
* NEWS :
* HACKING : Prepare for 0.7.0 release.
2006-07-23 Neil Williams <linux@codehelp.co.uk>
* qof/qofdate.c : Fix qof_date_from_struct_tm
and qof_date_to_struct_tm. Remove duplicate debug
log command.
* qof/qof/qofstrptime.c,
qof/qof/qofdate-p.h :
ERR_RECURSIVE_F is not an error, remove.
* qof/qofquery.c : Prevent typos by using the qofutil
enum to string macro.
* qof/deprecated.c : Tidy up, remove old comments.
* qof/deprecated.h : Clarifying change from query_date_t
to query_time_t.
* qof/qofbookmerge.c : Fix known_types handling for
QofTime merge. Fix QofTime get and set routines.
* qof/qofdate.c : Move to revised prototype of
qof_time_add_secs.
* qof/qofquery.c : debug tweak.
* qof/qofquery.h : Doxygen tweaks.
* qof/qofquerycore-p.h : Move from query_date_t to
query_time_t.
* qof/qofquerycore.c : Reinstate old deprecated code
for QOF_TYPE_DATE handling.
* qof/qoftime.h :
* qof/qoftime.c : Review qof_time_add_secs and implement
new functions, qof_time_add_secs_copy and qof_time_copy.
* qof/test/test-book-merge.c : Implement QofTime in book
merge tests.
* qof/test/test-date.c : Test revised prototype of
qof_time_add_secs.
2006-07-18 Neil Williams <linux@codehelp.co.uk>
* backend/file/qsf-backend.c :
* backend/file/qsf-xml.c :
* qof/qofbackend.c :
* qof/qofbookmerge.c :
* qof/qofdate.c : Memory fixes.
2006-07-16 Neil Williams <linux@codehelp.co.uk>
* qof/test/test-book-merge.c :
qof/test/test-event.c
qof/test/test-guid.c
qof/test/test-numeric.c
qof/test/test-object.c
qof/test/test-querynew.c : Ensure tests fail
reliably.
* qof/deprecated.c : Use the old gnc-date version
as deprecated for those who depend on the bugs.
* qof/qofchoice.c : tweak to remove newline from
debug logs
* qof/qofundo.c : Problems with clear_undo -
temporary fix.
* qof/qofdate.h : Doxygen tweak.
* qof/qofsession.c : Added missing QofTime handler
for copying between sessions.
* backend/file/qsf-backend.c : Fix missing (node)
value from routine to retrieve time string.
2006-07-15 Neil Williams <linux@codehelp.co.uk>
* qof/qofevent.h : new QOF_EVENT_COMMIT event to
use alongside QOF_EVENT_MODIFY to handle before
and after edit undo operations.
* qof/qoflog.c : adding undo the default log modules.
* qof/qofundo-p.h
qof/qofundo.c
qof/qofundo.h : Adding public functions to mark
entity changes for undo operations.
2006-07-14 Neil Williams <linux@codehelp.co.uk>
* backend/file/qsf-object.xsd.xml : Add time
type to the qsf schema.
* qof/qofinstance.c : Set a valid time when creating
a new instance.
* qof/qoftime.c : Upgrade qof_time_from_tm to
not use GDate.
* qof/qofdate.h :
* qof/qofdate.c : Change prototype of
qof_date_format_add to return the first available
identifier, not assume the user knows this value in
advance.
* qof/test/test-date.c : Use new qof_date_format_add
prototype.
* po/en_GB.po : Added new strings for date to time
transition handling option.
2006-07-13 Neil Williams <linux@codehelp.co.uk>
* qof/qofdate.c : Fix date normalising.
* qof/qofdate.h : Expand QofDate so that
non-calculated values can be used to manipulate
the QofDate within a wider range - glong.
* qof/qofstrptime.c : Expand year recognition to
nine significant digits, allowing parsing of years
upto 999,999,999AD.
* qof/test/test-date.c : New tests.
2006-07-12 Neil Williams <linux@codehelp.co.uk>
* qof/qofdate.c : Adding back QOF_DATE_FORMAT_ISO8601
* qof/qofdate.h : Adding back QOF_DATE_FORMAT_ISO8601
* qof/qofstrftime.c : Supporting nanoseconds.
* qof/qofstrptime.c : Supporting nanoseconds.
* qof/qoftime.c : Correcting nanosecond handling.
* qof/test/test-date.c : Adding nanosecond tests.
* qof/test/.cvsignore : Ignore debug file.
(only created in CVS builds).
2006-07-11 Neil Williams <linux@codehelp.co.uk>
* HACKING : Update for QOF_TYPE_DATE changes.
* README : Update for QOF_TYPE_DATE changes.
* debian/changelog : Update for QOF_TYPE_DATE
changes.
* qof/deprecated.c : Deprecating QOF_TYPE_DATE
handlers and current_session handlers.
* qof/deprecated.h : Deprecating QOF_TYPE_DATE
handlers and current_session handlers.
* qof/qofsession.c : Deprecate current_session
handlers.
* qof/qofsession.h : Deprecate current_session
handlers.
* website/hacking.html : Update for
QOF_TYPE_DATE changes.
Implement QOF_TYPE_TIME in the Query system.
* qof/qofquery-p.h :
* qof/qofquery.c :
* qof/qofquery.h :
* qof/qofquerycore-p.h :
* qof/qofquerycore.c :
* qof/qofquerycore.h :
* qof/qofsql.c :
* qof/qofsql.h :
* qof/qofundo.c :
* qof/qofundo.h :
* qof/qofutil.c : Deprecate gnc_strisnum
in favour of qof_util_string_isnum.
Implement QOF_TYPE_TIME in qof_util_param_as_string
* qof/qofutil.h : Deprecate gnc_strisnum
in favour of qof_util_string_isnum.
Implement QOF_TYPE_TIME in qof_util_param_as_string
Implement a configure option to disable all
deprecated QOF code.
* configure.in : Add --disable-deprecated-qof
(off by default)
* backend/file/qsf-backend.c :
* qof/kvp_frame.h :
* qof/kvp-util.c :
* qof/kvp-util-p.h :
* qof/qofinstance.c :
* qof/qofquery.c :
* qof/qofquery-p.h :
* qof/qofsession.c :
* qof/qofsql.c :
* qof/qofutil.c :
* qof/qofinstance-p.h :
* qof/test/test-book-merge.c : Update to avoid deprecated
code.
* qof/test/test-engine-stuff.h : Skip timespec code if
deprecated code disabled.
* qof/test/test-engine-stuff.c :
* qof/test/test-object.c :
* qof/test/test-recursive.c :
* qof/test/test-event.c :
2006-07-10 Neil Williams <linux@codehelp.co.uk>
* qof/deprecated.c : Retain previous behaviour
if deprecated Timespec is set directly.
Deprecating clock timing functions.
* qof/deprecated.h : Deprecating clock timing
functions.
* qof/qofchoice.c :
* qof/qofchoice.h : minor char->gchar tweaks
Beginning transition from Timespec to QofTime.
* qof/kvp-util-p.h :
* qof/kvp-util.c :
* qof/qofbackend-p.h :
* qof/qofbackend.c :
* qof/qofbackend.h :
* qof/qofbook.c :
* qof/qofbook.h :
* qof/qofbookmerge.c :
* qof/qofbookmerge.h :
* qof/qofclass.c :
* qof/qofclass.h :
* qof/qofgobj.c :
* qof/qofid-p.h :
* qof/qofid.c :
* qof/qofid.h :
* qof/qofinstance-p.h :
* qof/qofinstance.c :
2006-07-09 Neil Williams <linux@codehelp.co.uk>
* backend/file/qsf-xml.h : Doxygen tweak.
* backend/file/qsf-backend.c : Move from Timespec
to QofTime and QofDate.
* qof/deprecated.c : Ensure QofDate is valid and
add some logging calls. Revert QOF_D_T_FMT and
QOF_T_FMT to old values (to retain deprecated
behaviour). Deprecate Timespec within KVP.
* qof/deprecated.h : Deprecate Timespec within KVP.
* qof/kvp_frame.c : Implement QofTime handlers.
* qof/kvp_frame.h : Replace Timespec with QofTime.
* qof/kvp-util.c : Handle KVP_TYPE_TIME
* qof/qofbackend.c : Handle KVP_TYPE_TIME
* qof/qofsql.c : Skip KVP_TYPE_TIME
* qof/qofdate.c : Revert default value of
dateFormat to gnc-date value (to retain deprecated
behaviour). Add qof_date_get_current
* qof/qofdate.h : Add qof_date_get_current
* qof/qofstrptime.c : Fix YEAR_BASE error in %y.
2006-06-26 Neil Williams <linux@codehelp.co.uk>
* qof/qofdate.c,
qof/qofdate.h,
qof/test/test-date.c : Use const pointers where
possible and make date validation more consistent.
2006-06-25 Neil Williams <linux@codehelp.co.uk>
* qof/deprecated.c,
qof/qofdate.c,
qof/qofdate.h,
qof/qofstrftime.c,
qof/qoftime.c,
qof/qoftime.h,
qof/test/test-date.c : Rationalise addmonths
and adddays and fix deprecated and test code.
Simplify day_end, day_start and day_middle.
Implement and test qof_date_from_qtime and
qof_date_to_qtime. Add a few more tests - 1550.
2006-06-24 Neil Williams <linux@codehelp.co.uk>
* qof/qofdate-p.h,
qof/qofdate.c,
qof/qofdate.h,
qof/qofstrptime.c,
qof/test/test-date.c : Standardise yday and wday handling
and add tests for yday and wday.
2006-06-22 Neil Williams <linux@codehelp.co.uk>
* qof/qofdate.c,
qof/qofstrptime.c,
qof/test/test-date.c : Implement more tests and
allow partial testing of BC dates. BC dates are very
difficult to parse because a minus sign is also a valid
date separator. BC can be handled directly and printed,
some restrictions are inevitable to parse BC date strings.
2006-06-22 Neil Williams <linux@codehelp.co.uk>
* qof/qofdate.c,
qof/test/test-date.c : Fixing a few more tests.
2006-06-20 Neil Williams <linux@codehelp.co.uk>
* qof/test/test-date.c : Comment out failing
tests during further work on qoftime and qofdate.
2006-05-31 Neil Williams <linux@codehelp.co.uk>
* configure.in,
qof/Makefile.am,
qof/deprecated.c,
qof/qofdate.c,
qof/qofdate.h,
qof/qofstrftime.c,
qof/qofstrftime.h,
qof/qofstrptime.c,
qof/qofstrptime.h,
qof/qoftime.c,
qof/qoftime.h,
qof/test/Makefile.am,
qof/test/test-date.c: Moving lib/libtime code
into main library.
2006-05-31 Neil Williams <linux@codehelp.co.uk>
* qof/deprecated.c,
qof/deprecated.h : Fixing missing symbols.
2006-05-31 Neil Williams <linux@codehelp.co.uk>
* lib/libtime/Makefile.am : New files added.
* lib/libtime/qofgmtime.c : Ensure qof_date_from_qtime
returns a valid date, or NULL
* lib/libtime/qofstrftime.c : Tweak.
* lib/libtime/qofstrftime.h : Tweak.
* lib/libtime/qofstrptime.c : New file, based on glibc but
extended to QOF ranges.
* lib/libtime/qofstrptime.h : New file.
2006-05-30 Neil Williams <linux@codehelp.co.uk>
* lib/libtime/qofgmtime.c,
lib/libtime/qofstrftime.h,
qof/qofdate.h,
qof/qoftime.c,
qof/qoftime.h : Preparing QofDate to/from QofTime routines
and introducing leap_seconds.
2006-05-29 Neil Williams <linux@codehelp.co.uk>
* doc/qofdatelocale.txt : Explain restrictions on
locale-specific date format specifiers.
* lib/libtime/qofgmtime.c : Rewrite to stop use of
mktime.
* lib/libtime/qofstrftime.c : Move to QofDate.
* lib/libtime/qofstrftime.h : Documentation tweak.
* qof/qofdate.c : Add detection of locale-specific
formats.
* qof/qofdate.h : Document locale-specific restrictions.
* qof/qoftime.h : Clarify documentation.
2006-05-28 Neil Williams <linux@codehelp.co.uk>
* qof/qofdate.c :
* qof/qofdate.h : Add qof_date_time_difference
Add normalising code for QofDate.
* qof/test/test-date.c : Add more tests for when qofdate
is ready for negative and far future dates.
2006-05-24 Neil Williams <linux@codehelp.co.uk>
* lib/libtime/Makefile.am : New file.
* lib/libtime/qofgmtime.c :
* lib/libtime/qofgmtime.h : New file to handle
QofDate <-> QofTime conversions without overflows.
* qof/qofdate.c :
* qof/qofdate.h : Create and free QofDate.
* qof/qoftime.c :
* qof/qoftime.h :
* qof/test/Makefile.am : Plan for use of libqoftime library.
* qof/test/test-date.c : Avoid use of time_t to allow
testing of values that would overflow on 32bit.
* debian/control : Tweak description of doc package.
* qof/deprecated.c :
* qof/deprecated.h : First replacement of Timespec with QofTime.
* qof/qofclass.h : Deprecate QOF_TYPE_DATE in preference to
QOF_TYPE_TIME.
* qof/qofinstance-p.h :
* qof/qofinstance.c :
* qof/qofinstance.h : First replacement of Timespec with QofTime.
* qof/qoflog.c : Remove unneeded ifdef directive.
* qof/qofobject.c :
* qof/qofobject.h : gchar instead of char.
* all files : Setting a consistent indent style:
indent -gnu -i4 -ut -ts4 -nsc -bli0
2006-05-23 Neil Williams <linux@codehelp.co.uk>
* Makefile.am : Distributing the website content.
* debian/libqof-doc.install :
* doc/Makefile.am : Making room for the website content
alongside the Doxygen content.
* doc/doxygen.cfg.in : Removing the search engine option.
* doc/doxygen_main_page.c : Update reference page.
* website/hacking.html : Advice on packaging the docs.
* configure.in : New tests for qofstrftime
* lib/libtime/qofstrftime.c : Remove more directives.
* qof/qofdate.c : outline new replacement for struct tm
* qof/qofdate.h : outline new replacement for struct tm
* qof/qoftime.c : replacement for time_t
* qof/qoftime.h : replacement for time_t
* qof/test/test-date.c : New tests for when qofstrftime
is ready.
2006-05-22 Neil Williams <linux@codehelp.co.uk>
* configure.in : Extra tests to support customised
strftime.
* lib/libtime/qofstrftime.c : Include the full strftime
in a modified form that uses 64bit extensions.
* lib/libtime/qofstrftime.h : 64bit extension.
* qof/qofdate.c : Notes on future plan.
* qof/test/test-date.c : G_GINT64_CONSTANT used
instead of strange addition format.
2006-05-21 Neil Williams <linux@codehelp.co.uk>
* configure.in : Auto build HTML documentation
and libqofstrftime.la.
* Makefile.am :
* lib/Makefile.am : Build libqofstrftime everytime.
* lib/README : Document new extension library,
libqofstrftime.
* qof/Makefile.am :
* qof/qofdate.c :
* qof/qoftime.c : New extension library.
* doc/Makefile.am : Build docs everytime.
* debian/control : New doc package.
* debian/libqof-dev.install :
* debian/libqof1-dbg.install :
* debian/libqof1.install : Package new extension
library, libqofstrftime.
* lib/libtime/.cvsignore :
* lib/libtime/Makefile.am :
* lib/libtime/qofstrftime.c :
* lib/libtime/qofstrftime.h :
* lib/libtime/strftime.c :
* lib/libtime/strftime.h : New extension library to
support GNU extensions and nanosecond handling.
* NEWS :
* README :
* TODO : Documenting new features.
* emdebian/changelog :
* edmdebian/compat :
* emdebian/control :
* emdebian/libqof-dev.install :
* emdebian/libqof1.install :
* emdebian/rules :
* emdebian/watch : Implement new features appropriate to
emDebian.
2006-05-20 Neil Williams <linux@codehelp.co.uk>
* qof/qofclass.h : Doxygen tweak.
* qof/qoftime.c : Clarify a PERR message.
2006-05-17 Neil Williams <linux@codehelp.co.uk>
* qof/qofdate.c : Fix add_days and add_months
* qof/qofdate.h : Note remaining failures in stamp and scan.
* qof/qoftime.c : renamed function to make it clearer.
* qof/qoftime.h :
* qof/test/test-date.c : More test case fixes.
2006-05-16 Neil Williams <linux@codehelp.co.uk>
* qof/qofdate.c :
* qof/qofdate.h :
* qof/qoftime.c :
* qof/qoftime.h :
* qof/test/test-date.c : More test case fixes.
2006-05-15 Neil Williams <linux@codehelp.co.uk>
* qof/qofbackend-p.h :
* qof/qofbackend.h :
* qof/qofbackend.c : Whitespace, gchar standardisation.
* qof/qoftime.c :
* qof/qoftime.h : Fixes from building the tests.
* qof/test/test-date.c : Lengthen the tests. (27 now).
* qof/test/* : Last few FSF address changes.
2006-05-14 Neil Williams <linux@codehelp.co.uk>
* qof/qoftime-p.h : No need for deprecated code
to have access to a private function to validate.
Removed file.
* qof/qofdate-p.h : returning the previous
QofDateFormat removes the need for these functions.
Removed file.
* qof/qofutil.c : Bring date and time into default
QOF startup and shutdown
2006-05-13 Neil Williams <linux@codehelp.co.uk>
* qof/qof.h :
* qof/qofbook-p.h :
* qof/qofbook.c :
* qof/qofundo.c :
* qof/qofundo-p.h :
* qof/qofundo.h : Incorporating QofUndo into
QofBook. Each book has it's own undo cache.
2006-05-12 Neil Williams <linux@codehelp.co.uk>
* qof/deprecated.c : If the date_format needs to
be changed for deprecated functions, change it back afterwards.
* qof/Makefile.am : add undo and don't install qoftime-p.h
2006-05-11 Neil Williams <linux@codehelp.co.uk>
* configure.in : Use AC_GNU_SOURCE (hint from
gnucash svn, r14002).
* backend/file/qsf-backend.c :
* backend/file/qsf-xml.c :
* backend/file/qsf-xml-map.c :
* qof/gnc-numeric.c :
* qof/guid.c :
* qof/kvp_frame.c :
* qof/qofbackend.c :
* qof/qofdate.c
* qof/qofbookmerge.h :
* qof/qofmath128.c :
* qof/qofsql.c :
* qof/qofundo.c :
* qof/test/test-book-merge.c :
* qof/test/test-date.c :
* qof/test/test-event.c :
* qof/test/test-recursive.c : Remove #define _GNU_SOURCE
2006-05-07 Neil Williams <linux@codehelp.co.uk>
* src/qofundo.c :
* src/qofundo.h :
* src/qofundo-p.h : New files for QofUndo from
CashUtil.
2006-05-07 Neil Williams <linux@codehelp.co.uk>
* qof/qofdate.c : New file to replace gnc-date.c
* qof/qofdate.h : New file to replace gnc-date.h
* qof/qoftime.c : New file to replace gnc-date.c
* qof/qoftime.h : New file to replace gnc-date.h
* qof/deprecated.c : gnc-date.c code moved.
* qof/deprecated.h : gnc-date.h code moved.
* qof/qof.h : New files, remove gnc-date.h
* backend/file/qsf-backend.c :
* examples/test-book-merge.c :
* qof/Makefile.am :
* qof/kvp-util.c :
* qof/kvp_frame.c :
* qof/kvp_frame.h :
* qof/qofbookmerge.c :
* qof/qofinstance-p.h :
* qof/qofinstance.c :
* qof/qofinstance.h :
* qof/qofquery.c :
* qof/qofquerycore-p.h :
* qof/qofquerycore.c :
* qof/qofquerycore.h :
* qof/qofsession.c :
* qof/qofsql.c :
* qof/qofutil.c :
* qof/qofutil.h :
* qof/test/Makefile.am :
* qof/test/test-book-merge.c :
* qof/test/test-date.c :
* qof/test/test-engine-stuff.c :
* qof/test/test-engine-stuff.h :
* qof/test/test-event.c :
* qof/test/test-guid.c :
* qof/test/test-recursive.c :
* website/index.html :
2006-05-05 Neil Williams <linux@codehelp.co.uk>
* HACKING :
* website/hacking.html : Updating with roadmap.
* qof/test/Makefile.am : Removing old flags.
Thanks to Stanislav Brabec <sbrabec@suse.cz>
2006-04-21 Neil Williams <linux@codehelp.co.uk>
* qof/test/test-date.c : Incorporate Toshio Kuratomi's patch
properly to fix Debian bug 364048. <toshio@tiki-lounge.com>
2006-04-17 Neil Williams <linux@codehelp.co.uk>
* qof/test/test-date.c : Toshio's patch for 64bit tests.
2006-04-16 Neil Williams <linux@codehelp.co.uk>
* src/backend/file/qsf-xml-map.c : Refactoring common
code and fixing QOF_VERSION check.
2006-04-14 Neil Williams <linux@codehelp.co.uk>
* backend/file/pilot-qsf-gncCustomer.xml :
remove gncBillTerm - isn't possible to create from
pilot data.
* backend/file/qsf-backend.c :
* backend/file/qsf-xml-map.c :
* backend/file/qsf-xml.c :
* backend/file/qsf-xml.h : Add control over status of
various objects during mapping.
* qof/test/Makefile.am : Remove unwanted include.
* qof/qofbackend.h :
* qof/qofsession.h : Andreas Köhler's changes to
add an encoding QofBackendError. r13781.
2006-04-11 Neil Williams <linux@codehelp.co.uk>
* qof-1.pc.in : Retain glib-2.0 in Requires.
* qof/qof.h :
* qof/deprecated.h : Retain glib.h in QOF, not
deprecated.
* qof/qofutil.h :
* qof/deprecated.h : Derek Atkin's patch for a
usable replacement for GNC_SCANF_LLD.
* qof/qofbookmerge.c : Slightly modified version
of Derek's patch to fix memory leaks.
2006-04-08 Neil Williams <linux@codehelp.co.uk>
* configure.in :
* qof/qofutil.h :
* qof/qofutil.c : Use strcasestr where available.
2006-04-07 Neil Williams <linux@codehelp.co.uk>
* qof/deprecated.c : Replace gnc_strpcpy.
* qof/qofbook-p.h :
* qof/deprecated.h : Deprecate
qof_book_set_schedxactions which has no
declaration.
* qof/qofutil.c :
* qof/qofbackend.c : Move the function
versions of the begin_edit and commit_edit
routines to the Utilities file alongside
the macro versions from qof-be-utils.h
* qof/qofbackend.h : Replace Doxygen fix.
* qof/qoflog.c : Add Utilities to the default
log_module list.
2006-04-02 Neil Williams <linux@codehelp.co.uk>
* backend/file/qof-backend-qsf.h :
* backend/file/qsf-backend.c :
* backend/file/qsf-xml.h : add encoding backend
option
* qof/Makefile.am :
* qof/qof.h : remove qof-be-utils.h
2006-03-28 Neil Williams <linux@codehelp.co.uk>
* doc/gnc-numeric-example.txt : Move example
to a doc file.
* deprecated.h : Deprecate the expression of
glib.h in the QOF API. libqof2 applications
will have to include glib.h directly. Prevents
a redundant dependency in qof packages.
2006-03-26 Neil Williams <linux@codehelp.co.uk>
* configure.in :
* qof-1.pc.in : allowing qof_sql to be linked
where libgda is not available.
* debian/control : Make libqof-dev depend on
libgda2-dev. (Vorlon. Prevent QOF applications
having to depend on libgda2-* unnecessarily.)
* qof-1.pc.in : Use private pkg-config variables
to hide libraries that only QOF needs.
* qof/qofsql.c : Allow INSERT queries to be logged.
* backend/file/qsf-xml.h : use gint64 to match internal kvp value.
* backend/file/qsf-backend.c : using gint64 so don't use the
32bit glib macros, GINT_TO_POINTER and GPOINTER_TO_INT.
* qof/qofbackend.c : Set the option using the default KvpValue,
then manipulate the option and store the value back into the
KvpValue and backend configuration KvpFrame.
* qof/test/test-querynew.c :
2006-03-13 Neil Williams <linux@codehelp.co.uk>
* configure.in : Check for sys/times.h and langinfo.h
* backend/file/pilot-qsf-gncCustomer.xml : add reverse mapping
* backend/file/qsf-xml.h : Standardise on gint and gchar.
Support iteration over incoming QSF objects inside map operations.
Remove gnucash-specific gettext defines.
* backend/file/qsf-backend.c : Standardise on gint and gchar.
Skip unregistered objects when processing maps.
* backend/file/qsf-xml.c : Standardise on gint and gchar.
* backend/file/qsf-xml-map.c : Standardise on gint and gchar.
Correct map handling to allow reverse operations and iteration
over hierarchical objects. Improving debug messages and preventing
a crash when loading a map directly.
* backend/file/Makefile.am : add new map file.
* backend/file/qsf-map.xsd.xml : allow for iteration of hierarchical
objects
* qof/gnc-date.c : Hook langinfo.h check into legacy gnucash macro.
2006-03-09 Neil Williams <linux@codehelp.co.uk>
* qof/deprecated.h :
* qof/deprecated.c : Allow users to skip
deprecated code in libqof1.
* qof/qofevent.c :
* qof/qofevent-p.h : Wrap old event handler
code to allow deprecated code to be skipped.
2006-03-09 Neil Williams <linux@codehelp.co.uk>
* qof/guid.c : Christian Stimming's patch for
easier mingw32 builds. gnucash r13525.
* qof/qofbackend-p.h :
* qof/gnc-engine-util.h :
* qof/kvp-util.h :
* qof/kvp-util-p.h : David Hampton's patch to
remove use of config.h in a header. gnucash r13549.
* qof/backend/file/qsf-xml-map.c :
* qof/backend/file/qsf-xml.c :
* qof/qofchoice.c :
* qof/qofgobj.c :
* qof/qofinstance.c :
* qof/qofreference.c : David Hampton's patch to
keep config.h in C files only. gnucash r13549.
* qof/qofquery.c :
* qof/qofsession.c :
* qof/qoflog.h : Don't use deprecated code in our
own library.
* qof/qof_book_merge.h :
* qof/qof_book_merge.c : Deprecated to resolve file
naming and function naming conflicts.
* qof/qof.h :
* qof/qofbookmerge.c :
* qof/qofbookmerge.c : New file, new function names.
* qof/deprecated.h :
* qof/deprecated.c : Move old functions to deprecated.
* qof/test/test-book-merge.c : Use new function names.
* qof/qofevent.h :
* qof/qofevent.c : Derek Atkin's patch to
fix the definition of QOF_EVENT_BASE; use
QOF_EVENT__LAST for tests. gnucash r13546. Doxygen
tweak.
* backend/file/qsf-backend.c : Remove deprecated
glib function g_strncasecmp in favour of g_ascii_strncasecmp
* qof/qofquery-deserial.c : Update status; this
file will not exist in libqof2.
2006-02-26 Neil Williams <linux@codehelp.co.uk>
* qof/qof-be-utils.h : Replace macro to restore
programme flow.
* qof/qofevent.c :
* qof/qofevent.h : Outline method to make application
events easier to use.
* qof/Makefile.am :
* qof-1.pc.in : Fedora fixes from Toshio Kuratomi
<toshio@tiki-lounge.com>
2006-02-25 Neil Williams <linux@codehelp.co.uk>
* qof/qof-be-utils.h :
* qof/qofbackend.c : Add function version of
QOF_COMMIT_EDIT_PART2
* qof/deprecated.c : Define deprecated event functions
that call new QofEvents with a NULL event_data argument.
* qof/qofbook.c : Use new qof_event arguments.
* qof/qofevent.c : Allow events to be generated with an
optional event_data argument.
* qof/qofevent.h : Doxygen tweaks.
* qof/guid.c : Gnucash r13391 - Keep track of exactly how
many bytes have been sent to md5_process_bytes().
* qof/qofid.c : Gnucash r13351 - Mark the QofCollection
as dirty when a new QofEntity is added or removed.
2006-02-20 Neil Williams <linux@codehelp.co.uk>
* qof/gnc-event.c :
* qof/gnc-event-p.h :
* qof/gnc-event.h : Removed files.
* qof/qofevent.c :
* qof/qofevent-p.h :
* qof/qofevent.h : Replacement files using extensible
event identifiers.
* qof/deprecated.c : Old functions now pointed to
replacements.
* qof/deprecated.h : Old defines now pointed to
replacements.
* qof/deprecated-p.h : gnc-event-p.h deprecated
function declaration.
* qof/qof.h : Replace files.
* qof/Makefile.am : Replace files.
2006-02-19 Neil Williams <linux@codehelp.co.uk>
* backend/file/qsf-backend.c : Correcting collect handling,
prevent duplication.
* qof/qof.h : Create reference group in doxygen and
export qofreference.h into the API.
* qof/qof/qofsession.c : Set QOF_TYPE_COLLECT as registered
type and move qof_entity_get_reference_from to new file.
* qof/qof/qofsession.h : Move qof_entity_get_reference_from
to new file: qofreference.c|h.
* qof/qofreference.c : New file to handle reference related
code.
* qof/qofreference.h : New public header.
* qof/test/test-recursive.c : Fix collect recursive tests
2006-02-12 Neil Williams <linux@codehelp.co.uk>
* qof/qofbackend.h : Add error value for files that
cannot be opened. ERR_FILEIO_READ_ERROR.
* backend/file/qsf-backend.c : Check that files can be opened before
trying to work out their type. Use new QofBackendError value
if open to read fails.
* qof/gnc-event.c : Derek Atkin's patch for better handling of event
removal. This allows us to actually clean up, but also makes sure we
don't destroy the handler list out from under us as we're processing events.
* qof/test/Makefile.am : adding new events test.
* qof/test/test-events.c : New file: First set of tests, more needed.
* qof/test/test-recursive.c : Beginning fix of QOF_TYPE_COLLECT
recursive copying. More to be done.
* qof/test/test-stuff.c : Ensuring get_random_double
returns at least some decimal places more often than not.
2006-02-05 Neil Williams <linux@codehelp.co.uk>
* qof/deprecated.c :
* qof/deprecated.h :
* qof/qoflog.c :
* qof/qoflog.h : Deprecating qof_log_set_level_global due to
misleading name
2006-02-05 Neil Williams <linux@codehelp.co.uk>
* qof/gnc-numeric.c : Derek's fixes for reciprocal
numeric handling. Derek Atkins <warlord@mit.edu>
* qof/test/test-numeric.c : Derek's test for the
fixed reciprocal handling. Derek Atkins <warlord@mit.edu>
2006-02-01 Neil Williams <linux@codehelp.co.uk>
* qof/test/Makefile.am :
* qof/test/test-book-merge.c : adding some
randomness to the test
* qof/test/test-recursive.c : New test to
identify and then fix problems in
qof_entity_copy_coll_r
2006-01-23 Neil Williams <linux@codehelp.co.uk>
* qof/qof_book_merge.h : Use gchar consistently
instead of mixing with char.
* qof/qof_book_merge.c : Fix merge handling of
QOF_TYPE_CHAR to use gchar instead of casting
from a gchar*
* qof/test/test-book-merge.c : Add test case
to make sure QOF_TYPE_CHAR handling is working.
2006-01-22 Neil Williams <linux@codehelp.co.uk>
* backend/file/qsf-backend.c : Prevent bad time
values from being passed to entity.
* qof/gnc-engine-util.c|h : Add CACHE_REPLACE(dst, src)
macro for common case in string setters.
Chris Shoemaker <chris@cvs.gnucash.org>
gnucash r12319.
* website/index.html : Update for new package
locations.
* po/sv.po : New Swedish translation.
* po/vi.po : New Vietnamese translation.
* configure.in : Support new translations.
2006-01-08 Neil Williams <linux@codehelp.co.uk>
* qof/qofid.c : Fix logical bug that prevented collection
data being set.
* qof/gnc-numeric.c : gnucash sync.
2006-01-03 Neil Williams <linux@codehelp.co.uk>
* Makefile.am : Add HACKING to dist.
* backend/file/pilot-qsf-GnuCashInvoice.xml :
update objects - the file may still be removed in a
future release.
* backend/file/qsf-backend.c : remove uneven
debug call
* backend/file/qsf-xml-map.c : improve debug handling
* fink/qof1.info : Update library SONAMES for packaging.
* qof/qofbackend.c :
* qof/qof.h : Finalise module loading. Downgrade the reliance
on the .la files for backends.
* rpm/qof1.spec : Missed some symlinks.
2006-01-01 Neil Williams <linux@codehelp.co.uk>
* qof/qofobject.c :
* qof/qofobject-p.h : New function to check full
compliance of an object once instead of failing
repeatedly.
* qof/qofsession.c : Check we can create an object
before attempting.
2005-12-29 Neil Williams <linux@codehelp.co.uk>
Typo in FSF address corrected.
* various :
* qof/guid.c : Support glib 2.9.0 improvement
2005-12-29 Neil Williams <linux@codehelp.co.uk>
* qof/deprecated.c : New file to preserve deprecated function
names into the binary for compatibility until libqof2.
* qof/Makefile.am : New file compiled into libqof1.
Changes to use qof.h
* backend/file/qsf-backend.c :
* backend/file/qsf-xml-map.c :
* backend/file/qsf-xml.c :
* qof/deprecated.h :
* qof/gnc-event.c :
* qof/guid.c :
* qof/kvp_frame.c :
* qof/qof_book_merge.c :
* qof/qofbackend.c :
* qof/qofbook.c :
* qof/qofclass.c :
* qof/qofid.c :
* qof/qofinstance.c :
* qof/qofobject.c :
* qof/qofquery.c :
* qof/qofquerycore.c :
* qof/qofsession.c :
* qof/qofsql.c :
2005-12-28 Neil Williams <linux@codehelp.co.uk>
* qof/qofbackend.c : Allow partial paths to make
full use of GModule and the lack of a .la file
non-critical.
* autogen.sh : Adopt a more streamlined script.
2005-12-18 Neil Williams <linux@codehelp.co.uk>
* configure.in : Adding extra compiler warnings.
* qof/gnc-engine-util.h : Deprecating HAVE_SCANF_LLD
2005-12-14 Neil Williams <linux@codehelp.co.uk>
* backend/file/qof-backend-qsf.h : v0.2 of QSF,
including a new QofBackendOption, QSF_MAP_FILES.
* backend/file/qsf-xml.h : Private header,
converted more functions to static.
* backend/file/qsf-backend.c : Reorganise to
use more static functions.
* backend/file/qsf-xml.c : Remove redundant
(private) functions.
* configure.in : Bump source version to 0.6.1,
libqof1 library version to 1.2.0 and qsf library
version to 0.1.0.
2005-12-07 Neil Williams <linux@codehelp.co.uk>
New functions to add days or months to a
Timespec. Deprecating date_add_months.
* qof/gnc-date.c :
* qof/gnc-date.h :
2005-12-06 Neil Williams <linux@codehelp.co.uk>
* QOF_MANIFEST_ENG :
* QOF_MANIFEST_QSF : removed.
* qof/qof_book_merge.c : detailing todo for param_as_string
* qof/qofquery.c :
* qof/qofquery.h : Deprecate qof_query_print in favour of
log system
* qof/kvp_frame.c : Adding support for timespec and
correcting frame handler
* qof/qofsession.c : KVP does not need a set routine to be copied.
* backend/file/qsf-backend.c : Removing duplicate code, fixing
timespec handling and kvp frame handling.
* backend/file/qsf-xml.h : Correcting KVP path write-out in QSF.
2005-12-04 Neil Williams <linux@codehelp.co.uk>
* qof/qofquery.c : Do not ignore the return value of GList
functions. This is likely to become a warning in a future
version of glib. (David Hampton, <hampton@employees.org>).
2005-11-29 Neil Williams <linux@codehelp.co.uk>
* configure.in : Remove examples from build and dist.
* Makefile.am : Remove examples from build and dist.
* qof/Makefile.am : Replace gnc-trace with qoflog
and add deprecated.h
* qof/qof-be-utils.h : Tidy up macros.
* qof/qof.h : Add deprecated.h and qoflog.h, remove
gnc-trace.h
* qof/qofclass.c : Reorganise private and public functions
to make the API clearer.
* qof/qofid.c : Rationalise the hash_table index, optimise
some error checks. GnuCash sync.
* qof/qoflog.c : New file, replaces gnc-trace.c - new function
names to fit convention and new enum names. Removing
gnc_trace_num_spaces in favour of a simpler function call.
* qof/qoflog.h : New file, replaces gnc-trace.h
* qof/qofquery.c : Reviewing qof_query_print to be able to
output it via qoflog.
* qof/qofsession.c : Avoid (gboolean*), use GINT_TO_POINTER
instead.
* qof/qofsql.c : Fix INSERT SQL handling.
* website/hacking.html : New file.
* website/index.html : Updated to not link to pre1.
2005-11-29 Neil Williams <linux@codehelp.co.uk>
* doc/Makefile.am : Fix website symlink -
thanks to Toshio Kuratomi.
2005-11-17 Neil Williams <linux@codehelp.co.uk>
* qof/qofsql.c : Fix insert bug.
* all source files : Update FSF address.
2005-11-13 Neil Williams <linux@codehelp.co.uk>
* qof/Makefile.am : Stop bringing in the top
include dir - thanks to Koen Kooi <koen@handhelds.org>
* qof/gnc-engine-util.h : Fix non-typedef enum_as_string
macro definition and document use of statics.
2005-10-23 Neil Williams <linux@codehelp.co.uk>
* debian/changelog : New upstream release.
* debian/libqof1.install : Ensure XML schemas and new
gettext translation is installed with libqof1.
* qof/gnc-date.c : Fix date string conversion to work
on broken mktime implementations.
* qof/gnc-date.h : Deprecate gnc_date_my_last_mday
* qof/test/test-date.c : Add more special case tests.
* rpm/qof1.spec : Add translation to sample RPM spec
file.
* website/index.html : Release update.
2005-10-21 Neil Williams <linux@codehelp.co.uk>
* qof/gnc-date.h : Deprecating qof_date_format_get_format
* qof/gnc-trace.h : Doxygen tweak.
* qof/guid.c : GnuCash sync.
* ./qof/qofquery-deserial.c : Tweak - just in case someone
tries to build it.
2005-10-21 Neil Williams <linux@codehelp.co.uk>
* HACKING : Advice on how building / hacking
QOF 0.6.0 differs from previous versions,
including new requirements for packaging
and new methods of providing CFLAGS and LIBS
data via pkg-config.
* NEWS : Tweak for 0.6.0
* QOF_MANIFEST_ENG : Tweak.
* README : Detailing future changes in QOF and
adding a pointer to new information in HACKING.
* backend/README : Future plans.
* backend/file/qof-backend-qsf.h : Trace fix.
* backend/file/qsf-backend.c : New log method and
tidy up initialisation of the params context.
* backend/file/qsf-xml-map.c : Trace fix.
* backend/file/qsf-xml.c : Removing double free.
* configure.in : Move to 0.6.0 final.
* debian/control : Fix override conflict.
* doc/doxygen_main_page.c : Warn of future changes
and new methods.
* examples/test-qsf.c : tweak.
* qof/Makefile.am : Temporarily make two private
headers public.
* qof/gnc-date.c : Deprecating qof_date_format_get_format
and gnc_timet_get_day_start_gdate.
* qof/gnc-date.h : Doxygen tweaks.
* qof/gnc-engine-util.c : GnuCash sync, cache improvements.
* qof/gnc-engine-util.h : New cache methods. Deprecating
the SAFE_STRCMP_REAL and SAFE_STRCASECMP macros in favour
of the function versions.
* qof/gnc-event-p.h : Deprecating gnc_engine_generate_event
* qof/gnc-event.c : Doxygen tweak and trace fix.
* qof/gnc-event.h : tweak.
* qof/gnc-numeric.c : Doxygen fix.
* qof/gnc-numeric.h : Typos.
* qof/gnc-trace.c : New trace / log methods.
* qof/gnc-trace.h : Using enum_as_string macros for logging.
* qof/guid.c : Doxygen tweak.
* qof/kvp-util.h : This is a QOF file, not GnuCash file.
* qof/kvp_frame.c : Cache and logging fix.
* qof/kvp_frame.h : Deprecating kvp_frame in favour of KvpFrame,
kvp_value in favour of KvpValue and kvp_value_t in favour of
KvpValueType.
* qof/qof-be-utils.h : qof_begin_edit and qof_commit_edit fix.
* qof/qof.h : Fixing the major header, making it the only header file
required to be included to use QOF. Using individual header files in
applications linked against QOF is now deprecated.
* qof/qof_book_merge.c : Logging fix.
* qof/qof_book_merge.h : Fix GNU_SOURCE error.
* qof/qofbackend-p.h : Deprecating be->price_lookup and be->export.
Add new functions to remove need for qofbook-p.h private header.
* qof/qofbackend.c : qof_begin_edit and qof_commit_edit fix.
* qof/qofbook-p.h : Doxygen fix.
* qof/qofbook.c : Typos, new functions from qofbackend-p.h and
cache improvements.
* qof/qofbook.h : Doxygen fix.
* qof/qofclass-p.h : Doxygen fix.
* qof/qofclass.c : Typos and logging fix.
* qof/qofclass.h : Typos.
* qof/qofgobj.c : Logging fix.
* qof/qofid-p.h : Typos.
* qof/qofid.c : Logging fix and cache improvement.
* qof/qofid.h : Doxygen fix.
* qof/qofinstance-p.h : Doxygen fixes.
* qof/qofinstance.c : Logging fix.
* qof/qofla-dir.h.in : Directory fix.
* qof/qofobject.c : Logging fix.
* qof/qofquery-deserial.c : Denoting removal from main library.
* qof/qofquery-deserial.h :
* qof/qofquery-serialize.c :
* qof/qofquery-serialize.h :
* qof/qofquery.c : Logging fix and balancing log calls.
* qof/qofquery.h : Doxygen fix.
* qof/qofquerycore.c : Logging fix.
* qof/qofquerycore.h : Typos.
* qof/qofsession.c : Removing GnuCash code.
* qof/qofsession.h : Removing GnuCash comments from Doxygen.
* qof/qofsql.c : Logging fix.
* qof/qofsql.h : Denoting use of libgda.
* qof/test/test-date.c : Highlight issue with Mac OSX
* qof/test/test-object.c : Use main QOF header.
* qof/test/test-querynew.c : Use main QOF header.
* website/index.html : Document additions to HACKING on
the website.
2005-10-11 Neil Williams <linux@codehelp.co.uk>
* configure.in: Build qofla-dir.h from
make to put into qof.h Bump version to
full 0.6.0 release.
* qof/Makefile.am: Remove old build rules.
* qof/qofsession.c: Remove unused code.
* qof/qofbackend.c: Remove unused code.
2005-09-27 Neil Williams <linux@codehelp.co.uk>
* backend/file/qof-backend-qsf.h: Unneeded wrapper.
* backend/file/qsf-backend.c: New log_module support.
* backend/file/qsf-xml.c: QOF_MOD_QSF
* qof/gnc-date.c: QOF_MOD_ENGINE
* qof/gnc-event.c: QOF_MOD_ENGINE
* qof/gnc-trace.c: Removing enum based module selection,
replacing with GHashTable method to support non-GnuCash usage.
* qof/gnc-trace.h: Documenting new log functions.
* qof/guid.c: QOF_MOD_ENGINE
* qof/kvp_frame.c: QOF_MOD_KVP
* qof/kvp_frame.h: QOF_MOD_KVP
* qof/qof.h: adding gnc-trace.h
* qof/qof_book_merge.c: New log_module support.
* qof/qof_book_merge.h: QOF_MOD_MERGE
* qof/qofbackend.c: QOF_MOD_BACKEND
* qof/qofbackend.h: new log_module support
* qof/qofbook.c: QOF_MOD_ENGINE
* qof/qofclass.c: QOF_MOD_CLASS
* qof/qofclass.h: new log_module support
* qof/qofgobj.c: QOF_MOD_QUERY
* qof/qofid.c: QOF_MOD_ENGINE
* qof/qofinstance.c: QOF_MOD_ENGINE
* qof/qofobject.c: QOF_MOD_OBJECT
* qof/qofobject.h: new log_module support.
* qof/qofquery.c: QOF_MOD_QUERY
* qof/qofquery.h: new log_module support.
* qof/qofquerycore.c: QOF_MOD_QUERY
* qof/qofsession.c: QOF_MOD_SESSION
* qof/qofsession.h: new log_module support.
* qof/qofsql.c: QOF_MOD_QUERY
2005-09-11 Neil Williams <linux@codehelp.co.uk>
* configure.in: libtool fix and wrong bracketing fix.
* qof-1.pc.in: Syntax fix.
* backend/Makefile.am: Moving Werror to prevent
FC3 raising a warning.
* backend/file/Makefile.am: Werror
* examples/Makefile.am: Werror
* examples/backend/Makefile.am: Werror
* examples/gobject/Makefile.am: Werror
* qof/Makefile.am: Werror
* qof/test/Makefile.am: Werror
* qof/test/test-object.c: Remove libguile
* qof/test/test-querynew.c: Remove libguile
2005-09-02 Neil Williams <linux@codehelp.co.uk>
* .cvsignore: gettext support
* Makefile.am: make distcheck fix and gettext support.
* QOF_MANIFEST_QSF: New file.
* backend/Makefile.am: Where to install the backend config
XML file.
* backend/backend-schema.xsd.xml: Revised schema.
* backend/file/.cvsignore: new file.
* backend/file/Makefile.am: gettext support
* backend/file/qsf-backend-v0.1.xml: QSF backend config
* backend/file/qsf-backend.c: QOF backend config handlers
and gettext support.
* backend/file/qsf-xml.h: gettext defines.
* configure.in: intltoolize and gettext parameters.
* make-potfiles.in: new file.
* po/.cvsignore: new file.
* po/ChangeLog: translation support.
* po/Makevars: new file.
* po/POTFILES.in: gettext support.
* qof/gnc-date.c: Fix GnuCash bug #170444
* qof/qofbackend-p.h: Distinguish two providers with same access
method - check_data_type
* qof/qofbackend.c: check type now in QofBackendProvider, not
in the QofBackend.
* qof/qofbackend.h: Documenting the XML config handler.
* qof/qofsession.c: check_data_type, doxygen and gnucash fix.
* qof/qofsession.h: check_data_type
2005-08-29 Neil Williams <linux@codehelp.co.uk>
* backend/file/qsf-xml.h: Doxygen tweaks.
* qof/gnc-event.h: Adding to Doxygen output.
* qof/guid.h: Doxygen correction.
* qof/qof-be-utils.h: Doxygen correction.
* qof/qof.h: Doxygen handling and making the
library directory public.
* qof/qof_book_merge.h: Doxygen correction.
* qof/qofbackend.c: New backend library load
function, using .la files for portability.
* qof/qofbackend.h: qof_load_backend_library.
* qof/qofchoice.h: Tweak.
* qof/qofid.h: Doxygen correction.
* qof/qofla-dir.h.in: Licence correction.
* qof/qofquery-deserial.h: Removing from doxygen.
* qof/qofquery-serialize.h: Removing from doxygen.
* qof/qofsession.c: Deprecating current_session and
using new backend load calls.
* qof/qofsession.h: Doxygen correction.
2005-08-12 Neil Williams <linux@codehelp.co.uk>
* qof/qofinstance.c: Improved dirty entity handling.
2005-08-12 Neil Williams <linux@codehelp.co.uk>
* backend/file/qsf-backend.c: Cast fixes
* backend/file/qsf-object.xsd.xml: QOF_TYPE_CHOICE attribute
* backend/file/qsf-xml-map.c: Cast changes.
* backend/file/qsf-xml.c: Casts
* configure.in: Tweak to library version
* qof/gnc-date.c: tweak
* qof/gnc-date.h: Remove todo marker
* qof/qofbook-p.h: Move qof_book_mark_saved.
* qof/qofbook.h: Making qof_book_mark_saved public.
* qof/qofquery.h: Adding choice
* qof/qofquerycore-p.h: Choice
* qof/qofquerycore.c: Choice queries
* qof/qofquerycore.h: Choice predicate definition.
* qof/test/test-book-merge.c: Removing Guile.
* qof/test/test-engine-stuff.c: small cast change.
2005-07-24 Neil Williams <linux@codehelp.co.uk>
* backend/file/pilot-qsf-GnuCashInvoice.xml: Using real
pilot-link data.
* backend/file/qsf-backend.c: Removing debug code, loading
maps alongside objects, QOF_TYPE_CHOICE.
* backend/file/qsf-object.xsd.xml: QOF_TYPE_CHOICE
* backend/file/qsf-xml-map.c: Loading maps alonside objects.
Outline of conversion loader.
* backend/file/qsf-xml.c: Accurately reporting map
validation counts.
* backend/file/qsf-xml.h: Doxygen.
* configure.in: Support for STRUCT_TM_GMTOFF check.
* qof/gnc-numeric.h: Doxygen fixes.
* qof/qof_book_merge.c: Removing unused header.
* qof/qof_book_merge.h:
* qof/qofbackend-p.h:
* qof/qofbackend.h: Don't need the private header here.
* qof/qofinstance.c: Change in API to make collection
dirty when instance is dirty. API to handle do_free.
* qof/qofinstance.h: Doxygen
* qof/qofsession.c: Fixing qof_entity_copy_list after
tests under CashUtil.
* qof/test/test-date.c: Mac OSX fix.
2005-07-18 Neil Williams <linux@codehelp.co.uk>
* backend/file/qof-backend-qsf.h: tweak
* backend/file/qsf-backend.c: Using editlevels
* backend/file/qsf-xml.h: New types added to doxygen.
* qof/gnc-engine-util.h: Correcting build to use known
config instead of guessing.
* qof/qof-be-utils.h: Macros as functions for use when
the call must not call return.
* qof/qofbackend.c: Macros as functions.
* qof/qofchoice.c: Fixing hash table lookup.
* qof/qofchoice.h: Check choice selections.
* qof/qofsession.c: Using editlevels.
* qof/qofsql.c: Fixing warnings.
2005-07-05 Neil Williams <linux@codehelp.co.uk>
* .cvsignore: ignore dist tarball
* backend/file/qsf-backend.c: QOF_TYPE_CHOICE,
QOF_TYPE_COLLECT reference handling. Correcting
casts (gcc 4).
* backend/file/qsf-xml-map.c:
* backend/file/qsf-xml.c: Correcting
casts (gcc 4).
* configure.in: Removing INTLTOOL - no
translatable text in the library.
* doc/Makefile.am: Tweak.
* doc/doxygen.cfg.in: Tweak.
* examples/backend/my-instance.c:
* examples/gobject/gobj-example.c:
* examples/query-example.c:
* examples/sql-example.c:
* examples/test-book-merge.c:
* examples/test-qsf.c: Correcting
casts (gcc 4).
* qof/Makefile.am: Test case support.
* qof/gnc-engine-util.h: Fixing macro.
* qof/gnc-trace.h: Typo.
* qof/guid.c: GnuCash changes and correcting
casts (gcc 4).
* qof/guid.h: GnuCash sync.
* qof/qof-be-utils.h: New functions to allow
macros to be used from the library.
* qof/qof.h: QOF_TYPE_CHOICE
* qof/qof_book_merge.c: QOF_TYPE_CHOICE
* qof/qofbackend.c: New functions for qof-be-utils.h
macros.
* qof/qofbackend.h: Docs for new functions.
* qof/qofbook.h: Moving functions to get macros to
work.
* qof/qofchoice.c: QOF_TYPE_CHOICE
* qof/qofchoice.h: QOF_TYPE_CHOICE
* qof/qofclass.c: downgrading error reporting.
* qof/qofgobj.c: Correcting
casts (gcc 4).
* qof/qofid.h: QOF_TYPE_CHOICE
* qof/qofobject.h: QOF_TYPE_CHOICE
* qof/qofquery.c: typo.
* qof/qofquerycore-p.h: QOF_TYPE_COLLECT
* qof/qofquerycore.c: QOF_TYPE_COLLECT
* qof/qofquerycore.h: QOF_TYPE_COLLECT
* qof/qofsession.c: Using a genuine QofParam.
* qof/qofsession.h: QOF_TYPE_CHOICE
* qof/qofsql.c: remove cm_setter
* qof/test/.cvsignore:
* qof/test/Makefile.am: New test cases
* qof/test/test-book-merge.c:
* qof/test/test-date.c:
* qof/test/test-engine-stuff.c:
* qof/test/test-engine-stuff.h:
* qof/test/test-guid.c:
* qof/test/test-numeric.c:
* qof/test/test-object.c:
* qof/test/test-querynew.c:
* qof/test/test-stuff.c:
* qof/test/test-stuff.h:
2005-07-05 Neil Williams <linux@codehelp.co.uk>
* backend/file/qsf-backend.c: Tweak.
* configure.in: Improved GLIB detection.
* doc/Makefile.am: website link.
* doc/doxygen_main_page.c: related page links.
* doc/map-plan.txt: Ideas
* qof/Makefile.am: Linking Glib properly.
* qof/gnc-engine-util.h: New enum as string macros.
* qof/guid.c: Sync with GnuCash.
* qof/guid.h: Tweak documentation.
* qof/qofbook.c: GnuCash sync.
* qof/qofclass.h: Adding QOF_TYPE_COLLECT.
* qof/qofid.c: Collection from a list.
* qof/qofid.h: Count a collection.
* qof/qofobject.h: Link to QOF-generator.
* qof/qofquerycore.c: Remove debug code.
* qof/qofsession-p.h: GnuCash hack.
* qof/qofsession.c: GnuCash tweaks.
2005-06-17 Neil Williams <linux@codehelp.co.uk>
* .cvsignore: Distribution preparation.5
* ./ChangeLog:
* ./Makefile.am: Removing unused config rules.
* ./NEWS:
* ./README:
* ./README.cvs:
* ./TODO: Documentation update.
* ./autogen.sh: Removing unused m4 macro.
* ./backend/.cvsignore:
* ./backend/Makefile.am:
* ./backend/dwi/Makefile.am:
* ./backend/file/.cvsignore:
* ./backend/file/Makefile.am: API freeze.
* ./backend/file/qof-backend-qsf.h: Freezing the API
* ./backend/file/qsf-backend.c: API freeze.
* ./backend/file/qsf-object.xsd.xml: QOF_TYPE_COLLECT
* ./backend/file/qsf-xml.h: Now a private header.
* ./configure.in: Pre-release version increments.
* ./doc/.cvsignore:
* ./doc/Makefile.am:
* ./doc/backend-api.txt:
* ./doc/backend-errors.txt:
* ./doc/doxygen.cfg.in:
* ./doc/doxygen_main_page.c: Folding txt files into doxygen.
* ./examples/Makefile.am:
* ./examples/README:
* ./examples/backend/Makefile.am:
* ./examples/gobject/Makefile.am:
* ./examples/gobject/gobj-example.c:
* ./examples/test-qsf.c:
* ./lib/libsql/Makefile.am:
* ./qof-1.pc.in: New pkg-config info.
* ./qof/.cvsignore:
* ./qof/Makefile.am:
* ./qof/gnc-date.h:
* ./qof/qof_book_merge.c: API freeze.
* ./qof/qof_book_merge.h:
* ./qof/qofclass.h:
* ./qof/qofsession.c: Handling .so + .dylib
* ./website/gobj-example.c.html:
* ./website/index.html:
* ./website/my-obj-example.c.html:
* ./website/qof.css:
* ./website/why-qof.html: Website overhaul.
2005-05-08 Neil Williams <linux@codehelp.co.uk>
* backend/file/qsf-backend.c: QOF_TYPE_COLLECT
reference handling.
* qof/qof_book_merge.c: Merging collections.
* qof/qofid.c: Compiler warning fix.
* qof/qofsession.c: recursing collections.
2005-05-07 Neil Williams <linux@codehelp.co.uk>
* README: Documenting newest features.
* backend/file/Makefile.am: Fixing dist build
* backend/file/qsf-backend.c: QOF_TYPE_COLLECT
* backend/file/qsf-object.xsd.xml: Validation typo
* configure.in:
* doc/Makefile.am:
* doc/doxygen.cfg.in:
* examples/Makefile.am:
* examples/backend/Makefile.am:
* examples/backend/my-app.c:
* examples/backend/my-instance.c:
* examples/my-object.c:
* examples/query-example.c:
* examples/sql-example.c:
* examples/test-qsf.c:
* lib/libsql/Makefile.am:
* qof/Makefile.am: Fixing build errors.
* qof/kvp_frame.h: Doxygen fix
* qof/qof_book_merge.c:
* qof/qofclass.h:
* qof/qofid.c:
* qof/qofid.h: QOF_TYPE_COLLECT
* qof/qofsession.c: Recursive copying
* qof/qofsession.h: Recursive declarations.
* qof/qofsql.c: Fixing dist build.
2005-04-25 Neil Williams <linux@codehelp.co.uk>
* backend/file/pilot-qsf-GnuCashInvoice.xml:
Tweaked the map in preparation for changes in
pilotqof.
* backend/file/qsf-xml-map.c: planning
* backend/file/qsf-xml.h: Documentation
* qof/gnc-engine-util.c: GnuCash changes
* qof/gnc-engine-util.h: enum as string
macro improved.
* qof/gnc-event.c:
* qof/gnc-event.h:
* qof/gnc-numeric.c:
* qof/gnc-numeric.h:
* qof/gnc-trace.c:
* qof/gnc-trace.h:
* qof/guid.h: GnuCash changes.
* qof/kvp_frame.c: New names for deprecated
functions.
* qof/kvp_frame.h: Doxygen improvements and
defines to replace deprecated functions.
* qof/qof_book_merge.c: Change to unsigned
integers.
* qof/qofclass.c: Reference handling.
* qof/qofclass.h: Doxygen tweak.
* qof/qofid.h: Removing FreqSpec.
* qof/qofquery.c:
* qof/qofquery.h: GnuCash changes.
* qof/qofquerycore.c: Date query handling.
* qof/qofquerycore.h: Replacing deprecated value.
* qof/qofsql.c: UTC date handling.
* qof/qofsql.h: Doxygen.
2005-04-12 Neil Williams <linux@codehelp.co.uk>
* backend/file/.cvsignore: New file.
* backend/file/qsf-backend.c :
Reference handling and KVP support.
* backend/file/qsf-object.xsd.xml :
Tightening up the validation of attributes
and namespaces.
* backend/file/qsf-xml.h : Documentation
tweaks.
* doc/Makefile.am : Correcting error in
datadir.
* examples/.cvsignore : Tweaked.
* qof/Makefile.am : Building with SQL.
* qof/gnc-date.c :
* qof/gnc-date.h :UTC date and time
handling added. Documentation tweaks.
* qof/gnc-engine-util.h : ENUM as string
support macro.
* qof/gnc-trace.c : Using our own trace
file instead of overwriting GnuCash.
* qof/qof-be-utils.h :
* qof/qof.h :Documentation and directory fixes.
* qof/qof_book_merge.c : CHAR handling
* qof/qof_book_merge.h : Make tweak.
* qof/qofbackend.h : Adding QSF error code
and documentation tweaks.
* qof/qofclass.c : Reference handling.
qof_class_get_referenceList()
* qof/qofclass.h : Prototype for
qof_class_get_referenceList().
* qof/qofgobj.c :
* qof/qofgobj.h : Directory tweaks.
* qof/qofquery-deserial.c : Remove
deprecated code.
* qof/qofquery-deserial.h : Add warning
about unfinished status.
* qof/qofquery-serialize.c : Remove
deprecated code.
* qof/qofquery-serialize.h : Directory tweaks.
* qof/qofquery.c : Remove deprecated code.
* qof/qofquery.h : Typo.
* qof/qofquerycore.c :
* qof/qofquerycore.h : Remove deprecated code.
* qof/qofsession.c : Reference handling.
* qof/qofsql.c : Directory changes,
typos, handling UTC time in queries,
handling INSERT commands.
* qof/qofsql.h : Documentation of INSERT,
fixes and prototypes of insert handlers.
2005-03-21 Neil Williams <linux@codehelp.co.uk>
* backend/file/qsf-backend.c:
* backend/file/qsf-xml.c:
* backend/file/qsf-xml.h:
Reference support for partial QofBooks
* doc/doxygen.cfg.in: Doxygen search engine.
* qof/kvp_frame.h: typos.
* qof/qof_book_merge.c: Reference handling
and fixing QOF_TYPE_CHAR routines.
* qof/qofbackend.h: Adding error code for QSF.
* qof/qofbook.h: documentation tweaks.
* qof/qofclass.c: Reference handling support.
* qof/qofclass.h: Typos and reference handling.
* qof/qofid.c: Typo.
* qof/qofsession.c: Reference support changing
from hashtable to list.
* qof/qofsession.h: Reference support.
2004-05-01 Linas Vepstas <linas@linas.org>
* Add query to XML serialization
* Add doxygen automatic document generation
2004-04-17 Linas Vepstas <linas@linas.org>
* Add SQL client support
* Add gobject support
* Modernize autogen infrastructure
2003-09-27 Linas Vepstas <linas@linas.org>
* src/*: sync with GnuCash CVS HEAD; includes misc cleanup, a whole
class of new KVP functions, and and important cleanup of the trace
facility
2003-06-25 Linas Vepstas <linas@linas.org>
* src/*, examples/*: rename Gnucash files to use qof prefix
* release version 0.2
2003-06-16 Linas Vepstas <linas@linas.org>
* initial release of version 0.1
|