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
|
Released 0.67
2007-10-24 Vivien Malerba <malerba@gnome-db.org>
* Makefile.am:
* configure.in:
* data/Makefile.am:
* data/mergeant.xml.in:
* doc/C/Makefile.am:
* mergeant.desktop.in:
* mergeant.spec.in:
* mergeant.spec_mdk.in:
* po/POTFILES.in: applied patch for bug #487916 (Stanislav Brabec)
* src/workspace-window.c: load mergeant.png from the correct location
* src/binreloc/*:
* src/*: now use binreloc if available to locate ressource files
* DevGuide:
* examples:
* extra:
* frontend:
* libmergeant:
* libmergeant.pc.in:
* libmergeant.spec.in:
* testing: removed obsolete/unused parts
* MAINTAINERS: set to the correct format (http://live.gnome.org/MaintainersCorner#maintainers)
2007-10-13 Yannig Marchegay <yannig@marchegay.org>
* configure.in: +Occitan.
2007-07-27 Raivis Dejus <orvils@gmail.com>
* configure.in: Added Latvian Translation.
2007-06-17 Vivien Malerba <malerba@gnome-db.org>
* acinclude.m4: new file for Binreloc (for future usage)
* src/*:
* configure.in: removed GConf and LibgnomeUI dependencies, and
require GTK+ >= 2.10 (for the GtkAssistant widget)
2007-05-28 Vivien Malerba <malerba@gnome-db.org>
* configure.in:
* src/ws-dbrels.c:
* src/query-druid.c:
* src/query-editor.c: optionally use the new libgnomedb graph library based
on the GooCanvas canvas if found
2007-03-23 Vivien Malerba <malerba@gnome-db.org>
Released 0.66.
2007-03-09 Vivien Malerba <malerba@gnome-db.org>
* src/mg-plugin-editor.c:
* src/mg-extra-formgrid.c:
* src/ws-tables.c:
* src/query-params-editor.c:
* src/session.c:
* src/query-fields-editor.c: changes to follow Libgda/libgnomedb changes
2007-03-07 Pema Geyleg <pema.geyleg@gmail.com>
* configure.in: Added 'dz' to ALL_LINGUAS.
2007-02-05 Murray Cumming <murrayc@murrayc.com>
* src/query-editor.c: Change the include path for
gnome-db-editor.h, now in libgnomedb-extra/.
* src/workspace-window.c: Change the include path for
gnome-db-dbms-update-viewer.h, now in libgnomedb-extra/.
* src/ws-queries.c: (action_query_exec_cb):
Adapt to the gda_query_is_modif_query() rename to
gda_query_is_modify_query().
2007-02-05 Matic Zgur <mr.zgur@gmail.com>
* configure.in: Added 'sl' to ALL_LINGUAS.
2007-01-27 Vivien Malerba <malerba@gnome-db.org>
* src/workspace.c:
* src/ws-dbrels.c:
* src/ws-tables.c:
* src/ws-queries.c:
* src/query-druid.c:
* src/ws-datatypes.c:
* configure.in: updates due to API changes
2007-01-20 Vivien Malerba <malerba@gnome-db.org>
* src/ws-dbrels.c:
* src/ws-dbrels.h:
* src/ws-tables.c:
* src/ws-queries.c:
* src/query-druid.c:
* src/ws-datatypes.c:
* src/query-editor.c:
* configure.in: Adapted to libgnomedb's new libgnomedb-graph library
2007-01-20 Vivien Malerba <malerba@gnome-db.org>
* src/ws-dbrels.h:
* src/query-druid.c:
* src/query-editor.c: adaptations to API changes
2007-01-12 Vivien Malerba <malerba@gnome-db.org>
* src/workspace-window.c: if a transaction is opened when closing a workspace, then offer
the option to commit, roll it back or do nothing.
* src/mg-extra-formgrid.c: avoid unnecessary computing
2007-01-07 Vivien Malerba <malerba@gnome-db.org>
* src:
* po: adjusted the svn:ignore property
* other files: minor changes
2006-12-22 Vivien Malerba <malerba@gnome-db.org>
Released 0.65.
2006-12-22 Vivien Malerba <malerba@gnome-db.org>
* src/mg-extra-formgrid.c:
* src/query-editor.c: minor corrections
2006-12-20 Vivien Malerba <malerba@gnome-db.org>
* src/main.c: corrected output if requested DSN is not found
* src/utils.c: fixed a bug when trying to create or drop a database if the
provider does not support it
* src/mg-plugin-editor.[ch]: new widget to assign a plugin to an object
* src/ws-tables.c: it is now possible to define display plugins for table's fields
2006-12-09 Vivien Malerba <malerba@gnome-db.org>
* src/workspace-window.c: truncate error message if too long before displaying
it in a dialog box
* src/ws-tables.c: use the new
gda_data_model_query_compute_modification_queries() to enable data modification
in table contents
* src/ws-tables.c: make double click on a table or view show its contents
* src/mg-extra-formgrid.c: make that widget display chuncks of 300 at a time
2006-12-03 Vivien Malerba <malerba@gnome-db.org>
* src/Makefile.am:
* src/mg-extra-formgrid.[ch]:
* src/mg-extra-form.png:
* src/mg-extra-grid.png: new widget to display data both as a grid and as
a form, allowing to toggle between the two presentations.
* src/ws-tables.c: use that new widget to display tables contents
2006-11-19 Vivien Malerba <malerba@gnome-db.org>
* configure.in:
* src/query-params-editor.c: updates to use newest version of libgda/libgnomedb
* src/workspace-window.c: added transaction status tracking
support
2006-11-18 Djihed Afifi <djihed@gmail.com>
* configure.in: Added Arabic.
2006-10-18 Vivien Malerba <malerba@gnome-db.org>
Released 0.64.
2006-09-24 Vivien Malerba <malerba@gnome-db.org>
* all files: updated due to libgda's API changes
* src/workspace-window.c: applied patch to close #357491
(stian@nixia.no)
2006-09-15 Vivien Malerba <malerba@gnome-db.org>
* adaptations to libgda's API changes
* src/workspace-window.c: SQL console is now accessible from
the toolbar
2006-09-10 Vivien Malerba <malerba@gnome-db.org>
* adaptations to libgda's API changes
2006-09-03 Vivien Malerba <malerba@gnome-db.org>
Released 0.63.
2006-08-28 Vivien Malerba <malerba@gnome-db.org>
* src/ws-tables.c: added support to rename a table and add or remove
a column to a table
* other: changes due to libgda's API changes
2006-08-20 Vivien Malerba <malerba@gnome-db.org>
* src/utils.[hc]: new files with common functions
* src/: Improved UI layout using a toolbar and the menubar for each
selected page; added databse creation and deletion and table creation
and deletion
2006-07-14 Vivien Malerba <malerba@gnome-db.org>
* configure.in: make sure the ALL_LINGUAS is in one line
2005-05-24 Vivien Malerba <malerba@gnome-db.org>
* adaptations to libgda's API changes
2005-05-08 Vivien Malerba <malerba@gnome-db.org>
* src/query-editor.c:
* src/ws-queries.c: corrections which closes bug #327161
2005-05-08 Vivien Malerba <malerba@gnome-db.org>
* Modifications required by the GdaValue removal from libgda
* src/main.c: applied patch from Thomas Klausner to fix bug #329939
* README: updated
2005-04-22 Vivien Malerba <malerba@gnome-db.org>
* doc/C/Makefile.am: corrected an install bug which prevented the
'make distcheck' to work
* src/ws-queries.c: adaptation to libgda's API changes
2006-04-18 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Remove obsolete entry for no_NO
* po/no.po: And the translation.
2006-03-09 Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
* configure.in: Add "zh_HK" "zh_TW" to ALL_LINGUAS.
2006-03-07 Ignacio Casal Quinteiro <nacho.resa@gmail.com>
* configure.in: Added 'gl' to ALL_LINGUAS.
2006-02-25 Vivien Malerba <malerba@gnome-db.org>
* all files: modifications required by the libgda API changes
2005-09-25 Vivien Malerba <malerba@gnome-db.org>
* all files: modifications required by the libgda API changes
2005-09-18 Vivien Malerba <malerba@gnome-db.org>
* doc/mergeant-C.omf.in: applied correction for bug #316627
from Joseph Sacco
2005-09-06 Ilkka Tuohela <hile@iki.fi>
* configure.in: Added "fi" to ALL_LINGUAS
2005-09-05 Iñaki Larrañaga <dooteo@euskalgnu.org>
* configure.in: Added "eu" to ALL_LINGUAS
2005-09-05 Vivien Malerba <malerba@gnome-db.org>
* Various misc. enhancements
* src/ws-queries.c: when executing a SELECT query, added an option to
select a table to modify through the grid.
2005-08-07 Rodrigo Moya <rodrigo@gnome-db.org>
Released 0.62.
2005-08-07 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in: require libgda/libgnomedb 1.3.90.
2005-08-06 Vivien Malerba <malerba@gnome-db.org>
* src/workspace-window.c: adapted to latest libgda/libgnomedb API changes
2005-07-26 Rodrigo Moya <rodrigo@gnome-db.org>
Fixes #311572
* src/query-druid.c (make_nyi_page): s/functionnality/functionality.
2005-07-19 Pawan Chitrakar <pawan@nplinux.org>
* configure.in: Added ne in ALL_LINGUAS
2005-07-12 Rodrigo Moya <rodrigo@gnome-db.org>
* mergeant.desktop.in: added MIME type.
* Makefile.am:
* data/Makefile.am:
* doc/C/Makefile.am:
* src/Makefile.am: pass distcheck.
* configure.in: Mergeant_Appdir should be .../applications, not
...apps/Applications.
2005-07-11 Rodrigo Moya <rodrigo@gnome-db.org>
Released 0.61.
2005-07-01 Vivien Malerba <malerba@gnome-db.org>
* src/query-druid.[ch], src/query-editor.[ch],
src/query-fields-editor.[ch], src/query-fields-menu.[ch],
src/query-params-editor.[ch], src/ws-datatypes.[ch],
src/ws-dbrels.[ch], src/ws-queries.[ch], src/ws-tables.[ch]: use GType
for GObject types, not guint.
2005-06-15 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in: require libgda-1.3 and libgnomedb-1.3.
2005-06-04 Rodrigo Moya <rodrigo@gnome-db.org>
Released 0.60.
2005-05-14 Vivien Malerba <malerba@gnome-db.org>
* po/POTFILES.in: applied Jorge Bernal <koke@amedias.org> patch
to fix bug #303666
* src/main.c: adapted to libgda's API changes
* src/main.c: added a --list-all command line option to list all the configured
data sources
2005-04-23 Vivien Malerba <malerba@gnome-db.org>
* src/workspace-window.c: Improved connection dialog (re-use existing
DSN selection dialog)
* src/ws-datatypes.c: Displays information about data type synonyms.
* src/*: added command line arguments:
-U to specify a user name
-P to specify a password
-s to specify which page to display first
<Data source> to specify a data source to connect to
* src/ws-queries.c: bug fixes
* src/ws-queries.c & ws-tables.c: make better usage of the toolbar.
* src/query-fields-editor.c: improved selection when moving a field up or down, and
fixed a bug when displaying non active query fields.
* src/ws-queries.c: improved display of non active queries
* src/workspace-window.c: added opening of SQL consoles from menu.
2005-04-10 Vivien Malerba <malerba@gnome-db.org>
* Removed bonobo dependencies
* src/workspace-window.c: fixed a bug which prevented loading a dictionnary file
* src/query-editor.c: fixed a warning when trying to set the WHERE condition of
a query to ""
* src/workspace-window.c: use a new thread to load dictionary and open the connection,
and display a pulse bar while doing that.
2005-04-05 Žygimantas Beručka <uid0@akl.lt>
* configure.in: Added Lithuanian to ALL_LINGUAS.
2005-04-01 Steve Murphy <murf@e-tools.com>
* configure.in: Added "rw" to ALL_LINGUAS.
2005-03-06 Vivien Malerba <malerba@gnome-db.org>
* configure.in: requires libgda >= 1.3.1 and libgnomedb >= 1.3.1
2005-03-01 Vivien Malerba <malerba@gnome-db.org>
* Fixed bug #166529
2005-02-11 Vivien Malerba <malerba@gnome-db.org>
* removed libmergeant (which has been merged into libgnomedb)
* ported the source to use the new libgnomedb API
* configure.in: depend on libgda/libgnomedb >= 1.3.0
* doc/C: corrected documentation building
2004-11-01 Vivien Malerba <malerba@gnome-db.org>
* frontend/query-params-editor.c: the data type of a parameter can now be changed
2004-10-28 Rodrigo Moya <rodrigo@gnome-db.org>
* libmergeant/mg-work-core.c (make_work_context_no_target):
fixed typos.
2004-10-23 Vivien Malerba <malerba@gnome-db.org>
* all files: renamed MgConf to MgDict
* all files: use mg_base_connect_nullify() to connect to the "nullified" signal of a #MgBase
object because it first checks that the connected object has not yet been nullified.
2004-10-15 Vivien Malerba <malerba@gnome-db.org>
* various files: fixes for when a variable was declared after the first instruction of a block
* libmergeant/mg-query.c: fixed a bug when making a copy of a query
* frontend/query-params-editor.[ch]: new widget to edit a query's parameters
* frontend/*: added query parameters' edition GUI
* libmergeant/mg-db-table.c: fixed a bug with the "owner" attribute of the DB_TABLE tag when
the owner is empty
* libmergeant/mg-server-info.c: added an entry for the MySQL provider
* examples: added files for MySQL example
* libmergeant/*: small bug fixes
2004-10-10 Vivien Malerba <malerba@gnome-db.org>
* frontend/query-druid.c: fixed bug #154411
* frontend/Makefile.am: make sure marshal.h is built before it is used
* frontend/query-fields-menu.c: finished implementation of the widget
* frontend/query-editor.c: make the query's targets' graph be correctly initially displayed,
finished the SELECT queries editor (no UNION, etc SELECT queries yet)
* frontend/*: changed the workspace layout to remove the option menu to select which type of
object to display, to have something like Evolution 2 has.
* frontend/*: make the SQL editors highlight displayed text
* libmergeant: renamed mg_entity_get_visible_fields() with mg_entity_get_fields(), and removed
mg_entity_get_all_fields(), replaced with mg_query_get_all_fields()
* libmergeant/mg-query.c: fixed a bug occuring when replacing the main WHERE condition
2004-10-10 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in: depend on libgda/libgnomedb >= 1.1.99
* libmergeant/mg-query-parsing.h: adapted to changes in libgda and
libgnomedb headers location.
2004-10-04 Tomasz KÅ?oczko <kloczek@pld.org.pl>
* mergeant.desktop.in: validate desktop file: added missing
Encoding=UTF-8 fielad and s/0/false/ in Terminal field.
2004-09-22 Rodrigo Moya <rodrigo@gnome-db.org>
* frontend/ws-dbrels.c (graph_edit_clicked_cb): fixed button ordering to
match the HIG.
2004-09-20 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/libmergeant.h: added mg-referer.h
* libmergeant/mg-condition.c: make the MgCondition commit suicide if the reference to one of the
fields it references is lost.
* frontend/query-editor.c: ask for confirmation to proceed when wrong SQL is detected
* libmergeant/mg-enums.h: added a MgFieldState enum to qualify the visibility of a query field
(visible, invisible, or any)
* libmergeant/mg-query.[ch]: merged mg_query_get_visible_field_by_ref_field() and
mg_query_get_any_field_by_ref_field () into a new mg_query_get_field_by_ref_field ()
* libmergeant/mg_join.c: modifications for the above MgQuery interface change
* libmergeant/mg-work-core.c: idem
* libmergeant/mg-work-matrix.c: idem
* frontend/query-fields-menu.[ch]: new widget
* Bug #152013 fixed (Thanks to David Lodge)
* bug fixes and code cleanups
2004-09-12 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/graph/mg-canvas-join.c, libmergeant/graph/mg-canvas-query-struct.c,
frontend/query-editor.c: fixes bug #152013
* libmergeant/graph/graph-utility.c: correctly implemented compute_text_marks_offsets()
* libmergeant/mg-query.[ch], libmergeant/mg-condition.c: fixed bugs related to a faulty management
of serial values for MgCondition and MgTarget objects
* libmergeant/mg-query.c: fixed a bug when rendering "ORDER BY xxx DESC"
* frontend/query-editor.c: GUI improvements for SELECT queries
* frontend/query-fields-editor.[ch]: new QueryFieldsEditor widget for query fields presentation and edition
* frontend/query-druid.c: uses the new QueryFieldsEditor to allow edition of WHERE parts and ORDER BY clauses
* libmergeant/mg-query.c: code reorganization for SQL fields parsing
* libmergeant/mg-condition.[ch]: added mg_condition_new_from_sql()
* libmergeant/mg-qfield.[ch]: added mg_qfield_new_from_sql()
* libmergeant/mg-query-parsing: modifications to allow creation of query fields without actually adding them
to the query, and to optionnaly re-use som exiting query fields (for instance when creating WHERE or
ORDER BY clauses)
* libmergeant/mg-query.[ch]: added mg_query_append_condition()
2004-09-05 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/mg-query.c: bug fixes related to query_clean_junk() and query copying
* libmergeant/graph/graph-utility.[ch]: code rework to make some factorisations
* various files: bug fixes
* examples/SampleApp.tgz: updated sample application
2004-08-29 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/Makefile.am: fixes *-private.h files not included anymore with header files, and added the
parser/ directory
* libmergeant/pareser/*: new directory to implement a very basic parser which just extracts the
parameter
specifications from any DML SQL query (even the ones not parsed by the parser included in libgda).
* libmergeant/mg-query.c: allows queries which can't be parsed to still have parameters (using the
##[:name="my param" :type="varchar" ...] syntax).
* frontend/query-editor.c: bug fixed on query "nullified" signal, and UI improvement
* frontend/ws-queries.c: UI improvements
* libmergeant/mg-db-constraint.c: fixed a bug related to FK constraints activation, which made the
DB relations graph not displaying FK constraints when mergeant was not using a dictionary file
* libmergeant/graph/mg-canvas-join.c: improved graphical rendering and added a join properties dialog
* libmergeanr/mg-target.[ch]: added mg_target_get_complete_name()
2004-08-26 Takeshi AIHANA <aihana@gnome.gr.jp>
* configure.in: Added 'ja' (Japanese) to ALL_LINGUAS.
2004-08-22 Vivien Malerba <malerba@gnome-db.org>
* various files: bug fixes
* libmergeant/mg-server.c: added a lc_names private attribute (hard coded to TRUE for now) which , if TRUE
makes all function and aggregate names lookup using lower cases for names.
* libmergeant/mg-database.c: added a lc_names private attribute (hard coded to TRUE for now) which , if TRUE
makes all tables names lookup using lower cases for names.
* libmergeant/mg-server.c, libmergeant/mg-server-function.c: allow functions to have arguments defined for
any data type.
* libmergeant/mg-qf-func.c: modifications for functions with arguments of any data type
* libmergeant/sel-functions.c: modifications for functions with arguments of any data type
* frontend/ws-datatypes.c: make sure the functions with arguments of any data type are always displayed
* libmergeant/mg-server-info.[ch]: new files where data specific to the providers may be defined
* libmergant/mg-server.[ch]: added mg_server_get_server_info(), and use the provider's specific information
2004-08-22 Mike Castle <dalgoda@ix.netcom.com>
* libmergeant/graph/Makefile.am, libmergeant/handlers/Makefile.am, libmergeant/handlers/plugins/Makefile.am:
fixed a bug when srcdir != builddir where several files could not find headers
2004-08-21 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Add «nb» to ALL_LINGUAS.
2004-08-15 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/mg-selector.c: improved readability
* libmergeant/graph/mg-graph-item.c: if the reference to the ref_object is lost, then the MgGraphItem
commits suicide.
* libmergeant/graph/mg-graph.c: improvements to make it easy to derive that class.
* libmergeant/graph/mg-canvas-field.[ch]: added mg_canvas_field_get_parent_item()
* libmergeant/graph/mg-graph-query.[ch]: new MgGraphQuery object
* libmergeant/mg-conf.c: updated to handle correctly MgGraphQuery objects
* libmergeant/graph/mg-canvas-join.[ch]: new MgCanvasJoin object
* libmergeant/graph/mg-canvas-query-struct.[ch]: new MgCanvasQueryStruct widget to show the targets and joins of a query
* libmergeant/mg-ref-base.c: avoid using g_object_ref()/g_object_unref() on the referenced object when
object is created using mg_ref_base_new_no_ref_count().
* libmergeant/sel-graphs.c: display only graphs showing the database relations
* libmergeant/mg-join.[ch]: added mg_join_set_condition_from_fkcons() which uses the FK constraints
defined in the database to make a good join condition, and make it emit "condition_changed" and "type_changed"
signals
* libmergeant/mg-qf-field.c: make the field destroy itself if the target it uses is removed from the query.
* libmergeant/mg-qf-all.c: make the field destroy itself if the target it uses is removed from the query.
* libmergeant/mg-query.c: added a function to remove any unused and hidden query field,
added a flag to set the DISTINCT globally for a SELECT query, and added mg_query_add_field_sql()
* libmergeant/mg-query-parsing.c: extracted from mg-query.c all the parsing processings
* testing/mg-test-dyn.c: added a test for the MgCanvasQueryStruct widget
* frontend/query-duid.c: implemented addition of a query field from an SQL expression
* various files: corrected bugs #149871, #149658, #149743, #149744, #134186 and #123056, other bug fixes
2004-08-14 J.H.M. Dassen (Ray) <jdassen@debian.org>
* configure.in: Bumped libgda version requirement as
libmergeant/mg-query.c uses `SQL_tablefunction' which has been added to
libgda's sql_parser.h in libgda 1.1.6.
2004-08-08 Vivien Malerba <malerba@gnome-db.org>
Released 0.52
2004-08-08 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/mg-selector.c: broke the individual rendering modules into several files (the sel-*.[ch] files),
added a MG_SELECTOR_TARGETS_CTS mode to display the fields of the referenced MgEntity of the targets in a query
and bug fixes
* frontend/query-druid.c: code cleanup and improvements, and started to implement a real druid for SELECT queries
* libmergeant/mg-query.[ch]: added mg_query_get_fields_by_target(), and improved
mg_query_get_any_field_by_ref_field() and mg_query_get_visible_field_by_ref_field()
* libmergeant/mg-join.c: commit suicide if any target the join uses is removed from the query.
* libmergeant/mg-query.[ch]: changed mg_query_get_visible_field_by_ref_field() and
mg_query_get_any_field_by_ref_field() and added mg_query_get_fields_by_target()
2004-07-25 Vivien Malerba <malerba@gnome-db.org>
* doc/C: new user documentation skeletton
2004-07-16 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/mg-ref-base.c: added the possibility to find and reference MgCustomLayout objects
* libmergeant/*: documentation fixes
* libmergeant/mg_custom-layout.[ch]: more work
* libmergeant/mg-work-layout.c: more work into the widget
2004-07-11 Vivien Malerba <malerba@gnome-db.org>
* configure.in: changed requirements to GTK+ 2.4.0 at least
* libmergeant/handlers/mg-entry-combo.c: now use the GtkComboBox widget (new with GTK+ 2.4.0), old one still
available if the USE_OLD_GTK_COMBO_WIDGET macro is defined in the .c file; bug fixes
* libmergeant/mg-data-entry.[ch]: added mg_data_entry_set_current_as_orig()
* libmergeant/mg-form.c & mg-work-form.c: bug fixes
* libmergeant/mg-entry-wrapper.c: bug fixed
* libmergeant/graph/mg-canvas-db-relations.c: added missing implementation when adding new constraints
* libmergeant/graph/mg-canvas-fkconstraint.c: added missing implementation when drawing several constraints
between two tables
2004-07-04 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/graph/mg-canvas-fkconstraint.c: changed the arrow direction between tables (now the arrow
points from the FK table to the ref PK table).
* libmergeant/*: added MgCustomLayout object to organize MgWorkWidget widgets (optionnaly in a Glade imported
file) and MgWorkLayout widget which is made by the MgCustomLayout object and modified other objects to cope
with the new onew
* testing/mg-test-dyn.c: added test case for MgWorkLayout widget
* frontend/ws-queries.c: disabled edition of resulsets from SELECT queries (the feature will be re-introduced
later)
* libmergeant/handlers/mg-entry-boolean.c: simplified widget
* libmergeant/libmergeant.dtd: added tags to store MgCustomLayout objects
* libmergeant/mg-form.[ch] and mg-work-form.[ch]: added the possibility to use a custom widget to make the form
(instead of a default GtkTable)
* libmergeant/mg-ref-base.c: bug fixes
* libmergeant/*: small bug fixes
* testing/mg-test-handlers.c: added missing GdaValueTypes
2004-06-27 Vivien Malerba <malerba@gnome-db.org>
* frontend/: all the changes to the dictionary are now saved using an idle function.
* libmergeant/mg-query.c: improved parsing of table names and of conditions
* libmergeant/mg-condition.[ch]: added condition operators for REGEX (~, ~*, !~, !~*) and "SIMILAR TO"
* libmergeant/mg-form.[ch]: modified the "param_changed" signal to add a boolean value representing if the
param changes originates in a change made by the user (through a MgDataEntry widget), or not.
* libmergeant/mg-parameter.[ch]: added a "param_changed" signal
* libmergeant/mg-server-data-type.c: changed mg_data_type_get_xml_id() to help fix bug #144923
* libmergeant/mg-conf.h: added a "changed" signal to signal any change to the dictionary
2004-06-20 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/mg-parameter.c: fixed a bug which prevented the computation of the validity of a parameter
when setting its value in some cases. Also when the "changed" signal is blocked, make sure the next time
the value is set the "changed" signal gets emitted (if it not blocked anymore)
* libmergeant/mg-work-grid.c: keep rows which have been created by the user when the INSERT query to write
the data fails.
* libmergeant/mg-work-grid.c: when editing a row, the TAB key moves one column to the right and CTRL+TAB
one column to the left, for easier editing, and DELETE marks the selected row to be deleted and
CTRL+DELETE un-deletes the row
* libmergeant/mg-base.c: added the "changed_blocked" property
* libmergeant/mg-field.[ch]: changed the implementation of mg_field_get_name() and
mg_field_get_description() to simplify interface implementation: now use mg_base_get_name() and
mg_base_get_description(); this assumes that every object implementing MgField MUST inherit MgBase.
* libmergeant/mg-qf-field.c mg-qf-value.c mg-qf-func.c: make loading and saving use the "alias"
attribute in XML files.
* libmergeant/mg-query.c: improved analysis of parsed SQL SELECT queries and added
mg_query_order_fields_using_join_conds()
* libmergeant/mg-work-core.c: various small robustness improvements
* libmergeant/mg-form.c: set the title for the values which can't be NULL in bold.
* libmergeant/mg-context.[ch]: changed the mg_context_new_copy() signature
* libmergeant/mg-parameter.[ch]: added a copy constructor and implemented the MgReferer interface
* frontend/: started to implement changes in MgConf to be saved in an idle function
2004-06-14 Rodrigo Moya <rodrigo@gnome-db.org>
* libmergeant/mg-work-grid.c: #ifdef'd calls to AAA macro.
2004-06-13 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/mg-work-*: use GtkAction objects for all the actions on the widgets
* libmergeant/mg-work-grid.c: when new data is inserted, make sure the selected row is visible
* testing/mg-test-dyn.c: added pages to test MgWorkForm and MgWorkGrid objects
* libmergeant/mg-work-widget.[ch]: code cleanup
* libmergeant/mg-work-core.[ch]: API changed
2004-06-06 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/mg-query.c & mg-qf-value.c: improved handling of parameters for which no value is spefified
(appear as ## instead of [value] and is also parsed as such)
* libmergeant/mg-context.[ch]: added missing coherence tests
* extra/mg-verify-file.c: added at test to verify each query's parameters' coherence
2004-06-04 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in: require newest libgda.
2004-06-03 Vivien Malerba <malerba@gnome-db.org>
* frontend/*: splited the workspace.c code into several objects which implement a common
interface (WorkspacePage)
* frontend/workspace-window.[ch], frontend/mergeant.xml: improvements: menu and toolbar cleanups
for non implemented items, added a "save metadata" action, a "refresh metadata" action,
a "copy workspace" action (which uses the same MgConf object),
and detects when a new workspace is created if it should reuse a MgConf object
(so we can have several workspaces in sync with each other).
* frontend/workspace-window.c: updated the list of translations authors
* frontend/ws-dbrels.c: added zooming buttons
* frontend/ws-queries.c: executing non parsed queries is now possible
* libmergeant/graph/mg-canvas-item.c: changed tooltip appearance timeout
* libmergeant/mg-work-widget.[ch]; renamed some methods and added mg_work_widget_perform_action()
* doc/libmergeant/C/*: doc update
* libmergeant/mg-context.[ch]: added mg_context_add_param() and mg_context_merge_context_params(),
bug fixes
* libmergeant/*: bug fixes and small improvements
2004-05-31 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/mg-work-matrix.c: improvements and bug fixes
* testing/mg-test-dyn.c: improvements
2004-05-27 Vivien Malerba <malerba@gnome-db.org>
* doc/libmergeant/C: now generate XML files and a libmergeant.devhelp file
* testing/mg-test-dyn.c: test improvement
* libmergeant/mg-work-matrix.c: more work
* libmergeant/* various bug fixes
2004-05-16 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/mg-query.[ch]: added mg_query_expand_all_field()
* libmergeant/mg-work-core.c: use mg_query_expand_all_field()
* libmergeant/mg-work-matrix.[ch]: more work
* libmergeant/graph/mg-canvas-fkconstraint.c: bug fixed
* testing/mg-test-dyn.c: various improvements
2004-05-07 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/mg-database.[ch]: added mg_database_add_constraint()
* libmergeant/mg-query.[ch]: added mg_query_get_target_by_alias() and mg_query_get_join_by_targets()
* libmergeant/mg-selector.c: use new GnomeDb stock icon and bug fixes
* libmergeant/graph/*: bug fixes and improvements
* libmergeant/mg-work-matrix.[ch]: new widget (non yet useable)
* testing/mg-test-dyn.c: new framework for testing widgets in a dynamic environment
2004-05-02 Rodrigo Moya <rodrigo@gnome-db.org>
* frontend/mergeant.xml: added Tools submenu and 'Data Sources' item.
* frontend/workspace-window.c: implemented new menu item.
(on_tools_data_sources): new callback.
2004-04-24 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/graph: various improvements and bug fixes
* frontend/workspace.c: added a page for database relations
* libmergeant/libmergeant.dtd: added attributes to MG_GRAPH node
2004-04-19 Vivien Malerba <malerba@gnome-db.org>
* applied patch from Adam Weinberger <adamw@FreeBSD.org> to fix bug #140437
2004-04-09 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/graph/*: improved graphic rendering and bug fixes
* doc/libmergeant/C/*: doc in sync with latest dev.
* testing/mg-test/graph.c: improved graphing test
2004-04-08 Adam Weinberger <adamw@gnome.org>
* configure.in: Added en_CA to ALL_LINGUAS.
2004-04-08 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/graph/*: new directory and library for all the functionnalities related to
graphical representations (tables' relations, etc).
* libmergeant/mg-conf.[ch]: added code to manage the new MgGraph objects
* libmergeant/libmergeant.dtd: modifications to save the new MgGraph objects
* testing/mg-test-graph: simple test for graphical objects
* doc/libmergeant: update doc
2004-04-05 Rodrigo Moya <rodrigo@gnome-db.org>
Released 0.50.
2004-04-05 Rodrigo Moya <rodrigo@gnome-db.org>
* frontend/Makefile.am: added .server.in.in file to EXTRA_DIST.
2004-04-04 Rodrigo Moya <rodrigo@gnome-db.org>
* frontend/workspace-window.c (workspace_window_new): make sure we
initialize GError's before using them.
2004-04-02 Gareth Owen <gowen72@yahoo.com>
* configure.in: Added en_GB to ALL_LINGUAS
2004-04-02 Vivien Malerba <malerba@gnome-db.org>
* frontend/*: Lots of UI improvements and new features
* libmergeant/*: various small improvements and bug fixes: the MgWorkCore widget behaves
correctly with joins where there is a condition, query parsing works for SELECT, INSERT,
UPDATE and DELETE queries.
* doc/libmergeant/*: doc. update to keep in sync
* testing/SQL_tests.xml: more SQL parsing tests
* work on the HIG compliance
2004-03-28 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/Makefile.am: fixed construction bug
* libmergeant/mg-base.c: documentation update
* libmergeant/mg-renderer.*: added options to SQL rendering
* libmergeant/mg-conf.[ch]: improved XML loading and saving and added
mg_conf_get_entities_fk_constraints() method
* libmergeant/mg-database.[ch]: improved FK constraints finding
* libmergeant/mg-join.c: implemented join conditions
* libmergeant/mg-query.c: improved textual SQL parsing integration,
improved SQL parsing
* libmergeant/mg-work-core.c: improved handling of joins with a condition
* testing/SQL_tests.xml: added test SQL queries
* frontend/*: added a query druid and query execution is now possible.
2004-03-19 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/*: Query joins update to handle conditions, MgRenderer API change, improved SQL parsing,
and various improvements.
* doc/libmergeant/C/*: doc update with a description of SQL extension to provide variables in queries.
* testing/mg-test-sqlquery.c: improved SQL queries parsing results by creating an HTML file and reading an XML
file.
* TODO: updated.
2004-03-14 Vivien Malerba <malerba@gnome-db.org>
* frontend/workspace.c: added table content visualization
* libmergeant/mg-condition.c: bug fixes
* libmergeant/mg-join.[ch]: added mg_join_set_condition()
* libmergeant/mg-query.c: improved SQL query parsing
* libmergeant/mg-work-grid.[ch]: added possibility to display only a limited number of rows.
2004-03-05 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/*: improvements and bug fixes: strings in the string handler, examples, started MgQuery creation from
an SQL statement, ...
2004-02-29 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/mg-query.[ch]: first steps to have MgQuery object
creation from an SQL statement.
* testing/mg-test-sqlquery.c, testing/SALES.xml: new test
* libmergeant/mg-conf.c: fixed bug 135584
* libmergeant/handlers/mg-handler-string.c,
libmergeant/handlers/mg-entry-string.c: bug fixed
2004-02-23 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/mg-selector.[ch]: improved API
* frontend/workspace.c: improved GUI
2004-02-17 Vivien Malerba <malerba@gnome-db.org>
* configure.in, frontend/Makefile.am: bug fixes
* libmergeant/*: improvements and bug fixes
* doc/libmergeant: doc update
* frontend/: make effective usage of libmergeant's dictionary
2004-02-15 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/*: bug fixes and improvements
* doc/libmergeant/*: added doc for the libmergeant library
2004-02-08 Rodrigo Moya <rodrigo@gnome-db.org>
* frontend/workspace-window.c (workspace_window_new): create status
bar widget within the window contents. Set "with_functions" property
on the MgServer object, on successful connect. Create progress dialog.
(stop_dbms_update_cb): callback for cancelling metadata synchronization.
* frontend/workspace.c (create_widgets): moved out of workspace_init.
(workspace_new): call create_widgets after having set the server, since
we need it to create the MgSelector widget.
2004-02-08 Rodrigo Moya <rodrigo@gnome-db.org>
* frontend/workspace-window.c: use libmergeant's API instead of
directly using libgnomedb's.
(workspace_window_new): ditto.
(destroy_private_data_cb): unref the MgConf object.
(on_database_begin, on_database_commit, on_database_rollback):
disabled until I sort out the best way to use transactions with
libmergeant.
* frontend/workspace.[ch]: use libmergeant's API.
(workspace_get_connection, workspace_set_connection): removed.
(workspace_get_server, workspace_set_server): new functions.
2004-02-08 Rodrigo Moya <rodrigo@gnome-db.org>
* frontend/GNOME_Mergeant.server.in.in:
* frontend/application-component.[ch]:
* frontend/component-factory.[ch]: new files.
* frontend/main.c (main): initialize the component factory.
* frontend/Makefile.am: added new files to build.
2004-02-08 Rodrigo Moya <rodrigo@gnome-db.org>
* autogen.sh:
* configure.in: some fixes to make it work with latest auto*.
* frontend/*.c:
* testing/*.c:
* libmergeant/*.c:
* libmergeant/handlers/*.c:
* libmergeant/handlers/plugins/*.c: don't include config.h, all
definitions are passed on the compilation line.
* testing/mg-test-selector.c (query_exec_cb): removed use of
undefined symbol.
2004-02-07 Rodrigo Moya <rodrigo@gnome-db.org>
* lib/*:
* src/*: removed old code.
2004-02-07 Robert Sedak <robert.sedak@sk.htnet.hr>
* configure.in: Added "hr" (Croatian) to ALL_LINGUAS.
2004-02-04 Kostas Papadimas <pkst@gnome.org>
* configure.in: Added "el" in ALL_LINGUAS.
2004-02-01 Vivien Malerba <malerba@gnome-db.org>
* libmergeant/*:
* extra/*:
* testing/*: Lots of bug fixes and improvements.
2003-09-29 Christian Neumair <chris@gnome-de.org>
* libmergeant/*.c: Heavily cleaned up strings (#123387).
2003-09-25 Rodrigo Moya <rodrigo@gnome-db.org>
* extra/Makefile.am: s/LIBMERGEANT/MERGEANT.
2003-09-22 Rodrigo Moya <rodrigo@gnome-db.org>
* frontend/Makefile.am: link with libmergeant-2.la.
* configure.in:
* Makefile.am: added extra/ directory to the build.
2003-09-21 Rodrigo Moya <rodrigo@gnome-db.org>
* testing/Makefile.am:
* libmergeant/handlers/plugins/Makefile.am:
* libmergeant/handlers/Makefile.am: fixed CFLAGS.
* configure.in: added libmergeant so version stuff. Generate Makefile's
in missing directories.
2003-09-20 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in: require libgda and libgnomedb from CVS.
2003-09-20 Rodrigo Moya <rodrigo@gnome-db.org>
* frontend/mergeant.xml: set icons for COMMIT/ROLLBACK, and added them
to the toolbar.
* libmergeant/*:
* examples/*:
* testing/*: added stuff from the libmergeant module.
* examples/PostgreSQL/*: removed old examples.
* TODO: merged from libmergeant.
2003-09-19 Rodrigo Moya <rodrigo@gnome-db.org>
* frontend/mergeant.xml: added new menu and toolbar items.
* frontend/workspace-window.c (on_edit_delete, on_database_begin,
on_database_commit, on_database_rollback, on_help_about):
callbacks for new UI items.
(workspace_window_sensitize_ui): new function.
(workspace_window_new): sensitize UI.
(destroy_private_data_cb): free the pending transaction.
* frontend/workspace-window.h: added new prototypes.
* frontend/workspace.c (workspace_init): fixed spacing for
gray bar widget.
2003-09-18 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in:
* Makefile.am: dont compile src/ directory, but frontend/ instead,
which is where the new UI is.
* frontend/*: started new frontend, mainly the multiple window
management, and the starting of the workspace.
2003-09-01 Metin Amiroff <metin@karegen.com>
configure.in: Added "az" in ALL_LINGUAS.
2003-07-25 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (add_menus): use 'Data Sources...' for the
menu item, as with Gnumeric and Abiword.
2003-07-22 Wang Jian <lark@linux.net.cn>
* configure.in: Added "zh_CN" in ALL_LINGUAS.
2003-06-13 Guntupalli Karunakar <karunakar@freedomink.org>
* configure.in: Added "ml" in ALL_LINGUAS.
2003-06-08 Rodrigo Moya <rodrigo@gnome-db.org>
Released 0.12.1
2003-06-04 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (build_main_window): use
gtk_window_set_default_size instead of gtk_widget_set_size_request.
2003-06-03 Rodrigo Moya <rodrigo@gnome-db.org>
Should fix crash in #113623
* src/data-default-handler.c (ts_free_extension): check pointer before
freeing it.
2003-05-30 Adam Tauno Williams <adam@morrison-ind.com>
* mergeant.spec.in: added missing plugins directory.
2003-05-28 Rodrigo Moya <rodrigo@gnome-db.org>
Released 0.12.0
2003-05-16 Danilo Å egan <dsegan@gmx.net>
* configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.
2003-05-12 Frederic Crozat <fcrozat@mandrakesoft.com>
Fixes #111354
* configure.in: made plugins install directory FHS compliant.
2003-05-10 Rodrigo Moya <rodrigo@gnome-db.org>
* src/settings.c (settings_dialog_display): use "Mergeant Preferences"
for the preferences window's title.
* src/conf-manager.c: added missing header.
(add_menus, add_toolbar): don't hide menu items, but disable them, as
per the HIG.
(add_toolbar): removed 'Contents' item.
* src/interface_cb.[ch]:
* src/query-create-druid.c: fixed headers.
* mergeant.desktop.in: HIG-ify application name and comment.
2003-05-08 C.J. Collier <cjcollier@colliertech.org>
* doc/C/mergeant.sgml: fixed typo.
2003-05-02 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Catalan (ca) to ALL_LINGUAS
2003-04-11 Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
* src/server-rs.c: don't convert the stringified value to UTF8.
Providers are supposed to return UTF8.
2003-03-18 Akira TAGOH <tagoh@gnome-db.org>
* src/plugins/netaddr/Makefile.am (libdir),
src/plugins/picts/Makefile.am (libdir),
src/plugins/sample/Makefile.am (libdir): use $(MERGEANT_Plugdir)
instead of $(data)/$(PACKAGE)/plugins.
2003-03-16 Roozbeh Pournader <roozbeh@sharif.edu>
* configure.in: Added "fa" to ALL_LINGUAS.
2003-03-09 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpageseq.c (main_page_seq_drop_cb): fixed memory leak.
2003-03-09 Rodrigo Moya <rodrigo@gnome-db.org>
Released 0.11.0
2003-03-04 Yuriy Syrota <rasta renome.rovno.ua>
* configure.in: Added "uk" (Ukrainian) to ALL_LINGUAS.
2003-02-26 Duarte Loreto <happyguy_pt@hotmail.com>
* configure.in: Added "pt" to ALL_LINGUAS.
2003-02-18 Rodrigo Moya <rodrigo@gnome-db.org>
* src/settings.c (settings_dialog_display): removed shortcut bar
and made dialog similar to Nautilus 2.2 preferences.
(database_settings_new, interface_settings_new): new cool settings
dialog's tabs.
* src/settings-utils.c (settings_utils_new_integer_entry): connect
to "changed" signal on GtkEntry.
(int_entry_changed_cb): synchronize configuration entry when changed.
2003-02-18 Rodrigo Moya <rodrigo@gnome-db.org>
* src/settings.c (interface_settings_new): made the frames occupy
all the available space.
2003-02-15 Rodrigo Moya <rodrigo@gnome-db.org>
Fixes #103094
* configure.in: require libgnomedb's latest CVS version.
* src/interface_cb.c (ask_commit_transaction): new function to
create a HIG-compliant dialog for asking the user whether to
commit the pending transaction or not.
(sql_conn_close_cb, quit_cb): use the above function.
* src/conf-manager.c (add_toolbar):
(add_menus): use new libgnomedb's stock icons.
2003-02-05 Rodrigo Moya <rodrigo@gnome-db.org>
Fixes #105178
* src/object-selector-priv.h: fixed mismatched #ifdef/#define.
2003-02-03 Daniel Yacob <locales@geez.org>
* configure.ac: Added "am" (Amharic) to ALL_LINGUAS.
2003-01-28 Yanko Kaneti <yaneti@declera.com>
* mergeant.spec.in: Update/Rewrite
* doc/C/Makefile.am: Respect DESTDIR. Update the targets to make it
work with different db2html versions. Install a index.html symlink
if the file is not already present.
2003-01-27 Rodrigo Moya <rodrigo@gnome-db.org>
Released 0.10.0
2003-01-26 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpageenv.[ch]: replaced GtkCList with GnomeDbGrid.
* src/conf-manager.c (build_main_window): don't gtk_widget_show_all
the forms page and removed the extra VBox which made the toolbar
look different than in the other pages.
2003-01-26 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagesql.[ch]: replaced GtkCList with GnomeDbGrid.
(main_page_seq_init): create the GnomeDbGrid widget here.
(selection_made, selection_unamed): changed to match the
GnomeDbGrid's signals.
(main_page_seq_add_cb): added data to the grid's data model.
(main_page_seq_drop_cb): likewise.
(main_page_db_updated_cb): likewise.
(main_page_seq_conn_close_cb): likewise.
2003-01-26 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagetable.c (main_page_table_conn_close_cb): no need
to set to NULL the row data, the grid widget updates it.
(main_page_table_drop_cb, main_page_db_updated_cb): re-added
the g_assert lines.
2003-01-25 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagetable.c (main_page_table_init): connect to
"create_popup_menu" signal on the GnomeDbGridWidget.
(grid_create_popup_cb): add custom menu items to the grid popup menu.
(main_page_db_updated_cb): replaced the g_assert line with a simple
continue, since it's better to not crash while we find the problem.
2003-01-25 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagetable.c (main_page_table_init): connect to
"double_click" signal on the GnomeDbGrid widget.
(grid_double_clicked_cb): replaced part of the press_handler_event
with this function.
* src/conf-manager.c (add_menus): register the View menu items to be
shown only when a connection is opened, and fixed shortcuts for them.
2003-01-22 Rodrigo Moya <rodrigo@gnome-db.org>
src/mainpagesql.c: added a notebook in the grid area, to display more
information about the resultsets returned by the database server.
(main_page_sql_init): create the notebook here and added log window.
(run_sql_cb): add logging information to the logging page.
2003-01-22 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (add_toolbar): don't disable the help button!
2003-01-22 Vivien Malerba <malerba@gnome-db.org>
* src/conf-manager.c: fixed a bug in the toolbar and added keyboard shortcuts to the entries
in the "View" menu
* src/mainpagetable.c: various code cleanups
2003-01-22 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in: use libgnomeprint-2.2 and libgnomeprintui-2.2.
* src/conf-manager.h: adapted to new libgnomeprint*.
* src/conf-manager.c (add_toolbar): added Help button to toolbar.
2003-01-22 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Dutch (nl), Norwegian Bokmaal (no)
to ALL_LINGUAS
2003-01-20 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (add_menus): set icons for COMMIT/ROLLBACK items
and installed menu hints for status bar.
(add_toolbar): added COMMIT/ROLLBACK items to the toolbar.
2003-01-19 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (build_main_window): removed notebook's border.
(conf_manager_get_title): use HIG style for window title, as suggested
by Kenneth.
2003-01-19 Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
* src/conf-manager.h: added 'last_failed' field.
* src/interface_cb.c:
(sql_conn_open_cb): don't connect automatically if the last attempt
failed.
(options_config_cb): fixed typo.
2003-01-19 Christian Neumair <chris@gnome-de.org>
* data/.cvsignore: Added.
* data/mergeant.keys.in: Marked category for translation, removed "."
from description field
2003-01-19 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (build_main_window): hide notebook's borders.
(conf_manager_get_title): adapted window title to HIG.
2003-01-19 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagetable.c (selection_cleared_cb): don't make insensitive
the 'New table' button.
2003-01-18 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagesql.c (main_page_sql_new): connect to conn_closed signal
on the ServerAccess object to...
(connection_closed_cb): ...cleanup widgets' contents.
2003-01-17 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagetable.[ch]: use GnomeDbGrid widget instead of GtkCList.
(selection_cleared): new signal to clear the selection.
2003-01-17 Vivien Malerba <malerba@gnome-db.org>
* src/query.c: fixed a bug in the joins lists management
* src/canvas-query-join.c: added a representation for joins with
unusual conditions (non like "a=b [AND c=d [AND...]]")
2003-01-17 Christian Neumair <chris@gnome-de.org>
* src/interface_cb.c (show_tables_page_cb): Changed string to match
another. Reduces the number of gettext strings.
2003-01-17 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in:
* doc/mergeant-C.omf.in: fixed documentation install directory for making it
work with GnomeProgram/GnomeHelp.
* src/conf-manager.c (add_menus): added Help menu item.
(help_contents_cb): callback for Help menu item.
2003-01-16 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (conf_manager_finish_prepare): connect to the
"event_notification" signal instead of "error" for the ServerAccess
object.
* src/interface_cb.[ch] (sql_server_catch_errors_cb): renamed to
sql_server_event_cb to accept all event notifications for the client.
2003-01-16 Rodrigo Moya <rodrigo@gnome-db.org>
* src/settings.c (database_settings_new): set visibility to FALSE
on password entry.
2003-01-15 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagesql.c (manage_placeholders): removed debugging code.
* src/tableedit.c (table_edit_initialize, update_seq_list_cb):
don't use the sequence combo box if we haven't created it.
2003-01-14 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagesql.c (manage_placeholders): fixed to really work.
* data/mergeant.keys.in: fixed description.
2003-01-14 Vivien Malerba <malerba@gnome-db.org>
* doc/C/[various]: started updating the user documentation
* examples/PostgreSQL/sales.sql: improved the example with keys
2003-01-12 Rodrigo Moya <rodrigo@gnome-db.org>
* data/gnome-application-x-mergeant.png: new MIME icon, for now just a
copy of mergeant.png.
* data/Makefile.am: install new icon.
2003-01-12 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in:
* Makefile.am:
* data/: added new directory for data files.
* data/mergeant.applications:
* data/mergeant.keys.in:
* data/mergeant.mime: added MIME-related data files.
* src/mainpagesql.c (manage_placeholders): new function to manage the
SQL commands, look for placeholders, and ask the user for values for
them.
(run_sql_cb): call manage_placeholders before sending the SQL command
to the provider.
2003-01-12 Rodrigo Moya <rodrigo@gnome-db.org>
* src/settings.c (interface_settings_new): added option for new
configuration entry for the source editor.
2003-01-11 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagesql.c (main_page_sql_init): removed GtkFrame around
GnomeDbEditor widget.
* src/settings-utils.[ch] (settings_utils_new_integer_entry): new
function.
* src/settings.c (interface_settings_new): added source editor widget
options to interface settings tab.
2003-01-11 Rodrigo Moya <rodrigo@gnome-db.org>
* src/query-editor.c:
* src/mainpagesql.c: replaced GnomeDbSqlEditor, now dead, with
GnomeDbEditor.
2003-01-11 Rodrigo Moya <rodrigo@gnome-db.org>
Fixes #103096
* src/interface_cb.c (sql_begin_trans_cb): fixed typo.
2003-01-11 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (add_menus): merged Database and Connection menus
into one menu only, hiding/showing some more menu items when
connecting/disconnecting. Added View menu.
* src/interfac_cb.[ch] (view_tables_tab_cb, view_sequences_tab_cb,
view_queries_tab_cb, view_forms_tab_cb, view_sql_tab_cb): callbacks
for the View menu items.
(show_seqs_page_cb): only display the page if the underlying data
source supports sequences.
2003-01-11 Rodrigo Moya <rodrigo@gnome-db.org>
* src/settings.c (interface_settings_new): added 'Show shortcut bar'
option to main window configuration options.
(settings_get_show_shortcut_bar): new function.
* src/settings.h: moved configuration entries #define's from
settings.c.
* src/conf-manager.c (conf_manager_init): added config notification
callback.
(config_notification_cb): added processing of configuration changes.
2003-01-10 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (build_main_window): enabled the tooltips,
and created an icon in the status area for marking the current
page.
* src/interface_cb.c (sql__begin_trans_cb, sql_commit_trans_cb,
sql_rollback_trans_cb): set the tooltip text appropriately.
(show_tables_page_cb, show_seqs_page_cb, show_queries_page_cb,
show_forms_page_cb, show_sql_page_cb): likewise.
2003-01-10 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.h: added needed fields for the icon status area.
* src/conf-manager.c (build_main_window): create icon status area.
* src/interface_cb.c (sql_begin_trans_cb, sql_commit_trans_cb,
sql_rollback_trans_cb): changed transation icon on status area.
2003-01-10 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (conf_manager_init): initialize
current_transaction field.
* src/interface_cb.c (sql_conn_close_cb, quit_cb): if there's
a transaction pending, ask the user what to do with it.
2003-01-10 Rodrigo Moya <rodrigo@gnome-db.org>
* src/interface_cb.[ch] (sql_begin_trans_cb, sql_commit_trans_cb,
sql_rollback_trans_cb): new callback functions for new menu items.
* src/conf-manager.h: added 'current_transaction' item to ConfManager.
* src/conf-manager.c (add_menus): added transaction-related menu
items.
2003-01-09 Rodrigo Moya <rodrigo@gnome-db.org>
Fixes #69504
* mergeant.c (main.c): connect to session management signals.
(removed_from_session_cb, save_session_cb): added implementation
of session management.
2003-01-09 Rodrigo Moya <rodrigo@gnome-db.org>
* mergeant.desktop.in: added StartupNotify entry.
* src/conf-manager.c (register_icon): free leaked string.
* src/settings.c (interface_settings_new): fixed frame title.
2003-01-09 Rodrigo Moya <rodrigo@gnome-db.org>
* src/settings.[ch] (settings_get_remember_window_size,
settings_set_remember_window_size, settings_get_window_width,
settings_set_window_width, settings_get_window_height,
settings_set_window_height): new functions.
* src/conf-manager.c (build_main_window): set the remembered size for
the window. Replaced usage of gtk_widget_set_usize (deprecated) with
gtk_widget_set_size_request.
2003-01-09 Vivien Malerba <malerba@gnome-db.org>
* src/query.c: rewriting of the handling of joins destruction to fix a
bug
* src/conds-view.c, src/relship-view.c: simplified the handling of
drag and drop on the canvas
* src/canvas-query-cond.[ch]: improvements and bug fixes
* various clean ups
2002-12-22 Vivien Malerba <malerba@gnome-db.org>
* src/conf-manager.[ch] and lib/gnome-db-shortcut.[ch]: merged (slightly modified)
patch provided by Rémi Cohen-Scali for bug #101353
* added safe checkings on the schemas returned by the providers
* improved the way QueryCond objects are handled within Query objects
* started a QueryCond editor (src/canvas-query-cond.[ch] and
src/conds-view.[ch])
2002-12-19 Vivien Malerba <malerba@gnome-db.org>
* src/server-rs.[ch]: added a function to test the number of columns and columns types
for a GdaDataModel.
* src/database.c: now testing what the provider returns for the SEQUENCES schema
and warns if the provider is not conformant
2002-12-14 Christophe Merlet <redfox@redfoxcenter.org>
* src/conf-manager.c: Updated my email address.
2002-12-13 Vivien Malerba <malerba@gnome-db.org>
* A Query can now contain non activated QueryField objects and still be saved and loaded back
* Improved the queries edition handling with better QueryField equalities recognized
* improved the query editor GUI (uncompleted fields are marked in red, fixed problems with
wrong data type saving and loading)
* created the PackedTreeView widget which adds two (up and down) buttons by the side of a GtkTreeView
and emits a "swap_required" signal when the user presses on one of the buttons. The buttons'
sensitiveness is updated with the selection in the GtkTreeView.
2002-12-12 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in: require the same libgda version than mergeant itself.
2002-12-05 Vivien Malerba <malerba@gnome-db.org>
* Query edition: objects references management corrections, minor GUI
improvements.
* Relations diagram: bug fixed
* Query: joins lists handling bug fixed
2002-11-19 Hasbullah BIn Pit <sebol@ikhlas.com>
* configure.in: Added "ms" to ALL_LINGUAS.
2002-11-15 Vivien Malerba <malerba@gnome-db.org>
* Changed the whole management technique of the QueryField, QueryJoin,
QueryCond and QueryView objects (was using weak references and now
uses the normal GObject references).
* The QueryJoin object now uses a QueryCond object to store the
condition associated to a join
* The QueryCond has been improved
* Various small improvements (tooltip on a joi, etc) and bug fixes.
2002-11-08 Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
* src/server-data.c:
(server_aggregate_update_list): exit from the loop when element is
found.
2002-11-05 Vivien Malerba <malerba@gnome-db.org>
* Query edition: improvements and bug fixes
2002-11-03 Rodrigo Moya <rodrigo@gnome-db.org>
* Makefile.am: EXTRA_DIST missing files.
2002-10-31 Vivien Malerba <malerba@gnome-db.org>
* src/query-view.c: new signals ("content_*")
* src/canvas-query-view.c and src/query-join.c: modifications to take into account
the new QueryView signals
* src/query-fields/*: almost finished the widgets to edit the different QueryField objects
* src/object-selector.c: added some new icons (in mergeant only since they have no
counterpart in libgnomedb) and cleaned some bugs
* src/query-editor-fields.c and src/query-editor-expr.c: many improvements
* src/conf-manager.c: updated the list of contributors
* various bug fixes
2002-10-29 Rodrigo Moya <rodrigo@gnome-db.org>
* src/server-access.c (server_access_open_connect): adapted to changes
in gda_client_open_connection.
2002-10-28 Rodrigo Moya <rodrigo@gnome-db.org>
* src/query-env-editor.c (edit_post_init): fixed typo.
2002-10-26 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (add_menus): removed 'Connection preferences'
menu item.
* src/interface_cb.c (options_config_cb): removed.
(quit_real): don't set the default data source, since that will be set
on the configuration dialog.
* src/settings-utils.c (settings_utils_new_dsn_selector): new function.
* src/settings.c (database_settings_new): added frame for connection
preferences configuration.
2002-10-26 Rodrigo Moya <rodrigo@gnome-db.org>
* src/settings.c (settings_get_default_datasource,
settings_set_default_datasource, settings_get_plugins_dir,
settings_set_plugins_dir): new functions.
* src/mergeant.c (prepare_app):
* src/interface_cb.c (quit_real): use settings_* accessor functions.
2002-10-26 Rodrigo Moya <rodrigo@gnome-db.org>
Fixes #96836
* src/interface_cb.c (sql_conn_open_cb, sql_conn_close_cb, quit_cb,
sql_server_conn_open_cb):
* src/server-access.c (server_access_do_query):
* src/conf-manager.c (build_main_window): don't include markup in
messages marked for translation.
2002-10-26 Rodrigo Moya <rodrigo@gnome-db.org>
Fixes #96844
* src/query-env-editor.c (edit_post_inst): don't split sentences into
several messages.
2002-10-26 Rodrigo Moya <rodrigo@gnome-db.org>
Fixes #96842
* src/mainpagequery.c (paste_query_button_cb): fixed typo.
2002-10-26 Rodrigo Moya <rodrigo@gnome-db.org>
Fixes #96838
* src/interface_cb.c (sql_server_conn_open_cb): fixed typo.
2002-10-25 Stanislav Brabec <sbrabec@suse.cz>
* configure.in: Added cs to ALL_LINGUAS.
2002-10-24 Rodrigo Moya <rodrigo@gnome-db.org>
* mergeant.spec.in: removed French documentation.
2002-10-24 Vivien Malerba <malerba@gnome-db.org>
* replaced the old ChoiceCombo widget with a new ItemSelector widget
which can represent either a GtkCombo or a GtkOptionMenu.
* improvements in the dialogs for edition of QueryField objects
2002-10-23 Rodrigo Moya <rodrigo@gnome-db.org>
Released 0.8.199
* src/Makefile.am: added missing header file.
* doc/Makefile.am: removed unexistant file from EXTRA_DIST.
* src/settings.c (interface_settings_new): added dummy page for the
interface tab.
2002-10-17 Vivien Malerba <malerba@gnome-db.org>
* src/object-selector*: Added support for extra arguments
* src/interface_cb.c: fixed bugs in the plugins handling
* various small improvements in the QueryField object
2002-10-16 Zbigniew Chyla <cyba@gnome.pl>
* configure.in (ALL_LINGUAS): Added pl (Polish).
2002-10-14 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in: added check for scrollkeeper.
* doc/Makefile.am:
* doc/mergeant-C.omf.in: added OMF files.
2002-10-14 Rodrigo Moya <rodrigo@gnome-db.org>
* doc/C/*.sgml: Docbook corrections to make it build.
* configure.in:
* doc/Makefile.am: disabled French documentation until it is
actually translated.
2002-10-12 Rodrigo Moya <rodrigo@gnome-db.org>
* src/interface_cb.c (config_display_plugins_cb): set the parent
window of the dialog being created.
2002-10-11 Rodrigo Moya <rodrigo@gnome-db.org>
* src/settings.[ch] (settings_dialog_display): added a frame for the
confirmation options. Removed plugins page.
* src/conf-manager.c (add_menus): removed user management menus,
since they're not implemented. Re-enabled plugins configuration
dialog, since it should go on its own, not integrated with the
rest of the settings.
2002-10-10 Rodrigo Moya <rodrigo@gnome-db.org>
* src/query-editor.c (query_editor_initialize): changed to use the
GnomeDbSqlEditor widget for the SQL-only queries.
2002-10-10 Vivien Malerba <malerba@gnome-db.org>
* src/object-selector.[ch]: improved the support for tables and views, functions, aggregates and
queries and rewrote part of the widget's internals.
2002-10-03 Vivien Malerba <malerba@gnome-db.org>
* src/object-selector.[ch]: new object to select an object (a DbTable, DbField, ...), not yet finished
* src/Makefile.am: removed the condlist.[ch] files which are not used anymore and added
the object-selector.[ch]
2002-10-02 Rodrigo Moya <rodrigo@gnome-db.org>
* src/Makefile.am: set correctly include directories so that 'make
distcheck' works again.
2002-09-26 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (add_menus): removed plugins menus, which will go
into the global preferences dialog.
* src/interface_cb.c (config_display_plugins_cb): moved...
* src/settings.c: ...to here.
2002-09-25 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (add_menus): s/Data Base/Database.
Added missing accelerator keys for main menus.
* configure.in: added GConf to dependencies.
* src/settings.c (settings_get/set_select_confirmation_dialog):
(settings_get/set_insert_confirmation_dialog):
(settings_get/set_delete_confirmation_dialog):
(settings_get/set_update_confirmation_dialog): new config access functions.
(settings_dialog_display): add tab for 'Database' configuration.
* src/settings-utils.[ch]: new files.
* src/Makefile.am: added new files.
2002-09-25 Vivien Malerba <malerba@gnome-db.org>
* created a DataHandler object to manage each plugin. DataHandler objects are managed
by the ServerAccess object
* improved the default DataEntry widgets for the date, time and timestamp data types.
* various code cleanups
2002-09-25 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (build_main_window): set the icon for the main
window.
2002-09-23 Rodrigo Moya <rodrigo@gnome-db.org>
* src/interface_cb.c (sql_conn_close_cb, sql_conn_open_cb, quit_cb):
set correctly the order of the buttons for dialogs.
2002-09-23 Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
* src/conf-manager.c: added _().
* src/server-data.c: fixed some leaks.
2002-09-22 Pablo Saratxaga <pablo@mandrakesoft.com>
* configure.in: Added Vietnamese (vi) to ALL_LINGUAS
2002-09-19 Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
* Makefile.am:
* mergeant.desktop.in:
* mergeant.spec.in:
* mergeant.spec_mdk.in: fixes to .desktop file installation directory
by Gregory Leblanc.
2002-09-18 Vivien Malerba <malerba@gnome-db.org>
* DbField now use GdaValue pointers to store default values
* DTD updated
* Improved the forms regarding default values
* ServerAccess now can ask for a confirmation before running a query depending
on the kind of operation performed by the query
* started to implement a DataHandler object to manage all user/data interfaces
(with plugins if necessary)
* Improved some dialogs to be more conform to the HIG
2002-09-14 Rodrigo Moya <rodrigo@gnome-db.org>
* doc//Makefile.am:
* doc/C/mergeant.sgml:
* doc/C/mergeant_core.sgml:
* doc/fr/Makefile.am:
* doc/fr/mergeant.sgml: s/gASQL/Mergeant.
* src/mainpagesql.c: added status messages for all operations.
2002-09-13 Rodrigo Moya <rodrigo@gnome-db.org>
* src/settings.[ch]: renamed from settingsdialog.[ch].
* src/Makefile.am:
* lib/Makefile.am: renamed private library to libmergeant.
2002-09-13 Vivien Malerba <malerba@gnome-db.org>
* small UI tweaks in the forms
* created a dialog to show something while the database structure
is being analysed
2002-09-12 Rodrigo Moya <rodrigo@gnome-db.org>
* src/settingsdialog.[ch]: new files for the implementation of the
settings dialog.
* src/conf-manager.c (add_menus): added 'Preferences' menu item.
* src/interface_cb.[ch] (run_preferences_cb): new callback function
for 'Preferences' menu item.
* src/Makefile.am: sorted SOURCES in alphabetical order, the list is
too big.
2002-09-12 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagequery.c (main_page_query_init):
* src/mainpageseq.c (main_page_seq_init):
* src/mainpageenv.c (main_page_env_init):
* src/mainpagetable.c (main_page_table_init): replaced the button box
with a nice toolbar.
2002-09-11 Vivien Malerba <malerba@gnome-db.org>
* DataEntry widget: improved status handling (contents modified/as
default/NULL)
* DataForm: improved refresh and added the INSERT, UPDATE and DELETE
operations
2002-09-11 Carlos Perello Marin <carlos@gnome-db.org>
* src/mergeant.c: Fixed the i18n/l10n init.
* mergeant.desktop: Removed, we now translate it with the .po file.
* configure.in: Small cleanup.
2002-09-09 Rodrigo Moya <rodrigo@gnome-db.org>
Released 0.8.193
2002-09-06 Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
* src/database.c: fixed signal names (value -> field).
2002-09-05 Vivien Malerba <malerba@gnome-db.org>
* improved the default methods to enter strings, boolean, number and
dates.
* improved the DataForm with colors to give an indication of a NULL
value, a default value or a value which is NULL but cannot be NULL.
2002-08-30 Rodrigo Moya <rodrigo@gnome-db.org>
* README: s/gASQL/Mergeant.
2002-08-29 Vivien Malerba <malerba@gnome-db.org>
* src/default-display.c: added a default handler to display binary data
* default display and plugins: bug fixes
* forms: action buttons more responsive and aware of the situation
2002-08-26 Rodrigo Moya <rodrigo@gnome-db.org>
* doc/fr/Makefile.am: fixed _DATA variable name.
* src/mainpagesql.c (main_page_sql_init): added clipboard related
buttons to toolbar.
(copy_sql_cb, cut_sql_cb, paste_sql_cb): implemented clipboard related
operations.
* src/sql-view.[ch]: removed.
2002-08-25 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagesql.c (open_sql_cb): implemented.
(save_sql_cb): implemented.
(main_page_sql_init): added separators for toolbar buttons.
(clear_sql_cb): new callback for the 'Clear' button.
(run_sql_cb, sql_history_cb): implemented command history.
* src/tableedit.c (table_edit_initialize): check pointers before using
them (this is a problem on the MySQL provider, but well, in either
case, mergeant shouldn't be crashing because of a NULL pointer).
2002-08-23 Vivien Malerba <malerba@gnome-db.org>
* reworked the QueryExec architecture and services, and improved the
DataForm widget.
2002-08-23 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.c (add_menus): added separators to menus.
2002-08-23 Rodrigo Moya <rodrigo@gnome-db.org>
* src/conf-manager.h: added 'title_bar' member to class.
* src/conf-manager.c (conf_manager_init): initialize new member.
(build_main_window): create title bar here.
* src/interface_cb.c (show_tables_page_cb, show_seqs_page_cb,
show_queries_page_cb, show_forms_page_cb, show_sql_page_cb): set the
text on the title bar widget.
2002-08-23 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagetable.c (view_records_button_cb):
* src/query-exec.c (prepare_query): added #ifdef debug for the call to
query_dump_contents.
2002-08-22 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in: removed extra code in AC_OUTPUT.
* Makefile.am: EXTRA_DIST intltool files.
* src/Makefile.am: added query-field-private.h to SOURCES.
* src/query-fields/Makefile.am: added $(top_builddir) to CFLAGS.
* src/query-fields/field.c: fixed headers.
* doc/C/Makefile.am:
* doc/fr/Makefile.am: added 'uninstall' target, since we're not
passing distcheck because of uninstalled files. The doc part needs to
be cleaned up.
2002-08-22 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagesql.c (main_page_sql_init): added a toolbar with common
operations on the SQL window.
(run_sql_cb): implemented 'Run SQL' button.
* src/mergeant.c (main): call gnome_db_init instead of gda_init, so
that we get GDA initialization and GNOME-DB icon stocks registered.
2002-08-22 Vivien Malerba <malerba@gnome-db.org>
* improved the schemas loading
2002-08-21 Vivien Malerba <malerba@gnome-db.org>
* Reworked the schemas loading
* src/query-fields/allfields.c: that kind of QueryField now represents all the fields
of a QueryView (ie all the fields of a table or of another query)
* converted from "Egnima" to "Mergeant".
2002-08-14 Vivien Malerba <malerba@gnome-db.org>
* Added the "is_hidden"property to a QueryField (when a QueryField has been added by
Mergeant itself).
* Started to implement the DataForm object
* Changed the query-fields/allfields.c file to also represent all the fields
of a Query.
2002-08-08 Vivien Malerba <malerba@gnome-db.org>
* Reworked the interface for the plugins and the built-in widgets
to manipulate data depending on the type
* Now every data which needs to be stored in memory is stored as a
GdaValue and not anymore as a string (that was a problem for binary
data).
* Created a new QueryField type to hold constant values
2002-08-01 Vivien Malerba <malerba@gnome-db.org>
* src/query-exec.c src/data-form.[ch] src/data-grid.[ch]: started
implementation of the queries execution and user interraction using
forms or grids.
2002-07-11 Rodrigo Moya <rodrigo@gnome-db.org>
* src/mainpagesql.[ch]: new files for the SQL editor page.
* src/conf-manager.c (build_main_window): add shortcut icon for the
SQL editor window, and used GNOME_DB_STOCK_TABLES stock icon for the
'Tables & Views' shortcut. Added code for creating the SQL window.
* src/interface_cb.[ch] (show_sql_page_cb): callback for the SQL
shortcut icon.
* src/Makefile.am: added new files.
2002-07-10 Rodrigo Moya <rodrigo@gnome-db.org>
* src/interface_cb (quit_real): use gnome_db_config API instead of
gnome_config.
(quit_cb): put buttons to match GNOME UI guidelines.
(about_cb): put translators separately, to match gnome_about_new.
* src/egnima.c (prepare_app): use gnome_db_config API.
2002-07-09 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in: bumped version number to 0.8.193 to match libgda and
libgnomedb.
* lib/Makefile.am: s/GNOMEDB_LIBS/EGNIMA_LIBS.
* doc/fr/Makefile.am:
* doc/C/Makefile.am: used correct variables for help directory.
2002-07-07 Vivien Malerba <malerba@gnome-db.org>
* implemented the QueryCond object to express Query conditions (in
WHERE and joins)
2002-07-03 Vivien Malerba <malerba@gnome-db.org>
* Fixed the canvas items, now works
* Moved from a GnomePropertyDialog to a GtkDialog for the plugins
preferences
2002-06-28 Vivien Malerba <malerba@gnome-db.org>
* overrided the "dispose" method for the objects which need to emit
signals when they are destroyed
* bug fixes for the objects referencing
* fixed the query-fields/func.c and query-fields/allfields.c with weak
references
* converted usage of GnomeDialog to GtkDialog
* fixes in the canvas items
2002-06-15 Rodrigo Moya <rodrigo@gnome-db.org>
* src/interface_cb.c (run_gnomedb_manager_cb): call
gnome_execute_shell to run gnome-database-properties, which is where
the database manager lives now.
2002-06-14 Vivien Malerba<malerba@gnome-db.org>
* Renamed gASQL to Egnima in most of the files.
* Made a first port to GNOME 2 (still using GtkObject as a base class)
2002-05-25 Rodrigo Moya <rodrigo@gnome-db.org>
* src/Makefile.am:
* src/sql-view.[ch]: new widget, from gnome-db, for a SQL interface.
2002-05-24 Rodrigo Moya <rodrigo@gnome-db.org>
* src/sql-window.[ch]: new widget for the SQL window.
2002-05-24 Rodrigo Moya <rodrigo@gnome-db.org>
* lib/gnome-db-shortcut.[ch]: moved from HEAD, since this is
currently being used in the gASQL sources.
* Makefile.am:
* configure.in: added new lib/ directory.
* src/Makefile.am: link with the new private library.
2002-05-23 Rodrigo Moya <rodrigo@gnome-db.org>
* src/server-access.[ch]: ported to new libgda API. For this,
don't inherit from GdaConnection, but from GtkObject, and added
a GdaConnection member to ServerAccess.
(server_access_init): use the shared GdaClient for all connections.
(server_access_new): no need for a CORBA_ORB parameter here.
(server_access_destroy): check the number of references to the shared
GdaClient object, and set it to NULL if it's the last one.
(server_access_open_connect): use the 'gda_client' member to
open a new connection. Free the structure returned by
gda_config_find_data_source (was gda_dsn_find_by_name).
* libltdl/*: removed unused libltdl.
2002-05-22 Rodrigo Moya <rodrigo@gnome-db.org>
* configure.in:
* Makefile.am:
* src/plugins/netaddr/Makefile.am:
* src/plugins/picts/Makefile.am:
* src/plugins/sample/Makefile.am:
* src/query-fields/Makefile.am:
* src/Makefile.am:
* src/datadisplay-common.h:
* src/server-access.c: don't use libltdl, but GModule.
2002-05-19 Rodrigo Moya <rodrigo@gnome-db.org>
* acconfig.h: #undef GETTEXT_PACKAGE.
* configure.in:
* Makefile.am: disabled libltdl directory. We should
change this to use GModule instead.
2002-05-19 Rodrigo Moya <rodrigo@gnome-db.org>
Started merge of gASQL and the gnome-db front end, being gASQL
the base for the merge, where some current gnome-db features will
be merged in.
* AUTHORS: added myself.
* autogen.sh:
* configure.in:
* Makefile.am:
* src/Makefile.am: ported to GNOME 2.
2002-03-14 Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
* configure.in: Added "sk" to LINGUAS.
01/26/2002
* first steps of implementation of the new Relationships GUI.
01/23/2002
* separated the QueryEnv from the widget to edit it: creation of a QueryEnvEdit
object for that purpose (several ones can be opened at the same time
* saving and loading of QueryEnvs now implemented in the QueryEnv object
11/01/2002
* lots of changes including:
-> copy and Pate of queries now implemented
-> queries can have sub queries and saving and loading works
-> there is a new Main Page for the forms
* bug fixes
12/02/2001
* lots of changes and rewriting (and future writing):
-> a lot of objects renaming to simplify objects understanding
-> query edition removed
-> relations dialog removed
-> rewriting of the SqlQuery object to Query
-> creation of new objects
11/27/2001
* fixed Bonobo check in configure.in. AM_PATH_BONOBO does not seem to
work
* fixed libgda/gnome-db detection
10/14/2001
* Version 0.6-0.2.92 released
* merged the modifications on the Joins (to replace simple dependancies)
thanks to Fernando Martins
* applied the patch to rename some function calls for versions > 0.2.91 of
Gnome-DB/Libgda, thanks to Waldemar Furowski
* applied the patch to include a ($BONOBO_CFLAGS) in the Makefile, thanks
to Waldemar Furowski
09/05/2001
* added checks for LibGlade which is now required
* fixed various compile warnings
08/13/2001
* gASQL V0.6-0.2.90 released, now part of Gnome-DB
08/04/2001
* Added a password request dialog to provide one if necessayr when opening the
connection
* Fixed a memory leak bug with the g_slist_remove_link() functions
07/18/2001
* Various small UI improvments
* Better presentation and reaction of the relationships dialog
* New class of object to have a CList with two arrow buttons to exchange
entry positions in the clist
* reworked the quit and disconnect confirmation dialogs to have the possibility
to cancel, and also to have all in one dialog (not two anymore as it was).
06/07/2001
* Major updates to the Grid and Forms widgets for interaction
* Postgres Example redesing
05/18/2001
* Created the Grid and Form widgets to allow visualization of data
in a tabular or formular way.
05/02/2001
* Corrected a little bit the doc
* Implemented dialogs to prompt the user for missing values when
a query is about to be executed
04/28/2001
* Modified query execution handling and query execution management
03/23/2001
* Added "tr" to ALL_LINGUAS and reordered ALL_LINGUAS.
01/11/2001
* LOTS of things have changed in the last month, but I haven't kept up to date:
* for the graphical creation of SELECT queries, the following has changed:
- it is now possible to introduce values in the objects of the query
- it is possible to specify WHERE clauses (even some really complex ones)
- the dialog to create new objects in the query has been improved
* it is now possible to copy a query
* Before closing, the user is prompted to make sure this is what is wanted
* gASQL can now use libxml version 2.2.x as well as version 1.8.x
* Colorio Mauro <linuxbox@interfree.it> has provided an Italian translation
* some minor bug fixes
10/24/2000
* Aggregates with ANY data type as argument are now correctly handled
* code cleanup
10/23/2000
* major update to the XML save and load: now uses a DTD for validating
the XML file to load
* memory leaks fix with the XML interface
10/11/2000 (up to that date)
* heavy modifications to work with gnome-db and libgda V0.1.0
* the bonobo widgets cannot be launched anymore (for now...)
* added a link to run gnomedb-mgr from a menu to configure the data sources
* modifications to the configure script to specify locations for
gnome-db and libgda separately
* various bug fixes and adaptations
07/03/2000
* Updated the French and German translations.
* Updated the example
06/28/2000
* gASQL is now in the GNOME CVS, module gASQL
* added the autogen.sh script to generate and run the configure script
* reworked a bit the main UI
* fixed a nasty bug which would give an error if you reconnected after
disconnection and made a query.
06/20/2000
* completed the implementation to bind a plugin to individual tables' fields
* bug fixes in the plugin system (rescanning the plugins now works)
05/16/2000
* updated the bonobo stuff to use the GnomeDbControlWidget objects, so now
gASQL can use the gnome-db control components.
* some bug fixes with the GDA Datasources
05/15/2000
* added a small framework to integrate and display the owners of tables, etc
* added support for views (they appear in the same list as tables)
04/27/2000
* added a German translation, thanks to Gerhard Dieringer
04/26/2000
* added support for documentation to be generated from SGML sources
* added support for Bonobo control components (to enable usage of specific
dialogs to configure each DBMS). The components are 'exported' by a process
specific to each gnome-db provider. These components are part of gnome-db.
03/15/2000
* fixed bugs which caused problems with NULL values (not recognized as such)
03/14/2000
* packaging version 0.5.1 with french support, fixed a bug preventing
compilation with the postgres libs.
* the displaying of relations now remember its size
* improved general UI
* started to introduce the different supported features by the providers
* tables can now have associated comments
03/08/2000
* packaging of release 0.5.0 (sources and binaries)
03/07/2000
* fixed the automake stuff for the plugins.
* fixed some bugs.
03/03/2000
* created a new plugin to display/modify IP/mask addresses
03/01/2000
* set up the plugins system to display data types in a special way.
* reorganised the menus.
02/29/2000
* use gda-config script in configure script
* if an XML file is specified, loads the data types, functions and
aggregates from that file
* getting DB information from a gnome-db provider will show what is being
done at the moment in the statusbar, and the progressbar will move along
* updated french translations
02/22/2000
* Modified a lot of files to use gnome-db instead of a direct connection to
PostgreSQL only:
- changed SqlQueryRes structure
- changed SqlAccess structure
- changed the data displaying engine
- updated several other files
* lost for the moment the possibility to enter direct SQL queries
* Created a gasql.spec file to create source and binary RPMS
01/13/2000
* modified the configure scripts to add --enable-debug-signal
(to trace signals), --enable-debug (to have a special debug menu)
and --with-gnome-db=<dir>
01/12/2000
* fixed a bug about the display of dates and locales.
* removing a table entry now checks for integrity problems
|