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 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312
|
Rom 4 Jan 2006
- Branding update for GridRepublic
client/win/
boinc_cli.rc
boinc_cmd.rc
boinc_ss.rc
clientgui/
AccountInfoPage.cpp, .h
BOINCGUIApp.cpp, .h
WizardAccountManager.cpp
WizardAttachProject.cpp
resource.h
clientgui/res/
gridrepublic.ico
gridrepublic.xpm
gridrepublicamwizard.xpm (Added)
clientgui/res/
gridrepublic.ico
gridrepublicamwizard.bmp (Added)
win_build/installerv2/
GridRepublic.ism
win_build/installerv2/redist/GridRepublic/
GridRepublic.ico
GridRepublic.url
Rom 4 Jan 2006 (HEAD)
- Tag for 5.3.7 release, all platforms
boinc_core_release_5_3_7
David 4 Jan 2006
- replace safe_strncpy() with strlcpy() everywhere.
Same semantics, but the former is less efficient.
- simplified Bruce's recent fix to escape_string()
checkin_notes_2005 (new - Woo Hoo!)
api/
boinc_api.C
client/win/
hostinfo_win.cpp
db/
db_base.C
lib/
app_ipc.C
diagnostics.C
filesys.C
language.C
parse.C
util.C,h
sched/
handle_request.C
tools/
backend_lib.C
David 4 Jan 2006
- scheduler: scan_work_array(): if add_result_to_reply() fails, do NOT
reinsert the entry in the array by resetting the "present" flag.
We previously cleared this flag,
so the array entry may have been refilled by the feeder,
and it might be in the CHECKED_OUT state.
(from Paul Buck)
sched/
sched_array.C
Bruce 5 Jan 2006
- Fixed David's mistake in simplifying my fix to escape_string()!
db/
db_base.C
David 4 Jan 2006
- fixed inefficient unescape_string()
db/
db_base.C
Bruce 5 Jan 2006
- Fixed new unescape_string(): didn't null terminate string.
db/
db_base.C
Bruce 6 Jan 2006
- Nasty bug in API lib. See checkin_nodes_2004 December 22.
Functions meant to be used from within C should never be
declared bool!
Fix: change boinc_is_standalone() to return int not bool.
Note: some API functions still return bools, but since E@H
doesn't use them and I am afraid of doing damage, I have
left them alone.
api/
boinc_api.C
boinc_api.h
graphics_impl.h
graphics_impl_lib.C
Rom 6 Jan 2006
- Branding update for GridRepublic
clientgui/
AccountInfoPage.cpp
AccountManagerProcessingPage.cpp
AccountManagerPropertiesPage.cpp
BOINCGUIApp.cpp, .h
BOINCGUIApp.rc
CompletionPage.cpp, .h
MainFrame.cpp
resource.h
clientgui/res/
gridrepublic2.ico (Added)
win_build/installerv2/
GridRepublic.ism
win_build/installerv2/redist/GridRepublic/
acct_mgr_url.xml
GR_splash.bmp
Rom 6 Jan 2006 (HEAD)
- Tag for 5.3.8 release, all platforms
boinc_core_release_5_3_8
David 6 Jan 2006
- fix unitialized var
client/
net_stats.C
David 6 Jan 2006
- feeder: exit on database errors.
This is a workaround for a problem where the
feeder loses its DB connection after 10-20 hours of idleness.
With this change, the feeder will exit, and will be restarted by cron.
sched/
feeder.C
David 6 Jan 2006
- Tweak the account manager system to support "farm managers"
that use GUI RPC to control clients.
The farm manager needs the GUI RPC port and password of each client.
Add an optional <send_gui_rpc_info/> element to the
acct_mgr_url.xml file,
which causes the GUI RPC port and password to be included
in account manager RPC requests.
(From James Drews)
client/
acct_mgr.C,h
David 6 Jan 2006
- Change "bool" to "int" in the BOINC API.
C and C++ compilers differ in their allocation for bool,
making it difficult for C applications
(which must be compiled with particular compilers)
to use the BOINC API.
No such problem for int.
(from Bruce Allen)
api/
boinc_api.C,h
David 8 Jan 2006
- Account manager additions (from Willy de Zutter)
- Include <previous_host_cpid> in AM request.
This is the host CPID sent in the previous AM request.
It lets the AM track hosts even when their CPIDs change.
- Include <domain_name> in AM request
- AM replies can include <message> elements.
The contents are printed in the Messages tab.
- Print message that AM request has succeeded (or failed)
client/
acct_mgr.C,h
lib/
hostinfo.C
David 9 Jan 2006
- user web: show bbcode correctly for UOTD
html/user/
sample_index.php
Bruce 9 Jan 2006
- fix bug on page that shows profile for a given user. The total
number of posts made by a given user is not shown correctly.
The PHP code assumes that this number is given by user.posts. However
in html/inc/db_forum.inc, the value of user.posts is NOT
incremented each time a user makes a new post (either starting
a new thread or replying to an existing one). For the moment, my
the fix is to simply scan the database and count the number of posts by the
user, to give the right value on the profile page.
An alternative fix (which would be less DB intensive, overall)
is to (1) fix db_forum.inc so that it properly increments user.posts and
then (2) add an update_db.php script entry that correctly sets user.posts
by counting the number of posts for each user.
html/
inc/
user.inc
Rom 9 Jan 2006 (HEAD)
- Initial CPDN/BBC branded client
client/win/
boinc_cli.rc
boinc_cmd.rc
boinc_dll.rc
boinc_ss.rc
clientgui/
AccountInfoPage.cpp
BOINCBaseView.cpp, .h
BOINCGUIApp.cpp
BOINCGUIApp.rc
DlgAbout.cpp, .h
MainFrame.cpp
ViewMessages.cpp
ViewProjects.cpp
ViewResources.cpp
ViewStatistics.cpp
ViewTransfers.cpp
ViewWork.cpp, .h
win_build/
cpdnbbc.sln (added)
cpdnbbc_boinc_cli_curl.vcproj (added)
cpdnbbc_boinc_dll.vcproj (added)
cpdnbbc_boinc_ss.vcproj (added)
cpdnbbc_boinccmd.vcproj (added)
cpdnbbc_boincmgr_curl.vcproj (added)
win_build/installerv2/
CPDNBBC.ism (added)
win_build/installerv2/redist/CPDNBBC/
Climate Change Experiment.url (added)
project_init.xml
Rom 9 Jan 2006 (HEAD)
- Tag for 5.3.9 release, all platforms
boinc_core_release_5_3_9
Bruce 9 Jan 2006
- Fixes to BOINC zip library from Carl Christensen. Carl says:
"I found a problem with boinc_zip; it seems some Linux STL's
aren't very nice about classes that are inherited from their
objects on multiple use; or huge file lists that we use on CPDN.
So I rewrite it to just use "straight" std::string's in a vector.
It's fully backwardly compatible and seems to work fine."
zip/
boinc_zip.h
boinc_zip.cpp
David 9 Jan 2006
- changed upper_case so that the -cpu_time option
takes an arg: the # of CPU seconds to use.
apps/
upper_case.C
Charlie 10 Jan 2006
-Mac: Fix minor bugs in internal scripts in XCode 2.2 project. Changes to
BOINC Manager to accomodate Rom's changes for branding.
clientgui/
BOINCGUIApp.cpp
mac/
MacSysMenu.cpp, .h
mac_build/
boinc.xcodeproj/
project.pbxproj
David 10 Jan 2006
- core client: fix vector erase code in GUI RPC.
Thanks to Darrel Holz for finding this.
client/
gui_rpc_server.C
David 10 Jan 2006
- Add XML option for team lookup web interface
html/
inc/
xml.inc
user/
team_lookup.php
Bruce 11 Jan 2006
- Skip test for excessive CPU time, IF hostid has changed
because host has been cloned. If result is resent to
the 'new' host then this can make it appear that the
result was completed shortly after it was sent.
sched/
handle_request.C
Charlie 10 Jan 2006
-Mac: Get BrandID from file put inside application bundle by installer.
clientgui/
BOINCGUIApp.cpp
Bruce 11 Jan 2006
- Documentation: describe boinc_is_standalone() in documentation.
doc/
api.php
David 11 Jan 2006
- file upload handler: allow upload if offset if < size
(this can now happen, since the client skips size check
for files < 1 MB)
sched/
file_upload_handler.C
David 11 Jan 2006
- Core client: add a flow control mechanism for the case where
output files are generated faster than they can be uploaded
(otherwise we'll fill up the disk).
The mechanism: don't start new results for a project
that has > 2 uploads in progress.
Note: this actually happens with Cunning Plan
(5 MB output files, 60 sec CPU) over a DSL line
client/
client_types.h
cs_apps.C
David 11 Jan 2006
- core client: on file upload, always get file size (even if small file).
Before the file upload handler checkin earlier today,
this was actually a bug:
if a client had uploaded part of a small file and then failed,
it would never be able to upload the rest.
But it was probably a bad idea in the first place,
since 1 MB is a large file from the viewpoint of a modem user.
client/
file_xfer.C
Charlie 10 Jan 2006
-Mac: Mac System Menu uses menubar icon selected by
CBrandingScheme::OnInit() .
clientgui/
BOINCGUIApp.cpp
mac/
MacSysMenu.cpp
res/
gridrepublic_mac.xpm (new)
David 11 Jan 2006
- Core client: remove "unknown project" from message
where general prefs don't come from a known project.
They might come from an account manager.
(from Willy de Zutter)
client/
cs_prefs.C
Bruce 12 Jan 2006
- file_upload_handler: log a message when the client is starting an upload
from the wrong offset. This problem should gradually go away as users
update to more current clients.
sched/
file_upload_handler.C
David 12 Jan 2006
- Web RPC: fixed bug in am_set_info.php that caused password_hash
to not update.
(from Willy de Zutter)
html/user/
am_set_info.php
David 12 Jan 2006
- Initialize user/team/host.expavg_time with current time.
This avoids inaccurate initial values for RAC.
From Bruce Allen.
html/user
create_account.php
create_account_action.php
team_create_action.php
sched/
handle_request.C
Rom 13 Jan 2006 (HEAD)
- Tag for 5.3.10 release, all platforms
boinc_core_release_5_3_10
David 13 Jan 2006
- core client: handle HTTP "continue" status.
I don't understand what this is, but hopefully this fixes
some network problems.
(from Ian Hay).
client/
http_curl.h
net_xfer_curl.C
David 14 Jan 2006
- user web: forum fix (from Rob Ogilvie)
html/inc/
forum.inc
Janus 15 Jan 2006
- web: Fixed a special situation where the caching mechanism used on
(amongst others) the frontpage would always refresh from the serverside
cache regardless of whether the client had a fresh copy. (from Rob)
html/inc/
cache.inc
David 14 Jan 2006
- core client: If there's only one potentially runnable project,
ask it for work no matter how negative its debt
(from Glenn Dill)
client/
cs_scheduler.C
Rom 15 Jan 2006
- CPDB BBC update
clientgui/
AccountInfoPage.cpp, .h
BOINCBaseWizard.h
BOINCGUIApp.cpp, .h
CompletionPage.cpp
ProjectProcessingPage.cpp
ProjectPropertiesPage.cpp
WizardAttachProject.cpp, .h
Rom 15 Jan 2006 (HEAD)
- Tag for 5.3.11 release, all platforms
boinc_core_release_5_3_11
David 15 Jan 2006
- core client: add "-daemon" option (uses daemon() system call
to detach from controlling terminal)
From Jan Gall
client/
cs_cmdline.C
main.C
David 15 Jan 2006
- GUI RPC: added optional <scheduler_rpc_in_progress/> element
to <project> elements in GUI RPC replies
client/
client_state.h
client_types.C
scheduler_op.h
lib/
gui_rpc_client.h
gui_rpc_client_ops.C
David 15 Jan 2006
- user web: moved eah_server_status.php and sample_server_status.php
from user/ to ops/.
These pages have queries that are too slow for
big projects like SETI@home.
html/
ops/
eah_server_status.php (new)
sample_server_status.php (new)
user/
eah_server_status.php (removed)
sample_server_status.php (removed)
server_status.php (removed)
David 15 Jan 2006
- user web: add optional team_id argument to team_lookup.php
(returns XML description of a particular team)
html/
user/
team_lookup.php
David 15 Jan 2006
- compile fixes for gcc4.0
client/
gui_rpc_server.C
lib/
network.C
Bruce 16 Jan 2006
- ops page: add external IP to data shown for host
- user host info page: when giving IP data, show both private
AND external IP (only for owner of host machine).
- user web pages: if can't delete host because there are still
results, give clearer error message and link to list of results.
- user web pages: in list of hosts, add link to show results
if project is configured to show results.
html/
inc/
db_ops.inc
host.inc
user/
host_delete.php
David 16 Jan 2006
- compile fix for Win
client/
gui_rpc_server.C
David 16 Jan 2006
- Call get_host_info() (not just get_filesystem_info())
before each scheduler RPC (from Bruce Allen)
client/
cs_scheduler.C
David 16 Jan 2006
- add <hostid> element to account manager RPC request.
client/
acct_mgr.C
David 16 Jan 2006
- core client: enhancements to duration correction factor (DCF):
- on project reset, set DCF to one.
- when do CPU benchmarks, scale all DCFs by new/old benchmark
(from Josef Segur)
client/
client_state.C,h
cs_benchmark.C
cs_scheduler.C
Rom 17 Jan 2006 (HEAD)
- Tag for 5.3.12 release, all platforms
boinc_core_release_5_3_12
David 17 Jan 2006
- user web: add Mauritius to country list
html/inc/
countries.inc
David 17 Jan 2006
- Core client error messages:
- "task" instead of "result"
- Don't include function names in messages
- Don't end with \n
- Removed files superceded by curl
client/
*.C
http.C,h (removed)
net_xfer.C,h (removed)
ssl_http.C,h (removed)
ssl_net_xfer.C,h (removed)
David 18 Jan 2006
- GUI RPC client lib: add PROJECT::copy() function
(copies data, doesn't change vectors)
client/
file_xfer.C,h
pers_file_xfer.h
lib/
gui_rpc_client.h
gui_rpc_client_ops.C
sched/
handle_request.C
David 18 Jan 2006
- If a download isn't complete and gained less than 5 KB,
truncate back to the original starting size.
This addresses a bug where some proxies append
error messages on download failures
(reported by Rattledagger)
client/
file_xfer.C
lib/
error_numbers.h
filesys.C,h
util.C
David 18 Jan 2006
- implement boinc_truncate() for Windows
lib/
filesys.C
David 18 Jan 2006
- remove #define bool char stuff,
and change a couple of functions to return int instead of bool.
Rule: if any function is potentially callable
from an ANSI C application, don't use bool in its interface,
since there's inconsistency in the size of bool
between C and C++ compilers
api/
graphics_api.h
lib/
filesys.C,h
David 18 Jan 2006
- added HTTP error codes to boincerror(),
since these are sometimes used as return values.
client/
http_curl.h
pers_file_xfer.C
lib/
util.C
Rom 19 Jan 2006
- CPDNBBC Update
clientgui/
BOINCGUIApp.cpp, .h
CompletionPage.cpp
MainFrame.cpp
win_build/installerv2/redist/CPDNBBC
CPDNBBC_splash.bmp
David 19 Jan 2006
- feeder/scheduler: try to fix bug where shmem array slots
get stuck in "CHECKED_OUT" state.
Get rid of this state.
Instead, use the PID of the scheduler process that
has it checked out (as we're already doing for "reserved" slots)
and let the feeder clean up slots checked out by dead processes.
- several of the DB enumerate() function were returning
1 or -1 (rather than ERR_DB_NOT_FOUND) when no results.
Bad!!! Some programs, including the feeder,
treat values other than 0 and ERR_DB_NOT FOUND as fatal DB errors.
db/
boinc_db.C
sched/
feeder.C
sched_array.C
sched_shmem.C,h
show_shmem.C
David 19 Jan 2006
- RSS items should refer to a page that has all news items,
not just old ones
- Make news item indices permanent
html/
inc/
news.inc
user/
all_news.php (new)
sample_rss_main.php
David 20 Jan 2006
- tweak to partial download fix:
only truncate file if got >0 new bytes
client/
file_xfer.C
David 20 Jan 2006
- suppress "Expect: 100 continue" in HTTP header.
Apparently this causes problems with some proxies
(from Ian Hay)
client/
http_curl.C
Charlie 20 Jan 2006
-Mac: Changes for Grid Republic: remove BOINCManager from Dock;
different plist file for GR; new application icon for GR;
screensaver changes for GR.
Remove obsolete files from XCode project (net_xfer.C,h, http.C,h,
proxy.C,h)
Update release script to allow development test builds.
Update installer for Grid Republic.
client/
mac/
GridRepublic.icns (new)
SetVersion.C
clientgui/
mac/
mac_saver_module.cpp
mac_build/
Info.plist
GR_Info.plist (new)
boinc.xcodeproj/
project.pbxproj
mac_installer/
release_boinc.sh
Postinstall.cpp
David 20 Jan 2006
- core client: if we change host CPID and we're using an account manager,
do scheduler RPCs to all projects,
so that the account manager gets a consistent view when
it gets host data from the project servers
client/
client_state.h
cs_scheduler.C
David 20 Jan 2006
- Manager: improvements to Statistics tab
(from mifistor_x)
clientgui/
Events.h
ViewStatistics.C,h
Charlie 21 Jan 2006
-Mac: Changes for Grid Republic: manager determines branding before
launching client; create new release script for GR; GR screen saver
displays GR icon in system preferences dialog; data directory is
"GridRepublic Data" if a GR install; installing BOINC over an
existing GR installation or GR over existing BOINC installation
renames data directory and performs other necessary tasks to ensure
continued processing of existing work. (But user's screensaver
selection is not changed automatically.)
clientgui/
BOINCGUIApp.cpp - Set up branding before launching boinc client.
mac/
mac_saver_module.cpp
gridrepublic.tiff
SetVersion.C
mac_installer/
release_boinc.sh
PostInstall.cpp
postinstall
postupgrade
preinstall (new)
preupgrade (new)
release_GridRepublic.sh (new)
GR-preinstall (new)
GR-preupgrade (new)
GR-Description.plist (new)
GR-Branding (new)
GR-ReadMe.rtf (new)
mac_build/
GR-InfoPlist.strings (new)
GR-ScreenSaver-Info.plist (new)
boinc.xcodeproj/
project.pbxproj
Bruce 22 Jan 2006
- update_stats program. Fix 'bug of omission' where member counts
of teams are calculated but were not written back into the database.
Also, change algorithm so that for hosts/teams/users, when the RAC
(Recent Average Credit) values have decayed to exactly 0.0 (double
precision) then neither expavg_credit nor expavg_time are updated.
In this way, by looking at the value of expavg_time, you can see
exactly WHEN the RAC decayed to zero. This effectively indicates
the 'drop-out-date' for the host/team/user.
sched/
update_stats.C
Rom 23 Jan 2006
- On Windows use the System Event Notification Service to determine
network connectivity instead of using InternetGetConnectedState
since it was proving to be unreliable.
NOTE: This is a big change on Windows. SENS uses COM as it's
communication infrastructure and so therefore boinc.dll now has
to be regsvr32'ed before network notification messages will be
sent to the client. If, for whatever reason SENS isn't working
we'll fall back to InternetGetConnectedState.
client/
main.C
client/win/
hostinfo_win.cpp
clientgui/
AccountManagerPropertiesPage.cpp
BOINCGUIApp.cpp, .h
MainFrame.cpp
ProjectPropertiesPage.cpp
clientlib/win/
boinc_dll.cpp, .h (Added)
BOINCSENSSink.cpp, .h (Added)
Identification.cpp, .h (Added)
IdleTracker.cpp, .h (Added)
NetworkTracker.cpp, .h (Added)
resource.h (Added)
SENSLogonSubscriptions.h (Added)
SENSNetworkSubscriptions.h (Added)
SENSOnNowSubscriptions.h (Added)
SENSSubscriptions.h (Added)
stdafx.cpp, .h (Added)
lib/
network.C, .h
win_build/
boinc_dll.vcproj
Rom 23 Jan 2006
- Add an File/Exit warning for CPDNBBC so that the users know they will
be stopping any executing tasks.
- Update the Project and Work views changing 'work' to 'tasks'
clientgui/
BOINCGUI.pjd
BOINCGUIApp.cpp, .h
DlgGenericMessage.cpp, .h (Added)
MainFrame.cpp, .h
Makefile.am
ViewProjects.cpp
ViewWork.cpp
Charlie 23 Jan 2006
-Mac: Improve GridRepublic release script so it uses sed commands
to convert standard BOINC plist, preinstall and preupgrade files
for Grid Republic; standard BOINC release script creates preupgrade
script by copying preinstall script; these changes eliminate the
need for seven files I checked in earlier.
Also generalize Grid Republic release script so it can easily be
modified for other brands by changing a few variable definitions.
Changed name of GR Manager to "GridRepublic Manager" from just
"GridRepublic."
Restore my change of 1/21/06 which was lost: manager determines
branding before launching client.
Remove mac_build/Installer-info.plist and replace with
mac_build/Installer-info.plist (CVS is case-sensitive).
clientgui/
BOINCGUIApp.cpp
mac/
SetVersion.C
mac_build/
GR_Info.plist (Remove)
GR-InfoPlist.strings (Remove)
GR-ScreenSaver-Info.plist (Remove)
Installer-info.plist (Remove)
Installer-info.plist (Add)
boinc.xcodeproj/
project.pbxproj
mac_installer/
GR-ReadMe.rtf
PostInstall.cpp
preinstall
release_boinc.sh
release_GridRepublic.sh
preupgrade (Remove)
GR-Description.plist (Remove)
GR-preinstall (Remove)
GR-preupgrade (Remove)
David 23 Jan 2006
- Core client: D'oh! When change host CPID,
need to notify ALL projects, even the one we just contacted.
client/
client_state.h
cs_scheduler.C
Charlie 23 Jan 2006
-Mac: Add new files DlgGenericMessage.cpp, .h to XCode project .
mac_build/
boinc.xcodeproj/
project.pbxproj
Rom 24 Jan 2006
- String and graphics changes for CPDNBBC.
- Add email address validation to the wizards.
clientgui/
AccountInfoPage.cpp
BOINCGUIApp.cpp
BOINCGUIApp.rc
ValidateEmailAddress.cpp, .h (Added)
Rom 24 Jan 2006 (HEAD)
- Tag for 5.3.14 release, all platforms
boinc_core_release_5_3_14
Rom 24 Jan 2006
- Bug Fix: Remove the last line of the function that handles the
launching of the wizards on first execution which was causing
the manager to switch over to the messages tab no matter if the
wizard completed successfully or not.
clientgui/
MainFrame.cpp
David 24 Jan 2006
- core client: move code that deals with generating new host CPID
to the end of handle_scheduler_reply(),
after the part that clears sched_rpc_pending and sets min_rpc_time,
since if we generate a new host CPID
we're going to modify these (to request another RPC).
Also: in this case request an immediate scheduler RPC to all projects
whether or not we're using an account manager.
- core client: if detach from account manager,
clear "attached_via_acct_mgr" flag on all projects
- database: change type of xml field in msg_to_host and msg_from_host
from text (64KB limit)
to medium_text (16MB limit, but use at most 256KB)
- scheduler: don't print trickle message contents (swamps logfile)
(the latter two from Carl Christensen)
client/
acct_mgr.C
cs_scheduler.C
clientgui/
Events.h
db/
boinc_db.h
schema.sql
sched/
handle_request.C
David 24 Jan 2006
- core client: statefile read fails if don't find </client_state>
client/
cs_statefile.C
Charlie 24 Jan 2006
-Mac: Add new files ValidateEmailAddress.cpp, .h to XCode project.
Change conditional compile #ifdef __ppc__ in mac_backtrace.C
so library links properly for Intel Macs (but backtrace is disabled).
Fix compile error by excluding CPDNBBC client code from Mac builds.
Remove obsolete XCode project; update build script to use new project.
Set plaform correctly for powerpc-apple-darwin and i686-apple-darwin.
clientgui/
BOINCGUIApp.cpp
mac/
config.h
lib/
mac_backtrace.C
mac_build/
BuildMacBOINC.sh
boinc.xcodeproj/
project.pbxproj
boinc.pbproj/
project.pbxproj (Remove)
config.h
Rom 24 Jan 2006
- Bug Fix: Fix a blocking compilation issue on the Mac with the new
email validation class.
clientgui/
ValidateEmailAddress.cpp
David 24 Jan 2006
- new FORTRAN-callable function boinc_zip_()
(from Juan Perez)
api/
boinc_api_fortran.C
Rom 25 Jan 2006
- Bug Fix: Fix the wizard so that it can display customized graphics
on the welcome page.
- Bug Fix: Display the minimum password length in the wizard.
- Bug Fix: Add two new pages for dealing with account manager updates
and removal from account managers. Text needs some work though.
clientgui/
AccountInfoPage.cpp, .h
AccountManagerProcessingPage.cpp
AccountManagerStatusPage.cpp
BOINCBaseWizard.cpp, .h
BOINCGUIApp.cpp
BOINCWizards.h
CompletionErrorPage.cpp
CompletionPage.cpp
CompletionRemovePage.cpp, .h (Added)
CompletionUpdatePage.cpp, .h (Added)
NotDetectedPage.cpp
ProxyPage.cpp
UnavailablePage.cpp
WelcomePage.cpp
WizardAccountManager.cpp, .h
WizardAttachProject.cpp
wizardex.cpp
David 25 Jan 2006
- core client: add declarations of free_mem() functions
(but still comment them out)
client/
app.h
client_state.h
html/user/
am_seti_info.php
lib/
util.C
David 25 Jan 2006
- add "added_via_acct_mgr" flag to GUI RPC PROJECT structure
lib/
gui_rpc_client.h
gui_rpc_client_ops.C
David 25 Jan 2006
- core client: added "Deferring scheduler requests for X" messages
client/
cs_scheduler.C
David 25 Jan 2006
- account manager RPC request now lists all projects;
<attached_via_acct_mgr/> is included for those attached via AMS
client/
acct_mgr.C
David 25 Jan 2006
- Initialize result.batch to workunit.batch
This required adding a batch field to TRANSITIONER_ITEM.
(for Rosetta@home)
Note: if you're using the batch field for anything,
you should add indices on it to workunit and/or result
db/
boinc_db.C,h
tools/
backend_lib.C
David 26 Jan 2006
- core client: always use HTTP 1.1
(from Carl Christensen)
client/
http_curl.C
Rom 26 Jan 2006
- Bug Fix: Overhaul the wizard control creation process. The RAD tool
we used broke the process into two parts and arranged things where
the bulk of the control creation and text assignment happened
during dialog contruction. This causes problems since not all of
the relevant data is available at dialog construction, such as
account manager name or project name.
The new scheme creates all the controls during dialog creation and
sets the associated text to null. When the OnPageChanged event is
fired we'll go and make all the necessary changes to the control text
as well as hide and show the correct controls.
clientgui/
<All wizard related files>
Rom 27 Jan 2006
- Bug Fix: The screensaver should properly detect the shortcut for all
branded clients.
client/win/
boinc_ss.h
boinc_ss.rc
win_screensaver.cpp, .h
Rom 27 Jan 2006 (HEAD)
- Tag for 5.3.15 release, all platforms
boinc_core_release_5_3_15
David 27 Jan 2006
- server build fix for Mac OS X 10.3
(from Derek Wright)
m4/
kc_mysql.m4
David 27 Jan 2006
- Manager:
"Website" is still not a word.
Don't use exclamation points.
clientgui/
AccountInfoPage.cpp
AccountManagerPropertiesPage.cpp
CompletionRemovePage.cpp
CompletionUpdatePage.cpp
David 27 Jan 2006
- core client: fix calculation of STD/LTD
client/
cs_apps.C
David 27 Jan 2006
- core client: various scheduler fixes
(from John McLeod)
client/
client_state.C,h
client_types.C,h
cs_prefs.C
cs_scheduler.C
cs_statefile.C
David 27 Jan 2006
- core client: initial checkin of new CPU scheduling code
(in a very incomplete state).
To enable it, define NEW_CPU_SCHED in a couple of .h files
api/
boinc_api_fortran.C
client/
client_state.C,h
client_types.C,h
cs_apps.C
cs_scheduler.C
Reinhard 30 Jan 2006
- improved _autosetup:
* make version-checks more robust if '--version' is not supported
* removed libtool-check: libtool is shipped with boinc, this check therefore pointless
./autosetup
Charlie 30 Jan 2006
-Mac: XCode project fixes: path to Mac_GUI.cpp; remove GR_Info.plist, add
source files CompletionRemovePage.cpp,.h, CompletionUpdatePage.cpp,.h.
mac_build/
boinc.xcodeproj/
project.pbxproj
Reinhard 30 Jan 2006
- updated boincmgr build for MacOSX:
* added Mac_GUI.cpp, MacGUI.pch and Security.Framework
clientgui/
Makefile.am
MainFrame.cpp
Reinhard 30 Jan 2006
- applied Derek Wright's patch to get --enable-release-client working on MacOS10.4
(this simply adds a check for '-lSystemStubs') [can't test this myself on 10.4 right now]
./configure.ac
David 30 Jan 2006
- updates to new scheduler code (commented out)
client
client_state.h
client_types.h
cs_apps.C
David 30 Jan 2006
- back out scheduler changes of 27 Jan.
They caused write of statefile in infinite loop in some cases
client/
client_state.C,h
client_types.C,h
cs_apps.C
cs_prefs.C
cs_scheduler.C
cs_statefile.C
Rom 30 Jan 2006
- Change the scheme used to select the default item when no other
items are selected within a single selection list control.
clientgui/
BOINCBaseView.cpp
BOINCListCtrl.cpp
David 30 Jan 2006
- fixes for LTD calculation (from James Drews)
client/
client_types.C,h
cs_apps.C
Rom 30 Jan 2006 (HEAD)
- Tag for 5.3.16 release, all platforms
boinc_core_release_5_3_16
Charlie 30 Jan 2006
-Mac: Undo change of 1/20/06 to Info.plist: restore manager to Dock because
use of NSUIElement also eliminated menu bar.
(Tagged new Info.plist for boinc_core_release_5_3_16.)
mac_build/
Info.plist
Charlie 31 Jan 2006
-Mac: Remove redundant second link with libwx_mac.a.
Fix buildWxMac.sh script to fix wxRegEx problems.
Fix bug so a new default item is selected when the old selected item
is deleted within a single selection list control.
Update release scripts for separate ppc_Deployment build directory.
(Tagged changed files for boinc_core_release_5_3_16.)
clientgui/
BOINCBaseView.cpp
mac_build/
buildWxMac.sh
boinc.xcodeproj/
project.pbxproj
mac_installer/
release_boinc.sh
release_GridRepublic.sh
Rom 31 Jan 2006
- Bug Fix: If the wizard is configured for usernames, do not use the email
address validator on the account info page.
clientgui/
AccountInfoPage.cpp
David 31 Jan 2006
- Back out changes to LTD calculation
client/
client_types.C,h
cs_apps.C
David 31 Jan 2006
- add "table stats" web page
(from Carl Christensen)
html/
inc/
util.inc
ops/
sample_table_stats.php
David 31 Jan 2006
- user web: remove "pending credit" link from user page
html/inc/
user.inc
Bruce 31 Jan 2006
- user web: modify David's change just above. Make 'pending
credit link display only if 'show_results' enabled in
project config.xml file.
html/
inc/
user.inc
David 31 Jan 2005
- core client: finish logic for recovering from state file write failures.
For some reason I'd done the write part but not the read part.
write:
1) write "next"
2) rename "current" to "prev"
3) rename "next" to "current"
read:
if "next" is valid, use it
(in case failure between 1 and 2)
In principle we should rename "next" to "current" here,
but I didn't bother doing this.
else if "current" is valid use it
(normal case)
else if "prev" is valid use it
(in case 3) failed and file got deleted)
"is valid" means that the file has a <state_file> tag,
followed later by a </state_file> tag
client/
cs_statefile.C
Charlie 1 Feb 2006
-Mac: Changes for Intel Macs.
clientgui/
MainFrame.cpp
mac/
MacGUI.pch
res/
mess.xpm
proj.xpm
result.xpm
usage.xpm
xfer.xpm
mac_build/
boinc.xcodeproj/
project.pbxproj
Rom 1 Feb 2006
- Bug Fix: The account manager wizard wasn't actually calling the
get_project_config routine and so various account manager
specific settings were not being picked up.
- Bug Fix: Include the account manager name in the wizard
communication dialogs if we have it.
- Bug Fix: Account manager errors were no longer being bubbled
up to the manager. The manager was declaring everything a
success and displaying the success page.
- Bug Fix: Add 'Account not Found' to the account manager wizard.
- Bug Fix: Don't attempt an account manager rpc until after a
proper username and password have been specified. Various
attributes in the acct_mgr_url.xml were being nulled out
since the handle_reply function wasn't properly detecting the
account not found condition, or any condition where only an
error number was returned.
- Bug Fix: Keep the tab graphics consistant across all the
platforms.
client/
acct_mgr.C
cs_scheduler.C
clientgui/
AccountInfoPage.cpp, .h
AccountManagerProcessingPage.cpp, .h
AccountManagerPropertiesPage.cpp, .h
BOINCGUIApp.cpp, .h
MainFrame.cpp
ProjectProcessingPage.cpp
WizardAccountManager.cpp, .h
clientgui/res/
mess.xpm
proj.xpm
result.xpm
usage.xpm
xfer.xpm
lib/
util.C
David 1 Feb 2006
- added web RPC for creating teams
- on team creation (whether via RPC or web interface)
make sure the country name and team type or legitimate
html/
inc/
countries.inc
team.inc
team_types.inc (new)
user/
create_team.php (new)
team_create_action.php
David 1 Feb 2006
- Core client: there's a feature where certain GUI RPCs
enable network communication (if it would otherwise be disabled)
for 5 minutes or so.
This set of RPCs was too large.
Restrict it to things like attach/update project etc.,
for which network communication is clearly required.
- core client: parse <want_network> elements in status messages from apps.
I had forgotten to do this.
This should finally allow F@h to work with modem users.
client/
app.h
app_control.C
gui_rpc_server_ops.C
Rom 2 Feb 2006
- Bug Fix: Always use the ai.email_addr field for the user identifier for
both the create_account and lookup_account RPCs. ai.user_name is only
used to prepopulate the post account creation setup form.
client/
acct_setup.h
clientgui/
ProjectProcessingPage.cpp
lib/
gui_rpc_client.h
Rom 2 Feb 2006
- Setup new menu layout
clientgui/
BOINCGUIApp.cpp
Events.h
MainFrame.cpp, .h
WizardAccountManager.cpp, .h
Charlie 2 Feb 2006
-Mac: Changes for Universal Binaries.
mac_build/
boinc.xcodeproj/
project.pbxproj
buildcurl.sh
buildjpeg.sh
BuildMacBOINC.sh
mac_installer/
release_boinc.sh
release_GridRepublic.sh
Rom 2 Feb 2006
- Update GridRepublic Icons
- Add aditional menu item for the task tray when managed via an account
manager.
clientgui/
BOINCGUIApp.cpp
BOINCGUIApp.rc
BOINCTaskBar.cpp, .h
Events.h
clientgui/res/
gridrepublic16.xpm (Added)
gridrepublic32.xpm (Added)
gridrepublic.ico
Rom 2 Feb 2006 (HEAD)
- Tag for 5.3.17 release, all platforms
boinc_core_release_5_3_17
David 2 Feb 2006
- web RPC: bug fix
html/user
am_set_info.php
David 2 Feb 2006
- core client: small logic error in statefile read
(for "prev", use is_valid_statefile() instead
of boinc_file_exists())
client/
cs_statefile.C
David 2 Feb 2005
- core client: correctly update long-term debt when a project
finishes its last result and becomes no longer "potentially runnable".
From James Drews.
client/
cs_apps.C
David 2 Feb 2005
- core client: long-term debt is modified only over
potentially runnable projects,
but it's averaged and normalized over all projects.
client/
cs_apps.C
David 3 Feb 2005
- Allow apps to do cleanup when they're aborted.
- Add abort_request to BOINC_STATUS structure
- API library: handle <abort/> message
- Change boinc_get_status() arg from reference
to pointer (for easier FORTRAN interface).
This is an API change, but I think only CPDN uses this.
- ACTIVE_TASK_SET::poll():
Check for processes that are ABORT_PENDING
for more than 5 seconds, and kill them
From Carl Christensen, somewhat modified.
I changed the way tasks are aborted.
The core client can't sleep; that locks up the UI.
So we can't sleep 5 seconds waiting for an app to exit
after sending it an <abort/> message
(existing apps don't recognize this message).
Instead, send it the <abort/> message,
set its state to PROCESS_ABORT_PENDING,
and check it from the polling loop 5 seconds later.
api/
boinc_api.C,h
client/
app.C,h
app_control.C
David 6 Feb 2005
- compile warning fixes
client/
cs_statefile.C
gui_rpc_server_ops.C
Rom 6 Feb 2006
- Bug Fix: when running as a Windows Service we should use
suspend_task/resume_task and suspend_network/resume_network
instead of setting the activity states.
client/
client_state.h
main.C
David 6 Feb 2005
- Core client: when we switched to Curl, we lost the code
that sets gstate.want_network_flag when name resolution fails.
I restored this to the Curl code.
- The above is a kludge for detecting lack of physical connection.
But name resolution can fail for reasons other than lack of
physical connection; e.g. hostname might be bad.
So if get name resolution failure,
try to contact a reference web site,
and only if that also fails set want_network_flag.
client/
acct_setup.C
client_state.C,h
net_xfer_curl.C
Charlie 6 Feb 2006
-Mac: Changes for Universal Binaries: when running on an Intel Mac,
read mach header of project application to determine if it has
Intel native executable or only PowerPC executable. If emulating
PowerPC on an Intel Mac, treat the application as not supporting
graphics. This works around a crash bug when displaying graphics
under PPC emulation.
Fix multiple compiler warnings and one error.
api/
gutil.C
mac_icon.C
client/
app.h
app_graphics.C
app_start.C
clientgui/
BOINCBaseView.cpp
BOINCGUIApp.cpp
ViewStatistics.cpp
lib/
mac_backtrace.C
shmem.C
mac_build/
boinc.xcodeproj/
project.pbxproj
mac_installer/
LoginItemAPI.c
David 6 Feb 2006
- Slight refinement to next-earlier checkin.
Set want_network_flag only if the request to the reference network site
results in a CURLE_COULDNT_RESOLVE_HOST Curl error code.
client/
acct_setup.C,h
gui_http.C,h
David 6 Feb 2006
- try to get rid of gcc4 warnings about virtual destructors
- project creation bug fix (from Andre Kerstens)
api/
graphics_data.h
client/
client_msgs.h
lib/
msg_log.h
py/Boinc
setup_projects.py
Charlie 7 Feb 2006
-Mac: Adjust XCode project for David's warnings fix. We now build on Mac
with no warnings!
mac_build/
boinc.xcodeproj/
project.pbxproj
David 7 Feb 2006
- Core client: check for a file "global_prefs_override.xml"
that overrides the global prefs obtained from server.
This lets people manually tweak prefs on a given host,
or develop add-on programs that do so.
- Remove programs that tested old HTTP code
client/
client_state.C,h
test_file_xfer.C (removed)
test_http.C (removed)
test_net_xfer.C (removed)
lib/
prefs.C,h
David 7 Feb 2006
- Add GUI RPC for rereading global prefs override file
client/
client_state.C,h
gui_rpc_server_ops.C
lib/
gui_rpc_client.h
gui_rpc_client_ops.C
David 7 Feb 2006
- remove the "new CPU scheduler" code I added a couple weeks ago (sigh)
client/
client_state.h
client_types.h
cs_apps.C
cs_scheduler.C
David 7 Feb 2006
- Unravel the CPU scheduler code a little:
- split set_scheduler_modes() into two functions,
set_scheduler_mode() and set_work_fetch_mode().
- make a separate function, enforce_schedule(),
that does the actual starting and stopping of processes
client/
client_state.h
cs_apps.C
cs_scheduler.C
Bruce 7 Feb 2006
- Added a script (originally provided by DA, I think) to
send mass email to project participants. The script allows
one to select the TYPE of user, including 'all', 'active',
'lapsed', 'unsuccessful' and so on. Also appends a 'how to opt
out' message at the end. Do NOT use this script without testing it.
html/
ops/
mass_email.php
index.php
David 7 Feb 2006
- Manager: change "Tasks" to "Commands".
We're using "Tasks" to mean work now.
clientgui/
View*.cpp
Charlie 8 Feb 2006
-Mac: Enhance BOINC command-line build script with new options
to build only the 3 BOINC libraries (libboinc, gfxlibboinc and
api_libboinc), only 2 targets (boinc client and boinc_cmd), or
a combination of these two (5 targets). The default is still
Build_all, which also builds the BOINC Manager.
mac_build/
BuildMacBOINC.sh
David 8 Feb 2006
- Move CPU scheduling code to a new file, cpu_sched.C
- PHP: use $_POST, not $HTTP_POST_VARS
client/
Makefile.am
client_state.h
cpu_sched.C
cs_apps.C
cs_scheduler.C
html/user/
create_account_action.php
win_build/
boinc_cli_curl.vcproj
Rom 8 Feb 2006 (HEAD)
- Tag for 5.3.18 release, all platforms
boinc_core_release_5_3_18
David 8 Feb 2006
- Change the way the manager learns about the core client's network status.
Replace the <network_query> GUI RPC with a new one, <network_status>
It returns:
0 if currently have network connections
1 if need a physical connection
2 if don't have connections, and don't need any
client/
acct_setup.C
client_state.C,h
gui_rpc_server_ops.C
net_xfer_curl.C
lib/
gui_rpc_client.h
gui_rpc_client_ops.C
Bruce 9 Feb 2006
- Ops page bug fix from Carl Christensen for manage special users page.
html/
ops/
manage_special_users.php
Rom 9 Feb 2006
- Integrate BOINC Manager into David's last API change.
- Breakout the dial up functionality into its own class.
- Increase the refresh rate of the list view to 1 second.
- Terminology change in the project tab. credit = work done.
clientgui/
BOINCDialupManager.cpp, .h (Added)
MainFrame.cpp, .h
ViewProjects.cpp
Charlie 8 Feb 2006
- Mac: Add backtrace capability for Intel-based Macs. Add new
sources BOINCDialupManager.cpp, .h, cpu_sched.C to project.
Fix a link error with SETI@home.
api/
graphics_data.h
lib/
MoreAddrToSym.c,h (Added)
mac_backtrace.C,h
MoreBacktrace.c,h (Added)
mac_build/
boinc.xcodeproj/
project.pbxproj
David 10 Feb 2005
- cosmetic
client/
client_msgs.h
client_types.h
cpu_sched.C
cs_scheduler.C
Charlie 10 Feb 2006
- Mac: Free memory allocated for strings when longer needed.
lib/
mac_backtrace.C
David 11 Feb 2006
- user web: add links to combined stats sites from user page;
reorganize user page.
- user web: enable pending credit page as long as
config file has <show_result/>
html/
inc/
stats_sites.inc (new)
user.inc
user/
pending.php
David 11 Feb 2006
- web tweaks
html/inc/
user.inc
Rom 13 Feb 2006
- Fix dialup functionality
- Numerious fixes for CPDN
- Enable dialup on platforms other than Windows.
clientgui/
BOINCDialupManager.cpp, .h
DlgDialupCredentials.h
DlgOptions.cpp, .h
DlgSelectComputer.h
MainFrame.cpp, .h
Rom 13 Feb 2006 (HEAD)
- Tag for 5.3.19 release, all platforms
boinc_core_release_5_3_19
Rom 13 Feb 2006
- Bug Fix: Fix a possible invalid pointer issue with the taskbar
notifications.
clientgui/
BOINCTaskBar.cpp
David 13 Feb 2006
- core client: changes to the way we check
for presence of network connection.
Don't check for DNS failures,
since these won't show up for ~24 hours in some cases.
Instead, if we get any HTTP failure,
try an HTTP op to a high-availability URL,
and if that fails assume it's because of lack of network.
NOTE: this checkin prints lots of messages for debugging
client/
acct_setup.C,h
client_state.C
net_xfer_curl.C
David 13 Feb 2006
- make test_uc.py work again
test/
testbase.py
Rom 13 Feb 2006
- Bug Fix: Fix a few issues that were introduced with the new dial up
manager functionality. Variables that were once seperate are now
mutually exclusive and so two conditions would never have fired
when traversing the state machine.
clientgui/
BOINCDialupManager.cpp
David 14 Feb 2006
- fix bug that broke account manager attach
- removed 2nd arg (CurlError) from handle_reply functions.
We were using this to check for DNS failure,
but we're not doing this anymore.
client/
acct_setup.C,h
gui_http.C,h
David 14 Feb 2006
- core client: on Windows, use commit mode ("wc") for state file
(from Walt Gribben)
client
cs_statefile.C
Rom 14 Feb 2006
- Bug Fix: After any of the wizards have been executed, recreate the
menus.
- Bug Fix: Call Fit() before setting focus to any of the controls.
Fit() messes up the input focus even though the control still
seems like it is selected and has focus.
- Bug Fix: Disable the detach button when the project is managed
via an account manager. This only affects the project tab.
- Feature Change: Trim down the number of menu items in the taskbar
context menu by making the suspend activities and suspend
network acivities menu checkbox items. When the items are checked
they are suspended, and when they are unchecked they are set to be
based on preferences.
clientgui/
AccountInfoPage.cpp
AccountKeyPage.cpp
BOINCTaskBar.cpp
MainFrame.cpp
ProjectInfoPage.cpp
ProxyPage.cpp
ViewProjects.cpp
David 14 Feb 2006
- user web: on "Statistics" page, remove the XML mumbo-jumbo.
Show a list of all current stats sites,
and sites that provide signature images.
The central repository for these lists is html/inc/stats_sites.inc
html/
doc/
stats_sites.dat (removed)
inc/
stats_sites.inc
user.inc
user/
stats.php
David 14 Feb 2006
- Manager: rename menu item from "Update now"
to "Synchronize with [name of account manager]".
Fixed some spelling/grammar.
clientgui/
MainFrame.cpp
Rom 14 Feb 2006
- Spec Change: Transfers should be 0% until data is actually transfered.
- Spec Change: Warn a user that aborting a file transfer will invalidate
a task and report an error.
- Add some comments around the Update Now menu item so the localizers
know what information is expected and make the string contruction
the same as with the other menu items.
clientgui/
ViewTransfers.cpp
Rom 15 Feb 2005
- Spec Change: Adjust the refresh rate for list view items to 1 second.
This was previously done in the constructor for CMainFrame but was
later changed in SetFrameListPanelRenderTimerRate() for deal with
CPU utilization on Mac's.
clientgui/
MainFrame.cpp
David 15 Feb 2006
- core client: if socket/bind/listen on the GUI RPC socket fails,
sleep for a second and retry; repeat 30 times.
This will hopefully deal with situations on Windows
where we're running at boot time
and network comm doesn't work for a few seconds
(resulting in the core client exiting,
and the Manager being disconnected).
client/
client_state.C
David 15 Feb 2006
- Manager: fix menu strings and remove erroneous comments
clientgui/
MainFrame.cpp
Rom 15 Feb 2006
- Bug Fix: Force a project state update even when we are looking at
the tasks tab. Copy the updated project state to the existing global
state structure.
clientgui/
MainDocument.cpp, .h
lib/
gui_rpc_client.h
gui_rpc_client_ops.C
David 15 Feb 2006
- make crypt_prog work on Windows
(from James Drews)
lib/
crypt_prog.C
Charlie 16 Feb 2006
- Mac: Fix menubar draw bug by calling MacInstallMenuBar().
- Since Quit (Exit) is not in File menu on Mac OSX, don't show File
menu unless it contains other items in addition to Exit.
- Dialup manager doesn't work on Mac or Linux, so compile it and
Options dialog Connections tab only for Windows.
- Fix a small bug in release scripts.
clientgui/
MainDocument.cpp
DlgOptions.cpp
mac_installer/
release_boinc.sh
release_GridRepublic.sh
Rom 16 Feb 2006
- Modify the disk usage and statistics tab icons
- Add a worning before the account manager wizard will actually
defect from an account manager
- Remove CompletionUpdatePage.cpp and CompletionRemovePage.cpp
- Remove AccountManagerStatusPage.cpp
- Remove trace messages from boinc dll.
- Followup Eric's last change that delt with prematurly showing
100% progress for tasks due to rounding with a change to
file transfer progress using the same scheme.
clientgui/
AccountManagerProcessingPage.cpp
BOINCWizards.h
CompletionPage.cpp
ViewStatistics.cpp, .h
ViewTransfers.cpp
WelcomePage.cpp
WizardAccountManager.cpp, .h
CompletionUpdatePage.cpp, .h (Removed)
CompletionRemovePage.cpp, .h (Removed)
AccountManagerStatusPage.cpp, .h (Removed)
clientgui/res/
stats.xpm (Added)
usage.xpm
clientlib/win/
BOINCSENSSink.cpp
NetworkTracker.cpp
David 16 Feb 2006
- core client: bug fix (hopefully) for situation where
a server or proxy doesn't understand Range: in HTTP header,
and sends us the entire file when we just want the tail.
Solution: if we asked for a partial transfer,
and we got a 200 HTTP return,
and the file is bigger than it's supposed to be,
trim off the part that was there initially.
- remove NET_XFER::strCurlResult, file_read_buf* fields
client/
file_xfer.C,h
net_xfer_curl.C,h
Rom 16 Feb 2006
- Followup Eric's last change that delt with prematurly showing
100% progress for tasks due to rounding with a change to
file transfer progress using the same scheme.
clientgui/
ViewTransfers.cpp
David 16 Feb 2006
- clientgui compile on unix
clientgui/
Makefile.am
Charlie 17 Feb 2006
- Mac: Remove obsolete files from XCode project (CompletionUpdatePage.cpp,
.h, CompletionRemovePage.cpp, .h, AccountManagerStatusPage.cpp, .h)
- Remove unused variable pWAP to fix compiler warning.
clientgui/
WelcomePage.cpp
mac_build/
boinc.xcodeproj/
project.pbxproj
Rom 17 Feb 2006
- Bug Fix: Remove the defect account manager functionality
from the wizard and put it into it's own routine
per David's request.
- Bug Fix: Fix the context menu item indentation problem on the task bar.
clientgui/
BOINCDialupManager.cpp
BOINCTaskBar.cpp
MainFrame.cpp
David 17 Feb 2006
- Add Visual Studio project file for crypt_prog
(from James Drews)
win_build/
crypt_prog.vcproj
Rom 17 Feb 2006
- Bug Fix: Adjust the dialog title code for both the attach to project wizard
and the attach to account manager wizard per David's request.
clientgui/
WizardAccountManager.cpp
WizardAttachProject.cpp
Rom 17 Feb 2006
- Bug Fix: Reset the reminder timers when the user updates something.
clientgui/
BOINCDialupManager.cpp, .h
MainFrame.cpp, .h
ViewProjects.cpp
ViewTransfers.cpp
David 17 Feb 2006
- user web: restore posts link on public user page
(not sure how it got deleted)
- minor code cleanup
html/
inc/
profile.inc
user.inc
user/
delete_profile.php
David 17 Feb 2006
- core client: remove network_status messages
client/
client_state.C
Walt 17 Feb 2006
- bug fix: Fix core client crash on startup when an unknown tag is part of
<pers_file_xfer> XML structure.
- core client, GUI RPC: changed persistent file transfers to save the count
of bytes transferred. Previously the count was only available when the
file transfer was active.
-Adds member last_bytes_xferred to PERS_FILE_XFER class.
-Adds <last_bytes_xferred> tag to the XML structure and GUI RPC ops.
-GUI RPC op FILE_TRANSFER::parse is changed to get the count of bytes
transferred (bytes_xferred) from <last_bytes_xferred>.
client/
pers_file_xfer.C, .h
lib/
gui_rpc_client_ops.C
Charlie 17 Feb 2006
- Mac: - Fix unused variable compiler warnings.
- added MoreAddrToSym.c, h, MoreBacktrace.c, h to Makefile
- fixes to Mac build scripts
- check in XCode project used by buildWxMac.sh script to build wxMac
libraries for BOINC.
lib/
Makefile.am
clientgui/
BOINCTaskBar.cpp
mac_build/
buildcurl.sh
buildjpeg.sh
BuildMacBOINC.sh
buildWxMac.sh
setupForBOINC.sh
wxMac-BOINC.xcodeproj/ (added)
project.pbxproj (added)
David 17 Feb 2006
- If statefile doesn't have right platform name, reset all projects.
This is intended to deal with the case where someone
copies all their files from a Mac/PPC to a Mac/Intel
and expects everything to work.
(suggested by Charlie Fenton).
- minor code cleanup
client/
check_state.C
client_state.C,h
cs_statefile.C
http_curl.C
Bruce 18 Feb 2006
- User RSS page: make it pass the validation check
http://feedvalidator.org/
html/
user/
sample_rss_main.php
Charlie 18 Feb 2006
- Mac: - Fix compiler setting which caused bug when building on PowerPC.
- Fix compiler errors and crash bug.
mac_build/
boinc.xcodeproj/
project.pbxproj
client/
client_state.C
clientgui/
BOINCTaskBar.cpp
MainFrame.cpp
David 19 Feb 2006
- user web: show error results with pink background
(from Rytis Slatkevicius)
html/
inc/
result.inc
user/
white.css
Bruce 20 Feb 2006
- user web: allow sorting of columns of host data for a given user. I
have done this in a general way, which should permit any page to
be easily modified to permit sorting by any column.
html/
inc/
util.inc
host.inc
user/
hosts_user.php
Charlie 21 Feb 2006
- Mac: Add safety timer to kill application if screensaver hangs.
- Improve screensaver display when no graphics: don't display 0.00%
when client has not yet returned fraction_done; better message.
- Add time/date stamp to backtrace output.
- Update ReadMe files for universal binaries and version 5.3.19.
client/
app_graphics.C
ss_logic.C
app.C
app.h
clientgui/
mac/
mac_saver_module.cpp
lib/
mac_backtrace.C
mac_installer/
GR-ReadMe.rtf
ReadMe.rtf
Rom 21 Feb 2006
- Check in new suspend menu code.
- Bug Fix: Fix memory leak condition in gui rpc.
- Bug Fix: Copy gui_urls from new project class to the old class when
updating project stats.
- Bug Fix: Make sure the default connection is properly displayed
in the connection tab.
clientgui/
BOINCTaskBar.cpp, .h
Events.h
MainFrame.cpp
lib/
gui_rpc_client_ops.C
Rom 21 Feb 2006
- Spec Change: Add the ability for the ACCOUNT_OUT rpc structure to contain
custom project error messages
clientgui/
ProjectProcessingPage.cpp
lib/
gui_rpc_client.h
gui_rpc_client_ops.C
Bruce 22 Feb 2006
- User web pages. Make RSS feed type application/xml rather than text/xml.
Make RSS feed link permanent guid rather than temporary.
- Better caching mechanism for hosts_user.php to prevent malicious user
from passing _GET[] strings that would lead to unbounded cache usage.
html/
user/
hosts_user.php
sample_rss_main.php
Charlie 22 Feb 2006
- Mac: Update build instructions and scripts for Intel Macs and Universal
Binaries.
doc/
mac_build.html
mac_build/
HowToBuildBOINC_XCode.rtf
setupForBOINC.sh
Rom 22 Feb 2006
- Bug Fix: ACCOUNT_OUT::parse should not return after encountering the
error_num element.
- Bug Fix: Make sure we are looking at the ACCOUNT_OUT messages array
instead of the attach to project response.
clientgui/
ProjectProcessingPage.cpp
lib/
gui_rpc_client_ops.C
Rom 22 Feb 2006
- Bug Fix: We seem to be having trouble with sub menus on the Mac. So
we will make the Snooze menu item a checkbox menu item and default
it to an hour.
clientgui/
BOINCTaskBar.cpp, .h
Events.h
MainFrame.cpp
David 22 Feb 2006
- core client: configure Curl to not accept self-signed SSL certificates.
Projects that use SSL will have to get SSL certificates
from Thawte, Verisign etc.
This prevents certain man-in-the-middle attacks.
- core client: configure Curl to accept any encoding (including gzip)
(both from Kevin Reed, WCG)
client/
http_curl.C
David 22 Feb 2006
- temporarily back out the above SSL change,
since it appears that Curl doesn't have a CA bundle by default,
so all SSL connections fail.
client/
http_curl.C
Rom 22 Feb 2006
- Bug Fix: Close down the OpenGL handles as well as the window handles
when boinc_finish() is called.
- Bug Fix: Add better power management handling to science applications
if they have a lingering graphics window open.
api/
boinc_api.C, .h
windows_opengl.C
Rom 22 Feb 2006
- Code Cleanup
- Make S@H enhanced compile again on Windows.
clientgui/
AccountManagerProcessingPage.cpp
MainFrame.h
ProjectProcessingPage.cpp
lib/
proxy_info.C
Rom 23 Feb 2006 (HEAD)
- Tag for 5.3.20 release, all platforms
boinc_core_release_5_3_20
Walt 23 Feb 2006
- Bug Fix: last_bytes_xferred was only counting the current bytes transferrred
on uploads.
client/
pers_file_xfer.C
Rom 23 Feb 2006
- Bug Fix: When changing how return values are handled, make sure the callers
know about the API change.
clientgui/
ProjectProcessingPage.cpp
Walt 23 Feb 2006
- Bug Fix: PROJECT::attach_via_acct_mgr flag wasn't being initialized or copied,
causing the manager to incorrectly disabled the detach button. Also added
the flag to PROJECT::print().
lib/
gui_rpc_client_ops.C
gui_rpc_client_print.C
Charlie 23 Feb 2006
- Mac: Fix compiler warning.
clientgui/
BOINCTaskBar.cpp
Rom 23 Feb 2006
- Bug Fix: The new project copy operation instead of replace had the drawback
of not deleting a project from the listview after a project detach operaton.
lib/
gui_rpc_client.h
gui_rpc_client_ops.C
Rom 24 Feb 2006 (HEAD)
- Tag for 5.3.21 release, all platforms
boinc_core_release_5_3_21
David 24 Feb 2006
- remove "gzip" from list of encodings accepted by Curl;
having it in the list breaks existing projects
that use .gz files and decompress them in the app
(e.g. Einstein and CPDN).
We can fix this by adding a <gzip/> element in <file_info>;
I'll do this later.
- Remove old HTTP code and data that's deprecated by Curl
(e.g. timeout, blocksize stuff; stuff related
to parsing URL into host/port/file/)
remove commented-out code.
- GUI RPC: a <file_xfer> elements now includes
a <url> rather than a <hostname>.
This change doesn't affect the BOINC Manager,
which I believe is the only client of this RPC
client/
http_curl.C,h
net_xfer_curl.C,h
pers_file_xfer.C
David 24 Feb 2006
- Scheduler: increment the infeasible count for a result
in a slot that cannot be sent to a host because
the workunit has already be assigned to a different platform.
This helps projects that use homogenous redundancy
because once the result is marked infeasible
it will be checked for compatibility for a given host first,
thus leaving results for workunits that have not yet
been assigned free for other hosts.
(from Kevin Reed, WCG)
sched/
sched_array.C
Rom 24 Feb 2006 (HEAD)
- Tag for 5.3.22 release, all platforms
boinc_core_release_5_3_22
David 24 Feb 2006
- Add new config file options, which are typically used together:
<max_claimed_credit> (double)
If a result claims more credit than this, mark it as invalid
<grant_claimed_credit> (bool)
Grant the claimed credit,
regardless of what other results for this workunit claimed.
These are used by Rosetta@home, which has the unusual
property that different instances of the same job
can do much different amounts of work,
depending on the user's project settings.
(from David Kim)
sched/
sched_config.C
sched_config.h
validate_util.C
sched/validator.C
Charlie 25 Feb 2006
- Mac: Fix a small bug in release scripts which made the zip
files larger than necessary.
mac_installer/
release_boinc.sh
release_GridRepublic.sh
Charlie 27 Feb 2006
- Mac: Fix tilde expansion bug in setupForBOINC build script.
- Fix bug in buildWxMac build script.
- Update build instructions to restore info on adding an icon
to a science application.
- Fix minor bug in diagnostic error message in setMacRsrcForFile().
doc/
mac_build.html
mac_build/
HowToBuildBOINC_XCode.rtf
setupForBOINC.sh
buildWxMac.sh
api/
mac_icon.C
Bruce 27 Feb 2006
- User web page to show hosts: check all GET[] values to
be sure they are legal/allowed.
html/
user/
hosts_user.php
Rom 27 Feb 2006
- Bug Fix: Restore the encoding behavior back to 5.2 defaults until
we have a better solution in place.
client/
http_curl.C
Rom 27 Feb 2006
- Expose Windows detection code in the DLL to BOINC proper.
clientlib/win/
Identification.cpp
Identification.h
Walt 27 Feb 2006
- Bug Fix: On Win2k and later, use global mutex so only one
instance of the core client runs at a time.
client/
main.C
cliend/win
win_util.h
Charlie 28 Feb 2006
- Mac: Get path for setMacPList in a more reilable way.
api/
boinc_api.h
mac_icon.C
x_openGL.C
David 28 Feb 2006
- Continuing saga of Curl encodings.
It seems like if you call set CURLOPT_ENCODING
with any value, even "identity",
it will accept any encoding.
This breaks projects that do application-level gzip.
Solution: if the filename ends with ".gz",
don't set CURLOPT_ENCODING.
Otherwise set it to "" (accept all).
NOTE: I think this supports current requirements
(for "deflate" to work, and for app-level gzip to work).
At some point I'll implement BOINC-level gzip.
- Fix the format of <error_msg> elements within <file_info>.
Need a CR between the last line and the </error_msg> tag.
- In the course of testing I found that a <file_info>
with no <url>s will crash the core client.
Fixed this.
client/
client_types.C
file_xfer.C
http_curl.C
Rom 1 Mar 2006
- Bug Fix: Make detach from account managers work again.
- Bug Fix: url encode the lookup account and create account
rpcs. Canonicalize the urls before use.
client/
acct_setup.C
clientgui/
MainFrame.cpp
lib/
util.C, .h
Rom 1 Mar 2006 (HEAD)
- Tag for 5.3.23 release, all platforms
boinc_core_release_5_3_23
David 1 Mar 2006
- Core client: don't lose <send_gui_rpc_info/> tag from acct mgr URL file
when make acct mgr RPC
- Core client: make RAM size measurement work on HPUX > 4GB
client/
acct_mgr.C
hostinfo_unix.C
Rom 2 Mar 2006
- Bug Fix: When Windows resumes from hibernation return the application to
it's previously desired state instead of blindly resuming it.
- Bug Fix: Copy all the project data except the master_url for each project
status update.
api/
boinc_api.C, .h
windows_opengl.C
lib/
gui_rpc_client_ops.C
Rom 2 Mar 2006
- Further refinements to the core client launch code when the core client
has been configured as a service.
NOTE: boincmgr.exe now explictly depends on boinc.dll
clientgui/
BOINCGUIApp.cpp
clientlib/win/
Service.cpp
win_build/
boinc.sln
boinc_dll.vcproj
boincmgr_curl.vcproj
David 2 Mar 2006
- core client: is a scheduler RPC is pending to a project,
do it even if project is suspended via GUI.
This is needed to propagate host CPIDs for GridRepublic.
It also seems like the right semantics for update requests via GUI
(i.e. Update should override Suspended)
client/
cs_scheduler.C
David 2 Mar 2006
- core client: tighten up XML parsing.
When we use copy_element_contents() or dup_element_contents()
and don't find the end tag, that's an error,
and probably means we skipped over a bunch of critical elements.
Fix places where we ignored this error.
- don't do fprintf(stderr) from util functions
- have strcatdup() return an error
(rather than write to stderr and exit()) if realloc() fails
client/
schedule_op.C
lib/
gui_rpc_client.C
parse.C,h
sched/
file_upload_handler.C
David 2 Mar 2006
- core client: when host CPID changes,
delay the resulting scheduler RPCs by 15 seconds
client/
cs_scheduler.C
David 3 Mar 2006
- core client: on scheduler RPC, if our host ID is zero,
set RPC seqno to zero also.
This avoids a bug where the scheduler creates a new host record
with rpc_seqno zero, and then on the next RPC creates
ANOTHER host record because the client's rpc_seqno is > 0
- core client: propagate host CPID change only
if we're using an account manager.
client/
cs_scheduler.C
David 3 Mar 2006
- scheduler: server-side fix for above bug.
If we create a new host record,
pretend that the client sent rpc_seqno 0
sched/
handle_request.C
David 3 Mar 2006
- On project attach: if PROJECT/app_info.xml exists,
don't clear out the project directory.
This makes life easier for people who use anonymous platform;
they don't have to re-download apps.
(suggested by Lars Bausch)
- Eliminate the PATH_SEPARATOR symbol. Just use /
client/
app.C
app_control.C
app_start.C
cs_account.C
cs_statefile.C
cs_trickle.C
file_names.C
lib/
filesys.C,h
Walt 3 Mar 2006
- GUI RPC: change to <file_transfers> to include files to be
transferred that don't have a pers_file_xfer object yet.
- Manager: Don't show 'uploading' or 'downloading' unless file
transfer is active.
client/
cs_statefile.C
clientgui/
ViewTransfers.cpp
David 5 Mar 2006
- Maybe fix bug where work fetch stopped
client/
cs_scheduler.C
file_names.h
Rom 6 Mar 2006
- Bug Fix: Fix a couple text issues when using an existing account
in the wizard
clientgui/
AccountInfoPage.cpp
CompletionPage.cpp
Rom 6 Mar 2006 (HEAD)
- Tag for 5.3.24 release, all platforms
boinc_core_release_5_3_24
Rom 6 Mar 2006
- Update localization Template
locale/client/en_US
BOINC Manager.mo
BOINC Manager.po
David 6 Mar 2006
- add db_dump_spec.xml to source tree (in sched/)
and copy it when create new project
- Core client: after read_global_prefs_override GUI RPC,
request CPU reschedule (in case #CPUs changed)
client/
file_names.h
gui_rpc_server_ops.C
py/Boinc/
setup_project.py
sched/
db_dump_spec.xml (new)
David 6 Mar 2006
- boinc_cmd: add --read_global_prefs_override command
lib/
boinc_cmd.C
Rom 7 Mar 2006
- Start the account manager wizard anytime their is an acct_mgr_url.xml
file and no credentials.
clientgui/
MainFrame.cpp
David 7 Mar 2006
- scheduler: add <master_url> element to reply
(Lets clients check that they have the right project URL)
- core client: if a project is suspended, and a scheduler RPC fails,
clear the sched_rpc_pending flag so we don't keep retrying
client/
scheduler_op.C
sched/
sched_config.C,h
server_types.C
David 7 Mar 2006
- core client: print project URL in startup message
- core client: is <master_url> is present in a scheduler reply,
and it doesn't match project's master URL,
print error messages advising detach/reattach.
If there's another project with that URL,
tell user to detach them both, since (in the BOINC Manager)
there's no way to distinguish them.
client/
client_state.C
scheduler_op.C,h
David 7 Mar 2006
- don't allow attaching a project with same name as existing project
client/
cs_scheduler.C
scheduler_op.C
lib/
error_numbers.C
Rom 7 Mar 2006
- Bug Fix: Somewhere along the line, the code to store the account
manager login name and password hash was removed from the source
tree. Put it back in.
client/
acct_mgr.C
Rom 7 Mar 2006
- Bug Fix: Choose a password nit for account managers.
clientgui/
AccountInfoPage.cpp
Rom 6 Mar 2006 (HEAD)
- Tag for 5.3.25 release, all platforms
boinc_core_release_5_3_25
Rom 9 Mar 2006
- Bug Fix: Don't display the minimum password length when a project
has account creation disabled in the attach to project wizard.
- Bug Fix: Hide the messages from server static box if there are
no messages from the server to report. Instead tell the user
to check the messages tab.
- Bug Fix: Make the next and back button go back to the account
info page when an invalid username or password are used.
- Bug Fix: Don't use Next and Back buttons in the Statistics view.
Localizers need different text because of the changes in context.
- Bug Fix: Don't allow an error message to be localized.
- Bug Fix: Where possible use a safer string copy function.
Defence in depth and all that.
client/
acct_mgr.C
clientgui/
AccountInfoPage.cpp
CompletionErrorPage.cpp
hyperlink.cpp
NotFoundPage.cpp
ViewStatistics.cpp
David 9 Mar 2006
- core client: generate a new host CPID only if we sent a nonzero host ID
to the scheduler and it returned a (different) host ID
client/
cs_scheduler.C
David 9 Mar 2006
- user web: minor fixes
html/user/
debug.php (removed)
profile_search_action.php
user_search_action.php
David 9 Mar 2006
- Scheduler: avoid creating redundant host records.
If a scheduler request has zero host ID but non-blank host CPID,
see if there's a host record in the DB with that CPID;
if so, pick the most recent (i.e. largest ID)
and use it (rather than creating a new host record).
This change means that when you detach/reattach to a project,
you won't get a new host record. Woo hoo!
sched/
handle_request.C
David 9 Mar 2006
- core client: if change host CPID, do immediate notification
only of projects managed via account manager
client/
cs_scheduler.C
Rom 11 Mar 2006
Problem: On Windows it seems like random crashes occur with
the science application is trying to shutdown.
Cause: When a science application that supports graphics is
running on Windows it is generally running with three threads.
Worker: normally contains the science package and normally
does the bulk of the memory allocations and de-allocations.
Graphics: normally just reads what the worker thread has
produced and displays it in a graphics window. Memory
allocations are normally handled on the stack or as
global variables which are only used via the graphics
thread.
Timer: normally handles the IPC to and from the core client.
When the quit request is received from the core client the timer
thread would call exit which in turn would cause the C Runtime
Library to clean up after itself before calling the ExitProcess
Windows API which would actually stop the threads and exit the
process. The thread that calls ExitProcess causes the heaps to
be freed before the other threads have been stopped. The
greater the number of allocations the longer the graphics and
worker threads are left running and the greater the chance of
touching an address of memory that has been freed.
Solution: Instead of calling exit call TerminateProcess.
TerminateProcess causes the OS to halt all executing threads at
the same time and then starts the shutdown process for the
process.
api/
boinc_api.C, .h
windows_opengl.C
David 11 Mar 2006
- Scheduler (see checkin of 9 Mar): When we use a host record
based on host CPID (presumably because user detached/reattached)
mark all in-progress results as over, client error.
This prevents them from being resent.
Avoid a situation where a result causes problems on a host,
user detaches/reattaches to clear things up,
and then the host gets sent the same result again.
(from Bruce Allen)
sched/
handle_request.C
transitioner.C
David 13 Mar 2006
- change arg of boinc_init_options() from BOINC_OPTIONS&
to BOINC_OPTIONS* (so you can call it from C)
api/
boinc_api.C,h
graphics_lib.C
Walt 13 Mar 2006
- Bug Fix: in boinc_exit(), all platforms, call fflush(NULL) so
output buffers get flushed. Moves the call outside the #ifdef.
- Bug Fix: Account manager shouldn't be contacted if the network
is suspended. This affects the automatic (every hour)
connections only.
api/
boinc_api.C
client/
client_state.C
Rom 14 Mar 2006 (HEAD)
- Tag for 5.3.26 release, all platforms
boinc_core_release_5_3_26
Charlie 14 Mar 2006
- Fix compiler bug due to BOINC_OPTIONS* when using objective-C.
api/
boinc_api.h
Rom 14 Mar 2006
- Bug Fix: Copy over the account manager url from the rpc to
the global account manager structure so that the
acct_mgr_url.xml file can be created.
client/
acct_mgr.C
David 15 Mar 2006
- API: add boinc_get_fraction_done(): call this from graphics thread
to get latest fraction done reported by worker thread.
api/
boinc_api.C,h
David 15 Mar 2006
- core client: if an account manager RPC succeeds,
do a scheduler RPC to a project that was attached via the AMS,
in case the user updated preferences.
- web RPC to set user info: make sure global and project
preferences are valid XML
(well, at least make sure they have start/end tags)
client/
acct_mgr.C
html/user/
am_set_info.php
Charlie 16 Mar 2006
- Add typedef to BOINC_OPTIONS and BOINC_STATUS so boinc_get_status()
and boinc_init_options() declarations compile without errors
when using straight C and objective-C with GCC-4.0.
api/
boinc_api.h
Rom 16 Mar 2006
- Bug Fix: If we detect a condition in which we really can't display
graphics, then we should notify the GUI's that graphics are
not enabled via the ACTIVE_TASK::write function.
client/
app.C
client_state.C, .h
Bruce 16 March 2006
- Make 'last-modified' and '<lastBuildDate>' entries in RSS feed
correctly correspond to the last time the project_news.inc file
was modified.
html/
user/
sample_rss_main.php
Rom 16 Mar 2006
- Bug Fix: Only allow the SENS Event Notification registration to
happen on Windows 2000 machines or better. This appears to
resolve explorer crashing on Win9x machines during shutdown.
clientlib/win/
boinc_dll.cpp
NetworkTracker.cpp
David 16 Mar 2006
- scheduler: when mark a result as sent, make sure its
server_state is what we expected (e.g. UNSENT).
This guards against two scheduler instances trying to
send the same result at about the same time.
(from Bruce Allen)
db/
boinc_db.C,h
db_base.C,h
sched/
sched_resend.C
sched_send.C
Bruce 16 Mar 2006
- missing return value in David's check-in
db/
boinc_db.C
David 17 Mar 2006
- fix mysql_affected_rows() problem: needed to include mysql.h
db/
boinc_db.C
db_base.C
Rom 17 Mar 2006
- Bug Fix: Stackwalker was using printf's to describe errors during
initialization, so I'm changing them to fprintf(stderr, "") style
messages so we can at least get more information about the
initialization error.
- Bug Fix: In fixing the bug above I noticed that the code to
load the dbghelp.dll library wasn't attempting to look
in the BOINC installation folder for it when executing as part
of the science applications. Check in the BOINC installation
directory first then fall back to the search path.
- Bug Fix: Treat the about box bitmap the same as the wizard bitmaps
which gets rid of the transparent whole where the BOINC splat
logo should be. The BBC and GridRepublic logos show up correctly
but the BOINC splat logo doesn't want to be seen. I'll take care
of that in a following release.
clientgui/
DlgAbout.cpp
lib/
stackwalker_win.cpp
Rom 17 Mar 2006 (HEAD)
- Tag for 5.3.27 release, all platforms
boinc_core_release_5_3_27
Bruce 17 Mar 2006
- Adding some logging for scheduler fixes from yesterday: log specific
message saying when a result is unavilable because aonther scheduler
instance grabbed it from under our hands.
sched/
sched_send.C
sched_resend.C
sched_locality.C
David 17 Mar 2006
- compile fix (from James Drews)
lib/
gui_rpc_client_print.C
Rom 17 Mar 2006
- Bug Fix: Allow generic read/write/execute for users in the user group
for the shared installation type.
win_build/installerv2
BOINC.ism
David 17 Mar 2006
- Add <prefs_mod_time> and <prefs_source_project> elements
to account manager requests;
tells the AMS what version of global prefs we have
- Add optional <update/> tag in <account> elements
of account manager replies.
This tells the core client to do a scheduler RPC to the project.
The account manager should set this when it has updated prefs
and wants the core client to get them;
put <update/> in the <account> element for one of
the projects to which prefs were successfully sent.
- Core client: remove code (from 15 Mar) that contacts a project
after every successful AMS operation.
client/
acct_mgr.C,h
doc/
acct_mgt.php
Rom 17 Mar 2006
- Bug Fix: If graphics have been disabled because the client configuration
cannot handle them, then report back to the screensaver that graphics
are not available instead of cycling through them.
This also reduces the bug surface area for applications who are having
problems with application graphics since it avoids spinning up the
graphics window even though it cannot be seen.
client/
ss_logic.C
Bruce 20 Mar 2006
- User web pages: outcome validate error was being reported as unknown.
html/
inc/
result.inc
Charlie 20 Mar 2006
- Add /Library/Receipts/BOINC.pkg to list of files to remove for uninstall.
doc/
mac_advanced.php
mac_installer/
GR-ReadMe.rtf
ReadMe.rtf
David 20 Mar 2005
- If a project's web site is turned off
(i.e. if the stop_web file is present)
the get_project_config.php script returns a ERR_PROJECT_DOWN error,
so that the BOINC Manager's Attach Project Wizard
will show a "project not available" message
before asking for email/password
html/user/
get_project_config.php
Walt 20 Mar 2005
- Bug fix: Fix issues with proxy authorization:
-libcurl resends 'post' requests when negotiating authorization
type with the proxy server, needed curl callback function to
rewind the data.
-add variables to NET_XFER to save proxy server authorization type.
NET_XFER::auth_flag is BOOL, TRUE = proxy server uses authorization
NET_XFER::auth_type: 0 = libcurl negotiates auth type
~0 = authorization type libcurl used with proxy
client/
http_curl.C,h
net_xfer_curl.C,h
Rom 21 Mar 2005
- BOINC API: When an application is being aborted, dump the backtraces for
the timer, worker, and graphics threads. (Windows Only)
This helps with applications that are stuck in an endless loop for
some reason. We should no longer need to solicit users with debugging
experience to track down these kinds of issues anymore. When the
user aborts the workunit the needed data should show up in stderr.
From there the user can post a message in the forum and go on about
their business.
api/
boinc_api.C
graphics_impl.C
windows_opengl.C
lib/
diagnostics.C, .h
stackwalker_win.cpp, .h
Rom 21 Mar 2005
- Move the structure out of the header into the .C file
lib/
diagnostics.C, .h
Walt 21 Mar 2005
- Bug Fix: Don't use Range: header when resuming file uploads
client/
http_curl.C
Rom 21 Mar 2006 (HEAD)
- Tag for 5.3.28 release, all platforms
boinc_core_release_5_3_28
Rom 21 Mar 2006
- Compile fix for Linux
client/
http_curl.C
net_xfer_curl.C
Charlie 21 Mar 2006
- Mac: fix compiler "unused variable" warning.
Please remember to remove unused variables from source files
before checking them in.
lib/
diagnostics.C
David 22 Mar 2006
- API: Added some code for drawing characters
in a variety of fonts, sizes, textures etc.
Also added font files;
you'll need to bundle them with your application.
See http://www.opengl.org//resources/code/samples/mjktips/TexFont/TexFont.html
From Tolu Aina.
api/
texfont.c,h
txf_util.C
txf/
*.txf
Rom 22 Mar 2006
- Make moincmgr compile cleanly on Linux distro's where the
wxWidget libraries only come in the Unicode flavor.
From: Frank S. Thomas
clientgui/
AccountManagerProcessingPage.cpp
AccountManagerPropertiesPage.cpp
BOINCBaseView.cpp
BOINCGUIApp.cpp, .h
BOINCTaskBar.cpp
DlgAbout.cpp
MainDocument.cpp
MainFrame.cpp
ProjectProcessingPage.cpp
ProjectPropertiesPage.cpp
ProxyPage.cpp
ValidateURL.cpp
ViewMessages.cpp
ViewProjects.cpp
ViewResources.cpp
ViewStatistics.cpp, .h
ViewTransfers.cpp
ViewWork.cpp
WizardAccountManager.cpp
Rom 22 Mar 2006
- Remove the TerminateProcess kludge and make it part of the default
behavior.
api/
boinc_api.C, .h
Charlie 23 Mar 2006
- Mac: Backtrace now always dumps all threads. User abort calls
api/
boinc_api.C
lib/
mac_backtrace.C
Rom 23 Mar 2006
- Fix the boinc_exit(0) call when an abort happens to
boinc_exit(ERR_ABORTED_VIA_GUI).
- Remove a duplicated class identifier so that the manager will
with g++ 4.1
- Bug Fix: Treat 301 and 302 http status codes as a
get_project_config.php error so that the invalid project page
comes up, instead of the unavailable page.
api/
boinc_api.C
clientgui/
BOINCTaskBar.h
AccountManagerPropertiesPage.cpp
ProjectPropertiesPage.cpp
David 23 Mar 2006
- Core client: ignore <fraction_done>0</fraction_done> from apps.
If an app is being restarted,
and hasn't called boinc_fraction_done() yet,
the fraction done will be reported as zero even
though the actual fraction done is nonzero.
client/
app_control.C
David 23 Mar 2006
- make_project:
- allow use of .htaccess in cgi-bin
- if --project_root is specified, put the key_dir there too
(from Eric Myers)
tools/
make_project
Rom 23 Mar 2006
- Bug Fix: Fix a COM initialization error within BOINC DLL.
clientlib/lib/
boinc_dll.cpp
Rom 23 Mar 2006
- make_project:
- Copy missing images
(from Eric Myers)
tools/
make_project
Walt 23 Mar 2006
- Bug Fix: Multiple load/unloads of boinc.dll messed up the
idle detection routine. Removed redundant load/free module
code so dll is loaded once in beginning, unloaded at program
end.
client
main.C
client/win
hostinfo_win.C
David 24 Mar 2006
- Let team founders get lists of team members
(including their email addresses) via XML RPC.
The URL is PROJECT/team_email_list.php?teamid=X&account_key=Y&xml=1
This feature lets cross-project teams more easily get their
combined email-address list.
It doesn't change BOINC's privacy policy;
team founders could always get member email addresses.
html/
inc/
xml.inc
user/
team_email_list.php
Walt 25 Mar 2006
- Cleanup unused code left over from testing, adjust temporary
buffer size so error messages don't overflow
- BugFix: Fix couple of problems with boinc_cmd:
--project command options 'suspend' and 'resume' shown as valid
but they weren't being parsed.
--file_transfer help text shows options in wrong order
client
main.C
lib
boinc_cmd.C
Rom 26 Mar 2006
- BOINC API: OpenThread() doesn't exist on Win98 or Win95, so get the
thread handle by way of DuplicateHandle() since GetCurrentThread()
just returns a -2.
api/
boinc_api.C
windows_opengl.C
Rom 26 Mar 2006
- Bug Fix: Finish the implementation of the "Hide Graphics" button.
- Bug Fix: Don't enable the "Copy selected message" button until at least
one message is highlighted.
client/
gui_rpc_server_ops.C
clientgui/
MainDocument.cpp, .h
ViewMessages.cpp
ViewWork.cpp
lib/
boinc_cmd.C
gui_rpc_client.h
gui_rpc_client_ops.C
locale/client/en_US/
BOINC Manager.mo, .po
Rom 26 Mar 2006
- Bug Fix: Provide that little extra tid bit of information that might keep
somebody from aborting a CPDN task when it is 70% complete and not over
due.
clientgui/
ViewWork.cpp
locale/client/en_US/
BOINC Manager.mo, .po
Rom 26 Mar 2006
- Bug Fix: Since we changed over to async connections the manager has been
shutting down which ever client is was currently connected to. So
wait until we have successfully reconnected to the local BOINC client
and verify we are connected to the local BOINC client before sending
the quit command.
clientgui/
BOINCGUIApp.cpp
MainDocument.cpp, .h
Rom 27 Mar 2006
- Bug Fix: When choosing a default value for something, use a value that
connot be confused with valid data otherwise you might overwrite valid
default values setup during object creation.
clientgui/
BOINCListCtrl.cpp
Rom 27 Mar 2006
- Bug Fix: Make sure that the thread that has caused an exception dumps
it's callstack even if it didn't register itself to the diagnostics
functions.
lib/
diagnostics.C
Walt 27 Mar 2006
- Enable some CBOINCDialupManager functions for non MS-Windows platforms.
As the auto-dialer doesn't work on these systems, just display a
notification box telling the user an Internet connection is needed.
clientgui/
MainFrame.cpp
BOINCDialupManager.cpp
Walt 27 Mar 2006
- Second half of CBOINCDialupManager changes
clientgui/
BOINCDialupManager.cpp, h
Makefile.am
Rom 27 Mar 2006 (HEAD)
- Tag for 5.3.29 release, all platforms
boinc_core_release_5_3_29
Walt 28 Mar 2006
- Bug Fix: 'Need Internet connection' message wasn't being displayed
on non MS-Windows systems.
clientgui/
MainFrame.cpp
Rom 28 Mar 2006
- Bug Fix: On non-windows systems be sure to call the wxApp::Yield()
function to process outstanding window messages when shutting
down. This should resolve the issue of CDocument::Poll() not being
called on shutdown when a connection to the local BOINC client
needs to be reestablished.
- Bug Fix: Disable the 'Hide graphics' button for now.
clientgui/
BOINCGUIApp.cpp
ViewWork.cpp
Walt 28 Mar 2006
- Bug Fix: Use alert box for 'need Internet connection' message when
manager window is hidden.
clientgui/
BOINCDialupManager.cpp
Rom 28 Mar 2006
- Bug Fix: Try a different method to notify the local BOINC CC that it
needs to shutdown on all platforms.
- Bug Fix: Discard notification only events for platforms other than
Windows until we can figure out a better way to display them.
clientgui/
BOINCGUIApp.cpp
MainFrame.cpp
Charlie 28 Mar 2006
- Mac: Fix compiler warnings.
clientgui/
BOINCDialupManager.cpp
ViewWork.cpp
Walt 28 Mar 2006
- Bug Fix: Show 'needs Internet connection' dialog only when the
manager is the foreground window. Comment out the alert messages
until they're implement in non-MS-Windows platforms
clientgui/
BOINCDialupManager.cpp
Rom 28 Mar 2006 (HEAD)
- Tag for 5.3.30 release, all platforms
boinc_core_release_5_3_30
Walt 28 Mar 2006
- Bug Fix: Manager window always shows 'active' on MAC, so check
whether application has the focus instead.
clientgui/
BOINCDialupManager.cpp
David 29 Mar 2006
- boinc_cmd: fix
boinc_cmd --project X resume
and
boinc_cmd --project X suspend
- user web: RPC to get team membership:
if account_key missing, show members but omit email addresses
html/
inc/
xml.inc
ops/
mass_email.php
user/
team_email_list.php
lib/
boinc_cmd.C
David 30 Mar 2006
- API: move code that uses GLUT character-drawing functions
to a separate file (gutil_text.C).
This makes it easier for apps to not include GLUT.
- API: if you compile gutil.C with -DSANS_JPEGLIB,
you won't get any calls to jpeglib functions.
api/
gutil.C
gutil_text.C
Rom 30 Mar 2006
- Make the SENS initialization code non fatal when an error
occurs.
- Change the Windows installer so that the DLLs that BOINC
is dependant on are are contained in a seperate component
that is always installed and removed duplicate references
from the install type specific components. This shrinks
the install package by 2MB.
clientlib/win/
boinc_dll.cpp
win_build/installerv2/
BOINC.ism
David 30 Mar 2006
- Core client: fix nasty crash bug.
If a result had a lot of output files, its failure message
(originating from X)
could exceed 1024 chars.
It gets passed up to show_message(),
and is copied (by strcpy()) into a 1024-char buffer. Crash!
Fixed this by using strlcpy() instead.
- Core client: return file errors in a std::string instead of char*
- Core client: in generating XML descriptions of file failures,
insert <error_message>X</error_message> elements
only if there's a message.
At some point we should replace char[N] with std::string
everywhere in the code.
Fix-size buffers are crashes waiting to happen.
I wish you could sprintf() to a string.
client/
client_state.C
client_types.C,h
main.C
Rom 30 Mar 2006
- Bug Fix: Initializing some of the dependant DLLs on Windows was
causing us to bump up against the 30 second marker and making
the service control manager think something was wrong and kill
the BOINC service on boot. I moved the bulk of the
initialization code to boinc_main_loop which is called by the
service control manager when running as a service. This change
will keep this from happening in the future if we take on any more
dependencies.
client/
main.C
clientlib/win/
BOINCSENSSink.cpp
Rom 30 Mar 2006 (HEAD)
- Tag for 5.3.31 release, all platforms
boinc_core_release_5_3_31
Charlie 30 Mar 2006
- Mac: Fix "unused variable" compiler warning.
- Mac: "Fix" bug 460: Mac OS X automatically puts a "Preferences" item
in the BOINC menu, but we don't use it so it was disabled. This was
confusing some users, so hide (delete) this menu item.
- Mac: add gutil_text.C to project.
client/
main.C
clientgui/
MainFrame.cpp
mac_build/
boinc.xcodeproj/
project.pbxproj
David 30 Mar 2006
- API: move GLUT-related includes to a separate file,
which is included only from files that need it.
api/
boinc_gl.h
boinc_glut.h (new)
gutil_text.C
x_opengl.C
Eric 2 Apr 2006
- Added stream memory bandwidth benchmark. Still needs modifications
to timing logic and possibly changes to allow multiple threads or
processes. This is not yet added to Makefiles or called from the code.
client/
stream.C (new)
David 3 Apr 2006
- Add script to find results with no corresponding workunit
html/ops/
db_cleanse.php
Rom 3 Apr 2006
- Bug Fix: When switching from any state to SS_STATUS_ENABLED make sure
we set the ss_status back to SS_STATUS_ENABLED.
- Bug Fix: Increase the screensaver polling frequency when the
screensaver is set to anything other than SS_STATUS_ENABLED. This
makes the status messages disappear faster when the graphics app
is started again.
- Bug Fix: Right justify Work:Progress and Disk:Diskspace list view
columns.
client/
ss_logic.C
client/win/
win_screensaver.cpp
clientgui/
ViewResources.cpp
ViewWork.cpp
David 4 Apr 2006
- back end: have the "dir_hier_path" script create the fanout directory
if it's not there.
tools/
dir_hier_path.C
David 4 Apr 2006
- Finish script to delete orphan results
html/ops/
db_cleanse.php
David 4 Apr 2006
- core client: define a result's "computation deadline":
it's report deadline minus network connect period
and minus cpu scheduling period.
Use this, rather than report deadline, in CPU scheduling.
- take network connect period into account in deciding
when results have to be reported
(from John McLeod)
client/
client_types.C,h
cpu_sched.C
cs_scheduler.C
Rom 5 Apr 2006
- Bug Fix: Set the AccountInfo.cpp control states before
attempting to set the text for the controls. Otherwise
we'll see text that says 'choose a password' instead
of 'password'.
clientgui/
AccountInfoPage.cpp
Charlie 5 Apr 2006
- Mac: New shell script to sets up Mac to run BOINC Client as
a daemon / service. Note: when running as a daemon, the
graphics (screensaver and "Show Graphics" button) work only
if BOINC's owner is the logged in user.
- Added boinc_glut.h to XCode project.
mac_build/
boinc.xcodeproj/
project.pbxproj
Make_BOINC_Service.sh (new)
Rom 5 Apr 2006
- Bug Fix: Change the progress field to display xx.xxx% since
some projects use that to debug looping issues.
- Bug Fix: In the screensaver make sure that the foreground window
is either a screensaver window or a BOINC application window.
If another window is the foreground window, shutdown the
screensaver.
client/win
win_screensaver.cpp
clientgui/
ViewWork.cpp
Rom 6 Apr 2006
- Bug Fix: Add some text about connectivity problems to the proxy
into page.
- Bug Fix: Remove the code that was keeping the 'Not Found' page from
going to the 'Account Info' page.
clientgui/
ProxyInfoPage.cpp
WizardAccountManager.cpp
WizardAttachProject.cpp
Rom 6 Apr 2006 (From Frank S. Thomas)
- Bug Fix: Allow a connection request to reset a connection attempt
to the local computer or another computer.
clientgui/
MainDocument.cpp
Rom 6 Apr 2006 (From Darrel Holz)
- Bug Fix: Fix the Logo display for BOINC when not running as a branded
client.
clientgui/
DlgAbout.cpp
Charlie 7 Apr 2006
- Mac: Fix bug in shell script to set up Mac to run BOINC Client as
a daemon / service.
mac_build/
Make_BOINC_Service.sh
David 7 Apr 2006
- add graphics to sample app
api/
gutil.C
txt_util.C
apps/
upper_case.C
Charlie 7 Apr 2006
- Mac: If launching client as a daemon / service at system startup, retry
gethostbyname() for up to 10 seconds if needed, to allow system
support to become available.
client/
hostinfo_network.C
Rom 8 Apr 2006
- Bug Fix: Make stackwalker more useful on Windows by dumping the function
pointers and registers for each thread. Cut away all the extra code.
lib/
diagnostics.C
stackwalker_win.cpp, .h
Rom 9 Apr 2006
- Bug Fix: Add a check to stackwalker so that if it detects it is running on
Win9x it'll switch over to the Win9x compatible dbghelp.dll. After
checking it out, it doesn't require any changes to the stack walker code
as it has the 64 bit function exports. So all that was required was
just changing which DLL was used to get the function pointers.
- Bug Fix: Upgrade to the latest stable debugging tools from Microsoft.
lib/
stackwalker_win.cpp
win_build/installerv2/redist/Windows/x86/
dbghelp.dll
dbghelp95.dll (Added)
srcsrv.dll (Added)
symsrv.dll (Added)
Rom 9 Apr 2006
- Put the infrastructure in place to be able to use Symbol Servers. This
is just the basics. Many details need to be worked out.
lib/
diagnostics.C, .h
stackwalker_win.cpp, .h
Rom 10 Apr 2006
- Bug Fix: Fix a crash condition where a result maybe in the list view but
may have already been cycled out of the system. There is a brief
period of time where the result is being sent back to the scheduler and
the user may switch back to the work tab where this crash would occur.
clientgui/
ViewWork.cpp
Rom 10 Apr 2006 (boinc_core_release_5_4)
- Tag for 5.4.0 release, all platforms
boinc_core_release_5_4
Charlie 10 Apr 2006
- Extend Mac screensaver safety timer of 21 Feb 2006 to all platforms.
(checked this in to both HEAD and boinc_core_release_5_4 branches.)
client/
app_graphics.C
ss_logic.C
app.C
app.h
Rom 11 Apr 2006
- Bug Fix: Account creation controls should be disabled for all
account manager code paths, not just update.
- Bug Fix: Extend the timeout for the graphics mode ack to 30
seconds in the screensaver poll function to give LHC and
CPDN more time to create and display their graphics window
when going into screensaver mode.
- Bug Fix: Add some extra logic to the screensaver to handle
detection of idle user input without needing to be the
active window. If the science application window hasn't
processed a window message for 5 seconds do an additional
check to determine if any mouse or keyboard activity has
been detected. If activity has been detected, shutdown the
screensaver system.
- Bug Fix: Add a please wait message to the screensaver for
applications that take a long time before they display
their own graphics.
client/
ss_logic.C
client/win/
boinc_ss.h
boinc_ss.rc
win_screensaver.cpp, .h
clientgui/
AccountInfoPage.cpp
Rom 11 Apr 2006 (boinc_core_release_5_4)
- Tag for 5.4.1 release, all platforms
boinc_core_release_5_4_1
Rom 12 Apr 2006
- Bug Fix: Fix a crash on Win9x when leaving the screensaver and
password protection is enabled.
- Bug Fix: Do not allow the Win9x password dialog to get stuck behind
the main screensaver windows, otherwise the only thing you can do
is reboot the machine.
- Include the thread id with trace statements.
client/win/
win_screensaver.cpp, .h
lib/
diagnostics.C
David 13 Apr 2006
- graphics API: in txf_load_fonts(),
use boinc_resolve_filename() so that font files
can be in the project dir
api/
txf_util.C
Rom 12 Apr 2006 (boinc_core_release_5_4)
- Tag for 5.4.2 release, all platforms
boinc_core_release_5_4_2
Rom 13 Apr 2006
- Bug Fix: Adjust the startup sequence on Windows a bit so that the
window doesn't flicker. Another perk is that on startup the
window won't display itself until it can fully deal with user
input.
clientgui/
BOINCGUIApp.cpp
MainFrame.cpp, .h
Rom 13 Apr 2006
- Bug Fix: Fix a shutdown bug that was causing the manager to wait
the full 10 seconds before closing itself.
clientgui/
BOINCGUIApp.cpp
Rom 13 Apr 2006 (boinc_core_release_5_4)
- Tag for 5.4.3 release, all platforms
boinc_core_release_5_4_3
Charlie 14 Apr 2006
- Mac: OnShow() is not implemented in wxMac-2.6.2, so move code from
CMainFrame::OnShow() into new method CMainFrame::SetWindowDimensions().
Call SetWindowDimensions() from CMainFrame::OnShow() and also from
Mac-only method CMainFrame::Show().
clientgui/
MainFrame.cpp, .h
Rom 14 Apr 2006
- Bug Fix: Apparently Windows and Mac message boxes by default have an OK
button and Linux does not. So add wxOK to all the alerts sent.
clientgui/
BOINCDialupManager.cpp
MainFrame.cpp
Rom 15 Apr 2006
- Enable proxy support to retrieve symbols from a web based symbol store.
- Enable trace debugging for various components that the Windows debugging
environment uses. This only works with tools that can trap
OutputDebugString based messages. It is something we may support in
a future release. If dbghelp.dll or symsrv.dll ever use their
callbacks, that output will be logged to stderr.txt
lib/
diagnostics.C
stackwalker_win.cpp, .h
Rom 16 Apr 2006
- Bug Fix: Add cache timestamps for project, task, transfers, statistics,
and resources.
clientgui/
MainDocument.cpp, .h
Rom 16 Apr 2006
- Bug Fix: Include file version informaton in the debugger module list
lib/
stackwalker_win.cpp
Charlie 17 Apr 2006
- Mac bug fix: If window was never opened, window dimensions were never
read from preferences, so SaveState wrote bad values in preferences.
- Mac: Don't customize name of BOINC Data directory for branding; change
"GridRepublic Manager" to "GridRepublic Desktop; make branding script
more robust if there is a space in any file or directory name or path.
- Mac: Release scripts automatically update ReadMe version numbers.
- Mac: clarify that upgrade warning from older versions applies only to
Intel Macs.
clientgui/
BOINCGUIApp.cpp
MainFrame.cpp
mac_installer/
GR-ReadMe.rtf
ReadMe.rtf
PostInstall.cpp
preinstall
release_boinc.sh
release_GridRepublic.sh
Rom 17 Apr 2006
- Clean up the caching scheme used in the manager
- Remove the message cache update for all tabs except
the messages tab.
- Remove the project update from the work tab. Use a new flag being
introduced to show if the project has been suspended via GUI.
clientgui/
MainDocument.cpp
MainFrame.cpp
ViewMessages.cpp
ViewProjects.cpp
ViewResources.cpp
ViewStatistics.cpp
ViewTransfers.cpp
ViewWork.cpp
David 17 Apr 2006
- get rid of the versions of xml_escape() and xml_unescape()
that take std::string args.
These are too inefficient.
- boolean constant is "true", not "TRUE"
client/
client_types.C
lib/
app_ipc.C
diagnostics.C
parse.C,h
proxy_info.C
sched/
db_dump.C
db_purge.C
server_types.C
David 17 Apr 2006
- GUI RPC: add an optional <project_suspended_via_gui/>
tag to <result> elements.
This tells the Manager that the project is suspended
without having to do a separate get_projects GUI RPC
client/
client_types.C
lib/
gui_rpc_client.h
gui_rpc_client_ops.C
Rom 17 Apr 2006
- Use the boolean flag now defined in the result instead of
looking it up in the project structure.
clientgui/
ViewWork.cpp
Rom 17 Apr 2006 (boinc_core_release_5_4)
- Tag for 5.4.4 release, all platforms
boinc_core_release_5_4_4
David 18 Apr 2006
- make match_tag(), parse_int(), parse_double() into inlines
- remove setlocale() calls from parse_int(), parse_double().
Numbers in XML (including GUI RPCs) are always in standard format.
Whoever writes XML (e.g. the Manager) must ensure this.
lib/
parse.C,h
David 18 Apr 2006
- core client: better messages on network check
- unix compile fix
client/
acct_setup.C
lib/
parse.h
Charlie 18 Apr 2006
- Mac: Add texfont.C,h and txf_util.C,h to XCode project for building
graphics library; fix compiler warning.
api/
texfont.c,h
clientgui/
MainFrame.cpp
mac_build/
boinc.xcodeproj/
project.pbxproj
David 18 Apr 2006
- if no physical network connection (gstate.need_physical_connection is set)
then don't increment failure count for file transfers
and scheduler RPCs.
(avoid ending up with 2-week backoff when network is down for a while.)
client/
pers_file_xfer.C
scheduler_op.C
David 18 Apr 2006
- improve network-related messages
Add error_msg field to NET_XFER.
Put Curl error messages here; print them at a higher level,
where we can give the context
client/
acct_setup.C
net_xfer_curl.C,h
scheduler_op.C
Rom 18 Apr 2006
- Bug Fix: setlocale is needed in environments where the C runtime library
will attempt to use the current locales' numerical formating rules to
extract integer or floating point numbers. The core client doesn't
observe local formating rules and defaults to the "C" locale. When
parsing data from the CC be sure to flip the locale to "C" and return
it when your done.
lib/
gui_rpc_client_ops.C
David 19 Apr 2006
- scheduler: put \n after global and project prefs in reply message;
otherwise, if those fields don't have \n,
we end up with 2 elements on 1 line and it doesn't parse right.
sched/
server_types.C
Walt 19 Apr 2006
- Code cleanup: remove duplicate calls to xml_unescape.
- Bug Fix: Change HTTP redirect limit to 50
- Bug Fix: Fix problems with socks5 proxys:
- Auth negotiation is handled by libcurl, remove that from BOINC
- Set connection timeouts to 20 seconds
*NOTE* Using socks5 proxies will cause BOINC to block until a
connection is made to the end server. BOINC will 'lock up'
until the connection attempt completes or times out.
client/
http_curl.C
lib/
proxy_info.C
Rom 19 Apr 2006
- If an application hasn't initialized the diagnostics system, provide
reasonable defaults and initialize it for them. This only handles
the boinc_init() and boinc_init_graphics() cases.
api/
boinc_api.C
graphics_api.C
lib/
diagnostics.C, .h
Rom 19 Apr 2006
- Update dependancies.
curl/
<various files>
openssl/
<various files>
zlib/
<various files>
Walt 20 Apr 2006
- Enable network tracing when <net_xfer_debug> log_flag is set.
Dumps libcurl info messages and http header information.
client/
http_curl.C,h
Rom 20 Apr 2006 (boinc_core_release_5_4)
- Tag for 5.4.5 release, all platforms
boinc_core_release_5_4_5
Rom 21 Apr 2006
- Bug Fix: Fix the account lookup and get project config rpcs which
I broke fixing the setlocale stuff.
lib/
gui_rpc_client_ops.C
Walt 22 Apr 2006
- Bug fix: When tracing network activity, increment trace_id when request
is created. All the trace records for that network operation will have
the same request number.
- Bug fix: Don't use NTLM authorization for proxys.
client/
http_curl.C
David 23 Apr 2006
- core client: add missing \n to error string for failed results
client/
client_state.C
Rom 24 Apr 2006
- Bug Fix: Fix a connection to a remote machine bug.
clientgui/
MainDocument.h
Rom 24 Apr 2006 (boinc_core_release_5_4)
- Tag for 5.4.6 release, all platforms
boinc_core_release_5_4_6
Rom 25 Apr 2006
- Bug Fix: Fix for missing includes.
client/
cpu_sched.C
Rom 25 Apr 2006
- Bug Fix: PPM files need to be closed when we are finished using them
or we'll experience a handle leak
- Bug Fix: After drawing the PPM bitmap on an OpenGL surface, free the
memory.
api/
gutil.C
Walt 27 Apr 2006
- Bug Fix: Restore the same locale category that was saved
lib/
gui_rpc_client_ops.C
Charlie 27 Apr 06
-Mac: Change XCode project. build instructions and build scripts to use
curl-7.15.3 and to apply Walt's patch to curl-7.15.3/lib/url.c file.
doc/
mac_build.html
mac_build/
buildcurl.sh
buildjpeg.sh
setupForBOINC.sh
HowToBuildBOINC_XCode.rtf
boinc.xcodeproj/
project.pbxproj
Rom 27 Apr 2006
- Bug Fix: Create a BOINC Service shutdown custom action for the installer
since the installer technology wants to wait until after it has found
out which files are in use to shutdown the service.
win_build/installerv2/redist/Windows/src/boinccas/
CAShutdownBOINC.cpp, .h (Added)
win_build/installerv2/redist/Windows/x86/
boinccas95.dll
boinccas.dll
Charlie 28 Apr 2006
- Mac: Fix bug of 17 April creating BOINC Data directory.
- Change shell script which sets up Mac to run BOINC Client as a
daemon / service to launch BOINC only if BOINC Data directory
exists.
- Flush output of SetVersion and add Run Script phases to XCode project to
insure that updated info.plist file with correct version number is put
into the BOINC Manager, ScreenSaver, SystemMenu and PostInstall bundles.
clientgui/
BOINCGUIApp.cpp
Mac/
SetVersion.C
mac_build/
Make_BOINC_Service.sh
boinc.xcodeproj/
project.pbxproj
David 28 Apr 2006
- core client: if an input file has <generated_locally/> set,
don't try to download it.
This allows apps to use "initialization" files
that are large and/or computationally expensive to generate.
The app generates the file once,
and it will be available (assuming <sticky/> is set)
for subsequent workunits.
client/
app_start.C
cs_apps.C
cs_files.C
Rom 28 Apr 2006 (by Frank S. Thomas)
- Bug Fix: The shutdown procedure should be passing ANSI strings to
the GUI RPC's instead of Unicode strings.
- Bug Fix: Remove the --no-unicode flags from configure.ac when trying
to determine which wxWidget libraries to use.
/
configure.ac
clientgui/
BOINCGUIApp.cpp
Rom 28 Apr 2006 (boinc_core_release_5_4)
- Tag for 5.4.7 release, all platforms
boinc_core_release_5_4_7
Rom 1 May 2006
- Add a commandline option to the screensaver to do a simple RPC
so that we can trick the firewall packages into displaying
a dialog asking for user approval before the real screensaver
ever launches.
- Remove some extra verbose messages from stdout and stderr in
the client library.
client/win/
win_screensaver.cpp
clientlib/win/
NetworkTracker.cpp
Rom 2 May 2006
- Have the BOINC Manager perform the screensaver test everytime
is successfully makes a connection to the localhost core
client. It executes so fast it doesn't even show up in the
process list and if the user ever switches firewall packages
it'll at least prevent the machine from going into limbo
when the screensaver is spposed to shutdown.
clientgui/
BOINCGUIApp.cpp, .h
MainFrame.cpp
Rom 2 May 2006
- Bug Fix: Calculate the page size after the OnChangedEvent is fired
and then set the dialog size. Should keep the wizard pages from
clipping the text.
- Bug Fix: Change the process execution code to use wxExecute since
it is async. If for some reason the old screensaver doesn't
get replaced by setup, we don't want to block the main UI thread.
clientgui/
BOINCGUIApp.cpp
wizardex.cpp
Walt 2 May 2006
- Display HTTP status message or code when its not 1xx or 2xx.
- Add a few more HTTP status messges to boincerror().
client/
net_xfer_curl.C
lib/
util.C
Rom 3 May 2006
- Bug Fix: To keep the Mac from clipping text in the wizard
increase the default width of a wizard page. The width
of each character is wider with the Mac fonts.
clientgui/
wizardex.cpp
Rom 3 May 2006 (boinc_core_release_5_4)
- Tag for 5.4.8 release, all platforms
boinc_core_release_5_4_8
David 30 Apr 2006
- Less insistent messages when client has worng URL for project
client/
cs_scheduler.C
Rom 4 May 2006
- Bug Fix: Increase the WaitHint from 10 seconds to 30 seconds so
the service mode install isn't so jumpy when it takes awhile
to shutdown.
client/win/
win_service.cpp
Rom 5 May 2006 (boinc_core_release_5_4)
- Tag for 5.4.9 release, all platforms
boinc_core_release_5_4_9
Walt 8 May 2006
- Bug fix: DNS lookup when network was unavailable consumed all
available CPU. Fix limits times thru loop and adds a short
sleep before breaking out of it.
client/
client_state.C
Rom 15 May 2006
- Bug Fix: Change the account not found window title to login failed.
- Bug Fix: If a login call fails for an account manager turn off using
cached credentials for the next login request.
- Remove what is now dead code in the manager.
clientgui/
AccountManagerProcessingPage.cpp
AccountManagerPropertiesPage.cpp, .h
NotFoundPage.cpp
ProjectPropertiesPage.cpp, .h
David 21 May 2006
- Bug Fix: Properly deal with network suspension
- Manager: fix garbled message about needing network connection
client/
client_state.C
clientgui/
BOINCDialupManager.cpp
David 23 May 2006
- core client: fix logic error involving the
"5 minutes of network after GUI RPC" thing.
client/
client_state.C
Rom 14 June 2006
- Bug Fix: Fix crashing condition with Unicode BOINC Manager.
(From Frank S. Thomas)
clientgui/
MainFrame.cpp
Rom 14 June 2006
- Bug Fix: Fix crashing condition with Unicode BOINC Manager.
(From Frank S. Thomas)
clientgui/
ViewTransfers.cpp
Rom 16 June 2006 (boinc_core_release_5_4)
- Tag for 5.4.10 release, all platforms
boinc_core_release_5_4_10
Rom 5 July 2006
- Remove needless return when init_data.xml is not present from the
BOINC API. This was fixed in HEAD a long time ago.
lib/
diagnostics.C
Rom 2 Aug 2006
- Bug Fix: McAfee Internet Suite 8 now interjects McProxy.exe into the
boincmgr.exe <-> boinc.exe communication stream. Normally it wouldn't
be a problem except that McProxy.exe automatically returns success for
a connect request even if the target isn't available. This lead the
manager to believe that the CC had already been started. We now do a
simple get screensaver mode request which is not password protected to
verify that boinc.exe is listening on the other end.
clientgui/
BOINCGUIApp.cpp
David 2 Aug 2006
- core client: attempted fix for benchmarks running right away
and preventing contact to account manager for new users
client/
client_state.C
Rom 2 Aug 2006
- After successfully attaching to an account manager, display a balloon
to reassure the participant that everything is fine.
clientgui/
MainFrame.cpp
Rom 2 Aug 2006 (boinc_core_release_5_4)
- Tag for 5.4.11 release, all platforms
boinc_core_release_5_4_11
|