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 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466
|
1999-11-21 18:32 sam
* NEWS, README, configure.in: Upped version numbers.
1999-11-11 23:16 bob
* src/tools.c: Remove my name from about screen. Bob.
1999-11-11 16:31 bob
* src/dim_list_menu.c: Fix left and right move commands. they're
bass ackwards.
1999-11-10 16:53 sam
* NEWS, README, configure.in: Upped version numbers, added changes.
1999-11-10 16:41 sam
* src/: edit.c, main.c: more free's that need to be g_free.
1999-11-10 16:38 sam
* src/sort.c: We use g_free not free.
1999-11-10 16:24 sam
* src/fileout.c: Changed HTML table output, by request of Norbert
Bladt.
1999-11-10 15:56 sam
* src/: menus.c, types.h: This should fix menu stuff.
1999-11-09 22:47 sam
* src/types.h: Took out unnecessary menu stuff.
1999-11-09 22:47 sam
* src/: dialog_initial.c, filein.c, report.c, sort.c: Fixed a few
memory leaks.
1999-11-08 10:38 keith
* src/filter.c: Try to fix crash-after-filter problem by selecting
_something_ afterwards.
1999-11-06 15:29 sam
* NEWS, README, configure.in: Upped versions. New release.
1999-11-06 15:21 sam
* src/report.c: Fixed static sized window title string.
1999-11-06 15:11 sam
* src/dim_list_menu.c: Fixed broken menu stuff in report mode.
1999-11-06 13:40 sam
* src/menus.c: Took out keyboard shortcuts to bring up menus.
1999-11-05 17:25 keith
* src/fileout.c: Fixes incorrect exporting of delimited files,
where the delimiter wasn't ever written. (!)
1999-11-05 17:02 sam
* NEWS, README, configure.in: Upped version numbers. And other
stuff.
1999-11-05 07:41 bob
* src/report.c: Fix bug that allowed reports to be set up with no
columns.
1999-11-02 22:41 keith
* po/POTFILES.in: Fixes build error due to nonexistent build_list.c
1999-11-02 00:48 sam
* src/: build_list.c, build_list.h, includes.h: Removed phased out
menu system stuff.
1999-11-02 00:44 sam
* src/filein.h: Mistake fixed.
1999-11-01 22:37 bob
* src/types.h: Add report_mode so can tell if there are menus or
not
1999-11-01 22:37 bob
* src/report.c: Keep track of mode so menus not dimmed when
non-existant
1999-11-01 22:37 bob
* src/dim_list_menu.c: Fix trying to dim non-existant report mode
menus
1999-11-01 22:37 bob
* src/main.c: Fix error dialog box to get killed off when not
wanted
1999-10-31 00:18 sam
* src/: Makefile.am, dim_list_menu.c, filein.h, includes.h,
menus.c, menus.h, plugin.c, plugin.h: New extensible menus, and
plugins.
1999-10-31 00:08 sam
* src/: types.h, sort.c, report.c, main.c, fileout.c, filein.c,
field.c: Filenames are now not a limited length. Also took out
some other string length limits.
1999-10-18 11:37 sam
* quicklist.spec.in: Release is 1 for our rpms.
1999-10-18 11:11 sam
* TODO: Testing the new CVS.
1999-09-22 01:26 sam
* quicklist.spec.in: Builds rpm less user specific.
1999-09-20 18:48 keith
* src/: filein.c, fileout.c, types.h: Adds ability to read/write
new nocase filters stuff.
1999-09-20 01:56 keith
* src/filter.c: Use g_free. Oops.
1999-09-20 01:49 keith
* src/: filter.c, types.h: Contains new filter features: allows
case-insensitive text comparisons and applies edited or new
filters.
1999-09-14 22:44 bob
* src/dialog_initial.c: Changed splash screen
1999-09-14 21:23 bob
* src/fileout.c: Writes <center> and <right> for html output
1999-09-14 21:06 bob
* src/fileout.c: Add some good stuff for selective output in export
box
1999-09-13 21:43 bob
* src/: filein.c, fileout.c, main.c: fix improper calls to
set_suffix, free to g_free, fixes crash trying to close imported
files.
1999-09-12 11:17 bob
* src/: tools.c, dialog_initial.c: Change Quicklist to QuickList
1999-09-10 16:40 sam
* NEWS, README, configure.in: New version stuff.
1999-09-10 16:37 sam
* src/: dialog_initial.c, filein.c: Added import file to the
initial dialog box.
1999-09-10 11:51 keith
* src/filter.c: Fixes bug #42, and applies a newly added filter.
1999-09-10 11:33 keith
* src/fileout.c: Fixes unterminated string constants.
1999-09-10 11:30 keith
* src/sort.c: Fixes prototype for qsort comparison function (SunCC
hates it).
1999-09-10 10:57 keith
* src/: dialog_initial.c, report.c: Fixes for SunCC/sgiCC.
Unterminated strings/bad pointer casts.
1999-09-08 14:06 sam
* gtksheet/gtksheet.c: Fixed the core dump with certain gtk+
themes. This probably needs to be handled more effectively in
GtkSheet or in the Gtk Themes package.
1999-09-06 21:05 bob
* src/tools.c: Changed my email address
1999-09-06 21:05 bob
* src/field.c: fix conversion of text to numeric bug.
1999-09-06 21:05 bob
* src/report.c: Not sure I did anything
1999-09-05 18:00 bob
* src/report.c: Make filters apply when they should
1999-09-05 18:00 bob
* src/types.h: Make report.filter and report.sort types correct (-1
is valid)
1999-09-05 18:00 bob
* src/field.c: Working around gtksheet bug that doesn't properly
delete columns
1999-09-05 13:48 bob
* src/tools.c: Changed bob's email address. replaced lotsa shows
with one show_all
1999-09-05 13:38 bob
* src/main.c: Problems with dialog boxes losing focus. switched to
modal. good.
1999-09-05 13:38 bob
* src/fileout.c: Problems with file type menu. show_all problem.
fixed.
1999-09-05 13:38 bob
* src/filein.c: File type menu not displaying. show_all problem
1999-09-05 13:38 bob
* src/field.c: Working on delete column issues. Not fixed.
Problem is in sheet
1999-09-05 10:04 bob
* src/build_list.c: fixed column move keystrokes so that they work
1999-09-05 09:44 bob
* src/filter.c: Removed g_message. no big deal.
1999-09-05 00:40 bob
* src/report.c: pop up menus didn't display names
1999-09-05 00:40 bob
* src/main.c: problem in focus_in_event if a dialog box open
1999-09-05 00:40 bob
* src/sort.c: pop-up menus didn't display names
1999-09-04 23:11 sam
* configure.in: Upped version numbers.
1999-09-04 23:05 sam
* NEWS, README: Upped version numbers.
1999-09-04 21:32 bob
* src/field.c: Fixed show_all bug
1999-09-03 15:29 sam
* src/Makefile.am: quicklist.xpm wasn't in the Makefile so it
wasn't being placed in the dist tar.
1999-09-03 14:44 sam
* BUGS, NEWS, README, configure.in, po/quicklist.pot: New version
new numbers.
1999-08-30 17:00 keith
* src/tools.c: Fixes cosmetic "flash" bug in match-match
situations.
1999-08-30 01:46 sam
* README: Added some contributors.
1999-08-30 01:36 sam
* src/: edit.c, field.c, filein.c, fileout.c, filter.c, sort.c:
Applied patch from Matt Kraai <kraai@ghs.com>. Also replaced some
other spots where it would be better to use the glib functions.
1999-08-29 16:03 keith
* src/filter.c: Should fix filter menu updating problems.
1999-08-24 12:52 bob
* src/report.c: Change show to show_all
1999-08-23 21:58 bob
* src/sort.c: Remove show and add show_all
1999-08-23 12:33 keith
* src/filter.c: Fixes problems in which adding/editing filters has
no effect.
1999-08-20 06:23 bob
* src/filein.c: Change to gtk_widget_show_all
1999-08-20 06:23 bob
* src/dialog_initial.c: change to gtk_widget_show_all
1999-08-13 12:21 sam
* configure.in: This seems to fix the multiple print systems
problem.
1999-08-13 12:21 sam
* autogen.sh: Removes config.cache now.
1999-08-12 19:13 bob
* src/edit.c: fix a bug in insert rows
1999-08-10 13:22 sam
* src/: dialog_initial.c, quicklist.xpm: Made the splash screen all
fancy looking.
1999-08-09 14:01 sam
* ChangeLog, NEWS, README, configure.in: Upped version numbers, and
added change information.
1999-08-09 13:30 bob
* src/main.c: fix so that 4 becomes 4pm only in am/pm formatted
times
1999-08-08 23:16 bob
* src/field.c: Make time and date left justified
1999-08-08 19:49 bob
* src/edit.c: Changed clipboard separator to \t instead of \\
1999-08-08 19:45 bob
* src/fileout.c: fix sequence of html header fields
1999-08-08 19:45 bob
* src/sort.c: Fix sort so that blank records go to end
1999-08-08 19:45 bob
* src/report.c: Fix what displays in edit screen when less than 6
records in file
1999-08-08 11:59 sam
* src/fileout.c: Adds the correct VERSION to the output file now.
1999-08-08 02:10 sam
* autogen.sh: Makes up for removing config.h.in
1999-08-07 20:19 bob
* src/main.c: Allows file name in command line
1999-08-07 20:19 bob
* src/filein.c: Allows file names from command line
1999-08-07 20:19 bob
* src/filein.h: Allows file names in command line
1999-08-07 12:47 sam
* src/fileout.c: Fixed file_type bug when exporting HTML, also
fixes bug with NULL data in a cell when exporting HTML.
1999-08-07 12:11 sam
* gtksheet/: ChangeLog, README, gtksheet.c, gtksheet.h,
gtksheetentry.c: New version of GtkSheet from Adrian.
1999-08-07 11:56 sam
* config.h.in: Modified by local system. Shouldn't be in CVS.
1999-08-07 11:31 sam
* configure.in: Fixes errors about assigning variable names.
1999-08-06 12:40 sam
* NEWS, README, configure.in: Bump up versions, and add all the new
info.
1999-08-06 12:40 sam
* src/filepr.h: Makes sure PRINT_COMMAND is defined to something.
1999-08-06 12:21 sam
* configure.in: This fixes a strange autoconf bug that was causing
libintl to be built when it isn't needed.
1999-07-21 11:45 keith
* src/filter.c: Fixes some apparent problems with new columns.
1999-07-17 17:10 keith
* src/filter.c: Fixes missing field.
1999-07-16 16:37 sam
* configure.in: Fixes problem when there is no lp or lpr on the
system.
1999-07-15 15:36 sam
* NEWS, README, configure.in: Prepped for new release.
1999-07-15 15:36 sam
* src/includes.h: This fixes a bug in the build process on some
platforms.
1999-07-14 16:46 sam
* configure.in: Should fix bug with compiling on systems with
multiple print subsystems.
1999-07-13 23:08 sam
* autogen.sh: Fixed some problems associated with not finding
gtk.m4 files.
1999-07-13 14:16 sam
* README: Jay wrote a new README.
1999-07-13 14:04 sam
* NEWS: Updated for new release.
1999-07-13 10:02 sam
* BUGS, configure.in: Upped the version number, and added a comment
to the BUGS file which probably should be nuked.
1999-07-08 12:33 sam
* gtksheet/gtksheet.c: New sheet from Adrian.
1999-07-08 12:20 sam
* samples/BugList.qlf: Killed some more bugs.
1999-07-06 13:40 sam
* doc/functions: Started documenting functions.
1999-07-06 12:18 sam
* gtksheet/gtksheet.c: New sheet from Adrian, with a minor bugfix.
1999-07-05 16:10 sam
* samples/BugList.qlf: Updated buglist.
1999-07-05 16:05 sam
* gtksheet/gtksheet.c: Fixed display problem when applying a filter
to a list.
1999-07-03 16:03 sam
* autogen.sh: Since aclocal.m4 was removed we need to run aclocal
before running autoconf and friends.
1999-07-02 14:34 sam
* samples/BugList.qlf: More Updates
1999-07-02 14:34 sam
* src/filepr.c: Doubly free is not doubly good.
1999-07-02 14:16 sam
* src/filepr.c: For a while printing wasn't working properly. I
tried about 50 things to get it to work right. For some reason I
restarted the printer and the code I had worked again. Check your
printer first.
Also had some incorrect symbols that caused printing to misbehave.
And added code to help with adding warnings in the future.
1999-07-02 14:16 sam
* src/filepr.c: Compile first then commit... quieted a warning.
1999-07-02 13:30 sam
* samples/BugList.qlf: More bugs, and some new report stuff.
1999-07-02 12:25 sam
* gtksheet/gtksheet.c: Fixes the problem with multiple cells
selected and key presses not working.
1999-06-30 18:46 sam
* aclocal.m4: This file shouldn't be in the CVS.
1999-06-30 17:09 sam
* config.h.in: Moved some symbols around. I'm not sure why this
has changed.
1999-06-30 17:09 sam
* src/: filein.c, report.c: Windows had this big ugly 5 pixel
border that was just ugly, and caused 10 pixels of wasted screen
space. I got rid of it. This makes the menubars be positioned
where they're suppose to be.
1999-06-30 15:59 sam
* po/quicklist.pot, src/filepr.c: Took out the entry boxes for
beginning and ending pages.
1999-06-29 18:52 sam
* src/filepr.c, po/quicklist.pot, src/filepr.h, src/report.c: New
and improved print dialog. Allows you to select print to printer
and print to file. Needs some more error reporting code, and
possibly a print status dialog.
1999-06-29 14:36 sam
* src/documentation: This file has been in doc/ for a while so I
deleted it.
1999-06-25 15:52 sam
* src/report.c: CVS screwed me up this time. Here's the version
that should be in the repository.
1999-06-25 15:41 sam
* src/: filepr.c, filepr.h: Beginning of the printing with the
fancy dialog. Pretty dialog works but does nothing right now. I
left the old print mechanism in report.c which will need to be
changed when this code is wrapped up.
1999-06-25 15:41 sam
* ChangeLog, po/quicklist.pot, src/report.c: ChangeLog
1999-06-24 12:31 sam
* doc/Makefile.am: Added the functions file to be installed under
the docs tree.
1999-06-24 12:28 sam
* gtksheet/Makefile.am: Install the gtksheet docs under
$prefix/quicklist-version/gtksheet.
1999-06-24 12:19 sam
* gtksheet/: bullet.xpm, center.xpm, demo.c, font.xpm,
gtkbordercombo.c, gtkbordercombo.h, gtkcolorcombo.c,
gtkcolorcombo.h, gtkcombobox.c, gtkcombobox.h, left.xpm, paint.xpm,
right.xpm, test_sheet.c: Got rid of all the files we don't need to
distribute.
1999-06-24 12:10 sam
* configure.in, quicklist.spec.in: Added an RPM spec file, and
support for it in autoconf.
1999-06-24 12:10 sam
* doc/Makefile.am: Adjusted paths so it installs properly within
the automake/rpm frame of mind.
1999-06-24 10:35 sam
* doc/functions: Added file to repository. This file documents the
functions in the program.
1999-06-20 11:29 keith
* src/: filter.c, filter.h: Removes private functions from header,
does 'apply -1 => show all'
1999-06-20 04:19 sam
* TODO: Updated the list.
1999-06-20 04:15 sam
* src/Makefile.am: Added a silly rule to count the lines of code.
1999-06-20 02:20 sam
* Makefile.am: It works ... I swear.
1999-06-20 02:17 sam
* Makefile.am: OK, I think the bloody date thing works now.
1999-06-20 02:11 sam
* Makefile.am: Small problem with building a snapshot.
1999-06-18 15:25 sam
* acconfig.h, config.h.in: Forgot a symbol in acconfig.h
1999-06-18 11:06 sam
* config.h.in, configure.in: Added printer subsystem detection
support.
1999-06-17 21:46 bob
* samples/BugList.qlf: More bugs. Where do they all come from?
1999-06-17 21:38 bob
* src/fileout.c: Files are backed up
1999-06-17 12:03 sam
* gtksheet/gtksheet.c: New Sheet from Adrian. The highlighting is
now in the main dist.
1999-06-16 23:17 bob
* src/report.c: Undo some filter stuff, waiting for Keith, need
call -1
1999-06-16 21:27 bob
* src/main.c: Dialog boxes get shut earlier
1999-06-16 21:17 bob
* src/: build_list.c, dim_list_menu.c, filein.c, filein.h,
fileout.c, fileout.h, types.h: import/export
1999-06-16 15:08 sam
* gtksheet/gtksheet.c: Hopefully the highlight color issue is
synced with the main gtksheet.
1999-06-16 13:08 sam
* Makefile.am: perl works a little better than sed. At least I
know perl better.
1999-06-15 22:51 bob
* src/: edit.c, field.c, filein.c, fileout.c, main.c, main.h,
report.c, sort.c, tools.c: big_draw
1999-06-15 22:51 bob
* src/dialog_initial.c: Show version number
1999-06-15 22:51 bob
* src/filter.c: big_draw and nothing more
1999-06-15 20:46 sam
* Makefile.am: When making a snapshot the VERSION string is
appended with the datestamp.
1999-06-15 19:35 sam
* Makefile.am: That didn't work too well. Try again later.
1999-06-15 19:26 sam
* Makefile.am: Changes to make snapshot so the date is in the
VERSION string.
1999-06-15 17:48 sam
* gtksheet/gtksheet.c: New sheet from Adrian.
1999-06-15 16:44 keith
* src/filter.c: Interactions with report should work.
1999-06-15 16:10 sam
* samples/: Bug list.qlf, BugList.qlf: Moved file to a sensible
name. It should show up in the nightly snapshot now.
1999-06-15 12:18 bob
* samples/Bug list.qlf: Update of bug status
1999-06-10 13:44 sam
* samples/Bug list.qlf: Added a sort by seriousness.
1999-06-10 07:32 bob
* samples/Bug list.qlf: Update
1999-06-10 07:27 bob
* samples/Bug list.qlf: Updated the list
1999-06-10 07:20 bob
* samples/Bug list.qlf: First shot at posting
1999-06-08 12:17 sam
* gtksheet/: ChangeLog, README, demo.c, gtkcolorcombo.c,
gtksheet.c: New sheet from Adrian.
1999-06-06 23:36 bob
* src/report.c: Made DOnot sort into --- Do not sort ---, same for
filters
1999-06-06 23:36 bob
* src/sort.c: Changed -- None -- to -- Unused --
1999-06-06 23:36 bob
* src/includes.h: Changed huge.val.h to math.h
1999-06-06 11:52 keith
* src/filter.c: Implements apply. All functionality should now be
in place. Outstanding issues: - Use radio instead of checkbox for
boolean selection - Handle addition/edit of filters to zero rules -
Deal with date/time formatting in compare entries (on-the-fly) -
BUGS!!!
1999-06-06 11:19 keith
* src/filter.c: Fixes off-by-1 storage
1999-06-05 22:09 bob
* src/types.h: Not sure what I did
1999-06-05 22:09 bob
* src/fileout.c: Bug in writing filters
1999-06-05 22:09 bob
* src/report.c: Bug, not fixed, in writing reports to non-existant
printers
1999-06-05 22:09 bob
* src/filein.c: Bugs in reading filters
1999-06-05 19:58 bob
* samples/1SampleFile.qlf: Fix some errors in filter definitions
1999-06-05 19:05 bob
* src/: types.h, includes.h: Fix HugeVal
1999-06-05 17:08 keith
* src/filter.c: Minor changes only.
1999-06-05 15:18 keith
* src/filter.c: Add and edit should now work. Added some more _()
wrappings for strings. A few improvements in error detection and
fewer global requirements.
1999-06-05 11:57 keith
* src/filter.c: Major updates, including using the new qls2d interp
function, some cleanup, fix for big bad bug in add that caused
cancel to not. Current status: Show all: 100% done and working.
Apply: Does nothing, but backend helpers are in place (70%) Add:
100% done and working. Edit: Still has some serious issues. About
70% done. Delete: 100% done and working.
1999-06-05 09:24 bob
* samples/1SampleFile.qlf: Making sense of the report layouts
1999-06-04 23:08 bob
* src/fileout.c: Makesure at least one row written,
1999-06-04 23:08 bob
* src/dim_list_menu.c: Fix bugin column dimming
1999-06-04 23:08 bob
* src/globals.h: Not sure
1999-06-04 23:08 bob
* src/main.c: Minor bug fixes
1999-06-04 23:08 bob
* src/filein.c: Fix bug relating to failure to read file properly
1999-06-04 21:08 keith
* src/tools.c: Fix for match always matching to current selection.
1999-06-04 21:08 keith
* src/filter.c: Precursor to massive filter update. Includes a few
structure improvements and cleanups, as well as delete filter
(works!) and enhancements to add/edit. Apply is still broken in
this revision. Next will use the new date/time/numeric value
functions.
1999-06-04 20:54 bob
* samples/1SampleFile.qlf: Fixed some internal errors
1999-06-04 20:54 bob
* samples/1SampleFile.qlf: More internal problems
1999-06-03 23:03 bob
* src/filein.c: Maybe no change
1999-06-03 23:03 bob
* src/: build_list.c, dim_list_menu.c, sort.c, sort.h, types.h:
Changed sort select to sort apply
1999-06-03 23:03 bob
* src/: edit.c, main.c, report.c: Bug fixes
1999-06-03 15:13 bob
* src/sort.c: A little cleanup of sort_compare`:wq
1999-06-02 21:51 bob
* src/: build_list.c, dim_list_menu.c, edit.c, edit.h, field.c,
fileout.c, main.c, report.c, tools.c, tools.h, types.h: Bug fixes
1999-06-02 19:24 sam
* gtksheet/: CONTRIB, ChangeLog, README, TODO, demo.c, gtksheet.c,
gtksheet.h: New version of GtkSheet from Adrian.
1999-05-30 15:34 bob
* src/sort.c: Bugs relating to date sorting
1999-05-30 15:34 bob
* src/main.c: Not sure
1999-05-30 15:34 bob
* src/types.h: report->sort and report->filter, 0 is valid -1 is
none
1999-05-30 15:34 bob
* src/fileout.c: Allow report->filter and report->sort to be
negative
1999-05-30 15:34 bob
* src/field.c: Allow report->sort and report->filter to be negative
1999-05-30 15:34 bob
* src/report.c: Report->sort == 0 is valid, -1 means none. same
for filter
1999-05-30 15:34 bob
* samples/1SampleFile.qlf: Fixed some field definition problems
1999-05-30 12:06 bob
* src/dialog_initial.c: Changed to "list" instead of "file"
1999-05-30 12:06 bob
* src/field.c: Fixed some date and time bugs
1999-05-30 00:29 bob
* src/main.c: Date formatting in qls2d ad d2qls
1999-05-30 00:29 bob
* src/build_list.c: Exit Quicklist instead of Exit
1999-05-30 00:29 bob
* src/includes.h: Added ctype.h
1999-05-30 00:29 bob
* src/filein.c: Revised date processing
1999-05-29 09:14 bob
* src/main.c: Don't know for sure
1999-05-29 09:14 bob
* src/field.c: Fix some time bugs
1999-05-24 21:35 bob
* src/main.c: Fix a few time bugs
1999-05-23 21:44 bob
* src/: field.c, main.c, main.h, report.c, sort.c: Add time
formatting
1999-05-19 21:05 bob
* src/edit.c: Get rid of printf for tracing
1999-05-19 21:05 bob
* src/main.h: check_if_changed`:wq
1999-05-19 21:05 bob
* src/: fileout.c, filter.c, report.c, sort.c, tools.c: Calls to
check_if_changed
1999-05-19 21:05 bob
* src/filein.c: calls to check_if_changed
1999-05-19 21:05 bob
* src/edit.c: calls to check_if_changed. Redo changed handler
1999-05-19 21:05 bob
* src/report.h: Don't know
1999-05-19 21:05 bob
* src/types.h: Support of activate routines
1999-05-19 21:05 bob
* src/field.h: Added new_file here where it belongs
1999-05-19 21:05 bob
* src/filein.h: DOn't know why
1999-05-19 21:05 bob
* src/main.c: Calls to check_if_changed. write check_if_changed.
1999-05-19 21:05 bob
* src/field.c: check_if_changed calls
1999-05-19 21:05 bob
* src/main.c: Get rid of printf trace codes
1999-05-19 17:23 sam
* src/: filein.c, fileout.c: Changed how dates are allocated this
should fix a memory leak and improve performance.
1999-05-17 22:52 bob
* src/dim_list_menu.c: Fixed a bug in edit-insert
1999-05-17 22:52 bob
* src/: main.c, report.c: Don't know
1999-05-17 22:52 bob
* src/filein.c: DOn't know
1999-05-16 23:37 bob
* src/field.c: Added input of number of decimal places
1999-05-16 23:37 bob
* src/types.h: Support for accepting decimal places in field.c
1999-05-15 22:17 bob
* src/field.c: Add formatting codes for numeric, date and time
1999-05-15 22:17 bob
* src/fileout.c: related to gdate
1999-05-15 22:17 bob
* src/filein.c: Related to gdate
1999-05-15 22:17 bob
* src/edit.h: Add Alt-E copy one cell
1999-05-15 22:17 bob
* src/types.h: Support of formatting boxes in field.c
1999-05-15 22:17 bob
* src/: build_list.c, dim_list_menu.c, main.c: Bug fixes
1999-05-15 22:17 bob
* src/main.h: Bug fixes`:wq
1999-05-15 22:17 bob
* src/edit.c: Bug fixes, mainly with fill down. Add Alt-E, copy
one cell
1999-05-15 22:17 bob
* src/report.c: Bug fixes, mainly adding focus_in_event
1999-05-15 22:17 bob
* src/sort.c: Don't know for sure. Maybe related to dates
1999-05-14 23:48 sam
* src/: filein.c, fileout.c: Made changes to file date format.
1999-05-14 22:34 sam
* samples/1SampleFile.qlf: Changed date format.
1999-05-13 22:42 bob
* src/sort.c: fix visible problem when sorting matched reocrds
1999-05-13 22:42 bob
* src/field.c: Add some sample date formats
1999-05-13 22:42 bob
* src/dim_list_menu.c: Just make show_all (filter) always on
1999-05-12 23:53 bob
* src/sort.c: Bug in moving rows after sort
1999-05-12 13:56 sam
* src/: filein.c, fileout.c, includes.h, sort.c: Added support to
load, save, and sort date fields.
1999-05-12 13:43 sam
* gtksheet/: gtksheet.c, gtksheet.h: Updated lots of stuff from
Adrian.
1999-05-12 13:43 sam
* po/quicklist.pot: Some more strings moved around.
1999-05-11 17:49 sam
* BUGS, configure.in, gtksheet/gtksheet.c, gtksheet/gtksheet.h,
samples/1SampleFile, samples/1SampleFile.qlf, src/build_list.c,
src/build_list.h, src/dialog_initial.c, src/dialog_initial.h,
src/dim_list_menu.c, src/dim_list_menu.h, src/edit.c, src/edit.h,
src/field.c, src/field.h, src/filein.c, src/filein.h,
src/fileout.c, src/fileout.h, src/filter.c, src/filter.h,
src/globals.h, src/main.c, src/main.h, src/report.c, src/report.h,
src/sort.c, src/sort.h, src/tools.c, src/tools.h, src/types.h:
Moved the DEVEL_0_0_5 branch to the HEAD branch.
1999-05-10 23:55 bob
* src/report.c: Added group and grand totals
1999-05-09 22:12 bob
* src/field.c: Some bugs in swap columns
1999-05-09 22:12 bob
* src/: filein.c, filein.h, report.c, sort.c: I don't know what I
changed
1999-05-09 22:12 bob
* src/field.h: Bugs in swap columns, I don't know
1999-05-09 18:59 keith
* src/: filter.c, filter.h: Many portions implemented. Plenty of
bugs added too. Add sort of works, as does edit now as well. Some
stuff still needs hooking up. Added the BLANK/NOTBLANK rules.
1999-05-09 17:50 keith
* src/tools.c: Compile fix for filter_show_all
1999-05-09 13:20 keith
* src/: filter.c, filter.h: Lots of warning fixes, more
implementation. Everything except edit and apply are hooked up.
1999-05-09 11:13 keith
* src/: filter.c, filter.h: Now has lots of the old matching stuff.
The selection logic is mostly done and the selection stuff from
sort works.
1999-05-08 23:48 bob
* src/types.h: Added enum of FIELD_TYPE
1999-05-08 19:09 keith
* src/: tools.c, tools.h: Cleanups
1999-05-08 15:26 keith
* src/tools.h: Cruft removal.
1999-05-08 15:26 keith
* src/tools.c: Fixes for focus/default issues. Removed last of
filter code. Minor cleanups and fixes to credits to eliminate
possible GTK-Critical warnings.
1999-05-07 23:19 bob
* src/edit.c: Not sure what I changed. Maybe just traps for
debugging
1999-05-07 23:19 bob
* src/sort.h: Not much I'll bet.
1999-05-07 23:19 bob
* src/sort.c: Completely rewrite sort method
1999-05-07 23:19 bob
* src/report.c: Sort automatically when entering report, and when
changing sort button`:wq
1999-05-07 23:19 bob
* src/main.c: Probably nothing
1999-05-07 22:32 keith
* src/types.h: Change current_compare for tools.c
1999-05-07 22:26 keith
* src/tools.c: Mostly minor fixes prior to the large filter/tools
merge-up.
1999-05-05 23:13 bob
* src/sort.c: Fixed loose ends, and bugs. Mostly works.
1999-05-05 00:11 bob
* src/sort.c: Major progress
1999-05-05 00:11 bob
* src/report.c: Don't know what I changed
1999-05-05 00:11 bob
* src/types.h: Remove sort_apply
1999-05-05 00:11 bob
* src/sort.h: Major progress on sort
1999-05-05 00:11 bob
* src/: build_list.c, dim_list_menu.c: Eliminate sort_apply
1999-05-04 19:17 bob
* src/filein.c: A bug appending .qlf
1999-05-04 19:17 bob
* src/sort.c: Just working on it
1999-05-04 19:17 bob
* src/fileout.c:
me compliance gnomel
1999-05-04 19:17 bob
* src/: dialog_initial.c, dialog_initial.h, fileout.h, types.h:
Gnome compliance
1999-05-04 19:17 bob
* src/build_list.c: Gnome compliance on some menu items
1999-05-04 11:05 sam
* src/sort.c: Made the fixes to the add/edit sort dialog.
1999-05-03 23:16 bob
* src/sort.c: Now should work for six levels of sort
1999-05-03 21:00 bob
* src/report.c: Added: add a column. Fixed: delete a column
1999-05-03 21:00 bob
* src/field.c: Make field delete adjust report layouts
1999-05-03 18:38 bob
* src/sort.c: Fixed a bug relating to blank entries
1999-05-02 23:10 bob
* src/sort.c: Cleaned up 1 compile warning.
1999-05-02 20:52 bob
* src/sort.c: My first changes. It sorts a column, but no sort
rules working yet
1999-05-02 20:52 bob
* src/main.c: Bug fixes, support sort, not much
1999-05-02 20:52 bob
* src/build_list.c: ADD Accelerators
1999-05-02 20:52 bob
* src/filein.c: Don't know what I changed
1999-05-02 20:52 bob
* src/main.h: Don't know
1999-05-02 20:52 bob
* src/types.h: Support sort a bit
1999-05-01 08:28 bob
* src/report.c: Used text_box instead of GTK_TEXT (front->text_box)
1999-05-01 08:20 bob
* src/filein.c: Using local *sheet instead of GTK_SHEET
(front->sheet)
1999-05-01 07:48 bob
* src/: fileout.c, globals.h, main.c: Not sure that I changed
anything
1999-05-01 07:48 bob
* src/dim_list_menu.c: Fixing bugs
1999-05-01 07:48 bob
* src/filein.c: Temporary changes looking for bugs
1999-05-01 07:48 bob
* src/edit.h: Activate bug, need gint return
1999-05-01 07:48 bob
* src/edit.c: Probably no change
1999-05-01 07:48 bob
* src/field.c: Don't know I changed anything.
1999-05-01 07:48 bob
* src/report.c: Broke up print_on_screen to call functions instead
of inline code
1999-05-01 07:48 bob
* src/types.h: Not sure I changed anything
1999-04-30 00:11 sam
* src/: build_list.c, sort.c, sort.h: Last stuff I'll probably do
on sort for a while. Some groundwork for the future is laid down.
1999-04-28 10:42 sam
* gtksheet/gtksheet.c: Nice new sheet from Adrian.
1999-04-27 19:34 sam
* gtksheet/gtksheet.c: Reversed the changes that Adrian sent. It
activated a nasty row and column selection bug.
1999-04-27 17:42 bob
* src/main.c: Bug that dialog boxes weren't cleared away.
1999-04-26 23:37 bob
* src/fileout.h: Not sure I did anything. Chasing bugs
1999-04-26 23:37 bob
* src/main.c: Bug fix in clean_destroy, several in fact
1999-04-26 23:37 bob
* src/dialog_initial.c: Bug chasing
1999-04-26 23:37 bob
* src/dim_list_menu.c: Fix report total dimming
1999-04-26 23:37 bob
* src/types.h: A change for reports
1999-04-26 23:37 bob
* src/report.c: Bug fixes`:wq
1999-04-26 23:37 bob
* src/main.h: A change for report's benefit
1999-04-26 23:37 bob
* src/dialog_initial.h: No change
1999-04-26 23:37 bob
* src/: filein.c, fileout.c: Not sure, maybe a bug or two
1999-04-26 23:37 bob
* src/edit.c: Not sure I did anything, maybe a bug
1999-04-26 22:05 sam
* gtksheet/gtksheet.c: New version from Adrian.
1999-04-25 21:32 bob
* src/types.h: Support of report.c, less globals
1999-04-25 21:32 bob
* src/filein.c: Trying to store width and height of window
1999-04-25 21:32 bob
* src/main.c: Support of report.c
1999-04-25 21:32 bob
* src/report.c: Finished the big stuff. Still buggy and missing
features, but close.
1999-04-25 21:32 bob
* src/fileout.c: Saving height and width of window
1999-04-25 21:32 bob
* src/field.c: Mostly for report.c
1999-04-25 21:32 bob
* src/edit.c: Changes for report
1999-04-23 23:48 bob
* src/: build_list.c, build_list.h, dim_list_menu.c, edit.c,
edit.h, field.c, filein.c, fileout.c, main.c, main.h, report.c,
report.h, types.h: Major work on report
1999-04-22 21:56 sam
* src/: build_list.c, sort.c, sort.h: New sort. Doesn't have all
the features as the old. But it is shaping into a kind of
consistent ``field selection'' interface.
1999-04-22 21:56 sam
* gtksheet/: gtksheet.c, gtksheet.h: New sheet from Adrian. Fixes
the scrollbar problems much better.
1999-04-21 19:13 sam
* samples/1SampleFile.qlf: branches: 1.1.2; file 1SampleFile.qlf
was initially added on branch DEVEL_0_0_5.
1999-04-21 19:13 sam
* samples/: 1SampleFile, 1SampleFile.qlf: Moved file.
1999-04-21 19:13 sam
* src/edit.c: Fixes the insert row bug (shows line number). Patch
from Bob.
1999-04-21 18:58 sam
* gtksheet/gtksheet.c: Fixed problem with nonsensitive buttons.
1999-04-21 13:57 sam
* BUGS: Add more bugs.
1999-04-20 00:02 sam
* BUGS: Added some bugs.
1999-04-19 23:05 bob
* src/report.h: First major shot at writing report. Incomplete fer
shure
1999-04-19 23:05 bob
* src/field.h: Begin writing report.c
1999-04-19 23:05 bob
* src/: dim_list_menu.c, dim_list_menu.h, filein.h: Start writing
report
1999-04-19 23:05 bob
* src/build_list.h: Report being written
1999-04-19 23:05 bob
* src/build_list.c:
rkin
1999-04-19 23:05 bob
* src/types.h: For writing report
1999-04-19 23:05 bob
* src/: filein.c, filter.c, main.c: Start writing report.c
1999-04-19 23:05 bob
* src/report.c: First major shot, incomplete
1999-04-19 23:05 bob
* src/field.c: Start of writing report
1999-04-19 22:35 bob
* src/edit.c: Report is now underway
1999-04-19 20:47 keith
* src/: tools.c, tools.h: Match and find reimplemented with simpler
logic. Match now works. Case sensitivity now works both on and
off.
1999-04-19 11:49 sam
* doc/Makefile.am: Fixed doc install path
1999-04-19 11:39 sam
* gtksheet/gtksheet.c: This actually fixes the scrollbar problem.
1999-04-18 17:45 sam
* doc/Makefile.am: Removed directory reference to quickfile.
1999-04-18 16:27 sam
* BUGS, INSTALL, Makefile.am, NEWS, TODO, autogen.sh, configure.in,
gtksheet/Makefile, gtksheet/Makefile.am, gtksheet/gtksheet.c,
src/Makefile.am, src/build_list.c, src/dialog_initial.c,
src/edit.c, src/edit.h, src/field.c, src/filein.c, src/filein.h,
src/fileout.c, src/fileout.h, src/globals.h, src/main.c,
src/main.h, src/report.c, src/tools.c, src/tools.h, src/types.h:
Merged the devel version with the current stable version.
1999-04-18 15:28 sam
* Makefile.am: The release doesn't need the autogen.sh
1999-04-18 14:57 sam
* BUGS, INSTALL, NEWS: Updated docs.
1999-04-18 14:57 sam
* TODO: branches: 1.1.2; Updated docs.
1999-04-18 14:35 sam
* src/Makefile.am: Added gtksheet as a dependency. Now when sheet
changes quicklist is rebuilt.
1999-04-18 14:35 sam
* po/quicklist.pot: More translation string updates.
1999-04-18 11:41 keith
* src/tools.c: Removed Frederic from developer list. Should be
ready for release now.
1999-04-18 01:01 bob
* src/edit.c: Ignore callbacks with row <0 or col < 0
1999-04-18 00:35 bob
* src/: build_list.c, dialog_initial.c, report.c: Remove some
comments
1999-04-18 00:27 bob
* src/fileout.c: Fixed bug in "close" multiple files
1999-04-18 00:27 bob
* src/edit.c: Problems with false changed signals from gtk sheet
1999-04-18 00:27 bob
* src/edit.h: Removed some unused global routines
1999-04-17 22:48 keith
* src/tools.c: Use the centralized dialog box control mechanism.
Make 'contains' work for Find on Text entries. Minor bug fixes.
1999-04-17 22:48 keith
* src/tools.h: Compilation fix for prototypes.
1999-04-17 20:47 sam
* gtksheet/gtksheet.c: Fixed the "embarassing twitching".
1999-04-17 20:05 sam
* autogen.sh: branches: 1.3.2; Whoops, small buglet with paths was
let in.
1999-04-17 19:59 sam
* autogen.sh: Works better now.
1999-04-17 19:15 sam
* autogen.sh: Adding file.
1999-04-17 17:17 sam
* gtksheet/Makefile.am: branches: 1.2.2; Fixed error when make all
was invoked in directory.
1999-04-17 16:50 sam
* Makefile.am, configure.in, gtksheet/Makefile,
gtksheet/Makefile.am, src/Makefile.am: Put the gtksheet Makefile
under automake.
1999-04-17 15:50 bob
* src/: main.c, filein.c: Problems of focus on multiple windows
1999-04-17 15:11 sam
* configure.in: Fixed broken version number.
1999-04-17 15:11 sam
* configure.in: Fixed the broken version number.
1999-04-17 14:16 anoncvs
* README: Dammit...
1999-04-17 14:16 anoncvs
* README: blah
1999-04-17 01:03 bob
* src/fileout.c: Problem clicking the destroy box on unchanged
files
1999-04-17 01:03 bob
* src/dialog_initial.c: Problem with killing off an unchanged file
1999-04-17 01:03 bob
* src/fileout.h: Problem with clicking on destroy for unchanged
files
1999-04-17 01:03 bob
* src/main.h: problerm setting delete_event on initial dialog
window
1999-04-17 01:03 bob
* src/main.c: Problem setting delete event on dialogs
1999-04-17 00:00 bob
* src/types.h: Rleated to save and saveas and dialog box control
1999-04-17 00:00 bob
* src/fileout.c: Save and save as changes
1999-04-17 00:00 bob
* src/edit.c: Mostly save stuff
1999-04-17 00:00 bob
* src/: main.c, filein.h: Related to save and save as
1999-04-17 00:00 bob
* src/globals.h: Related to save and saveas
1999-04-17 00:00 bob
* src/: field.c, filein.c: Mostly related to save
1999-04-16 22:47 keith
* src/tools.c: Warning fix.
1999-04-16 17:00 keith
* src/tools.c: Fixed some major bugs. Find now mostly works for
strings and dates.
1999-04-16 16:24 sam
* gtksheet/gtksheet.c: Changed the selection so that it's visible.
1999-04-16 12:59 sam
* src/fileout.c: Changed the HTML output to use the VERSION define.
1999-04-16 12:35 sam
* src/build_list.c: Changed the non-functioning sort callbacks to
sorry().
1999-04-16 12:16 sam
* configure.in, po/quicklist.pot: Upped the version to 0.0.4.
1999-04-16 12:16 sam
* configure.in, po/quicklist.pot: Changed Version number.
1999-04-14 12:03 sam
* gtksheet/gtksheet.c: branches: 1.10.2; More changes from Adrian.
This patch fixes row and column titles.
1999-04-13 23:46 sam
* gtksheet/gtksheet.c: More changes from Adrian. At this rate this
file will have the highest version number in the CVS.
1999-04-12 15:03 sam
* AUTHORS: Changed my email address.
1999-04-12 15:03 sam
* gtksheet/gtksheet.h: branches: 1.3.2; More changes from Adrian.
1999-04-12 15:03 sam
* gtksheet/gtksheet.c: More changes from Adrian.
1999-04-12 11:50 keith
* src/tools.c: branches: 1.9.2; Credits fixes
1999-04-12 10:18 keith
* AUTHORS: Now includes Sam. Frederic is removed per his request.
1999-04-11 18:58 sam
* gtksheet/gtksheet.c: More changes from Adrian to GtkSheet.
1999-04-11 16:49 bob
* src/field.c: branches: 1.17.2; Last_line vs line_ct
1999-04-11 16:49 bob
* src/fileout.c: branches: 1.11.2; Last_line vs line_ct
1999-04-11 16:49 bob
* src/filein.c: branches: 1.16.2; line_ct vs last_line
1999-04-11 16:21 bob
* src/field.c: Delete field
1999-04-11 16:21 bob
* src/edit.h: branches: 1.6.2; Bug fixes
1999-04-11 16:21 bob
* samples/1SampleFile: branches: 1.4.2; Just a few parameter
changes, add last field
1999-04-11 16:21 bob
* src/edit.c: branches: 1.17.2; Bug fixes
1999-04-11 16:21 bob
* src/dialog_initial.c: branches: 1.9.2; Bug fixes
1999-04-11 16:21 bob
* src/globals.h: branches: 1.10.2; Support new features
1999-04-11 16:21 bob
* src/types.h: branches: 1.10.2; Fool with line_ct vs last_line.
Shoundn't have.
1999-04-11 16:21 bob
* src/fileout.c: Better coding techniques. Bugs.
1999-04-11 16:21 bob
* src/main.c: branches: 1.16.2; Better methods.
1999-04-11 16:21 bob
* src/dim_list_menu.c: branches: 1.11.2; Bug fixes
1999-04-11 16:21 bob
* src/main.h: branches: 1.7.2; Add a couple of central routines
1999-04-11 16:21 bob
* src/build_list.c: branches: 1.13.2; Bug fixes
1999-04-11 16:21 bob
* src/filein.c: Bug fixes, cleaner ways of doing stuff
1999-04-10 18:30 sam
* gtksheet/gtksheet.c: Integrated new GtkSheet from Adrian.
1999-04-10 14:02 keith
* src/tools.c: Includes Credits dialog, removes references to
dialog1_win.
1999-04-09 14:22 sam
* gtksheet/Makefile: branches: 1.3.2; Made changes per Adrian's
new version of sheet.
1999-04-09 14:22 sam
* gtksheet/: gtksheet.c, test_sheet.c: Made changes per Adrian's
new version of sheet.
1999-04-08 22:52 bob
* src/globals.h: Event handler fixes
1999-04-08 22:52 bob
* src/filein.c: Some hard lessons about event handlers
1999-04-08 22:52 bob
* src/main.c:
Fix buges that woudl allow multiple windows
1999-04-08 22:52 bob
* src/field.c: Move left and move right
1999-04-08 22:52 bob
* src/main.h: Fix up globals so that they're externs
1999-04-08 22:52 bob
* src/fileout.c: bug fixes
1999-04-08 22:52 bob
* src/: edit.c, edit.h: Bug fixes
1999-04-07 20:02 bob
* src/field.c: Allowing replacement of text in entry box
1999-04-07 13:28 bob
* src/field.c: Fix focus on dialog box
1999-04-06 15:52 sam
* po/quicklist.pot, src/sort.c: branches: 1.8.2; More POT file
updates. Sort is moving towards good/real sort editing. Of course
I still have to implement the real sorting.
1999-04-06 15:52 sam
* src/sort.h: branches: 1.4.2; More POT file updates. Sort is
moving towards good/real sort editing. Of course I still have to
implement the real sorting.
1999-04-06 14:28 sam
* gtksheet/gtksheet.c: Small fix to get rid of error message unless
we freeze the table.
1999-04-06 13:30 sam
* gtksheet/: gtksheet.c, gtksheet.h: Integrated updates from
Adrian.
1999-04-06 12:22 sam
* src/tools.c: Changed field_ct to last_field, per Bob's change of
the whole_file struct.
1999-04-06 11:26 sam
* src/sort.c: Changed field_ct to last_field.
1999-04-06 09:37 bob
* src/filein.h: branches: 1.4.2; Add new file types
1999-04-06 09:37 bob
* samples/1SampleFile: Error in file
1999-04-06 09:37 bob
* src/build_list.c: Reconcile conflicting changes
1999-04-06 09:37 bob
* src/: build_list.c, field.c: Bug fixes
1999-04-06 09:23 bob
* src/filein.c: New types of input files
1999-04-06 09:23 bob
* src/fileout.c: New types of output files
1999-04-06 09:23 bob
* src/: edit.c, field.c, main.c: Bug fixes
1999-04-06 09:23 bob
* src/fileout.h: branches: 1.3.2; New types of output files
1999-04-06 09:23 bob
* src/globals.h: New types of files, bug fixes
1999-04-06 09:23 bob
* src/types.h: Cleanup mostly
1999-04-06 09:23 bob
* src/build_list.h: branches: 1.3.2; Bug fixes
1999-04-06 09:23 bob
* src/dim_list_menu.c: Bug fixes mostly
1999-04-06 09:23 bob
* src/field.h: branches: 1.4.2; Bug fixes
1999-04-04 22:29 sam
* gtksheet/Makefile, po/quicklist.pot, src/build_list.c,
src/sort.c, src/sort.h: Added debugging symbols to gtksheet build.
Updated Potfiles. Changed function names in sort.c. Changed the
sort dialog to be more general for both add and edit sorts. Add
sort finished (working). Edit sort started.
1999-04-04 15:27 keith
* src/tools.h: branches: 1.5.2; Should actually do something now.
Matches is exactl only though. Some GtkSheet/quicklist bugs seem to
cause things not to work well yet though.
1999-04-04 15:27 keith
* src/tools.c: Should actually do something now. Matches is exactl
only though. Some GtkSheet/quicklist bugs seem to cause things not
to work well yet though.
1999-04-04 14:25 keith
* src/: tools.c, tools.h: Appearance of case sensitivity and
more/fewer buttons. Actual matching code.
1999-04-04 11:37 keith
* src/: tools.c, tools.h:
Menu selection improvements. Still does nothing, though.
1999-04-03 15:59 bob
* src/dim_list_menu.h: branches: 1.2.2; Cut and paste
1999-04-03 15:59 bob
* src/: dim_list_menu.c, edit.c, field.c, filein.c, fileout.c,
globals.h, main.c, types.h: Cut and paste
1999-04-02 18:11 keith
* src/: tools.c, tools.h:
Initial revision. Includes find dialog and menus. Field selection
works.
1999-04-01 08:15 bob
* src/edit.h: iContinued conversi to sheet
1999-04-01 08:15 bob
* src/edit.c: COntinued converstion to sheet
1999-04-01 08:15 bob
* src/: filein.c, fileout.c, main.c: Continued conversion to sheet
1999-03-31 19:57 bob
* src/edit.c: Add gtk features
1999-03-31 19:57 bob
* src/dim_list_menu.c: Cleaned up methods and code
1999-03-31 17:41 bob
* src/dim_list_menu.c: Cleaned up the coding, and also changed for
sheet
1999-03-31 02:55 sam
* Makefile.am: branches: 1.4.2; Stupid ' ' instead of '\t'
1999-03-31 02:55 sam
* Makefile.am: Fixed make snapshot.
1999-03-31 02:14 sam
* po/quicklist.pot: Line Numbers changed...should I ignore updates
like this?
1999-03-31 02:14 sam
* src/: build_list.c, sort.c, sort.h: Add sort is complete.
Changed the names of most of the functions related to add_sort_*.
Moved all of the prototypes to sort.h where they belong.
1999-03-31 01:01 sam
* gtksheet/gtksheet.c: Small work around for drawing problem.
1999-03-31 00:26 sam
* gtksheet/demo: Accidently put in a binary.
1999-03-30 23:16 bob
* src/main.h: Switch to gtksheet
1999-03-30 22:57 bob
* src/filter.c: branches: 1.2.2; Switching to gtksheet
1999-03-30 22:57 bob
* samples/1SampleFile: Format just wasn't right
1999-03-30 22:57 bob
* src/tools.c: switching to gtksheet
1999-03-30 22:57 bob
* src/main.c: Switching to gtksheet
1999-03-30 22:57 bob
* src/types.h: iSwitching to gtksheet
1999-03-30 22:57 bob
* src/: dim_list_menu.c, edit.c, edit.h, field.c, filein.c:
Switching to sheet
1999-03-30 22:57 bob
* src/report.c: branches: 1.2.2; witching to gtksheet
1999-03-30 18:03 sam
* src/sort.c: Slowy moving towards adding sorts.
1999-03-30 17:50 bob
* src/: edit.c, field.c, filein.c, fileout.c, globals.h,
includes.h, main.c, types.h: Switch to gtksheet
1999-03-30 17:50 bob
* src/build_list.c: Switch to gtkSheet
1999-03-30 15:22 sam
* gtksheet/: demo.o, gtkbordercombo.o, gtkcolorcombo.o,
gtkcombobox.o, gtksheet.o, gtksheetentry.o: Bins don't go into CVS!
1999-03-30 15:16 sam
* Makefile.am, po/quicklist.pot: Added GtkSheet. Adjusted build
accordingly.
1999-03-30 15:16 sam
* src/Makefile.am: branches: 1.4.2; Added GtkSheet. Adjusted
build accordingly.
1999-03-30 15:16 sam
* gtksheet/: AUTHORS, BUGS, CONTRIB, COPYING, ChangeLog, Makefile,
README, TODO, bullet.xpm, center.xpm, demo, demo.c, demo.o,
font.xpm, gtkbordercombo.c, gtkbordercombo.h, gtkbordercombo.o,
gtkcolorcombo.c, gtkcolorcombo.h, gtkcolorcombo.o, gtkcombobox.c,
gtkcombobox.h, gtkcombobox.o, gtksheet.c, gtksheet.h, gtksheet.o,
gtksheetentry.c, gtksheetentry.h, gtksheetentry.o, left.xpm,
paint.xpm, right.xpm: Added files for GtkSheet
1999-03-30 08:44 bob
* src/: field.c, filein.c: Report non-working functions
1999-03-30 08:44 bob
* src/edit.c: Report non-available functions
1999-03-30 08:44 bob
* src/build_list.c: Report on non-working functions
1999-03-30 08:36 jaym
* BUGS: branches: 1.1.2; Jay - Added BUGS to CVS tree
1999-03-29 08:31 bob
* src/field.c: Debugging and adding move left and move right
1999-03-29 08:31 bob
* src/edit.c: Debugging the entry box
1999-03-29 08:31 bob
* src/dim_list_menu.c: ADDED MORE field menu items
1999-03-29 08:31 bob
* src/build_list.c: Added more field menu items
1999-03-29 08:31 bob
* src/types.h: Added field move left and right
1999-03-29 08:31 bob
* src/field.h: Adding move left and move right
1999-03-28 21:44 bob
* src/: build_list.h, edit.c, main.c: Debugging`:wq
1999-03-28 21:44 bob
* src/: build_list.c, dim_list_menu.c, field.c, filein.c,
fileout.c: Debugging
1999-03-28 17:30 bob
* src/: edit.c, field.c, filein.c: Fixing bugs
1999-03-28 17:30 bob
* src/fileout.c: wq Fixing bugs
1999-03-28 17:30 bob
* src/: main.c, main.h: Making some routines global
1999-03-28 17:30 bob
* src/globals.h: Making some routines central
1999-03-28 17:23 bob
* src/: dialog_initial.c, dim_list_menu.c: Mostly save as
1999-03-28 12:11 bob
* src/edit.c: Related to field dialog box
1999-03-28 12:11 bob
* src/: filein.c, filein.h: Support changes in field.c
1999-03-28 12:11 bob
* src/field.c: Work on bugs in field
1999-03-27 17:35 bob
* src/edit.c: Minor changes related to field.c
1999-03-27 17:35 bob
* src/: globals.h, main.c: Supporting changes in field.c
1999-03-27 17:35 bob
* src/filein.h: Some functions moved to field.c
1999-03-27 17:35 bob
* src/field.h: Early beta version of field
1999-03-27 17:35 bob
* src/filein.c: Portions moved to field.c
1999-03-27 17:35 bob
* src/field.c: Early beta version of field.c
1999-03-27 17:35 bob
* src/dialog_initial.c: Nothing much
1999-03-25 23:54 bob
* src/: edit.c, edit.h, main.c, types.h: Able to edit contents of a
cell
1999-03-25 23:54 bob
* src/filein.c: Able to edit conents of a cell
1999-03-25 21:46 bob
* src/: main.c, main.h: A lot of work on dialog boxes
1999-03-25 21:46 bob
* src/: filein.c, fileout.h, globals.h: A lot of work on save quit
and close
1999-03-25 21:46 bob
* src/dialog_initial.c: A lot of work on save close and quit
1999-03-25 21:46 bob
* src/fileout.c: A lot of work on quit, save and close
1999-03-24 14:49 sam
* po/quicklist.pot: New Strings added from sort.c and other files.
1999-03-24 14:39 sam
* src/sort.c: Revised Add Sort window. Added multiple sort fields.
1999-03-23 17:09 bob
* Makefile.in, configure, doc/Makefile.in, src/Makefile.in: Cleaned
up CVS more.
1999-03-23 11:43 sam
* configure.in: branches: 1.2.2; Changes version string.
1999-03-23 11:03 sam
* po/quicklist.pot, src/Makefile.am, src/Makefile.in: Fixed build
problems.
1999-03-23 10:57 bob
* po/POTFILES.in: Add filein fileout filepr and remove fileio
1999-03-23 10:25 bob
* src/: types.h, build_list.c: Buggy comment
1999-03-23 10:17 bob
* src/: filein.h, fileout.h, fileout.c, filepr.h, filepr.c: Split
out from fileio
1999-03-23 10:17 bob
* src/filein.c: Split out from fileio.c
1999-03-23 10:17 bob
* samples/1SampleFile: New input file with better name
1999-03-23 07:54 bob
* src/: globals.h, main.c, types.h: Adding ownership
1999-03-23 07:54 bob
* src/edit.c: ADDING ownership
1999-03-23 07:54 bob
* src/: build_list.c, dialog_initial.c, dim_list_menu.c: Added
ownership
1999-03-23 07:54 bob
* src/documentation: Just keeping it up to date
1999-03-23 00:10 bob
* src/dialog_initial.c: Fixed a bug in delete_event vs destroy
1999-03-22 23:41 bob
* src/dialog_initial.c: Trying to keep up with I18N
1999-03-22 23:41 bob
* src/: fileio.c, fileio.h: Replaced by in out and pr
1999-03-22 23:41 bob
* src/includes.h: Various changes for I18N
1999-03-22 23:41 bob
* src/: main.c, main.h: Working on multi window stuff
1999-03-22 23:41 bob
* src/documentation: I don't even know if this goes here
1999-03-22 23:41 bob
* src/: Makefile.am, Makefile.in: Added filein fileout filepr
1999-03-22 23:41 bob
* samples/1LSH.1997.Debits: Just not using it anymore
1999-03-22 20:21 sam
* po/quicklist.pot: New translations...woohoo!
1999-03-22 20:02 sam
* po/quicklist.pot: Added file that contains translation strings.
1999-03-22 20:02 sam
* po/cat-id-tbl.c: Another file that probably shouldn't be there.
1999-03-22 20:02 sam
* src/: build_list.c, dialog_initial.c, includes.h, main.c, sort.c:
Added I18N stuff in the source files.
1999-03-22 19:54 sam
* src/quickfile: Somehow this got added in as well... Hrm looks
like I need to watch for more cleanups.
1999-03-22 19:54 sam
* src/menu.h: Removed file. Must've accidentally added it.
1999-03-22 16:28 sam
* ABOUT-NLS, AUTHORS, COPYING, ChangeLog, Makefile.am, Makefile.in,
README, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, install-sh, missing, mkinstalldirs, stamp-h.in,
intl/ChangeLog, intl/Makefile.in, intl/bindtextdom.c,
intl/gettext.h, intl/gettextP.h, intl/hash-string.h,
intl/libgettext.h, intl/linux-msg.sed, intl/loadinfo.h,
intl/po2tbl.sed.in, intl/xopen-msg.sed, samples/1LSH.1997.Debits,
doc/Makefile.in, doc/file_format, doc/functionality, intl/VERSION,
intl/cat-compat.c, intl/dcgettext.c, intl/dgettext.c,
intl/explodename.c, intl/finddomain.c, intl/gettext.c,
intl/intl-compat.c, intl/l10nflist.c, intl/loadmsgcat.c,
intl/localealias.c, intl/textdomain.c, po/ChangeLog,
po/Makefile.in.in, po/POTFILES.in, po/cat-id-tbl.c,
po/stamp-cat-id, src/Makefile.am, src/Makefile.in,
src/build_list.c, src/build_list.h, src/dialog_initial.c,
src/dim_list_menu.c, src/dim_list_menu.h, src/documentation,
src/edit.c, src/edit.h, src/field.c, src/field.h, src/fileio.c,
src/fileio.h, src/filter.c, src/globals.h, src/includes.h,
src/main.c, src/main.h, src/menu.h, src/quickfile, src/report.c,
src/sort.c, src/sort.h, src/tools.c, src/tools.h, src/types.h:
Started Autoconf Tree
1999-03-22 16:28 sam
* INSTALL, NEWS, doc/Makefile.am, src/dialog_initial.h,
src/filter.h, src/report.h: branches: 1.1.1.1.2; Started Autoconf
Tree
1999-03-22 16:28 sam
* ABOUT-NLS, AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am,
Makefile.in, NEWS, README, acconfig.h, aclocal.m4, config.h.in,
configure, configure.in, install-sh, missing, mkinstalldirs,
stamp-h.in, intl/ChangeLog, intl/Makefile.in, intl/bindtextdom.c,
intl/gettext.h, intl/gettextP.h, intl/hash-string.h,
intl/libgettext.h, intl/linux-msg.sed, intl/loadinfo.h,
intl/po2tbl.sed.in, intl/xopen-msg.sed, samples/1LSH.1997.Debits,
doc/Makefile.am, doc/Makefile.in, doc/file_format,
doc/functionality, intl/VERSION, intl/cat-compat.c,
intl/dcgettext.c, intl/dgettext.c, intl/explodename.c,
intl/finddomain.c, intl/gettext.c, intl/intl-compat.c,
intl/l10nflist.c, intl/loadmsgcat.c, intl/localealias.c,
intl/textdomain.c, po/ChangeLog, po/Makefile.in.in, po/POTFILES.in,
po/cat-id-tbl.c, po/stamp-cat-id, src/Makefile.am, src/Makefile.in,
src/build_list.c, src/build_list.h, src/dialog_initial.c,
src/dialog_initial.h, src/dim_list_menu.c, src/dim_list_menu.h,
src/documentation, src/edit.c, src/edit.h, src/field.c,
src/field.h, src/fileio.c, src/fileio.h, src/filter.c,
src/filter.h, src/globals.h, src/includes.h, src/main.c,
src/main.h, src/menu.h, src/quickfile, src/report.c, src/report.h,
src/sort.c, src/sort.h, src/tools.c, src/tools.h, src/types.h:
branches: 1.1.1; Initial revision
|