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
|
Sun Apr 7 14:35:04 2002 Petr Baudis <pasky@ji.cz>:
* configure.in:
0.4pre5
Sun Apr 7 14:13:10 2002 Petr Baudis <pasky@ji.cz>:
* src/bookmarks/bookmarks.c:
Do not save bookmarks in new format yet, if they were loaded in the
old format.
Sun Apr 7 14:06:38 2002 Petr Baudis <pasky@ji.cz>:
* src/document/download.c:
Reverted download cleanup by Zas. Caused VERY nasty problems.
Sun Apr 7 13:55:41 2002 Petr Baudis <pasky@ji.cz>:
* src/cookies/cookies.c:
Reverted cookies cleanup by Zas. Caused VERY nasty problems.
Sun Apr 7 12:47:02 2002 Petr Baudis <pasky@ji.cz>:
* configure.in:
Breaking things at least partially working yet.. oh well ;) Now
we'll check for -ldl when checking for Lua as well.
Sun Apr 7 07:01:52 2002 Petr Baudis <pasky@ji.cz>:
* src/lua/lua.c:
Include stdio.h in lua.c, thanks to Jos Luis Gonzlez Gonzlez
<jlg80@mi.madritel.es>.
Sat Apr 6 22:19:13 2002 Petr Baudis <pasky@ji.cz>:
* src/main.c:
Fix in merge of OS/2 fix pipe-before-socket from 0.97pre11.
Sat Apr 6 22:10:17 2002 Petr Baudis <pasky@ji.cz>:
* intl/brazilian_portuguese.lng, intl/bulgarian.lng,
intl/catalan.lng, intl/czech.lng, intl/dutch.lng, intl/english.lng,
intl/estonian.lng, intl/finnish.lng, intl/french.lng,
intl/galician.lng, intl/german.lng, intl/greek.lng,
intl/hungarian.lng, intl/icelandic.lng, intl/indonesian.lng,
intl/italian.lng, intl/lithuanian.lng, intl/polish.lng,
intl/romanian.lng, intl/russian.lng, intl/slovak.lng,
intl/spanish.lng, intl/swedish.lng, intl/turkish.lng,
intl/ukrainian.lng, src/document/view.c, src/intl/lang_defs.h,
src/intl/language.inc:
Show page title and last visit time in location info dialog, patch
by Miciah.
Sat Apr 6 18:02:30 2002 Petr Baudis <pasky@ji.cz>:
* src/bookmarks/bookmarks.c:
By now on, use '\t' as separator in the ~/.links/bookmarks file
rather than '|'. We still accept '|' as a separator in old
bookmarks files. Patch by Zas and me.
Sat Apr 6 17:52:09 2002 Petr Baudis <pasky@ji.cz>:
* src/bookmarks/bookmarks.c:
Safe bookmarks loading, patch by Zas.
Sat Apr 6 17:46:40 2002 Petr Baudis <pasky@ji.cz>:
* src/cookies/cookies.c:
Cookies tidyup, more secure loading of cookies (allocate enough
space). Patch by Zas.
Sat Apr 6 17:38:29 2002 Petr Baudis <pasky@ji.cz>:
* src/main.c:
Workaround for some subtle bug in OS/2 - create pipe before socket
(by mikulas, from 0.97pre11).
Sat Apr 6 17:08:11 2002 Petr Baudis <pasky@ji.cz>:
* src/document/html/: parser.c, parser.h, renderer.c:
Fixed internal error: cell iw now wider. We don't allow overlapping
of hr linez anymore (by mikulas, from 0.97pre10)
Sat Apr 6 16:57:06 2002 Petr Baudis <pasky@ji.cz>:
* src/lowlevel/: af_unix.c, connect.c:
Zero all sockaddr structures before messing with them. Also some
various fixes in af_unix.c, probably causing some OS/2 problems (by
mikulas, from 0.97pre9)
Sat Apr 6 16:51:24 2002 Petr Baudis <pasky@ji.cz>:
* src/: lowlevel/af_unix.c, osdep/os_dep.c, osdep/os_dep.h:
Increase priority on OS/2 (by mikulas, from 0.97pre9).
Fri Apr 5 23:16:53 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.am, links.1, linkskeys.5:
Added manpage linkskeys.5, contributed by Peter Wang.
Wed Apr 3 20:52:41 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, contrib/user-keybindings.example:
Added contrib/user-keybindings.example contributed by David
Mediavilla <r96x6a79yki40001@sneakemail.com>. Someone should go and
make it up-to-date.
Wed Apr 3 17:32:11 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, contrib/README, contrib/elinks.spec:
RPM spec file contributed by <zimon@niksula.hut.fi>.
Wed Apr 3 15:29:57 2002 Petr Baudis <pasky@ji.cz>:
* src/Makefile.am:
HPUX compilation fix by sc.
Wed Apr 3 13:48:05 2002 Petr Baudis <pasky@ji.cz>:
* src/protocol/http/date.c:
Fix in HTTP date parser by sc.
Tue Apr 2 22:29:46 2002 Petr Baudis <pasky@ji.cz>:
* acconfig.h, configure.in, src/bookmarks/bookmarks.c,
src/bookmarks/dialogs.c, src/cookies/cookies.c,
src/dialogs/globhist.c, src/dialogs/info.c, src/dialogs/menu.c,
src/document/globhist.c, src/document/view.c:
Possibility not to include globhist/bookmarks/cookies in resulting
executablee by specifying parameter to ./configure.
Tue Apr 2 21:51:08 2002 Petr Baudis <pasky@ji.cz>:
* TODO:
Todo bit by David Mediavilla.
Tue Apr 2 21:50:37 2002 Petr Baudis <pasky@ji.cz>:
* src/dialogs/: Makefile.am, menu.c, options.c, options.h:
Split settings dialogs from dialogs/menu.c to dialogs/options.c.
Also various tidyups there.
Tue Apr 2 20:40:04 2002 Petr Baudis <pasky@ji.cz>:
* src/document/download.c:
Cleanup of download.c, patch by Zas. Maybe expect problems..
Tue Apr 2 19:55:44 2002 Petr Baudis <pasky@ji.cz>:
* TODO:
Another TODO bit, now from muehlenhoff@gmx.de (Moritz Muehlenhoff).
Tue Apr 2 17:40:31 2002 Petr Baudis <pasky@ji.cz>:
* TODO, src/config/default.c, src/document/html/parser.c:
Some support for vlink attribute. We honour it somehow now (thanks
to global history), BUT frequently after RGB approximation we won't
see the difference, and also the document must be re-rendered (thus
reloaded for now - I guess we would find some use for rerender
action as well) in order to update the colors (I fear I won't be
able to do it better with current HTML support).
Tue Apr 2 17:16:11 2002 Petr Baudis <pasky@ji.cz>:
* src/protocol/ftp.c:
Parse LIST response only after RETR, patch by Zas.
Tue Apr 2 17:09:32 2002 Petr Baudis <pasky@ji.cz>:
* intl/brazilian_portuguese.lng, intl/bulgarian.lng,
intl/catalan.lng, intl/czech.lng, intl/dutch.lng, intl/english.lng,
intl/estonian.lng, intl/finnish.lng, intl/french.lng,
intl/galician.lng, intl/german.lng, intl/greek.lng,
intl/hungarian.lng, intl/icelandic.lng, intl/indonesian.lng,
intl/italian.lng, intl/lithuanian.lng, intl/polish.lng,
intl/romanian.lng, intl/russian.lng, intl/slovak.lng,
intl/spanish.lng, intl/swedish.lng, intl/turkish.lng,
intl/ukrainian.lng, src/bookmarks/dialogs.c,
src/dialogs/globhist.c, src/intl/lang_defs.h,
src/intl/language.inc:
Nicer displaying of Delete bookmark? dialog, patch by Zas.
Tue Apr 2 17:04:38 2002 Petr Baudis <pasky@ji.cz>:
* intl/french.lng, src/intl/language.inc:
French language updates for global history by Zas.
Tue Apr 2 16:00:22 2002 Petr Baudis <pasky@ji.cz>:
* src/: dialogs/globhist.c, document/globhist.c,
document/globhist.h:
last_searched_globhist_* -> gh_last_searched_*.
Tue Apr 2 15:58:32 2002 Petr Baudis <pasky@ji.cz>:
* src/: bookmarks/dialogs.c, dialogs/globhist.c:
Support for searching in global history, patch by Miciah.
Tue Apr 2 14:11:57 2002 Petr Baudis <pasky@ji.cz>:
* src/: Makefile.am, bookmarks/dialogs.c, dialogs/Makefile.am,
dialogs/edit.c, dialogs/edit.h:
Moved code for edit_dialog() from bookmarks/dialogs.c to
dialogs/edit.c - we're going to use that code in global history as
well.
Tue Apr 2 13:46:06 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, src/osdep/os_dep.c:
In xterm, modify window title accordingly to the URL being visited.
Patch by Kevin Everets and Michal Maruska.
Tue Apr 2 13:36:53 2002 Petr Baudis <pasky@ji.cz>:
* src/bookmarks/: bookmarks.c, bookmarks.h, dialogs.c:
And now the proper fix for the bookmarks bug. During
read_bookmarks(), we called add_bookmark(), which called
write_bookmarks() .. guess what happenned? Report and patch by Zas.
Tue Apr 2 13:21:36 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS:
Zas' true identity revealed!
Tue Apr 2 12:53:17 2002 Petr Baudis <pasky@ji.cz>:
* BUGS:
Long textarea weirdness
Tue Apr 2 10:18:16 2002 Petr Baudis <pasky@ji.cz>:
* src/bookmarks/bookmarks.c:
Tmp disable bookmarks resave in add_bookmark() .. real fix will
follow soon.
Mon Apr 1 22:19:59 2002 Petr Baudis <pasky@ji.cz>:
* src/: Makefile.am, bookmarks/Makefile.am, bookmarks/bookmarks.c,
bookmarks/bookmarks.h, bookmarks/dialogs.c, bookmarks/dialogs.h,
dialogs/menu.c, document/view.c:
Bookmarks divided to bookmarks/bookmarks.c and bookmarks/dialogs.c.
Mon Apr 1 21:47:29 2002 Petr Baudis <pasky@ji.cz>:
* src/: dialogs/globhist.c, document/globhist.c,
document/globhist.h:
Added last_searched_globhist_* - preparation for history searching.
Mon Apr 1 21:00:42 2002 Petr Baudis <pasky@ji.cz>:
* intl/brazilian_portuguese.lng, intl/bulgarian.lng,
intl/catalan.lng, intl/czech.lng, intl/dutch.lng, intl/english.lng,
intl/estonian.lng, intl/finnish.lng, intl/french.lng,
intl/galician.lng, intl/german.lng, intl/greek.lng,
intl/hungarian.lng, intl/icelandic.lng, intl/indonesian.lng,
intl/italian.lng, intl/lithuanian.lng, intl/polish.lng,
intl/romanian.lng, intl/russian.lng, intl/slovak.lng,
intl/spanish.lng, intl/swedish.lng, intl/turkish.lng,
intl/ukrainian.lng, src/dialogs/globhist.c, src/intl/lang_defs.h,
src/intl/language.inc:
Added Clear button to the global history manager. Patch by Miciah.
Mon Apr 1 20:48:36 2002 Petr Baudis <pasky@ji.cz>:
* src/: dialogs/globhist.c, document/globhist.c,
document/globhist.h, document/session.c:
Added Delete button to the global history manager. Patch by Miciah.
Also cleaned global history API a bit.
Mon Apr 1 20:28:54 2002 Petr Baudis <pasky@ji.cz>:
* src/: config/kbdbind.c, config/kbdbind.h, document/view.c:
Add action "history-manager" and appropriate keybinding ('H'/'h').
Mon Apr 1 20:20:22 2002 Petr Baudis <pasky@ji.cz>:
* intl/czech.lng, src/intl/language.inc:
Add hotkey for Global history in czech translation.
Mon Apr 1 20:19:29 2002 Petr Baudis <pasky@ji.cz>:
* src/dialogs/globhist.c:
Goto button in the global history dialog. Now the dialog is even
useful :). Patch by Miciah.
Mon Apr 1 20:10:00 2002 Petr Baudis <pasky@ji.cz>:
* src/cookies/cookies.c:
Use atol() instead of atoi() for cookie expiration time - still not
ideal as time_t may be even something different, but still better
than it used to be before, I think. Thanks to Miciah for pointing
out that.
Mon Apr 1 19:59:26 2002 Petr Baudis <pasky@ji.cz>:
* intl/brazilian_portuguese.lng, intl/bulgarian.lng,
intl/catalan.lng, intl/czech.lng, intl/dutch.lng, intl/english.lng,
intl/estonian.lng, intl/finnish.lng, intl/french.lng,
intl/galician.lng, intl/german.lng, intl/greek.lng,
intl/hungarian.lng, intl/icelandic.lng, intl/indonesian.lng,
intl/italian.lng, intl/lithuanian.lng, intl/polish.lng,
intl/romanian.lng, intl/russian.lng, intl/slovak.lng,
intl/spanish.lng, intl/swedish.lng, intl/turkish.lng,
intl/ukrainian.lng, src/dialogs/Makefile.am,
src/dialogs/globhist.c, src/dialogs/globhist.h, src/dialogs/menu.c,
src/document/globhist.c, src/document/globhist.h,
src/intl/lang_defs.h, src/intl/language.inc:
Some GUI stuff for the global history, by Miciah. Also main stuff
belonging to basic global history support (I forgot cvs add ;).
Mon Apr 1 15:52:40 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, src/main.c, src/config/default.c, src/config/default.h,
src/document/Makefile.am, src/document/session.c:
Basic global history support by Miciah.
Mon Apr 1 15:26:11 2002 Petr Baudis <pasky@ji.cz>:
* intl/french.lng, src/intl/language.inc:
Fixed french translation, thanks, Zas.
Mon Apr 1 15:25:04 2002 Petr Baudis <pasky@ji.cz>:
* src/lowlevel/terminal.c:
Tidyup of lowlevel/terminal.c, patch by Zas.
Sat Mar 30 21:52:28 2002 Petr Baudis <pasky@ji.cz>:
* src/main.c:
Cleanup of main.c, patch by Zas and me.
Sat Mar 30 21:31:24 2002 Petr Baudis <pasky@ji.cz>:
* TODO:
Added proxy autoconfiguration bit.
Sat Mar 30 21:30:03 2002 Petr Baudis <pasky@ji.cz>:
* configure.in, src/lowlevel/select.c:
Include <inttypes.h> only when system has it (cygwin doesn't).
Thanks to Stephane Lentz <Stephane.Lentz@ansf.alcatel.fr> for
report.
Sat Mar 30 21:23:47 2002 Petr Baudis <pasky@ji.cz>:
* intl/brazilian_portuguese.lng, intl/bulgarian.lng,
intl/catalan.lng, intl/czech.lng, intl/dutch.lng, intl/english.lng,
intl/estonian.lng, intl/finnish.lng, intl/french.lng,
intl/galician.lng, intl/german.lng, intl/greek.lng,
intl/hungarian.lng, intl/icelandic.lng, intl/indonesian.lng,
intl/italian.lng, intl/lithuanian.lng, intl/polish.lng,
intl/romanian.lng, intl/russian.lng, intl/slovak.lng,
intl/spanish.lng, intl/swedish.lng, intl/turkish.lng,
intl/ukrainian.lng, src/document/view.c, src/intl/lang_defs.h,
src/intl/language.inc:
Special label for the action 'Add link to bookmarks'
Sat Mar 30 21:17:46 2002 Petr Baudis <pasky@ji.cz>:
* src/: bookmarks/bookmarks.c, bookmarks/bookmarks.h,
document/view.c:
Re-enable 'Add link to bookmarks' menu field in Link menu. Tidyup
of link_menu(). Patch by Zas.
Sat Mar 30 20:50:42 2002 Petr Baudis <pasky@ji.cz>:
* src/bookmarks/bookmarks.c:
Removed another one stale function noone has probably idea it was
meant for. Patch by Zas.
Sat Mar 30 20:49:56 2002 Petr Baudis <pasky@ji.cz>:
* src/bookmarks/bookmarks.c:
Removed one stale function noone has probably idea it was meant
for. Patch by Zas.
Sat Mar 30 20:48:47 2002 Petr Baudis <pasky@ji.cz>:
* src/bookmarks/bookmarks.c:
Basic bookmarks code tidyup. Patch by Zas and me.
Sat Mar 30 09:10:54 2002 Petr Baudis <pasky@ji.cz>:
* TODO:
another TODO bit
Fri Mar 29 21:38:09 2002 Petr Baudis <pasky@ji.cz>:
* TODO:
updated TODO list accordingly to people's wishlists
Fri Mar 29 10:56:40 2002 Petr Baudis <pasky@ji.cz>:
* src/document/session.c:
Fixed mistake when moving history stuff around. Thanks to Zas for
pointing that out.
Fri Mar 29 10:36:56 2002 Petr Baudis <pasky@ji.cz>:
* src/: main.c, dialogs/menu.c, document/Makefile.am,
document/download.c, document/download.h, document/session.c,
document/session.h, document/view.c, lowlevel/sched.h,
protocol/mailto.c:
Moved download stuff to document/download.c
Thu Mar 28 22:59:17 2002 Petr Baudis <pasky@ji.cz>:
* src/document/: location.c, location.h, view.c, view.h:
Moved copy_location to document/location.c.
Thu Mar 28 22:53:35 2002 Petr Baudis <pasky@ji.cz>:
* src/: document/Makefile.am, document/dump.c, document/history.c,
document/location.c, document/location.h, document/session.h,
document/view.c, document/view.h, document/vs.c, document/vs.h,
document/html/renderer.c, document/html/renderer.h, lua/lua.c:
Moved struct view_state to document/vs.c, thus helping repairing
various perverted crossdeps.
Thu Mar 28 22:26:24 2002 Petr Baudis <pasky@ji.cz>:
* src/document/: history.c, history.h:
Move location per-session history to document/history.c, and made
some appropriate encapsulation for all history stuff. Renamed
struct history* to struct input_history*, as it's only inputbox'
history.
Thu Mar 28 22:25:43 2002 Petr Baudis <pasky@ji.cz>:
* src/: dialogs/menu.c, document/Makefile.am, document/session.c,
document/session.h, document/view.c, document/view.h,
document/html/renderer.c, lua/lua.c, document/location.c,
document/location.h:
Move location stuff to document/location.c. This is pathetic :).
Thu Mar 28 21:38:50 2002 Petr Baudis <pasky@ji.cz>:
* src/: bfu/bfu.c, bfu/bfu.h, config/default.c, dialogs/menu.c,
document/Makefile.am, document/session.c, document/session.h,
document/view.c, document/html/renderer.c, lua/lua.c:
Move location per-session history to document/history.c, and made
some appropriate encapsulation for all history stuff. Renamed
struct history* to struct input_history*, as it's only inputbox'
history.
Thu Mar 28 17:35:56 2002 Petr Baudis <pasky@ji.cz>:
* src/: lowlevel/sched.c, lowlevel/sched.h, protocol/ftp.c:
Many minor RFC-compilance fixes, now we're a bit more strict, more
commends added, introduced abort_conn_with_state(). Patch by Zas.
Thu Mar 28 02:42:13 2002 Petr Baudis <pasky@ji.cz>:
* src/config/default.c:
keep_unhistory is now 1 by default
Thu Mar 28 02:37:57 2002 Petr Baudis <pasky@ji.cz>:
* src/protocol/url.c:
erm.. don't tell anyone ;) (from %xy encoded char only %x got into
encoded string)
Thu Mar 28 01:22:54 2002 Petr Baudis <pasky@ji.cz>:
* configure.in:
0.4pre5-CVS
Thu Mar 28 01:21:45 2002 Petr Baudis <pasky@ji.cz>:
* configure.in:
0.4pre4
Thu Mar 28 00:46:26 2002 Petr Baudis <pasky@ji.cz>:
* BUGS, TODO, intl/brazilian_portuguese.lng, intl/bulgarian.lng,
intl/catalan.lng, intl/czech.lng, intl/dutch.lng, intl/english.lng,
intl/estonian.lng, intl/finnish.lng, intl/french.lng,
intl/galician.lng, intl/german.lng, intl/greek.lng,
intl/hungarian.lng, intl/icelandic.lng, intl/indonesian.lng,
intl/italian.lng, intl/lithuanian.lng, intl/polish.lng,
intl/romanian.lng, intl/russian.lng, intl/slovak.lng,
intl/spanish.lng, intl/swedish.lng, intl/synclang,
intl/turkish.lng, intl/ukrainian.lng, src/intl/lang_defs.h,
src/intl/language.inc, src/lowlevel/sched.c, src/lowlevel/sched.h,
src/protocol/ftp.c:
FTP doesn't send more commands at once - it's a bit slower, but
safe with MS IIS or Novell (by mikulas, from 0.97pre8). Also, it
fixes bugs reported by Zas, that we had problems with FTP servers
not supporting/requiring PASS command.
Wed Mar 27 23:49:24 2002 Petr Baudis <pasky@ji.cz>:
* src/config/kbdbind.c:
ACT_COPY_CLIPBOARD is ^C, not ^B (by mikulas, from 0.97pre8).
Wed Mar 27 23:47:12 2002 Petr Baudis <pasky@ji.cz>:
* src/osdep/os_dep.c:
Corrected xterm detection (by mikulas, from 0.97pre8).
Wed Mar 27 23:39:14 2002 Petr Baudis <pasky@ji.cz>:
* src/: bfu/bfu.c, document/html/parser.c,
document/html/renderer.c, util/error.c, util/memlist.c:
Use va_end() (by mikulas, from 0.97pre8).
Wed Mar 27 23:05:52 2002 Petr Baudis <pasky@ji.cz>:
* src/document/html/parser.c:
Do not strip spaces from URL attribute of tags (by mikulas, from
0.97pre8).
Wed Mar 27 22:45:19 2002 Petr Baudis <pasky@ji.cz>:
* src/protocol/http/http.c:
When sending the URL, translate spaces to %20. This is definitively
not the best thing we can do, but it's sufficient solution as very
temporary one (by mikulas, from 0.97pre8). Minor code tidyups.
Wed Mar 27 21:52:22 2002 Petr Baudis <pasky@ji.cz>:
* src/document/html/: parser.c, renderer.c:
Prevent double newline when rendering lists: <li><p> xxx (by
mikulas, from 0.97pre8). Note that I include this only in order to
be sure we'll act right, as we've already
some-own-fix-which-i-cant-remember-now-:). Also re-enabled the
justify code, which was effectively disabled by mistake.
Wed Mar 27 21:43:23 2002 Petr Baudis <pasky@ji.cz>:
* src/document/session.c:
some more mem_free() stuff when we're out of memory
Wed Mar 27 21:30:25 2002 Petr Baudis <pasky@ji.cz>:
* src/: document/session.c, protocol/url.c, protocol/url.h,
util/Makefile.am, util/conv.c, util/conv.h:
Moved hx() and unhx() to util/conv.c, fixed prototypes of
*_url_string() so that we now even compile
Wed Mar 27 13:32:35 2002 Petr Baudis <pasky@ji.cz>:
* src/: document/view.c, protocol/url.c, protocol/url.h:
encode_string -> encode_url_string, prepare decode_url_string
Tue Mar 26 22:02:06 2002 Petr Baudis <pasky@ji.cz>:
* src/: document/view.c, protocol/url.c:
Rewritten strip_url_password(), so now it works somehow correctly
once more; taken from patch by sc
Tue Mar 26 21:09:15 2002 Petr Baudis <pasky@ji.cz>:
* src/: document/view.c, protocol/url.c:
move encode_string() to protocol/url.c
Tue Mar 26 19:47:54 2002 Petr Baudis <pasky@ji.cz>:
* src/: document/session.c, protocol/url.c:
remark near encode_url() family.. the name is 'a bit' confusing
Tue Mar 26 19:10:52 2002 Petr Baudis <pasky@ji.cz>:
* src/links.h:
links.h tidyup
Tue Mar 26 18:49:58 2002 Petr Baudis <pasky@ji.cz>:
* src/protocol/: file.c, ftp.c:
don't mess with use_document_colors at all and just do <font><b> :)
Tue Mar 26 18:10:52 2002 Petr Baudis <pasky@ji.cz>:
* src/protocol/: file.c, ftp.c:
some playing with d_opt vs. dds and use_document_colours and bold
instead of yellow for dirs
Tue Mar 26 17:45:59 2002 Petr Baudis <pasky@ji.cz>:
* src/lowlevel/: dns.c, select.c:
yet another BSD compilation fix, take #3 (i know i hate BSD [at
least now])
Tue Mar 26 17:43:41 2002 Petr Baudis <pasky@ji.cz>:
* src/lowlevel/select.c:
yet another BSD compilation fix, take #2 (i think i hate BSD)
Tue Mar 26 17:39:48 2002 Petr Baudis <pasky@ji.cz>:
* src/lowlevel/: dns.c, select.c:
yet another BSD compilation fix
Tue Mar 26 17:37:31 2002 Petr Baudis <pasky@ji.cz>:
* .vimrc, src/.vimrc, src/bfu/.vimrc, src/bookmarks/.vimrc,
src/config/.vimrc, src/cookies/.vimrc, src/dialogs/.vimrc,
src/document/.vimrc, src/document/html/.vimrc, src/intl/.vimrc,
src/lowlevel/.vimrc, src/lua/.vimrc, src/osdep/.vimrc,
src/protocol/.vimrc, src/protocol/http/.vimrc, src/ssl/.vimrc,
src/util/.vimrc:
all .vimrc files include elinks/.vimrc; added some more tabbing
settings for zas ;)
Tue Mar 26 17:21:14 2002 Petr Baudis <pasky@ji.cz>:
* src/lowlevel/af_unix.c:
another BSD compilation fix, take #3
Tue Mar 26 17:19:08 2002 Petr Baudis <pasky@ji.cz>:
* src/lowlevel/af_unix.c:
another BSD compilation fix, take #2
Tue Mar 26 17:16:43 2002 Petr Baudis <pasky@ji.cz>:
* src/lowlevel/af_unix.c:
another BSD compilation fix
Tue Mar 26 17:11:55 2002 Petr Baudis <pasky@ji.cz>:
* src/config/default.c:
BSD compilation fix, take #2; stupid
Tue Mar 26 17:08:51 2002 Petr Baudis <pasky@ji.cz>:
* src/config/default.c:
BSD compilation fix
Tue Mar 26 16:50:48 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, intl/italian.lng, src/intl/language.inc:
updated italian translation by Cristiano Guadagnino
<cris@geppo.cmb2000.it>
Tue Mar 26 16:45:46 2002 Petr Baudis <pasky@ji.cz>:
* src/document/cache.c:
Fixed files not displayed properly when there was reload request on
background (by mikulas, from 0.97pre7)
Tue Mar 26 16:45:07 2002 Petr Baudis <pasky@ji.cz>:
* src/dialogs/menu.c:
don't print contents of posted data in downloads menu (by mikulas,
from 0.97pre7)
Tue Mar 26 16:38:51 2002 Petr Baudis <pasky@ji.cz>:
* intl/brazilian_portuguese.lng, intl/catalan.lng, intl/dutch.lng,
intl/english.lng, intl/estonian.lng, intl/finnish.lng,
intl/french.lng, intl/galician.lng, intl/german.lng,
intl/greek.lng, intl/hungarian.lng, intl/icelandic.lng,
intl/indonesian.lng, intl/italian.lng, intl/lithuanian.lng,
intl/romanian.lng, intl/spanish.lng, intl/swedish.lng,
intl/turkish.lng, intl/ukrainian.lng, src/intl/lang_defs.h,
src/intl/language.inc:
??? -> \?\?\?, so that it's not recognized as trigraph (by mikulas,
from 0.97pre7)
Tue Mar 26 15:57:06 2002 Petr Baudis <pasky@ji.cz>:
* src/document/html/TODO:
some babbling about imagined syntactic tree
Tue Mar 26 15:28:11 2002 Petr Baudis <pasky@ji.cz>:
* src/document/html/tables.c:
tables.c cleanup by zas, bit 4 and last
Tue Mar 26 15:20:14 2002 Petr Baudis <pasky@ji.cz>:
* src/document/html/tables.c:
tables.c cleanup by zas, bit 3 (fixed problem)
Tue Mar 26 15:12:42 2002 Petr Baudis <pasky@ji.cz>:
* src/document/html/tables.c:
tables.c cleanup by zas, bit 2
Tue Mar 26 15:09:14 2002 Petr Baudis <pasky@ji.cz>:
* src/document/html/tables.c:
tables.c cleanup by zas, bit 1
Tue Mar 26 13:02:36 2002 Petr Baudis <pasky@ji.cz>:
* autogen.sh:
/bin/bash -> /bin/sh
Mon Mar 25 22:03:14 2002 Petr Baudis <pasky@ji.cz>:
* src/document/html/renderer.c:
renderer tidyup by zas
Mon Mar 25 21:33:37 2002 Petr Baudis <pasky@ji.cz>:
* src/protocol/http/README.timegm:
docs fixes by sc
Mon Mar 25 21:32:06 2002 Petr Baudis <pasky@ji.cz>:
* src/protocol/ftp.c:
tidyup of ftp.c; patch by zas
Mon Mar 25 21:24:18 2002 Petr Baudis <pasky@ji.cz>:
* src/lowlevel/connect.c:
hm, ok, and now we again work with non-SSL connections as well ;)
Mon Mar 25 18:38:53 2002 Petr Baudis <pasky@ji.cz>:
* src/: lowlevel/connect.c, ssl/connect.c:
SSL works once again now - the API i made for SSL sockets first
time was completely broken
Mon Mar 25 17:18:09 2002 Petr Baudis <pasky@ji.cz>:
* src/: lowlevel/dns.c, lowlevel/sched.c, util/error.c:
worthless tidyups
Fri Mar 22 19:55:16 2002 Petr Baudis <pasky@ji.cz>:
* src/lowlevel/sched.c:
cleanup of sched.c by zas
Fri Mar 22 19:19:51 2002 Petr Baudis <pasky@ji.cz>:
* BUGS, src/dialogs/info.c:
fixed the about dialog bug
Fri Mar 22 18:57:19 2002 Petr Baudis <pasky@ji.cz>:
* src/: bfu/Makefile.am, bfu/bfu.c, bfu/bfu.h,
bookmarks/bookmarks.c, dialogs/menu.c, document/session.c,
document/view.c, document/html/parser.c, protocol/types.c,
bfu/menu.c, bfu/menu.h:
move menu system implementation to bfu/menu.c
Fri Mar 22 18:26:47 2002 Petr Baudis <pasky@ji.cz>:
* src/: lowlevel/sched.c, util/Makefile.am, util/base64.c,
util/base64.h:
moved base64 encoder to util/base64.c
Fri Mar 22 18:12:03 2002 Petr Baudis <pasky@ji.cz>:
* contrib/hpux-pipe.diff:
updated hpux-pipe.diff (by sc)
Fri Mar 22 18:08:50 2002 Petr Baudis <pasky@ji.cz>:
* src/lowlevel/connect.c:
tidyup of connect.c by zas
Fri Mar 22 18:05:05 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, BUGS, src/bfu/bfu.c:
fixed the release-button-hide-menu bug ;) thanks to zas, again
Fri Mar 22 15:31:25 2002 Petr Baudis <pasky@ji.cz>:
* BUGS, src/util/error.c:
added yet another bug
Fri Mar 22 14:59:10 2002 Petr Baudis <pasky@ji.cz>:
* src/lowlevel/terminal.h:
wrong enum :/ fix by zas, fixes 1-2 actual bugs
Thu Mar 21 21:31:49 2002 Petr Baudis <pasky@ji.cz>:
* src/protocol/http/Makefile.am:
small build fix
Thu Mar 21 21:01:40 2002 Petr Baudis <pasky@ji.cz>:
* configure.in:
0.4pre4-CVS
Thu Mar 21 20:58:00 2002 Petr Baudis <pasky@ji.cz>:
* configure.in:
0.4pre3
Thu Mar 21 18:39:03 2002 Petr Baudis <pasky@ji.cz>:
* src/protocol/http/: Makefile.am, README.timegm, date.c:
explanation of my_timegm() by Stephane Chazelas
Thu Mar 21 18:35:14 2002 Petr Baudis <pasky@ji.cz>:
* src/bfu/bfu.c:
slightly effective wraparounding of scrolling in menus; gave zas a
favour
Thu Mar 21 18:34:12 2002 Petr Baudis <pasky@ji.cz>:
* BUGS, src/lowlevel/terminal.c:
*FINALLY* fixed the select/imagemap bug - patch by Zas
Thu Mar 21 18:05:46 2002 Petr Baudis <pasky@ji.cz>:
* src/document/html/parser.c:
tidyup of get_image_map()
Tue Mar 19 20:40:03 2002 Petr Baudis <pasky@ji.cz>:
* src/: bfu/Makefile.am, bfu/align.h, bfu/bfu.c, bfu/bfu.h,
bookmarks/bookmarks.c, config/default.c, dialogs/info.c,
dialogs/menu.c, document/html/parser.c, document/html/parser.h,
document/html/renderer.c, document/html/tables.c, lua/lua.c,
protocol/mailto.c, protocol/types.c:
moved align enum to bfu/align.h
Tue Mar 19 18:34:51 2002 Petr Baudis <pasky@ji.cz>:
* BUGS:
that empty menu bug
Tue Mar 19 18:29:53 2002 Petr Baudis <pasky@ji.cz>:
* src/cookies/cookies.c:
we won't overwrite cookies file periodically on loading them
Tue Mar 19 18:22:42 2002 Petr Baudis <pasky@ji.cz>:
* src/bfu/bfu.c:
partial fix for SIGFPE for empty menu, reported by Edward Wildgoose
<Ed@Wildgooses.com>
Tue Mar 19 17:52:36 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, src/protocol/http/date.c:
New own convertor struct tm -> time_t; I can't say I'm excited by
it, but it looks as a good thing, sc convienced me ;)
Tue Mar 19 17:28:08 2002 Petr Baudis <pasky@ji.cz>:
* src/bfu/bfu.c:
general code tidyup, based on patch by <zas@norz.org>
Tue Mar 19 15:03:16 2002 Petr Baudis <pasky@ji.cz>:
* src/protocol/http/date.c:
FIXME
Mon Mar 18 22:26:21 2002 Petr Baudis <pasky@ji.cz>:
* src/dialogs/: Makefile.am, info.c, refresh.c, refresh.h:
moved periodical refresh of dialogs from dialogs/info.c to
dialogs/refresh.c
Mon Mar 18 22:20:31 2002 Petr Baudis <pasky@ji.cz>:
* src/dialogs/info.c:
move common refresh initialization to refresh_init()
Mon Mar 18 22:12:32 2002 Petr Baudis <pasky@ji.cz>:
* src/: dialogs/Makefile.am, dialogs/info.c, dialogs/info.h,
dialogs/menu.c, dialogs/menu.h, util/error.c, util/error.h:
moved info dialogs from dialogs/menu.c to dialogs/info.c
Mon Mar 18 21:03:12 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, src/lowlevel/kbd.c:
somehow fix proccessing of incomplete escape sequences; patch by
Stephane CHAZELAS <Stephane.CHAZELAS@free.fr>
Mon Mar 18 20:52:32 2002 Petr Baudis <pasky@ji.cz>:
* src/: config/default.c, protocol/http/http.c:
Elinks -> ELinks (by Zas ;)
Mon Mar 18 20:51:20 2002 Petr Baudis <pasky@ji.cz>:
* src/: lowlevel/connect.c, ssl/connect.c:
Moving SSL to ssl/, attempt 2, part 3 and last (fixed the problem);
move completed another time ;)
Mon Mar 18 20:28:06 2002 Petr Baudis <pasky@ji.cz>:
* src/: lowlevel/connect.c, lowlevel/connect.h, lowlevel/sched.c,
ssl/Makefile.am:
Moving SSL to ssl/, attempt 2, part 2 (only export more things from
lowlevel/connect.c)
Mon Mar 18 20:12:29 2002 Petr Baudis <pasky@ji.cz>:
* configure.in, src/Makefile.am, src/main.c,
src/lowlevel/connect.c, src/protocol/http/https.c,
src/protocol/http/https.h, src/ssl/Makefile.am:
Moving SSL to ssl/, attempt 2, part 1
Mon Mar 18 15:14:53 2002 Petr Baudis <pasky@ji.cz>:
* configure.in, src/Makefile.am, src/main.c,
src/lowlevel/connect.c, src/lowlevel/connect.h,
src/lowlevel/sched.c, src/protocol/http/https.c,
src/protocol/http/https.h:
XXX: the SSL move made connections not working at all :/
temporarily backed out
Mon Mar 18 13:01:58 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, src/protocol/http/date.c:
Rewritten HTTP date parser, (slightly modified) patch by Stephane
CHAZELAS <Stephane_CHAZELAS@yahoo.fr>
Mon Mar 18 11:34:02 2002 Petr Baudis <pasky@ji.cz>:
* src/: config/default.c, config/default.h, dialogs/menu.c,
document/Makefile.am, document/dump.c, document/options.c,
document/options.h, document/session.c, document/session.h,
document/view.c, document/html/renderer.c,
document/html/renderer.h, intl/charsets.c:
moved documet_(options|setup) to one common document/options.*
Mon Mar 18 10:55:37 2002 Petr Baudis <pasky@ji.cz>:
* src/: document/dump.c, document/session.c,
document/html/renderer.c, document/html/renderer.h,
lowlevel/Makefile.am, lowlevel/dns.c, lowlevel/sched.c,
lowlevel/sched.h, lowlevel/select.c, lowlevel/select.h,
lowlevel/ttime.c, lowlevel/ttime.h:
moved typedef ttime and get_time() from lowlevel/select.c to
lowlevel/ttime.c
Mon Mar 18 06:33:12 2002 Petr Baudis <pasky@ji.cz>:
* src/: bfu/bfu.c, bfu/bfu.h, dialogs/menu.c, document/session.c,
document/html/parser.c, document/html/parser.h,
document/html/renderer.h, util/Makefile.am, util/error.c,
util/memlist.c, util/memlist.h:
moved memory_list implementation from bfu/bfu.c to util/memlist.c
Mon Mar 18 06:19:58 2002 Petr Baudis <pasky@ji.cz>:
* src/: document/dump.c, document/dump.h, document/view.c,
document/view.h, lowlevel/terminal.h:
move dump_to_file from view.c to dump.c
Sun Mar 17 23:21:02 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.am, wipe-out-ssl, wipe-out-ssl.awk,
contrib/wipe-out-ssl, contrib/wipe-out-ssl.awk:
moves wipe-out-ssl script to contrib/ directory, added
ChangeLog.orig to EXTRA_DIST
Sun Mar 17 23:19:07 2002 Petr Baudis <pasky@ji.cz>:
* rebuild:
removed 'rebuild' script, totally obsoleted actually ;)
Sun Mar 17 23:16:51 2002 Petr Baudis <pasky@ji.cz>:
* configure.in, src/Makefile.am, src/main.c,
src/lowlevel/connect.c, src/lowlevel/connect.h,
src/lowlevel/sched.c, src/protocol/http/https.c,
src/protocol/http/https.h, src/ssl/.cvsignore, src/ssl/.vimrc,
src/ssl/Makefile.am, src/ssl/connect.c, src/ssl/connect.h,
src/ssl/ssl.c, src/ssl/ssl.h:
moved some SSL stuff to ssl/ (not yet completel)
Sun Mar 17 22:32:23 2002 Petr Baudis <pasky@ji.cz>:
* src/: main.c, main.h, document/Makefile.am, document/dump.c,
document/dump.h:
moved --dump implementation from main.c to document/dump.c
Sun Mar 17 22:01:38 2002 Petr Baudis <pasky@ji.cz>:
* src/: .vimrc, bfu/.vimrc, bookmarks/.vimrc, config/.vimrc,
cookies/.vimrc, dialogs/.vimrc, document/.vimrc,
document/html/.vimrc, intl/.vimrc, lowlevel/.vimrc, lua/.vimrc,
osdep/.vimrc, protocol/.vimrc, protocol/http/.vimrc,
protocol/http/date.c, util/.vimrc:
added .vimrc into each directory
Sun Mar 17 21:53:08 2002 Petr Baudis <pasky@ji.cz>:
* src/: cookies/cookies.c, document/session.c, document/session.h,
protocol/http/Makefile.am, protocol/http/date.c,
protocol/http/date.h:
move parse_http_date() to protocol/http/date.c
Sun Mar 17 21:41:01 2002 Petr Baudis <pasky@ji.cz>:
* .cvsignore, src/.cvsignore, src/bfu/.cvsignore,
src/bookmarks/.cvsignore, src/config/.cvsignore,
src/cookies/.cvsignore, src/dialogs/.cvsignore,
src/document/.cvsignore, src/intl/.cvsignore,
src/lowlevel/.cvsignore, src/lua/.cvsignore,
src/document/html/.cvsignore, src/osdep/.cvsignore,
src/protocol/.cvsignore, src/util/.cvsignore,
src/protocol/http/.cvsignore:
added .cvsignore ignoring autogenerated stuff
Sun Mar 17 19:35:49 2002 Petr Baudis <pasky@ji.cz>:
* autogen.sh:
fixed ./autogen.sh so that it actually even works now
Sun Mar 17 18:52:38 2002 Petr Baudis <pasky@ji.cz>:
* INSTALL, Makefile.in, aclocal.m4, autocommit.sh, config.h.in,
configure, stamp-h.in, src/Makefile.in, src/bfu/Makefile.in,
src/bookmarks/Makefile.in, src/config/Makefile.in,
src/cookies/Makefile.in, src/dialogs/Makefile.in,
src/document/Makefile.in, src/document/html/Makefile.in,
src/intl/Makefile.in, src/lowlevel/Makefile.in,
src/lua/Makefile.in, src/osdep/Makefile.in,
src/protocol/Makefile.in, src/protocol/http/Makefile.in,
src/util/Makefile.in:
Removed files generated automatically by automake/autoconf. FROM
NOW ON YOU NEED TO CALL ./autogen.sh AFTER CHECKOUTcvs update!
Also, from now on, I'll probably do make cvs-dist when generating
release tarball.
Sun Mar 17 18:20:31 2002 Petr Baudis <pasky@ji.cz>:
* src/internat/: Makefile.am, Makefile.in, charsets.c, charsets.h,
codepage.h, codepage.inc, entity.inc, lang_defs.h, language.c,
language.h, language.inc, uni_7b.inc:
removed intrenat/'s contents
Sun Mar 17 18:15:03 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.am, Makefile.in, acconfig.h, aclocal.m4, config.h.in,
configure, configure.in, stamp-h.in, src/Makefile.am,
src/Makefile.in, src/bfu/Makefile.am, src/bfu/Makefile.in,
src/bookmarks/Makefile.am, src/bookmarks/Makefile.in,
src/config/Makefile.am, src/config/Makefile.in,
src/cookies/Makefile.am, src/cookies/Makefile.in,
src/dialogs/Makefile.am, src/dialogs/Makefile.in,
src/document/Makefile.am, src/document/Makefile.in,
src/intl/Makefile.am, src/intl/Makefile.in,
src/lowlevel/Makefile.am, src/lowlevel/Makefile.in,
src/lua/Makefile.am, src/lua/Makefile.in, src/osdep/Makefile.am,
src/osdep/Makefile.in, src/protocol/Makefile.am,
src/protocol/Makefile.in, src/util/Makefile.am,
src/util/Makefile.in, src/document/html/Makefile.am,
src/document/html/Makefile.in, src/protocol/http/Makefile.am,
src/protocol/http/Makefile.in:
added protocol/http/header.[ch]
Sun Mar 17 18:14:06 2002 Petr Baudis <pasky@ji.cz>:
* src/: cookies/cookies.c, document/view.c, document/html/parser.c,
document/html/renderer.c, protocol/types.c,
protocol/http/Makefile.am, protocol/http/header.c,
protocol/http/header.h, protocol/http/http.c, protocol/http/http.h:
moved bits of http.c into header.c
Sun Mar 17 18:02:23 2002 Petr Baudis <pasky@ji.cz>:
* src/protocol/http/: Makefile.am, Makefile.in, http.c:
compilation fixes ;p
Sun Mar 17 17:42:55 2002 Petr Baudis <pasky@ji.cz>:
* src/: main.c, cookies/cookies.c, document/view.c,
document/html/parser.c, document/html/renderer.c,
lowlevel/connect.c, protocol/types.c, protocol/url.c,
protocol/http/https.c:
Move http protocol support to separate subdir protocol/http/ -
update #includes
Sun Mar 17 17:38:33 2002 Petr Baudis <pasky@ji.cz>:
* configure.in, src/Makefile.am, src/protocol/Makefile.am,
src/protocol/http.c, src/protocol/http.h, src/protocol/https.c,
src/protocol/https.h, src/protocol/http/Makefile.am,
src/protocol/http/http.c, src/protocol/http/http.h,
src/protocol/http/https.c, src/protocol/http/https.h, Makefile.am,
Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in, src/Makefile.am, src/Makefile.in,
src/bfu/Makefile.am, src/bfu/Makefile.in,
src/bookmarks/Makefile.am, src/bookmarks/Makefile.in,
src/config/Makefile.am, src/config/Makefile.in,
src/cookies/Makefile.am, src/cookies/Makefile.in,
src/dialogs/Makefile.am, src/dialogs/Makefile.in,
src/document/Makefile.am, src/document/Makefile.in,
src/intl/Makefile.am, src/intl/Makefile.in,
src/lowlevel/Makefile.am, src/lowlevel/Makefile.in,
src/lua/Makefile.am, src/lua/Makefile.in,
src/document/html/Makefile.am, src/document/html/Makefile.in,
src/osdep/Makefile.am, src/osdep/Makefile.in,
src/protocol/Makefile.am, src/protocol/Makefile.in,
src/protocol/http/Makefile.am, src/protocol/http/Makefile.in,
src/util/Makefile.am, src/util/Makefile.in:
Move http protocol support to separate subdir protocol/http/
Sun Mar 17 17:27:48 2002 Petr Baudis <pasky@ji.cz>:
* src/: links.h, bfu/bfu.c, bfu/bfu.h, bookmarks/bookmarks.c,
config/default.c, config/kbdbind.c, cookies/cookies.c,
dialogs/menu.c, document/session.c, document/view.c,
document/html/colors.c, document/html/parser.c,
document/html/parser.h, document/html/renderer.c,
document/html/tables.c, intl/charsets.c, intl/lang_defs.h,
lowlevel/af_unix.c, lowlevel/connect.c, lowlevel/dns.c,
lowlevel/kbd.c, lowlevel/sched.c, lowlevel/select.c,
lowlevel/terminal.c, lowlevel/terminal.h, lua/lua.c,
osdep/os_dep.c, osdep/win32.c, protocol/file.c, protocol/ftp.c,
protocol/http.c, protocol/mailto.c, protocol/types.c,
protocol/url.c, util/error.c:
remove trailing spaces/tabs and spaces before semicolons; simple
script by Zas :)
Sun Mar 17 14:58:52 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.am, Makefile.in, acconfig.h, aclocal.m4, config.h.in,
configure, configure.in, stamp-h.in, src/Makefile.am,
src/Makefile.in, src/bfu/Makefile.am, src/bfu/Makefile.in,
src/bookmarks/Makefile.am, src/bookmarks/Makefile.in,
src/config/Makefile.am, src/config/Makefile.in,
src/cookies/Makefile.am, src/cookies/Makefile.in,
src/dialogs/Makefile.am, src/dialogs/Makefile.in,
src/document/Makefile.am, src/document/Makefile.in,
src/intl/Makefile.am, src/intl/Makefile.in,
src/lowlevel/Makefile.am, src/lowlevel/Makefile.in,
src/lua/Makefile.am, src/lua/Makefile.in, src/osdep/Makefile.am,
src/osdep/Makefile.in, src/document/html/Makefile.am,
src/document/html/Makefile.in, src/protocol/Makefile.am,
src/protocol/Makefile.in, src/util/Makefile.am,
src/util/Makefile.in:
compilation fixes
Sun Mar 17 14:58:43 2002 Petr Baudis <pasky@ji.cz>:
* autocommit.sh:
commit automatically also Makefile.am
Sun Mar 17 14:39:11 2002 Petr Baudis <pasky@ji.cz>:
* configure, configure.in, src/Makefile.am, src/Makefile.in,
src/README, src/main.c, src/bfu/Makefile.am, src/bfu/Makefile.in,
src/bfu/menu.c, src/bfu/menu.h, src/dialogs/Makefile.am,
src/dialogs/Makefile.in, src/dialogs/menu.c, src/dialogs/menu.h,
src/document/session.c, src/document/view.c, src/protocol/http.c,
Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in, src/Makefile.in, src/bfu/Makefile.in,
src/bookmarks/Makefile.in, src/config/Makefile.in,
src/cookies/Makefile.in, src/dialogs/Makefile.in,
src/document/Makefile.in, src/intl/Makefile.in,
src/lowlevel/Makefile.in, src/lua/Makefile.in,
src/osdep/Makefile.in, src/document/html/Makefile.in,
src/protocol/Makefile.in, src/util/Makefile.in:
moved menu from bfu/ to dialogs/
Sun Mar 17 14:07:30 2002 Petr Baudis <pasky@ji.cz>:
* entity.inc:
we somewhow forgot this to remove ;)
Sun Mar 17 14:05:24 2002 Petr Baudis <pasky@ji.cz>:
* configure, configure.in, Unicode/README, Unicode/gen-7b,
Unicode/gen-cp, Unicode/gen-ent, intl/README, intl/gen-intl,
intl/intl.txt, src/Makefile.am, src/Makefile.in, src/main.c,
src/bfu/bfu.c, src/bfu/menu.c, src/bookmarks/bookmarks.c,
src/config/default.c, src/document/session.c, src/document/view.c,
src/document/html/parser.c, src/document/html/renderer.c,
src/document/html/renderer.h, src/intl/Makefile.am,
src/intl/Makefile.in, src/intl/charsets.c, src/intl/charsets.h,
src/intl/codepage.h, src/intl/codepage.inc, src/intl/entity.inc,
src/intl/lang_defs.h, src/intl/language.c, src/intl/language.h,
src/intl/language.inc, src/intl/uni_7b.inc, src/lowlevel/sched.c,
src/lua/lua.c, src/osdep/os_dep.c, src/protocol/http.c,
src/protocol/mailto.c, src/protocol/types.c, Makefile.in,
acconfig.h, aclocal.m4, config.h.in, configure, configure.in,
stamp-h.in, src/Makefile.in, src/bfu/Makefile.in,
src/bookmarks/Makefile.in, src/config/Makefile.in,
src/cookies/Makefile.in, src/document/Makefile.in,
src/intl/Makefile.in, src/lowlevel/Makefile.in,
src/lua/Makefile.in, src/osdep/Makefile.in,
src/protocol/Makefile.in, src/util/Makefile.in,
src/document/html/Makefile.in:
src/internat/ -> src/intl/
Sun Mar 17 13:54:08 2002 Petr Baudis <pasky@ji.cz>:
* TODO, src/links.h, src/main.c, src/main.h, src/bfu/bfu.c,
src/bfu/bfu.h, src/bfu/menu.c, src/bfu/menu.h,
src/bookmarks/bookmarks.c, src/bookmarks/bookmarks.h,
src/config/default.c, src/config/default.h, src/config/kbdbind.c,
src/cookies/cookies.c, src/cookies/cookies.h, src/document/cache.c,
src/document/cache.h, src/document/session.c,
src/document/session.h, src/document/view.c, src/document/view.h,
src/document/html/Makefile.am, src/document/html/Makefile.in,
src/document/html/colors.c, src/document/html/colors.h,
src/document/html/parser.c, src/document/html/parser.h,
src/document/html/renderer.c, src/document/html/renderer.h,
src/document/html/tables.c, src/document/html/tables.h,
src/internat/charsets.c, src/internat/charsets.h,
src/internat/language.c, src/internat/language.h,
src/lowlevel/af_unix.c, src/lowlevel/connect.c,
src/lowlevel/connect.h, src/lowlevel/dns.c, src/lowlevel/kbd.c,
src/lowlevel/sched.c, src/lowlevel/sched.h, src/lowlevel/select.c,
src/lowlevel/terminal.c, src/lowlevel/terminal.h, src/lua/lua.c,
src/lua/lua.h, src/osdep/os_dep.c, src/protocol/file.c,
src/protocol/file.h, src/protocol/finger.c, src/protocol/finger.h,
src/protocol/ftp.c, src/protocol/http.c, src/protocol/http.h,
src/protocol/https.c, src/protocol/https.h, src/protocol/mailto.c,
src/protocol/mailto.h, src/protocol/types.c, src/protocol/types.h,
src/protocol/url.c, src/protocol/url.h, src/util/error.c:
Part III. of source layout change, stage 2. Changed #includes so
that we're now again compiling and working ok, already under the
new source layout. But still more to come, stay tuned ;).
Sun Mar 17 12:24:22 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in, src/Makefile.in, src/bfu/Makefile.in,
src/bookmarks/Makefile.in, src/config/Makefile.in,
src/cookies/Makefile.in, src/document/Makefile.in,
src/internat/Makefile.in, src/lowlevel/Makefile.in,
src/lua/Makefile.in, src/osdep/Makefile.in,
src/document/html/Makefile.in, src/protocol/Makefile.in,
src/util/Makefile.in, src/Makefile.am, src/bfu/Makefile.am,
src/bookmarks/Makefile.am, src/config/Makefile.am,
src/cookies/Makefile.am, src/document/Makefile.am,
src/document/html/Makefile.am, src/internat/Makefile.am,
src/lowlevel/Makefile.am, src/lua/Makefile.am,
src/osdep/Makefile.am, src/protocol/Makefile.am,
src/util/Makefile.am:
okay, more fun with INCLUDE ;)
Sun Mar 17 12:04:24 2002 Petr Baudis <pasky@ji.cz>:
* src/: Makefile.am, Makefile.in, bfu/Makefile.am, bfu/Makefile.in,
bookmarks/Makefile.am, config/Makefile.am, cookies/Makefile.am,
document/Makefile.am, document/html/Makefile.am,
internat/Makefile.am, lowlevel/Makefile.am, lua/Makefile.am,
osdep/Makefile.am, protocol/Makefile.am, util/Makefile.am:
added INCLUDE to Makefiles.am
Sun Mar 17 11:54:41 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, autocommit.sh, configure, configure.in,
wipe-out-ssl, src/Makefile.am, src/bfu/Makefile.am,
src/bookmarks/Makefile.am, src/config/Makefile.am,
src/cookies/Makefile.am, src/document/Makefile.am,
src/document/html/Makefile.am, src/internat/Makefile.am,
src/lowlevel/Makefile.am, src/lua/Makefile.am,
src/osdep/Makefile.am, src/protocol/Makefile.am,
src/util/Makefile.am, Makefile.in, acconfig.h, aclocal.m4,
config.h.in, configure, configure.in, stamp-h.in, src/Makefile.in,
src/bfu/Makefile.in, src/bookmarks/Makefile.in,
src/config/Makefile.in, src/cookies/Makefile.in,
src/document/Makefile.in, src/internat/Makefile.in,
src/lowlevel/Makefile.in, src/lua/Makefile.in,
src/osdep/Makefile.in, src/document/html/Makefile.in,
src/protocol/Makefile.in, src/util/Makefile.in:
Part III. of source layout change, stage 2. Improved autofiles, so
that ./autogen actually works now ;)
Sun Mar 17 11:28:53 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.am, af_unix.c, af_unix.h, beos.c, bfu.c, bfu.h,
bookmarks.c, bookmarks.h, cache.c, cache.h, charsets.c, charsets.h,
codepage.h, codepage.inc, colors.c, colors.h, configure.in,
connect.c, connect.h, cookies.c, cookies.h, default.c, default.h,
dns.c, dns.h, error.c, error.h, file.c, file.h, finger.c, finger.h,
ftp.c, ftp.h, html.c, html.h, html_r.c, html_r.h, html_tbl.c,
html_tbl.h, http.c, http.h, https.c, https.h, kbd.c, kbd.h,
kbdbind.c, kbdbind.h, lang_defs.h, language.c, language.h,
language.inc, links.h, lua.c, lua.h, mailto.c, mailto.h, main.c,
main.h, menu.c, menu.h, os_dep.c, os_dep.h, os_depx.h, sched.c,
sched.h, select.c, select.h, session.c, session.h, setup.h,
terminal.c, terminal.h, types.c, types.h, uni_7b.inc, url.c, url.h,
view.c, view.h, win32.c, wipe-out-ssl, Unicode/gen-7b,
Unicode/gen-cp, Unicode/gen-ent, intl/gen-intl, src/Makefile.am,
src/links.h, src/main.c, src/main.h, src/setup.h,
src/bfu/Makefile.am, src/bfu/bfu.c, src/bfu/bfu.h, src/bfu/menu.c,
src/bfu/menu.h, src/bookmarks/Makefile.am,
src/bookmarks/bookmarks.c, src/bookmarks/bookmarks.h,
src/cookies/Makefile.am, src/cookies/cookies.c,
src/cookies/cookies.h, src/document/Makefile.am,
src/document/cache.c, src/document/cache.h, src/document/session.c,
src/document/session.h, src/document/view.c, src/document/view.h,
src/document/html/Makefile.am, src/document/html/colors.c,
src/document/html/colors.h, src/document/html/parser.c,
src/document/html/parser.h, src/document/html/renderer.c,
src/document/html/renderer.h, src/document/html/tables.c,
src/document/html/tables.h, src/internat/Makefile.am,
src/internat/charsets.c, src/internat/charsets.h,
src/internat/codepage.h, src/internat/codepage.inc,
src/internat/entity.inc, src/internat/lang_defs.h,
src/internat/language.c, src/internat/language.h,
src/internat/language.inc, src/internat/uni_7b.inc,
src/lowlevel/Makefile.am, src/lowlevel/af_unix.c,
src/lowlevel/af_unix.h, src/lowlevel/connect.c,
src/lowlevel/connect.h, src/lowlevel/dns.c, src/lowlevel/dns.h,
src/lowlevel/kbd.c, src/lowlevel/kbd.h, src/lowlevel/sched.c,
src/lowlevel/sched.h, src/lowlevel/select.c, src/lowlevel/select.h,
src/lowlevel/terminal.c, src/lowlevel/terminal.h,
src/lua/Makefile.am, src/lua/lua.c, src/lua/lua.h,
src/osdep/Makefile.am, src/osdep/beos.c, src/osdep/os_dep.c,
src/osdep/os_dep.h, src/osdep/os_depx.h, src/osdep/win32.c,
src/protocol/Makefile.am, src/protocol/file.c, src/protocol/file.h,
src/protocol/finger.c, src/protocol/finger.h, src/protocol/ftp.c,
src/protocol/ftp.h, src/protocol/http.c, src/protocol/http.h,
src/protocol/https.c, src/protocol/https.h, src/protocol/mailto.c,
src/protocol/mailto.h, src/protocol/types.c, src/protocol/types.h,
src/protocol/url.c, src/protocol/url.h, src/util/Makefile.am,
src/util/error.c, src/util/error.h, src/config/Makefile.am,
src/config/default.c, src/config/default.h, src/config/kbdbind.c,
src/config/kbdbind.h:
Part III. of source layout change, stage 1. Moving source files to
subdirectories, sorted by the department they belong to. Also
several renaming. Obviously not yet complete, this commit is here
just to record outgoing work :). And definitively not compilable
now.
Please update by cvs update -d, so that new directories will be
created properly.
Sat Mar 16 23:25:49 2002 Petr Baudis <pasky@ji.cz>:
* http.c, sched.h:
fixed bug introduced with one enum, that we wasn't able to connect
to blacklisted servers
Sat Mar 16 23:05:50 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.am, Makefile.in, acconfig.h, aclocal.m4, config.h.in,
configure, configure.in, stamp-h.in:
oh well, added that colors.c ;)
Sat Mar 16 23:02:36 2002 Petr Baudis <pasky@ji.cz>:
* bfu.h, bookmarks.c, cache.c, colors.c, colors.h, cookies.c,
default.c, default.h, html.c, html.h, html_r.c, html_r.h,
html_tbl.c, http.c, kbdbind.h, links.h, main.c, menu.c, os_dep.c,
sched.c, sched.h, session.c, session.h, terminal.c, terminal.h,
view.h:
various compilation fixes; had to fork colors parsing to
colors.[ch], it wasn't possible to arrange it so that it compiles
otherwise
Sat Mar 16 22:03:08 2002 Petr Baudis <pasky@ji.cz>:
* af_unix.c, af_unix.h, bfu.c, bfu.h, bookmarks.c, bookmarks.h,
cache.h, charsets.h, connect.h, cookies.h, default.c, default.h,
dns.c, dns.h, error.c, error.h, file.c, file.h, finger.h, ftp.c,
ftp.h, html.c, html.h, html_r.h, html_tbl.h, http.c, http.h,
https.h, kbd.c, kbd.h, kbdbind.c, kbdbind.h, language.c,
language.h, links.h, lua.c, lua.h, mailto.c, mailto.h, main.c,
main.h, menu.c, menu.h, os_dep.c, sched.c, sched.h, select.h,
session.c, session.h, terminal.c, terminal.h, types.c, types.h,
url.h, view.c, view.h:
Part II. of source layout change, stage 4. This should be the last
stage of this part, everything is moved into specific files
(there're exceptions, but we've to leave something to future,
haven't we?). However, compilation fixes will follow yet ;).
Sat Mar 16 21:02:48 2002 Petr Baudis <pasky@ji.cz>:
* HACKING:
lua scripting description, taken from mail by peter wang
Sat Mar 16 20:07:58 2002 Petr Baudis <pasky@ji.cz>:
* af_unix.c, bfu.c, bookmarks.c, cache.c, connect.c, connect.h,
cookies.c, cookies.h, default.c, dns.h, file.c, file.h, finger.c,
finger.h, ftp.c, ftp.h, html.c, html.h, html_r.c, html_r.h, http.c,
http.h, https.c, https.h, kbd.c, language.c, links.h, lua.c,
mailto.c, mailto.h, main.c, main.h, menu.c, os_dep.c, sched.c,
select.c, select.h, session.c, session.h, terminal.c, types.c,
url.c, url.h, view.c, view.h, sched.h, terminal.h:
Part II. of source layout change, stage 3. More .h files forked.
Sat Mar 16 17:51:49 2002 Petr Baudis <pasky@ji.cz>:
* main.c, view.c:
oh well.. compilation fixes ;)
Sat Mar 16 17:44:40 2002 Petr Baudis <pasky@ji.cz>:
* af_unix.c, bfu.c, bookmarks.c, charsets.c, charsets.h, cookies.c,
default.c, html.c, html.h, html_r.c, html_r.h, html_tbl.c,
html_tbl.h, http.c, language.c, links.h, lua.c, main.c, menu.c,
sched.c, session.c, session.h, view.c, view.h:
Part II. of source layout change, stage 2. HTML hell and Session
oggre hopefully handled (it'll need more work, though); I wonder if
it's compilable ;)
Sat Mar 16 15:17:22 2002 Petr Baudis <pasky@ji.cz>:
* af_unix.c, af_unix.h, bfu.c, bookmarks.c, cache.c, cache.h,
charsets.c, connect.c, connect.h, cookies.c, cookies.h, default.c,
dns.c, dns.h, error.c, error.h, file.c, file.h, finger.c, finger.h,
ftp.c, ftp.h, html.c, html_r.c, html_tbl.c, http.c, http.h,
https.c, https.h, kbd.c, language.c, links.h, lua.c, mailto.c,
mailto.h, main.c, main.h, menu.c, os_dep.c, os_dep.h, os_depx.h,
sched.c, select.c, select.h, session.c, setup.h, terminal.c,
types.c, url.c, url.h, view.c:
Part II. of source layout change, stage 1. Moving interface of the
'modules' to specific header files. Obviously not yet complete,
this commit is here just to record outgoing work :).
Sat Mar 16 12:31:14 2002 Petr Baudis <pasky@ji.cz>:
* BUGS:
another bug added.. (old one, inherited from links ;)
Sat Mar 16 11:49:08 2002 Petr Baudis <pasky@ji.cz>:
* menu.c:
added superambiguous feature Default, removed version of Lua patch,
removed the ifdef around Features line
Sat Mar 16 10:30:23 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.am, Makefile.in, acconfig.h, aclocal.m4, config.h.in,
configure, configure.in, stamp-h.in:
beautified Makefile.am ;)
Sat Mar 16 09:55:34 2002 Petr Baudis <pasky@ji.cz>:
* HACKING, Makefile.am, lang_defs.h, language.h, links.h,
intl/gen-intl, Makefile.in, acconfig.h, aclocal.m4, config.h.in,
configure, configure.in, stamp-h.in:
language.h -> lang_defs.h, preparation bit for next part of source
layout change
Sat Mar 16 09:51:15 2002 Petr Baudis <pasky@ji.cz>:
* .vimrc:
hrm.. typo fix :^)
Sat Mar 16 00:41:58 2002 Petr Baudis <pasky@ji.cz>:
* .vimrc:
*hint* *hint* for you developers using vim ;)))
Sat Mar 16 00:37:05 2002 Petr Baudis <pasky@ji.cz>:
* BUGS:
removed one obsoleted bug
Sat Mar 16 00:35:04 2002 Petr Baudis <pasky@ji.cz>:
* af_unix.c, bfu.c, bookmarks.c, cache.c, charsets.c, connect.c,
cookies.c, default.c, dns.c, error.c, file.c, finger.c, ftp.c,
html.c, html_r.c, html_tbl.c, http.c, https.c, kbd.c, kbdbind.c,
language.c, links.h, lua.c, mailto.c, main.c, menu.c, os_dep.c,
os_dep.h, os_depx.h, sched.c, select.c, session.c, setup.h,
terminal.c, types.c, url.c, view.c:
Added Id tag to source files, due to popular demand ;)
Sat Mar 16 00:23:26 2002 Petr Baudis <pasky@ji.cz>:
* af_unix.c, bfu.c, bookmarks.c, cache.c, charsets.c, connect.c,
cookies.c, default.c, dns.c, error.c, file.c, ftp.c, html.c,
html_r.c, html_tbl.c, http.c, https.c, kbd.c, kbdbind.c,
language.c, links.h, lua.c, main.c, menu.c, os_dep.c, os_depx.h,
sched.c, select.c, session.c, terminal.c, types.c, url.c, view.c:
First part of source layout change. Moved all foreign includes to
specific files which use them. This is going to improve speed of
complication, simplify various things and break the compilation on
dozens of obscure OSes. But it's still far from the main fun which
will yet come.
Fri Mar 15 22:28:23 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in:
...and finish the removal of config2.h and Makefile.gen ;)
Fri Mar 15 22:22:39 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.am:
removal of config2.h and Makefile.gen
Fri Mar 15 22:21:57 2002 Petr Baudis <pasky@ji.cz>:
* INSTALL, Makefile.gen, config2.h, links.h, wipe-out-ssl:
removal of config2.h and Makefile.gen - sorry, too dirty; if
someone will start to cry, we may reincarnate it into something
more elegant
Fri Mar 15 22:10:50 2002 Petr Baudis <pasky@ji.cz>:
* session.c:
Compilation fix - thanks, Stepan
Fri Mar 15 19:44:12 2002 Petr Baudis <pasky@ji.cz>:
* language.inc, intl/czech.lng, intl/english.lng, intl/french.lng:
French translation updates by <zas@norz.org>; more links -> elinks
stuff
Fri Mar 15 19:34:52 2002 Petr Baudis <pasky@ji.cz>:
* contrib/w3m2links.gawk:
w3m2links.gawk, script by <stephane.chazelas@free.fr>
Fri Mar 15 19:30:52 2002 Petr Baudis <pasky@ji.cz>:
* session.c:
parse_http_date() cleanup (fear\!) - i didn't introduced kinda
twicked parser i usually like to make yet, though; incorporates
something based on <stephane.chazelas@free.fr>'s patch for handling
'Saturday'-daynames as well
Fri Mar 15 19:08:42 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, cookies.c:
fix for broken sites - parse correctly cookie values containing '='
- patch by Stephane Chazelas <stephane.chazelas@free.fr>
Fri Mar 15 17:28:32 2002 Petr Baudis <pasky@ji.cz>:
* links.h, url.c, view.c:
strip password from displayed urls; i hope i didn't forget
anything; idea by Stephane Chazelas <stephane.chazelas@free.fr>
Fri Mar 15 13:45:28 2002 Petr Baudis <pasky@ji.cz>:
* html_r.c:
some tidyup of move_links(), apparently ;)
Thu Mar 14 22:14:21 2002 Petr Baudis <pasky@ji.cz>:
* html_r.c, html_tbl.c, links.h:
xxpand -> expand
Thu Mar 14 21:39:34 2002 Petr Baudis <pasky@ji.cz>:
* default.c, language.inc, intl/brazilian_portuguese.lng,
intl/bulgarian.lng, intl/catalan.lng, intl/czech.lng,
intl/dutch.lng, intl/english.lng, intl/estonian.lng,
intl/finnish.lng, intl/french.lng, intl/galician.lng,
intl/german.lng, intl/greek.lng, intl/hungarian.lng,
intl/icelandic.lng, intl/indonesian.lng, intl/italian.lng,
intl/lithuanian.lng, intl/polish.lng, intl/romanian.lng,
intl/slovak.lng, intl/spanish.lng, intl/swedish.lng,
intl/turkish.lng:
copyright nonsenses, more links -> elinks, removed 'lynx-like'
Thu Mar 14 21:02:27 2002 Petr Baudis <pasky@ji.cz>:
* charsets.c:
removed some unused structures and functions (by mikulas, from
0.97pre6)
Thu Mar 14 21:00:20 2002 Petr Baudis <pasky@ji.cz>:
* http.c:
spring tidyup of http_send_header()
Thu Mar 14 20:40:18 2002 Petr Baudis <pasky@ji.cz>:
* session.c:
fixed stripping of last char from url when adding a bookmark -
thanks go to zas
Thu Mar 14 20:21:57 2002 Petr Baudis <pasky@ji.cz>:
* bfu.c, bookmarks.c, default.c, lua.c, mailto.c, menu.c,
session.c, types.c, view.c:
cleanup of msg_box() and tidyup of all its usages
Thu Mar 14 18:56:39 2002 Petr Baudis <pasky@ji.cz>:
* menu.c:
fixed and enabled displaying of cache info (File -> Cache info);
also similiar functions tidyup
Thu Mar 14 18:55:48 2002 Petr Baudis <pasky@ji.cz>:
* bfu.c:
small fix in history duplicates checking, found && patch by zas
Thu Mar 14 18:11:31 2002 Petr Baudis <pasky@ji.cz>:
* default.c, links.h, view.c:
draft of not yet working links wraparound implementation, based on
ff's work; commented out the option record, as it's not working
somewhat; please have a look at it
Thu Mar 14 17:38:39 2002 Petr Baudis <pasky@ji.cz>:
* TODO:
one more field ;)
Thu Mar 14 17:36:36 2002 Petr Baudis <pasky@ji.cz>:
* view.c:
links and buttons work once more ;)
Thu Mar 14 17:32:35 2002 Petr Baudis <pasky@ji.cz>:
* default.c, links.h, view.c:
optionally simulate pressed enter when pressed accesskey (standart
behaviour, by default off)
Thu Mar 14 17:17:26 2002 Petr Baudis <pasky@ji.cz>:
* default.c, links.h, view.c:
optionally submit form after pressing enter on the text field (by
default on)
Wed Mar 13 22:07:26 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in:
0.4pre3-CVS
Wed Mar 13 22:04:52 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in:
0.4pre2
Wed Mar 13 21:42:24 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
add html_focusable() to html_img() as well - it looks like nice
extension, it makes sense and it fixes chaotic jumping around if
page contains images
Wed Mar 13 21:13:22 2002 Petr Baudis <pasky@ji.cz>:
* bfu.c:
strip leading/trailing spaces from URLs which are going to be saved
into history => no duplicites in history with only differences in
this
Wed Mar 13 20:59:38 2002 Petr Baudis <pasky@ji.cz>:
* html_r.c:
off-by-one bug in justify code fixed (see diff, comment near
malloc()); looks like i should release pre2 soon ;)
Wed Mar 13 19:03:28 2002 Petr Baudis <pasky@ji.cz>:
* BUGS:
one bug removed, one bug changed (added)
Tue Mar 12 22:33:08 2002 Petr Baudis <pasky@ji.cz>:
* view.c:
be more smart; if more accesskey links, rotate between them; if x
is letter and alt is not pressed, refuse it directly
Tue Mar 12 20:09:29 2002 Petr Baudis <pasky@ji.cz>:
* kbd.c:
Fixed the F1-F5 problem - am i not dumb?
Tue Mar 12 18:18:03 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, BUGS, HACKING, default.c, html.c, html_r.c, kbd.c,
kbdbind.c, links.h, view.c:
accesskey support - based on patch by ff, hacked a lot by me; also
some HACKING file notes
Mon Mar 11 16:10:40 2002 Petr Baudis <pasky@ji.cz>:
* default.c, links.h, session.c:
option form_submit_confirm - optionally skip confirmation when
submitting forms; based on patch by ff
Mon Mar 11 13:45:06 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
tabindex fixes by <ff@partyticket.net>
Mon Mar 11 13:37:42 2002 Petr Baudis <pasky@ji.cz>:
* cookies.c:
allow servers same as domains - based on patch by
<rono@sentuny.com.au>
Mon Mar 11 13:17:24 2002 Petr Baudis <pasky@ji.cz>:
* cookies.c, default.c, links.h:
don't require three dots for non-international domains by default
in check_domain_security() for cookies - reported by Christian
Hggstrm <c00chm@cs.umu.se>, he also proposed a patch on which
this is based ;)
Mon Mar 11 12:56:22 2002 Petr Baudis <pasky@ji.cz>:
* html_r.c:
Don't convert only default value of form item, but all possible
values (<select> tag) (by mikulas, from 0.97pre6)
Sun Mar 10 20:42:16 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, html.c, html_r.c, links.h:
tabindex support, based on patch by <ff@partyticket.net>
Sun Mar 10 20:07:29 2002 Petr Baudis <pasky@ji.cz>:
* TODO:
keybinding and buttonbinding
Sun Mar 10 20:06:17 2002 Petr Baudis <pasky@ji.cz>:
* TODO:
proxy stuff
Sun Mar 10 19:58:00 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
reformat bit
Sun Mar 10 13:11:32 2002 Petr Baudis <pasky@ji.cz>:
* BUGS, default.c, links.h, session.c:
show_(status|title)_bar - still incomplete, though, as there's
still a blank line even when they're turned off.. anyone wants to
fix it? :)
Sun Mar 10 12:43:51 2002 Petr Baudis <pasky@ji.cz>:
* view.c:
few random unimportant tidyups done when browsing the code bored ;)
Sun Mar 10 12:37:41 2002 Petr Baudis <pasky@ji.cz>:
* session.c:
tidyup of print_screen_status()
Sat Mar 9 22:25:57 2002 Petr Baudis <pasky@ji.cz>:
* cookies.c:
fix cookies handling - thanks to zas for report,
<ff@partyticket.net> for hint and proposed fix
Sat Mar 9 22:10:43 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, dns.c, setup.h:
one memory leak fixed in dns (not visible as it's in our child
thread); also some sanity checks and lint silencing; based on patch
by <csaba.raduly@sophos.com>
Fri Mar 8 14:42:16 2002 Petr Baudis <pasky@ji.cz>:
* http.c:
reindent referer switch, handle REFERER_NONE (silence gcc warning)
Fri Mar 8 14:41:11 2002 Petr Baudis <pasky@ji.cz>:
* language.inc, intl/french.lng:
french translation updates by zas
Fri Mar 8 12:17:21 2002 Petr Baudis <pasky@ji.cz>:
* default.c, links.h, menu.c:
moved REFERER_* into enum.. also fixed one bug - 1 wasn't
REFERER_TRUE but REFERER_SAME_URL and 2 wasn't REFERER_SAME_URL but
REFERER_FAKE and 3 wasn't REFERER_FAKE but REFERER_TRUE ;) i hope
it'll still work now, please tell me if it'll break backwards
compatibility with old config..
Fri Mar 8 10:49:15 2002 Petr Baudis <pasky@ji.cz>:
* cookies.c, default.c, links.h:
make cookies accepting settable thru runtime option
Fri Mar 8 10:18:57 2002 Petr Baudis <pasky@ji.cz>:
* cookies.c, default.c, links.h, view.c:
make cookies saving/loading/resaving turnable thru option
Thu Mar 7 22:33:32 2002 Petr Baudis <pasky@ji.cz>:
* bfu.c, default.c, links.h:
don't check duplicates in history when loading it; saves huge
amount of cpu work; patch by zas, let's see if it'll broke
anything; also contains cleanup of some history managment
Thu Mar 7 22:05:56 2002 Petr Baudis <pasky@ji.cz>:
* html_r.c:
correction to justify patch - now we handle links correctly; patch
by bunch, manual correction by me (i hope i did it properly ;)
Thu Mar 7 21:04:22 2002 Petr Baudis <pasky@ji.cz>:
* default.c:
added <term_size> near default value of user-agent to
documentation.. thanks, zas
Thu Mar 7 12:54:13 2002 Petr Baudis <pasky@ji.cz>:
* INSTALL, README, SITES:
various updates and rewrites
Thu Mar 7 07:50:07 2002 Petr Baudis <pasky@ji.cz>:
* menu.c:
one FIXME and two #undefs, tralala..
Wed Mar 6 19:52:53 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in:
0.4pre2-CVS
Wed Mar 6 19:51:57 2002 Petr Baudis <pasky@ji.cz>:
* configure.in, Makefile.in, acconfig.h, aclocal.m4, config.h.in,
configure, stamp-h.in:
0.4pre1
Wed Mar 6 17:34:13 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS:
stupid CVS - credit for <kisto@go2.pl> and his justify
Wed Mar 6 17:33:44 2002 Petr Baudis <pasky@ji.cz>:
* html_r.c, html_tbl.c, links.h:
Support for align=justify, original patch by <kisto@go2.pl>, some
variable names expanded by me. Minor html renderer cleanup.
Wed Mar 6 12:54:00 2002 Petr Baudis <pasky@ji.cz>:
* default.c, links.h, session.c, setup.h:
add WWW_HOME_URL #define into setup.h, which can act as default
homepage, if non-empty (empty by default); also attempt to add
startup_goto_dialog option, but commented out for now as it doesn't
work properly yet
Wed Mar 6 10:55:06 2002 Petr Baudis <pasky@ji.cz>:
* view.c:
another segfault fixes
Wed Mar 6 01:26:08 2002 Petr Baudis <pasky@ji.cz>:
* view.c:
i'm stupid .. segfault fix, thank for report goes to zas
Tue Mar 5 14:54:13 2002 Petr Baudis <pasky@ji.cz>:
* cookies.c:
undefine COOKIES_DEBUG ;)
Tue Mar 5 11:48:48 2002 Petr Baudis <pasky@ji.cz>:
* default.c, links.h, main.c, AUTHORS:
dump-width option - based on patch by Edwin Groothuis
<edwin@mavetju.org>
Tue Mar 5 09:57:50 2002 Petr Baudis <pasky@ji.cz>:
* lua.c, types.c:
s/strncpy/safe_strncpy/ - patch by zas
Tue Mar 5 09:42:43 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
oops, typo compilation fix
Mon Mar 4 23:31:19 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
ouch, fool me - fixed tiny merge error from 0.97pre4
Mon Mar 4 23:29:43 2002 Petr Baudis <pasky@ji.cz>:
* os_dep.h:
undefine UNIX on win32 (maybe it helps --mikulas - helps _what_?
--pasky) (by mikulas, from 0.97pre5)
Mon Mar 4 23:28:24 2002 Petr Baudis <pasky@ji.cz>:
* session.c:
fixed bad loading of imgmap (by mikulas, from 0.97pre5)
Mon Mar 4 23:26:49 2002 Petr Baudis <pasky@ji.cz>:
* finger.c:
commented out sending /W in finger request - dunno why it was
there, but it broke finger://mpat7421@ss1000.ms.mff.cuni.cz/ ;))
Mon Mar 4 23:07:10 2002 Petr Baudis <pasky@ji.cz>:
* cookies.c:
rewritten parsing of name=value, so that it's now more tolerant to
whitespaces (permitted around = and before ;) - so now i.e.
bugzilla should work properly in elinks; thanks for inspiration to
report by <lenbok@mailandnews.com> and proposed fix by
<qmax@civo.aca.nsc.ru> (from 6/7 Sep 2001)
Mon Mar 4 22:09:07 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS:
nitpicking
Mon Mar 4 22:06:24 2002 Petr Baudis <pasky@ji.cz>:
* cookies.c:
set_cookie tidyup
Mon Mar 4 20:35:15 2002 Petr Baudis <pasky@ji.cz>:
* http.c:
silenced one warning
Mon Mar 4 20:34:53 2002 Petr Baudis <pasky@ji.cz>:
* html.c, http.c, url.c:
removed the url spaces patch (and 'manual' stripping of
leeading/trailing spaces) - it didn't work well (the stripping is
pretty tricky and ugly to do, xlated url wasn't shown in info etc
etc)
Mon Mar 4 20:18:20 2002 Petr Baudis <pasky@ji.cz>:
* BUGS:
hopefully already obsolete bug deleted
Mon Mar 4 20:11:22 2002 Petr Baudis <pasky@ji.cz>:
* url.c:
remove debug things ;)
Mon Mar 4 20:09:44 2002 Petr Baudis <pasky@ji.cz>:
* url.c:
strip spaces on start and end of url - INCOMPLETE
Mon Mar 4 15:24:53 2002 Petr Baudis <pasky@ji.cz>:
* entity.inc, Unicode/entities.lnx:
euro and euml was swapped - fix based on patch by zas
Mon Mar 4 00:55:33 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure.in,
configure, stamp-h.in:
Move dlopen check few lines up so now the output isn't messy
Mon Mar 4 00:54:30 2002 Petr Baudis <pasky@ji.cz>:
* view.c:
typo compilation fix
Mon Mar 4 00:49:19 2002 Petr Baudis <pasky@ji.cz>:
* html_r.c, html_tbl.c, links.h:
Improved performance of rendering nested tables (by mikulas, from
0.97pre4)
Mon Mar 4 00:37:38 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
Fixed one case where 0 would go to the 'save formatted document'
output (by mikulas, from 0.97pre4)
Mon Mar 4 00:34:56 2002 Petr Baudis <pasky@ji.cz>:
* view.c:
some sanity checks
Mon Mar 4 00:27:25 2002 Petr Baudis <pasky@ji.cz>:
* session.c:
enlarged one static string buffer.. (from 0.97pre4)
Mon Mar 4 00:20:14 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
Do not accept '<' without name as a tag (by mikulas, from 0.97pre4)
Mon Mar 4 00:17:41 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
Input field is one char larger (by mikulas, from 0.97pre4)
Mon Mar 4 00:15:16 2002 Petr Baudis <pasky@ji.cz>:
* http.c:
Always trust 'Content-Length' when communicating with HTTP/1.1
server -- work around broken HTTP/1.1 servers that send Connection:
close, but keep the connection.
By mikulas, from 0.97pre4
Mon Mar 4 00:12:23 2002 Petr Baudis <pasky@ji.cz>:
* http.c, links.h:
Report terminal size in User-Agent (by mikulas, from 0.97pre4)
Mon Mar 4 00:09:19 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in:
Test for dlopen in configure (openssl needs it???) (by mikulas,
from 0.97pre4)
Mon Mar 4 00:06:24 2002 Petr Baudis <pasky@ji.cz>:
* kbd.c:
Fixed ESC timeout (by mikulas, from 0.97pre4)
Mon Mar 4 00:04:17 2002 Petr Baudis <pasky@ji.cz>:
* links.h:
Removed LONG_MIN, LONG_MAX because they were undefined on irix (by
mikulas, from 0.97pre4)
Mon Mar 4 00:01:58 2002 Petr Baudis <pasky@ji.cz>:
* main.c:
-dump doesn't get stuck in redir loops anymore (by mikulas, from
0.97pre4)
Sun Mar 3 23:51:50 2002 Petr Baudis <pasky@ji.cz>:
* charsets.c:
Handle encoding to utf-8 correctly (by mikulas, from 0.97pre4)
Sun Mar 3 23:46:00 2002 Petr Baudis <pasky@ji.cz>:
* links.h:
added #define __EXTENSION__ - hope it helps on SunOS (by mikulas,
from 0.97pre4)
Sun Mar 3 23:43:48 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, language.h, language.inc, intl/index.txt,
intl/indonesian.lng:
indonesian translation by faizal@mfaizal.net (from 0.97pre4)
Sun Mar 3 23:33:37 2002 Petr Baudis <pasky@ji.cz>:
* language.h, language.inc, intl/finnish.lng, intl/index.txt,
AUTHORS:
finnish translation by ik@iki.fi (from 0.97pre3)
Sun Mar 3 23:30:45 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in, AUTHORS, links.h, select.c:
compilation fix by mikulas (from 0.97pre3)
Sun Mar 3 23:24:34 2002 Petr Baudis <pasky@ji.cz>:
* ftp.c:
add support for color dirs inside ftp
Sun Mar 3 23:16:04 2002 Petr Baudis <pasky@ji.cz>:
* connect.c, ftp.c, links.h:
ftp massive cleanup - tidyup, removed some braindead stuff,
varnames expanding,few comments
Sun Mar 3 22:55:28 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS:
blabla
Sun Mar 3 16:56:27 2002 Petr Baudis <pasky@ji.cz>:
* kbd.c, menu.c, os_dep.c:
more compilation warning fixes
Sun Mar 3 16:46:54 2002 Petr Baudis <pasky@ji.cz>:
* language.inc, intl/gen-intl:
more structures in brackets in arrays ;)
Sun Mar 3 16:46:13 2002 Petr Baudis <pasky@ji.cz>:
* links.h, Makefile.in, acconfig.h, aclocal.m4, config.h.in,
configure, configure.in, stamp-h.in:
check for arpa/inet.h
Sun Mar 3 16:45:37 2002 Petr Baudis <pasky@ji.cz>:
* kbd.c, menu.c, os_dep.c, sched.c, types.c:
silenced some more compiler warnings..
Sun Mar 3 16:30:01 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
oops - compilation fix
Sun Mar 3 16:22:31 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in:
enabled -Wall for gcc - all compiler warnings
Sun Mar 3 16:22:11 2002 Petr Baudis <pasky@ji.cz>:
* configure, configure.in, intl/gen-intl:
enabled -Wall for gcc - show all warnings
Sun Mar 3 16:21:32 2002 Petr Baudis <pasky@ji.cz>:
* cookies.c, html.c:
silenced compiler warnings
Sun Mar 3 16:16:20 2002 Petr Baudis <pasky@ji.cz>:
* codepage.inc, uni_7b.inc, Unicode/gen-7b, Unicode/gen-cp:
enclose array members (structures) into {} - silencing compiler
warnings
Sun Mar 3 15:55:22 2002 Petr Baudis <pasky@ji.cz>:
* menu.c:
fixed one race condition in httpauth
Sun Mar 3 15:48:14 2002 Petr Baudis <pasky@ji.cz>:
* bfu.c, bookmarks.c, charsets.c, default.c, html.c, html_r.c,
html_tbl.c, kbdbind.c, links.h, lua.c, os_dep.c, sched.c,
session.c, url.c, view.c:
tidyup - blank lines, reindentations, few comments, removed unused
variables, silenced compiler warnings
Sat Mar 2 15:09:32 2002 Petr Baudis <pasky@ji.cz>:
* language.inc, intl/czech.lng:
added few czech translations
Sat Mar 2 14:53:37 2002 Petr Baudis <pasky@ji.cz>:
* html.c, http.c:
handle spaces in URL correctly now (substituing them for '+' in
HTTP requests, leaving them as they are otherwise)
Sat Mar 2 14:04:07 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, BUGS, TODO, http.c, language.h, language.inc, links.h,
menu.c, sched.c, session.c, intl/brazilian_portuguese.lng,
intl/bulgarian.lng, intl/catalan.lng, intl/czech.lng,
intl/dutch.lng, intl/english.lng, intl/estonian.lng,
intl/french.lng, intl/galician.lng, intl/german.lng,
intl/greek.lng, intl/hungarian.lng, intl/icelandic.lng,
intl/italian.lng, intl/lithuanian.lng, intl/polish.lng,
intl/romanian.lng, intl/russian.lng, intl/slovak.lng,
intl/spanish.lng, intl/swedish.lng, intl/turkish.lng,
intl/ukrainian.lng:
Merged HTTP-auth support by Jan Sembera (based on the original one
by Sergei Borushevsky)
Sat Mar 2 13:09:55 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in:
Version updated to 0.4pre1-CVS
Sat Mar 2 11:29:52 2002 Petr Baudis <pasky@ji.cz>:
* connect.c:
Hacked connect() in order to get this thing working on *censored*
*censored* *censored* BSD *censored* *censored*
Tue Feb 12 12:18:41 2002 Petr Baudis <pasky@ji.cz>:
* lua.c:
fixed crash when links_home is NULL
Sat Feb 9 11:12:31 2002 Petr Baudis <pasky@ji.cz>:
* url.c:
take [address] as an ipv6 address only in the hostname part of URL
- bug reported by Stepan Roh <stepan@srnet.cz>
Fri Feb 8 21:14:39 2002 Petr Baudis <pasky@ji.cz>:
* BUGS:
added bug reported by Kovacs Zoltan
<kovacsz@pc10.radnoti-szeged.sulinet.hu>
Fri Feb 8 06:24:08 2002 Petr Baudis <pasky@ji.cz>:
* dns.c:
typo fix in dns.c, by Cristiano Guadagnino <criguada@tin.it>
Thu Feb 7 00:12:53 2002 Petr Baudis <pasky@ji.cz>:
* BUGS, TODO:
added some more items
Thu Feb 7 00:00:41 2002 Petr Baudis <pasky@ji.cz>:
* session.c:
fixed small bug in lua hooks which caused links to crash if
non-existent local file was specified as a frame source
Wed Feb 6 23:37:56 2002 Petr Baudis <pasky@ji.cz>:
* dns.c:
disable 4to6 mapping, possibly solving the problem with the non
ipv6-enabled kernels but ipv6 enabled libc
Wed Feb 6 23:10:29 2002 Petr Baudis <pasky@ji.cz>:
* bookmarks.c:
memorizing last search until escaping from the bookmarks dialog,
patch by Zas, lead fixed by pasky; bookmarks search should
hopefully be done by now
Mon Feb 4 14:13:06 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, links.1, os_dep.c, os_dep.h:
Port to RISC OS by Peter Naulls <peter@chocky.org>
Sun Feb 3 07:50:40 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
forgot one line in querystring patch
Fri Feb 1 21:49:59 2002 Petr Baudis <pasky@ji.cz>:
* BUGS, TODO:
changes and moves etc
Fri Feb 1 21:46:10 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, default.c, contrib/README, contrib/color_config.diff:
Added possibility to change default colors settings - original
patch by Peter Wang, disabled default_bg && default_vlink for now
Fri Feb 1 17:33:26 2002 Petr Baudis <pasky@ji.cz>:
* bfu.c, links.h, os_dep.c, session.c, url.c:
Cleanup safe_strncpy and spread its use to more places.
Fri Feb 1 13:49:13 2002 Petr Baudis <pasky@ji.cz>:
* links.h:
cleanups in bookmarks section, box stuff moved to bfu section;
original patch by Zas <zas@norz.org>
Fri Feb 1 10:16:49 2002 Petr Baudis <pasky@ji.cz>:
* connect.c, sched.c:
hopefully fixed segfault when killing background connection in
lookup state
Thu Jan 31 22:32:09 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
make UL, DIR, MENU, OL and DL _block_ elements, thus leaving a line
after themselves
Thu Jan 31 22:24:56 2002 Petr Baudis <pasky@ji.cz>:
* bookmarks.c:
Bookmark resaving by Zas <zas@norz.org> - from now on, bookmarks
are saved after each change
Thu Jan 31 16:35:50 2002 Petr Baudis <pasky@ji.cz>:
* cookies.c:
comments change in cookies.c
Thu Jan 31 15:50:33 2002 Petr Baudis <pasky@ji.cz>:
* menu.c, session.c:
Hopefully FINALLY(!) fixed the unhistory - now it should be
rock-stable and any rumours telling otherwise should not be trusted
in any rate ;-). This fix comes after three-hours research and
massive changes and reverts as a tiny one-liner + some comments
dropped around the history code accompanying it.
Wed Jan 30 22:27:24 2002 Petr Baudis <pasky@ji.cz>:
* menu.c, session.c:
some unhistory experiments, history should be stable, unhistory may
core randomly so don't use it now :^). now sleep time, children
Wed Jan 30 21:54:37 2002 Petr Baudis <pasky@ji.cz>:
* default.c, menu.c, session.c, view.c:
certain (un)history cleanups and fixes, not yet complete
Wed Jan 30 19:27:56 2002 Petr Baudis <pasky@ji.cz>:
* menu.c, session.c:
small unhistory cleanups
Wed Jan 30 15:16:03 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in, AUTHORS, dns.c:
MacOS address resolution fix (Aldy Hernandez) (from 0.97pre2)
Wed Jan 30 15:08:32 2002 Petr Baudis <pasky@ji.cz>:
* acconfig.h, aclocal.m4, config.h.in, configure.in, Makefile.in,
configure, stamp-h.in, os_dep.c:
Fix compile error when -lgpm works but gpm.h is not there (Mikulas
Patocka) (from 0.97pre2)
Wed Jan 30 15:05:16 2002 Petr Baudis <pasky@ji.cz>:
* NEWS:
Dummy NEWS to make automake happy
Wed Jan 30 14:58:40 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, view.c:
Fixed segfault when posting large form (Jacek Fedorynski) (from
0.97pre2)
Wed Jan 30 14:48:56 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, entity.inc, Unicode/entities.lnx:
Added € symbol (Cliff Cunnington) (from 0.97pre2)
Wed Jan 30 14:16:19 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
Fixed fix of stripping query strings from form's actions (Mikulas
Patocka) (from 0.97pre1)
Wed Jan 30 14:06:44 2002 Petr Baudis <pasky@ji.cz>:
* html.c, view.c:
Fixed crash when amount of items in select box decreases after
reload, make it remember select item on reload (fixes www.xchat.cz)
(Mikulas Patocka) (from 0.97pre1)
Wed Jan 30 13:58:17 2002 Petr Baudis <pasky@ji.cz>:
* html.c, html_r.c:
Do not allow larger input fiels than screen size (Mikulas Patocka)
(from 0.97pre1)
Wed Jan 30 13:55:40 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
Fix one read overrun in parser (Mikulas Patocka) (from 0.97pre1)
Wed Jan 30 13:48:21 2002 Petr Baudis <pasky@ji.cz>:
* view.c:
Fixed crash in OS/2 when user pressed Ctrl-V and clipboard was
empty (Mikulas Patocka) (from 0.97pre1)
Wed Jan 30 13:47:08 2002 Petr Baudis <pasky@ji.cz>:
* select.c:
Fixed leaving zombie processes when more children exited
simultaneously (Mikulas Patocka) (from 0.97pre1)
Wed Jan 30 13:45:53 2002 Petr Baudis <pasky@ji.cz>:
* menu.c:
Fixed error when sprintf return value is defined as 'void' in
headers (Mikulas Patocka) (from 0.97pre1)
Wed Jan 30 13:44:11 2002 Petr Baudis <pasky@ji.cz>:
* view.c:
work-around for Sun C bug (Mikulas Patocka) (from 0.97pre1)
Wed Jan 30 13:42:43 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, connect.c, html.c, view.c:
compile incompatibilites, fix by Karel Kulhavy (from 0.97pre1)
(probably not everything, but dunno how classify the other fixes)
Tue Jan 29 22:10:22 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, language.h, language.inc, intl/index.txt,
intl/dutch.lng:
Dutch translation by Stefan de Groot <stefan@nllinux.nl> (from
0.97pre1)
Tue Jan 29 22:07:42 2002 Petr Baudis <pasky@ji.cz>:
* language.inc, intl/slovak.lng:
small fix in slovak.lng
Tue Jan 29 22:06:02 2002 Petr Baudis <pasky@ji.cz>:
* links.h:
workaround for cygwin including getops.h (from 0.97pre1)
Tue Jan 29 22:03:15 2002 Petr Baudis <pasky@ji.cz>:
* links.h:
declare parse_http_date().. hey, yes, we really use him in
cookies.c as well ;) (from 0.97pre1)
Tue Jan 29 21:57:16 2002 Petr Baudis <pasky@ji.cz>:
* cookies.c:
Do not reject cookies with insecure domain (but send them only to
original server, not to the whole domain) (from Mikulas Patocka)
(from 0.97pre1)
Tue Jan 29 21:56:32 2002 Petr Baudis <pasky@ji.cz>:
* entity.inc:
removed some duplicite entries (inspired by 0.97pre1)
Tue Jan 29 21:51:56 2002 Petr Baudis <pasky@ji.cz>:
* SITES:
another download mirror (from 0.97pre1)
Tue Jan 29 21:50:23 2002 Petr Baudis <pasky@ji.cz>:
* Unicode/entities.lnx:
removed some duplicite entries (inspired by 0.97pre1)
Tue Jan 29 08:58:18 2002 Petr Baudis <pasky@ji.cz>:
* contrib/bm.lua:
escaping more characters, refusing to save bookmarks if not loaded
properly (Peter Wang's)
Mon Jan 28 12:02:50 2002 Petr Baudis <pasky@ji.cz>:
* bookmarks.c:
bookmark updates by zas - swap cancel and clear, after search move
pointer to top, on enter to the bookmark manager reset search
results
Sat Jan 26 19:42:35 2002 Petr Baudis <pasky@ji.cz>:
* BUGS, TODO:
reduced a bit
Sat Jan 26 19:38:08 2002 Petr Baudis <pasky@ji.cz>:
* html.c:
XMP wrapped to PRE
Sat Jan 26 15:21:47 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, BUGS, HACKING, INSTALL, LUA, README, SITES, TODO:
Added Id tags
Sat Jan 26 15:21:28 2002 Petr Baudis <pasky@ji.cz>:
* LUA-WIP, NEWS:
removed dummy files
Sat Jan 26 14:41:08 2002 Petr Baudis <pasky@ji.cz>:
* view.c:
more sanity checking
Sat Jan 26 11:33:56 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, bookmarks.c, language.h, language.inc, links.h,
intl/brazilian_portuguese.lng, intl/bulgarian.lng,
intl/catalan.lng, intl/czech.lng, intl/english.lng,
intl/estonian.lng, intl/french.lng, intl/galician.lng,
intl/german.lng, intl/greek.lng, intl/hungarian.lng,
intl/icelandic.lng, intl/italian.lng, intl/lithuanian.lng,
intl/polish.lng, intl/romanian.lng, intl/russian.lng,
intl/slovak.lng, intl/spanish.lng, intl/swedish.lng,
intl/turkish.lng, intl/ukrainian.lng:
Bookmarks filtering, some minor bookmarks cleanups - patch by Zas
<zas@norz.org>. It still needs improvements, though.
Sat Jan 26 10:24:40 2002 Petr Baudis <pasky@ji.cz>:
* connect.c, sched.c:
Finally fixed the problem (in one time, there might be two
connections in the scope of one struct connection) - after all, the
fix was quite simple :).
Fri Jan 25 18:08:22 2002 Petr Baudis <pasky@ji.cz>:
* connect.c, sched.c:
hopefully fixed one evil crash inside connected()
Fri Jan 25 17:36:31 2002 Petr Baudis <pasky@ji.cz>:
* default.c:
fixed typo in default.c for allow-special-files option, thanks zas
:)
Fri Jan 25 17:11:06 2002 Petr Baudis <pasky@ji.cz>:
* default.c, file.c, links.h:
[SECURITYFIX] allow reading of special files only when explicitly
enabled
Thu Jan 24 03:10:58 2002 Petr Baudis <pasky@ji.cz>:
* view.c:
quick fix of last fix (submit thing in menu) - links didn't work at
all ;)
Thu Jan 24 01:36:59 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, file.c:
allow reading of special non-regular files - patch by Len Lattanzi
<Len_Lattanzi@StanfordAlumni.org>
Thu Jan 24 00:58:04 2002 Petr Baudis <pasky@ji.cz>:
* connect.c:
tiny fix, just to force everything is really sane
Wed Jan 23 22:43:20 2002 Petr Baudis <pasky@ji.cz>:
* bfu.c, links.h:
clear_dialog() by Zas <zas@norz.org>
Wed Jan 23 21:57:31 2002 Petr Baudis <pasky@ji.cz>:
* bfu.c:
selection by leading letter - patch by Ami Fischman
<usenet@fischman.org>
Wed Jan 23 21:30:14 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, bfu.c:
cyclic scrolling in menus, patch by Ami Fischman
<usenet@fixchman.org>
Wed Jan 23 16:21:03 2002 Petr Baudis <pasky@ji.cz>:
* view.c:
Add 'submit form' to link menu for each form field - patch by Ami
Fischman <usenet@fischman.org>
Mon Jan 21 22:30:39 2002 Petr Baudis <pasky@ji.cz>:
* contrib/hpux-pipe.diff:
it was completely different patch ;)
Mon Jan 21 17:44:14 2002 Petr Baudis <pasky@ji.cz>:
* autocommit.sh:
*plop*
Mon Jan 21 17:44:04 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in:
Fix broken BSD including system ;-) sockaddr_storage and
sockaddr_in6 weren't detected correctly during configure Thanks to
Ashram for bug report
Sun Jan 20 15:27:24 2002 Petr Baudis <pasky@ji.cz>:
* contrib/: README, hpux-pipe.diff:
Fix for HPUX by Stephane Chazelas
Sat Jan 19 16:57:43 2002 Petr Baudis <pasky@ji.cz>:
* connect.c:
*cough*
Fri Jan 18 08:53:54 2002 Petr Baudis <pasky@ji.cz>:
* url.c, AUTHORS:
take @ only before hostname - fix by Ami Fischman
<usenet@fischman.org>
Thu Jan 17 20:27:46 2002 Petr Baudis <pasky@ji.cz>:
* links.h:
strcasestr() stub by Zas <zas@norz.org>
Thu Jan 17 20:27:21 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in:
Added check for strcasestr()
Thu Jan 17 19:14:37 2002 Petr Baudis <pasky@ji.cz>:
* autocommit.sh:
more sane passing of parameters ;)
Thu Jan 17 19:14:24 2002 Petr Baudis <pasky@ji.cz>:
* links.h, os_dep.h:
moved sockaddr_storage emergency stub
Thu Jan 17 19:13:18 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in:
Cleaned checks for unused functions, added check for timegm(), some
dummy comments for rest of acconfig.h
Thu Jan 17 18:26:48 2002 Petr Baudis <pasky@ji.cz>:
* AUTHORS, session.c:
mktime() takes struct tm in localtime, not GMT - fix by Christian
Haggstrom <c00chm@cs.umu.se>
Thu Jan 17 14:05:40 2002 Petr Baudis <pasky@ji.cz>:
* url.c:
Skip ':' even when \!need_slashes (otherwise i.e. mailto doesn't
dig user correctly)
Thu Jan 17 09:18:58 2002 Petr Baudis <pasky@ji.cz>:
* menu.c:
display IPv6 in features list
Thu Jan 17 09:17:08 2002 Petr Baudis <pasky@ji.cz>:
* os_dep.h:
remove IPV6 defining, moved to autoconf suite
Thu Jan 17 09:15:54 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in:
[no log message]
Sun Jan 6 21:28:22 2002 Petr Baudis <pasky@ji.cz>:
* url.c:
fix of silly mistake in properly joining relative urls containing
query_str
Sun Jan 6 18:56:51 2002 Petr Baudis <pasky@ji.cz>:
* default.c:
remove chmod(home_links, 0700) everytime, just do it only in
mkdir()
Sat Jan 5 22:12:44 2002 Petr Baudis <pasky@ji.cz>:
* error.c:
flush stderr when whining
Sat Jan 5 22:05:53 2002 Petr Baudis <pasky@ji.cz>:
* cookies.c:
more cookies debug :)
Sat Jan 5 21:53:13 2002 Petr Baudis <pasky@ji.cz>:
* cookies.c:
cookies debug code
Sat Jan 5 21:39:41 2002 Petr Baudis <pasky@ji.cz>:
* default.c:
first stage of get_home() cleanup - needs to be done w/o so much
gotos probably
Wed Jan 2 23:01:37 2002 Petr Baudis <pasky@ji.cz>:
* default.c, file.c, links.h:
Option for highlight of directories
Wed Jan 2 19:29:23 2002 Petr Baudis <pasky@ji.cz>:
* autocommit.sh, autogen.sh:
some my autoshit tools - will be probably better to have them in
CVS
Wed Jan 2 19:05:56 2002 Petr Baudis <pasky@ji.cz>:
* HACKING:
success testing note
Wed Jan 2 18:20:42 2002 Petr Baudis <pasky@ji.cz>:
* mailcap.pl, contrib/mailcap.pl:
Moved mailcap.pl to contrib/
Wed Jan 2 18:17:28 2002 Petr Baudis <pasky@ji.cz>:
* url.c:
Correct guessing of http:// for IPv6 address
Wed Jan 2 17:49:55 2002 Petr Baudis <pasky@ji.cz>:
* url.c:
Cleanup of translate_url()
Wed Jan 2 17:00:14 2002 Petr Baudis <pasky@ji.cz>:
* connect.c, http.c, url.c:
IPv6 support various fixes, support for parsing of IPv6 URL
Wed Jan 2 13:43:35 2002 Petr Baudis <pasky@ji.cz>:
* connect.c, default.c, dns.c, sched.c:
IPv6 connections support (not yet URL parsing fixes)
Tue Jan 1 17:55:52 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in, acconfig.h, aclocal.m4, config.h.in, configure,
configure.in, stamp-h.in, os_dep.h:
Add test for struct sockaddr_in6
Tue Jan 1 17:23:53 2002 Petr Baudis <pasky@ji.cz>:
* dns.c, links.h, os_dep.h:
Use sockaddr_storage instead of sockaddr, where appropriate.
Tue Jan 1 01:19:07 2002 Petr Baudis <pasky@ji.cz>:
* acconfig.h, config.h.in, configure, configure.in, Makefile.in,
acconfig.h, aclocal.m4, config.h.in, configure, configure.in,
stamp-h.in:
grrr.. test for automated autoshit autocomit autofixing autobroken
autobuild; also added test for getaddrinfo()
Tue Jan 1 00:57:20 2002 Petr Baudis <pasky@ji.cz>:
* Makefile.in:
added check for sockaddr_storage
Tue Jan 1 00:54:16 2002 Petr Baudis <pasky@ji.cz>:
* aclocal.m4, configure:
added check for sockaddr_storage
Tue Jan 1 00:51:14 2002 Petr Baudis <pasky@ji.cz>:
* acconfig.h, config.h.in, configure, configure.in, stamp-h.in:
added check for sockaddr_storage
Mon Dec 31 19:59:46 2001 Petr Baudis <pasky@ji.cz>:
* url.c:
Hopefully fix for making link to ?foo at bar.cgi/baz to
bar.cgi/?foo rather than to bar.cgi/baz?foo.
Mon Dec 31 18:43:24 2001 Petr Baudis <pasky@ji.cz>:
* language.h, language.inc, view.c, intl/brazilian_portuguese.lng,
intl/bulgarian.lng, intl/catalan.lng, intl/czech.lng,
intl/english.lng, intl/estonian.lng, intl/french.lng,
intl/galician.lng, intl/german.lng, intl/greek.lng,
intl/hungarian.lng, intl/icelandic.lng, intl/italian.lng,
intl/lithuanian.lng, intl/polish.lng, intl/romanian.lng,
intl/russian.lng, intl/slovak.lng, intl/spanish.lng,
intl/swedish.lng, intl/turkish.lng, intl/ukrainian.lng:
Pop up error message when trying to edit textarea externally from
slave terminal.
Mon Dec 31 18:01:03 2001 Petr Baudis <pasky@ji.cz>:
* contrib/md5check.lua:
Another lua script from Peter Wang
Sun Dec 30 01:43:50 2001 Petr Baudis <pasky@ji.cz>:
* connect.c, links.h, sched.c:
Even more rewrites of DNS (even random digs to connection
managment) so that we now finally correctly handle multiple RRs; we
also virtually already can use IPv6, if would gethostbyname() eever
return it and we would use sizeof(sockaddr_storage) ;).
Sat Dec 29 22:53:06 2001 Petr Baudis <pasky@ji.cz>:
* connect.c:
unified some duplicated SSL code
Sat Dec 29 22:33:15 2001 Petr Baudis <pasky@ji.cz>:
* connect.c, dns.c:
We do blocking communication with resolver thread, it shouldn't
hurt as it's always only local, and it is too difficult to do it
non-blocking properly. Now it should again work at BSD for hosts
with single RR.
Sat Dec 29 18:52:38 2001 Petr Baudis <pasky@ji.cz>:
* connect.c, links.h, sched.c:
a little more dns cleanup, now address list should be freed
correctly when an error occurs
Sat Dec 29 17:35:29 2001 Petr Baudis <pasky@ji.cz>:
* dns.c:
fix async resolving under such braindead systems like bsd ;) which
won't acceptdata from resolver thread to a socket at once
Sat Dec 29 16:19:28 2001 Petr Baudis <pasky@ji.cz>:
* dns.c:
fix segfault when host not found
Sat Dec 29 14:21:39 2001 Petr Baudis <pasky@ji.cz>:
* dns.c:
more universal addr type passing :)
Sat Dec 29 14:17:21 2001 Petr Baudis <pasky@ji.cz>:
* dns.c:
fix async resolving under such braindead systems like bsd ;) which
won't burst me with data from resolver thread at once
Sat Dec 29 14:04:05 2001 Petr Baudis <pasky@ji.cz>:
* dns.c:
small anti-leak when fucked up communication with resolver thread
Sat Dec 29 13:20:52 2001 Petr Baudis <pasky@ji.cz>:
* stamp-h.in:
i hate autoshits :(
Sat Dec 29 12:47:33 2001 Petr Baudis <pasky@ji.cz>:
* AUTHORS, BUGS, COPYING, HACKING, INSTALL, LUA, LUA-WIP,
Makefile.am, Makefile.gen, Makefile.in, NEWS, README, SITES, TODO,
acconfig.h, aclocal.m4, af_unix.c, beos.c, bfu.c, bookmarks.c,
cache.c, charsets.c, codepage.h, codepage.inc, config.guess,
config.h.in, config.sub, config2.h, configure, configure.in,
connect.c, cookies.c, default.c, dns.c, entity.inc, error.c,
file.c, finger.c, ftp.c, html.c, html_r.c, html_tbl.c, http.c,
https.c, install-sh, kbd.c, kbdbind.c, language.c, language.h,
language.inc, links.1, links.h, lua.c, mailcap.pl, mailto.c,
main.c, menu.c, missing, mkinstalldirs, os_dep.c, os_dep.h,
os_depx.h, rebuild, sched.c, select.c, session.c, setup.h,
stamp-h.in, terminal.c, types.c, uni_7b.inc, url.c, view.c,
win32.c, wipe-out-ssl, wipe-out-ssl.awk:
hopefully fix build system - changing ctimes
Fri Dec 28 17:25:34 2001 Petr Baudis <pasky@ji.cz>:
* contrib/: README, bm.lua, color_config.diff, dummy-js.diff,
hooks.lua, links_wps.zip, user.example:
made contrib/ and added some interesting things there
Fri Dec 28 16:20:43 2001 Petr Baudis <pasky@ji.cz>:
* HACKING:
html parser/renderer description
Fri Dec 28 16:05:54 2001 Petr Baudis <pasky@ji.cz>:
* AUTHORS:
historical note near GNU gettext credits
Fri Dec 28 13:04:34 2001 Petr Baudis <pasky@ji.cz>:
* connect.c, default.c, dns.c, links.h:
remove ip and use sockaddr(_in) instead
Fri Dec 28 03:29:02 2001 Petr Baudis <pasky@ji.cz>:
* README, Unicode/gen-ent, intl/intl.txt:
back from test :)
Fri Dec 28 03:16:35 2001 Petr Baudis <pasky@ji.cz>:
* Unicode/gen-ent, intl/intl.txt:
test of new cvslog.pl :)
Fri Dec 28 03:13:03 2001 Petr Baudis <pasky@ji.cz>:
* README:
test of new cvslog.pl :)
Fri Dec 28 00:41:42 2001 Petr Baudis <pasky@ji.cz>:
* HACKING, HACKING:
*dummy*
Thu Dec 27 21:46:13 2001 Petr Baudis <pasky@ji.cz>:
* HACKING:
some more coding style issues
Thu Dec 27 05:27:43 2001 Petr Baudis <pasky@ji.cz>:
* TODO:
TODO update :)
Thu Dec 27 04:41:31 2001 Petr Baudis <pasky@ji.cz>:
* connect.c, sched.c:
DNS support for more RRs per host looks done - some mem_free()s
moved, debug()s removed, no leaks or crashes occured to me for now
Thu Dec 27 03:59:59 2001 Petr Baudis <pasky@ji.cz>:
* connect.c, dns.c, sched.c:
next version of my leaky multi-RR DNS beast ;p
Thu Dec 27 02:53:59 2001 Petr Baudis <pasky@ji.cz>:
* connect.c, default.c, dns.c, links.h, sched.c:
Partially rewritten fashion of address handling in DNS 'subsystem';
it is maybe still a little broken and certainly leakage, but I want
to have some reference point - it compiles and doesn't core to me
;)
Wed Dec 26 15:39:24 2001 Petr Baudis <pasky@ji.cz>:
* error.c:
remove of some inherited LEAK_DEBUG ifdefs
Wed Dec 26 00:19:15 2001 Petr Baudis <pasky@ji.cz>:
* AUTHORS, session.c:
Proper parsing of set-cookie expires atribute, patch by Stepan Roh
<stepan@srnet.cz>, blank lines by me
Tue Dec 25 21:55:49 2001 Petr Baudis <pasky@ji.cz>:
* bfu.c:
bfu.c partial cleanup
Tue Dec 25 18:42:00 2001 Petr Baudis <pasky@ji.cz>:
* default.c:
parameters handling rewrite fixes ;)
Tue Dec 25 18:41:43 2001 Petr Baudis <pasky@ji.cz>:
* af_unix.c:
af_unix cleanup
Tue Dec 25 17:58:32 2001 Petr Baudis <pasky@ji.cz>:
* default.c, links.h:
rewritten options handling
Mon Dec 24 13:42:03 2001 Petr Baudis <pasky@ji.cz>:
* links.h, terminal.c, view.c:
External textarea editor support code cleanup, sanity checks,
comments, bugfixes and only allow it for master terminal, as it
doesn't work for any else really.
Sun Dec 23 23:42:23 2001 Petr Baudis <pasky@ji.cz>:
* AUTHORS, BUGS, TODO, config2.h, configure, configure.in,
default.c, html.c, html_r.c, kbdbind.c, language.h, language.inc,
links.1, links.h, menu.c, session.c, terminal.c, view.c,
intl/brazilian_portuguese.lng, intl/bulgarian.lng,
intl/catalan.lng, intl/czech.lng, intl/english.lng,
intl/estonian.lng, intl/french.lng, intl/galician.lng,
intl/german.lng, intl/greek.lng, intl/hungarian.lng,
intl/icelandic.lng, intl/italian.lng, intl/lithuanian.lng,
intl/polish.lng, intl/romanian.lng, intl/russian.lng,
intl/slovak.lng, intl/spanish.lng, intl/swedish.lng,
intl/turkish.lng, intl/ukrainian.lng:
New release strategy - elinks-0.3pre - basically merge all the
stuff from UNSTABLE branch.
That includes: * Unhistory patch by Peter Wang * External
textarea editor * Colourful cleanups
Sun Dec 23 23:21:41 2001 Petr Baudis <pasky@ji.cz>:
* config2.h, configure, configure.in, default.c, http.c:
Releasing elinks-0.2. This release is generally only sync for new
development model. Included some language updates and few bug fixes
and few code cleanups. Main fun will come with elinks-0.3, but
that's another story.
Sun Dec 23 22:43:32 2001 Petr Baudis <pasky@ji.cz>:
* connect.c, default.c, dns.c, links.h, url.c:
merge with STABLE
Sun Dec 23 15:20:00 2001 Petr Baudis <pasky@ji.cz>:
* AUTHORS, HACKING:
merge with stable
Sun Dec 23 15:10:19 2001 Petr Baudis <pasky@ji.cz>:
* HACKING:
file HACKING was initially added on branch UNSTABLE.
Sat Dec 22 22:06:14 2001 Petr Baudis <pasky@ji.cz>:
* language.inc, intl/french.lng:
merge with STABLE
Sat Dec 22 12:27:09 2001 Petr Baudis <pasky@ji.cz>:
* bfu.c, html.c:
merge with stable
Mon Dec 17 13:13:07 2001 Petr Baudis <pasky@ji.cz>:
* http.c:
merge with STABLE
Sat Dec 15 21:40:56 2001 Petr Baudis <pasky@ji.cz>:
* language.inc, intl/french.lng:
merge from STABLE
Wed Nov 7 13:51:25 2001 Petr Baudis <pasky@ji.cz>:
* view.c:
textarea double encoding fix
Sun Oct 28 17:44:10 2001 Petr Baudis <pasky@ji.cz>:
* AUTHORS:
be more humbe :)
Sun Oct 28 17:35:28 2001 Petr Baudis <pasky@ji.cz>:
* language.inc, intl/brazilian_portuguese.lng, intl/bulgarian.lng,
intl/catalan.lng, intl/czech.lng, intl/english.lng,
intl/estonian.lng, intl/french.lng, intl/galician.lng,
intl/german.lng, intl/greek.lng, intl/hungarian.lng,
intl/icelandic.lng, intl/italian.lng, intl/lithuanian.lng,
intl/polish.lng, intl/romanian.lng, intl/russian.lng,
intl/slovak.lng, intl/spanish.lng, intl/swedish.lng,
intl/turkish.lng, intl/ukrainian.lng:
Show ELinks in About dialog
Sun Oct 28 16:31:39 2001 Petr Baudis <pasky@ji.cz>:
* default.c, http.c, links.1, links.h, menu.c, intl/czech.lng,
intl/english.lng, intl/french.lng, language.h, language.inc,
intl/brazilian_portuguese.lng, intl/bulgarian.lng,
intl/catalan.lng, intl/estonian.lng, intl/galician.lng,
intl/german.lng, intl/greek.lng, intl/hungarian.lng,
intl/icelandic.lng, intl/italian.lng, intl/lithuanian.lng,
intl/polish.lng, intl/romanian.lng, intl/russian.lng,
intl/slovak.lng, intl/spanish.lng, intl/swedish.lng,
intl/turkish.lng, intl/ukrainian.lng:
User-Agent modifiable string (user-agent-0.96-pb2.patch)
Sun Oct 28 14:49:02 2001 Petr Baudis <pasky@ji.cz>:
* INSTALL:
no need to make cvs-dist
Sun Oct 28 14:44:48 2001 Petr Baudis <pasky@ji.cz>:
* codepage.h, codepage.inc, entity.inc, language.h, language.inc,
intl/brazilian_portuguese.lng, intl/bulgarian.lng,
intl/catalan.lng, intl/estonian.lng, intl/french.lng,
intl/galician.lng, intl/german.lng, intl/greek.lng,
intl/hungarian.lng, intl/icelandic.lng, intl/italian.lng,
intl/lithuanian.lng, intl/polish.lng, intl/romanian.lng,
intl/russian.lng, intl/slovak.lng, intl/spanish.lng,
intl/swedish.lng, intl/turkish.lng, intl/ukrainian.lng:
intl and unicode stuff
Sun Oct 28 14:41:21 2001 Petr Baudis <pasky@ji.cz>:
* Makefile.in, aclocal.m4:
generated by a little newer automake
Sun Oct 28 14:26:10 2001 Petr Baudis <pasky@ji.cz>:
* INSTALL:
basic installation guidelines
Sun Oct 28 13:57:49 2001 Petr Baudis <pasky@ji.cz>:
* AUTHORS:
User-Agent string changing support
Sun Oct 28 13:57:15 2001 Petr Baudis <pasky@ji.cz>:
* AUTHORS:
Romanian translation
Sun Oct 28 13:56:53 2001 Petr Baudis <pasky@ji.cz>:
* AUTHORS:
Catalan translation
Sun Oct 28 13:56:18 2001 Petr Baudis <pasky@ji.cz>:
* AUTHORS:
Petr Kulhavy's HTTP referer
Sun Oct 28 13:55:30 2001 Petr Baudis <pasky@ji.cz>:
* AUTHORS:
Peter Wang's Lua
Sun Oct 28 13:50:31 2001 Petr Baudis <pasky@ji.cz>:
* config2.h, configure, configure.in:
going for elinks-0.1
Sun Oct 28 13:39:20 2001 Petr Baudis <pasky@ji.cz>:
* BUGS, config2.h, configure, configure.in:
more RR per host,
Sun Oct 28 13:37:36 2001 Petr Baudis <pasky@ji.cz>:
* SITES:
new mailing list, elinks site
Sun Oct 28 13:37:21 2001 Petr Baudis <pasky@ji.cz>:
* README:
rewritten (grammar check required ;)
Sun Oct 28 13:06:17 2001 Petr Baudis <pasky@ji.cz>:
* TODO:
sorted by importance, some additions
Sun Oct 28 13:00:59 2001 Petr Baudis <pasky@ji.cz>:
* AUTHORS:
sorted by alphabetical order, minor changes
Sun Oct 28 08:54:03 2001 Petr Baudis <pasky@ji.cz>:
* cookies.c:
Security fix in save_cookies() (cookies-secresave-0.96.patch)
Sun Oct 28 08:51:43 2001 Petr Baudis <pasky@ji.cz>:
* Unicode/entities.lnx, Unicode/index.txt, intl/gen-intl,
intl/index.txt, Unicode/8859_15.cp, Unicode/8859_16.cp,
intl/romanian.lng:
Romanian translation (romanian-0.96.patch)
Sun Oct 28 08:51:24 2001 Petr Baudis <pasky@ji.cz>:
* intl/: index.txt, catalan.lng:
Catalan translation (catalan-0.96.patch)
Sun Oct 28 08:50:19 2001 Petr Baudis <pasky@ji.cz>:
* html.c:
listing tag support (listing-0.96.patch)
Sun Oct 28 08:49:59 2001 Petr Baudis <pasky@ji.cz>:
* html.c:
img title attribute support (imgtitle-0.96.patch)
Sun Oct 28 08:47:55 2001 Petr Baudis <pasky@ji.cz>:
* html.c, view.c:
Do not strip query string from form action URLs
(noqstrip-0.96.patch)
Sun Oct 28 08:46:23 2001 Petr Baudis <pasky@ji.cz>:
* links.1:
Cookies saving/loading on request description
(cookies-resave-0.96-man.patch)
Sun Oct 28 08:46:07 2001 Petr Baudis <pasky@ji.cz>:
* links.1:
Cookies saving description (cookies-save-0.96-man.patch)
Sun Oct 28 08:45:32 2001 Petr Baudis <pasky@ji.cz>:
* cookies.c, kbdbind.c, links.h, view.c:
Cookies saving/loading on request (cookies-resave-0.96.patch)
Sun Oct 28 08:45:10 2001 Petr Baudis <pasky@ji.cz>:
* cookies.c:
Cookies saving (cookies-save-0.96.patch)
Sun Oct 28 08:44:53 2001 Petr Baudis <pasky@ji.cz>:
* cookies.c:
Cookies expiration (cookies-expire-0.96.patch)
Sun Oct 28 08:44:17 2001 Petr Baudis <pasky@ji.cz>:
* main.c:
HTTP Moved support for -dump/-source (moved-0.96.patch)
Sun Oct 28 08:43:16 2001 Petr Baudis <pasky@ji.cz>:
* links.1:
True HTTP referer support description (true-referer-0.96-man.patch)
Sun Oct 28 08:42:54 2001 Petr Baudis <pasky@ji.cz>:
* default.c, http.c, links.h, main.c, menu.c, sched.c, session.c,
view.c, intl/czech.lng, intl/english.lng:
True HTTP referer support (true-referer-0.96-lua.patch)
Sun Oct 28 08:41:28 2001 Petr Baudis <pasky@ji.cz>:
* default.c, http.c, links.h, menu.c, intl/english.lng:
Fake HTTP referer support (referer-0.96.patch)
Sun Oct 28 08:40:44 2001 Petr Baudis <pasky@ji.cz>:
* links.1:
Manual page updates (manpage-0.96.patch)
Sun Oct 28 08:32:49 2001 Petr Baudis <pasky@ji.cz>:
* http.c, kbdbind.c, language.h, language.inc, links.h, menu.c,
session.c, intl/brazilian_portuguese.lng, intl/bulgarian.lng,
intl/czech.lng, intl/english.lng, intl/estonian.lng,
intl/french.lng, intl/galician.lng, intl/german.lng,
intl/greek.lng, intl/hungarian.lng, intl/icelandic.lng,
intl/italian.lng, intl/lithuanian.lng, intl/polish.lng,
intl/russian.lng, intl/slovak.lng, intl/spanish.lng,
intl/swedish.lng, intl/turkish.lng, intl/ukrainian.lng, LUA,
LUA-WIP, lua.c:
lua p12-wip2
Sat Oct 27 21:48:39 2001 Petr Baudis <pasky@ji.cz>:
* Makefile.am, Makefile.in, acconfig.h, bfu.c, config.h.in,
configure, configure.in, kbdbind.c, language.h, language.inc,
links.h, main.c, menu.c, session.c, setup.h, url.c, view.c,
intl/brazilian_portuguese.lng, intl/bulgarian.lng, intl/czech.lng,
intl/english.lng, intl/estonian.lng, intl/french.lng,
intl/galician.lng, intl/german.lng, intl/greek.lng,
intl/hungarian.lng, intl/icelandic.lng, intl/italian.lng,
intl/lithuanian.lng, intl/polish.lng, intl/russian.lng,
intl/slovak.lng, intl/spanish.lng, intl/swedish.lng,
intl/turkish.lng, intl/ukrainian.lng:
lua-p11
Sat Oct 27 21:43:43 2001 Petr Baudis <pasky@ji.cz>:
* AUTHORS, BUGS, COPYING, INSTALL, Makefile.am, Makefile.gen,
Makefile.in, NEWS, README, SITES, TODO, acconfig.h, aclocal.m4,
af_unix.c, beos.c, bfu.c, bookmarks.c, cache.c, charsets.c,
codepage.h, codepage.inc, config.guess, config.h.in, config.sub,
config2.h, configure, configure.in, connect.c, cookies.c,
default.c, dns.c, entity.inc, error.c, file.c, finger.c, ftp.c,
html.c, html_r.c, html_tbl.c, http.c, https.c, install-sh, kbd.c,
kbdbind.c, language.c, language.h, language.inc, links.1, links.h,
mailcap.pl, mailto.c, main.c, menu.c, missing, mkinstalldirs,
os_dep.c, os_dep.h, os_depx.h, rebuild, sched.c, select.c,
session.c, setup.h, stamp-h.in, terminal.c, types.c, uni_7b.inc,
url.c, view.c, win32.c, wipe-out-ssl, wipe-out-ssl.awk,
Unicode/7bit.cp, Unicode/7bitrepl.lnx, Unicode/8859_1.cp,
Unicode/8859_13.cp, Unicode/8859_2.cp, Unicode/8859_4.cp,
Unicode/8859_5.cp, Unicode/8859_7.cp, Unicode/8859_9.cp,
Unicode/cp1125.cp, Unicode/cp1250.cp, Unicode/cp1251.cp,
Unicode/cp1257.cp, Unicode/cp437.cp, Unicode/cp737.cp,
Unicode/cp850.cp, Unicode/cp852.cp, Unicode/cp866.cp,
Unicode/entities.lnx, Unicode/gen, Unicode/gen-7b, Unicode/gen-cp,
Unicode/gen-ent, Unicode/index.txt, Unicode/kamen.cp,
Unicode/koi8_r.cp, Unicode/koi8_u.cp, Unicode/mac_lat2.cp,
Unicode/macroman.cp, Unicode/tcvn5712.cp, Unicode/tr7bit.awk,
Unicode/utf_8.cp, Unicode/viscii.cp, intl/brazilian_portuguese.lng,
intl/bulgarian.lng, intl/czech.lng, intl/english.lng,
intl/estonian.lng, intl/french.lng, intl/galician.lng,
intl/gen-intl, intl/german.lng, intl/greek.lng, intl/hungarian.lng,
intl/icelandic.lng, intl/index.txt, intl/intl.txt,
intl/italian.lng, intl/lithuanian.lng, intl/polish.lng,
intl/russian.lng, intl/slovak.lng, intl/spanish.lng,
intl/swedish.lng, intl/synclang, intl/synclang.awk,
intl/turkish.lng, intl/ukrainian.lng:
Initial revision
|