1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934
|
2011-06-01 Jer Noble <jer.noble@apple.com>
Reviewed by Eric Carlson.
Move Full Screen Controllers into WebCore.
Remove dependency on QTKit from wekitExitFullscreen()
https://bugs.webkit.org/show_bug.cgi?id=61843
WebVideoFullscreenController, WebVideoFullscreenHUDController, and WebWindowAnimation
have been moved into WebCore.
* WebKit.xcodeproj/project.pbxproj:
2011-06-30 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Simon Hausmann.
generate-webkitversion.pl should not "use Switch"
https://bugs.webkit.org/show_bug.cgi?id=63628
Switch got deprecated on recent Perl versions and the script wasn't
using the switch statement.
* scripts/generate-webkitversion.pl: Remove "use Switch;" line.
2011-04-18 Timothy Hatcher <timothy@apple.com>
Make update-webkit-localizable-strings put WebKit/win strings in WebCore
now that all localized strings in WebKit/win use WEB_UI_STRING.
https://webkit.org/b/58747
Reviewed by Dan Bernstein.
* English.lproj/Localizable.strings: Removed.
2011-04-17 Joseph Pecoraro <joepeck@webkit.org>
Reviewed by Timothy Hatcher.
Move WebNodeHighlighter into its own file
https://bugs.webkit.org/show_bug.cgi?id=58746
* WebKit.xcodeproj/project.pbxproj: Add WebNodeHighlighter.{h,mm}.
2011-04-13 Ryuan Choi <ryuan.choi@samsung.com>
Reviewed by Kenneth Rohde Christiansen.
[CMAKE] Separate DerivedSources.
https://bugs.webkit.org/show_bug.cgi?id=58427
* CMakeLists.txt: Change DERIVED_SOURCES_DIR to DERIVED_SOURCES_WEBCORE_DIR
2011-04-11 Alexis Menard <alexis.menard@openbossa.org>
Unreviewed build fix for Mac.
* WebKit.xcodeproj/project.pbxproj:
2011-04-11 Anna Cavender <annacc@chromium.org>
Reviewed by Eric Carlson.
Setup ENABLE(TRACK) feature define + initial HTMLTrackElement
https://bugs.webkit.org/show_bug.cgi?id=53556
* WebKit.xcodeproj/project.pbxproj:
2011-04-08 Geoffrey Garen <ggaren@apple.com>
Reviewed by Oliver Hunt.
A few heap-related renames and file moves.
WeakGCPtr<T> => Weak<T>
Global<T> => Strong<T>
collector/ => heap/
collector/* => heap/*
runtime/WeakGCPtr.h => heap/Weak.h
(Eventually, even more files should move into the heap directory. Like
Heap.h and Heap.cpp, for example.)
* CMakeLists.txt:
2011-04-08 Dan Bernstein <mitz@apple.com>
No need to compile .js files, that is what the JIT is for.
* WebKit.xcodeproj/project.pbxproj:
2011-04-08 Alpha Lam <hclam@chromium.org>
Unreviewed, rolling out r83335.
http://trac.webkit.org/changeset/83335
https://bugs.webkit.org/show_bug.cgi?id=53556
GTK and QT bots are broken
* WebKit.xcodeproj/project.pbxproj:
2011-04-07 Anna Cavender <annacc@chromium.org>
Reviewed by Eric Carlson.
Setup ENABLE(TRACK) feature define + initial HTMLTrackElement
https://bugs.webkit.org/show_bug.cgi?id=53556
* WebKit.xcodeproj/project.pbxproj:
2011-04-07 Andrew Scherkus <scherkus@chromium.org>
Revert ENABLE_TRACK patch due to compile failures.
* WebKit.xcodeproj/project.pbxproj:
2011-04-07 Andy Estes <aestes@apple.com>
Reviewed by Darin Adler.
REGRESSION (r64712): Microsoft Outlook 2011: original message contents
not included when replying to an email.
https://bugs.webkit.org/show_bug.cgi?id=57794
* WebKit.xcodeproj/project.pbxproj:
2011-04-05 Alexey Proskuryakov <ap@apple.com>
Reviewed by Darin Adler.
Move attributedStringFromRange down to WebCore
https://bugs.webkit.org/show_bug.cgi?id=57905
* WebKit.xcodeproj/project.pbxproj: Removed WebNSAttributedStringExtras, which is now in WebCore.
2011-03-29 Timothy Hatcher <timothy@apple.com>
Update WebKit Localizable.strings to only contain WebKit/win strings.
https://webkit.org/b/57354
Reviewed by Sam Weinig.
* English.lproj/Localizable.strings: Updated.
2011-03-23 Jia Pu <jpu@apple.com>
Reviewed by Darin Adler.
Hook up new AppKit autocorrection UI with WK2.
https://bugs.webkit.org/show_bug.cgi?id=56055
<rdar://problem/8947463>
Please see WebCore/ChangeLog for detail.
* WebKit.xcodeproj/project.pbxproj:
2011-03-17 Jeff Miller <jeffm@apple.com>
Use a consistent set of file patterns in the svn:ignore property for all .xcodeproj directories, specifically:
*.mode*
*.pbxuser
*.perspective*
project.xcworkspace
xcuserdata
* WebKit.xcodeproj: Modified property svn:ignore.
2011-03-15 Alexey Proskuryakov <ap@apple.com>
Reviewed by Darin Adler.
REGRESSION (WebKit2): keygen element doesn't work
https://bugs.webkit.org/show_bug.cgi?id=56402
<rdar://problem/9006545>
* WebKit.xcodeproj/project.pbxproj: Renamed WebKeyGenerator.m to use Objective C++.
2011-03-11 Anton D'Auria <adauria@apple.com>
Reviewed and landed by Brady Eidson.
Add WebKit1 API to view and delete local storage
https://bugs.webkit.org/show_bug.cgi?id=51878
* WebKit.xcodeproj/project.pbxproj:
2011-03-02 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
Fix remaining localization issues by piping all localized strings through WebCore's
localization bottleneck.
<rdar://problem/8728860>
* WebKit.xcodeproj/project.pbxproj:
2011-03-01 Sam Weinig <sam@webkit.org>
Reviewed by Timothy Hatcher.
WebKit2 needs to be made localizable
https://bugs.webkit.org/show_bug.cgi?id=55483
* StringsNotToBeLocalized.txt: Removed.
* WebKit.xcodeproj/project.pbxproj:
Copied Localizable.strings to WebCore, it can't be removed entirely
yet since Windows is still using it.
2011-02-24 Peter Kasting <pkasting@google.com>
Reviewed by Eric Seidel.
Drop the "U; " encryption level from the User Agent string.
https://bugs.webkit.org/show_bug.cgi?id=54566
* StringsNotToBeLocalized.txt:
2011-02-22 Laszlo Gombos <laszlo.1.gombos@nokia.com>
Reviewed by Alexey Proskuryakov.
Drop the language tag part from the User Agent string
https://bugs.webkit.org/show_bug.cgi?id=54560
* StringsNotToBeLocalized.txt: Change the User Agent string
template.
2011-02-18 Patrick Gansterer <paroga@webkit.org>
Unreviewed build fix after r78634 and r78786.
* CMakeLists.txt:
2011-02-16 Luiz Agostini <luiz.agostini@openbossa.org>
Reviewed by Adam Roben.
HTML5 <details> and <summary>: localized text
https://bugs.webkit.org/show_bug.cgi?id=54260
Default details summary text must be localizable.
* English.lproj/Localizable.strings:
2011-02-06 Patrick Gansterer <paroga@webkit.org>
Reviewed by Andreas Kling.
[CMake] Add dependencies for Visual Studio projects
https://bugs.webkit.org/show_bug.cgi?id=53773
Add a WebCore dependecy to WebKit, so CMake can
generate the correct build order for the solution.
Remove JavaScriptCore dependecy, since WebCore already depends on it.
* CMakeLists.txt:
2011-01-23 Mark Rowe <mrowe@apple.com>
Follow-up to r76477.
Fix the scripts that detect problematic code such as static initializers
and destructors, weak vtables, inappropriate files in the framework wrappers,
and public headers including private headers. These had all been broken
since the projects were moved in to the Source directory as the paths to the
scripts were not updated at that time.
* WebKit.xcodeproj/project.pbxproj:
2011-01-20 Zoltan Horvath <zoltan@webkit.org>
Reviewed by Csaba Osztrogonác.
Refactoring of the custom allocation framework
https://bugs.webkit.org/show_bug.cgi?id=49897
Inheriting from FastAllocBase can result in objects getting larger (bug #33896, #46589).
The modification replaces Noncopyable and FastAllocBase classes and these inherits with their
equivalent macro implementation at the necessary places.
2011-01-17 Dan Bernstein <mitz@apple.com>
Rubber-stamped by Mark Rowe.
Update xcodeproj svn:ignore to include xcuserdata.
* WebKit.xcodeproj: Modified property svn:ignore.
2011-01-17 Brady Eidson <beidson@apple.com>
Rubberstamped by Adam Roben.
Fix up the `make` build on Macs
* Makefile: Point to the correct Makefile.shared
2011-01-16 Adam Barth <abarth@webkit.org>
Rubber-stamped by Eric Seidel.
Move WebKit into Source
https://bugs.webkit.org/show_bug.cgi?id=52530
* Makefile:
* scripts/generate-webkitversion.pl:
2011-01-07 Enrica Casucci <enrica@apple.com>
Reviewed by Alexey Proskuryakov.
Paste and drag and drop use different code paths to interact with the pasteboard.
https://bugs.webkit.org/show_bug.cgi?id=52093
The change consists in a refactoring of the code to have only one class that
deals with the pasteboard on Mac.
* WebKit.xcodeproj/project.pbxproj: Removed WebPasteboardHelper.mm and WebPasteboardHelper.h.
2010-12-31 Adam Barth <abarth@webkit.org>
Update SVN ignore property to hide two more external dependencies.
* chromium: Modified property svn:ignore.
2010-12-22 Dan Bernstein <mitz@apple.com>
Rubber-stamped by Mark Rowe.
Changed WebKitTools to Tools in script build phases.
* WebKit.xcodeproj/project.pbxproj:
2010-12-14 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Eric Seidel.
[EFL] Add linker script to export less symbols
https://bugs.webkit.org/show_bug.cgi?id=44609
Filter the exported symbols by using a linker script. Only symbols
starting with "ewk_" are exported.
* CMakeLists.txt: Add link flags to webkit library when there's a
version script.
2010-12-07 Simon Fraser <simon.fraser@apple.com>
Update Xcode project for newer Xcode.
* WebKit.xcodeproj/project.pbxproj:
2010-11-18 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated for recent changes.
2010-11-16 Patrick Gansterer <paroga@webkit.org>
Reviewed by Andreas Kling.
[CMake] Remove platform dependent include directories
https://bugs.webkit.org/show_bug.cgi?id=49553
* CMakeLists.txt:
2010-11-12 John Knottenbelt <jknotten@chromium.org>
Reviewed by Steve Block.
Rename GeolocationControllerClient to GeolocationClient.
https://bugs.webkit.org/show_bug.cgi?id=49259
* WebKit.xcodeproj/project.pbxproj:
2010-11-08 Leandro Pereira <leandro@profusion.mobi>
[EFL] Unreviewed. Build fix after r71496.
* CMakeLists.txt: Add WebCore/loader/cache directory to WebKit's
include directories list.
2010-11-04 Mike Thole <mthole@apple.com>
Reviewed by Dan Bernstein.
Title for images should use localized numerals
https://bugs.webkit.org/show_bug.cgi?id=49017
* English.lproj/Localizable.strings: Updated.
2010-10-28 Mark Rowe <mrowe@apple.com>
Stop allowing deprecated methods to be used in NetscapePluginHostProxy.mm now
that deprecated methods are no longer used.
* WebKit.xcodeproj/project.pbxproj:
2010-10-26 Dan Bernstein <mitz@apple.com>
Build fix.
* WebKit.xcodeproj/project.pbxproj: Allow deprecated methods to be used in NetscapePluginHostProxy.mm.
2010-10-23 David Kilzer <ddkilzer@apple.com>
<http://webkit.org/b/48186> Remove unneeded WebHTMLRepresentationInternal.h header
Reviewed by Sam Weinig.
The only method defined in WebHTMLRepresentationInternal.h is
also defined in WebHTMLRepresentation.h, so use that instead.
* WebKit.xcodeproj/project.pbxproj: Removed references to
WebHTMLRepresentationInternal.h.
2010-10-21 David Kilzer <ddkilzer@apple.com>
<http://webkit.org/b/48047> Fix warnings found by check-Xcode-source-file-types
Reviewed by Adam Roben.
Fixes the following warning:
WARNING: Incorrect file type 'sourcecode.cpp.objcpp' for file 'WebStringTruncator.h'.
1 issues found for WebKit/WebKit.xcodeproj/project.pbxproj.
* WebKit.xcodeproj/project.pbxproj: Removed explicit file type
for WebStringTruncator.h to make it match other header files.
2010-10-20 Nikolas Zimmermann <nzimmermann@rim.com>
Not reviewed.
Fix efl build, add missing svg/properties include directory.
* CMakeLists.txt:
2010-10-18 Alexey Proskuryakov <ap@apple.com>
Reviewed by David Kilzer.
https://bugs.webkit.org/show_bug.cgi?id=47864
Convert WebNSUserDefaultsExtras.m to .mm
* WebKit.xcodeproj/project.pbxproj: Renamed WebNSUserDefaultsExtras.m.
2010-10-12 Eric Seidel <eric@webkit.org>
Reviewed by Darin Adler.
REGRESSION (new parser): Leopard/Tiger Mail <head>/<body> quirk is gone
https://bugs.webkit.org/show_bug.cgi?id=45693
* WebKit.xcodeproj/project.pbxproj:
- Add the MailQuirksUserScript.js to the project.
2010-10-11 Anders Carlsson <andersca@apple.com>
Reviewed by Darin Adler.
Remove WebIconFetcher from WebKit and IconFetcher from WebCore
https://bugs.webkit.org/show_bug.cgi?id=47523
Remove all traces of the WebKit WebIconFetcher class. It's SPI that nobody uses.
* WebKit.xcodeproj/project.pbxproj:
2010-10-07 Jessie Berlin <jberlin@apple.com>
Reviewed by Sam Weinig.
Add Private API for creating a WebKit1 WebSerializedJSValue from the internal
representation of a WebKit2 WebSerializedScriptValue.
https://bugs.webkit.org/show_bug.cgi?id=47390
* WebKit.xcodeproj/project.pbxproj:
Add WebSerializedJSValuePrivate.h.
2010-10-05 John Abd-El-Malek <jam@chromium.org>
Reviewed by Darin Fisher.
[chromium] Get the link from a plugin when creating a context menu
https://bugs.webkit.org/show_bug.cgi?id=47130
* chromium/public/WebPlugin.h:
(WebKit::WebPlugin::linkAtPosition):
* chromium/public/WebView.h:
* chromium/src/ChromeClientImpl.cpp:
(WebKit::ChromeClientImpl::mouseDidMoveOverElement):
* chromium/src/ContextMenuClientImpl.cpp:
(WebKit::ContextMenuClientImpl::getCustomMenuFromDefaultItems):
2010-09-22 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Unreviewed, EFL build fix.
* CMakeLists.txt:
2010-09-20 Philippe Normand <pnormand@igalia.com>
Reviewed by Eric Carlson.
[GTK] enhanced context menu for media elements
https://bugs.webkit.org/show_bug.cgi?id=45021
Updated localizable strings.
* English.lproj/Localizable.strings:
2010-09-17 David Kilzer <ddkilzer@apple.com>
<http://webkit.org/b/45989> Add WebArchiveInternal.h to Xcode project
Reviewed by Joseph Pecoraro.
* WebKit.xcodeproj/project.pbxproj: Added missing
WebArchiveInternal.h header file to the project. It has been
missing since r31281!
2010-09-16 Dan Bernstein <mitz@apple.com>
Reverted the previous change because r67628 has been reverted.
* English.lproj/Localizable.strings:
2010-09-16 Dan Bernstein <mitz@apple.com>
Updated localizable strings.
* English.lproj/Localizable.strings:
2010-09-10 Darin Adler <darin@apple.com>
Reviewed by Sam Weinig.
Move some Dashboard stuff from WebCore to WebKit along with a bit more FrameMac cleanup
https://bugs.webkit.org/show_bug.cgi?id=45582
* WebKit.xcodeproj/project.pbxproj: Added WebDashboardRegion.h/mm and
also gave the header private visibility so it will get installed in the
PrivateHeaders directory.
2010-09-02 Steve Block <steveblock@google.com>
Reviewed by Adam Barth.
Hook up LayoutTestController.setMockDeviceOrientation() on Mac.
https://bugs.webkit.org/show_bug.cgi?id=43181
* WebKit.xcodeproj/project.pbxproj:
2010-08-30 Andy Estes <aestes@apple.com>
Reviewed by Darin Adler.
Add 'application/x-snkp' to StringsNotToBeLocalized.txt.
* StringsNotToBeLocalized.txt:
2010-08-20 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Unreviewed build fix.
As opposed to WebCore, JavascriptCore and wtf, webkit is always a
shared library. After r65366, libewebkit.so was not being installed
anymore when building with SHARED_CORE=0 (which is the default). This
partially reverts that revision in order to fix this issue.
* CMakeLists.txt: always install webkit library.
2010-08-17 Jesus Sanchez-Palencia <jesus.palencia@openbossa.org>
Reviewed by Darin Adler.
Add NetworkingContext to avoid layer violations
https://bugs.webkit.org/show_bug.cgi?id=42292
Preparation: Just add the files to the build system.
* WebKit.xcodeproj/project.pbxproj: Added new files.
2010-08-17 Brady Eidson <beidson@apple.com>
Reviewed by Sam Weinig.
Remove developmentRegion from the project file as it shouldn't have been checked in.
* WebKit.xcodeproj/project.pbxproj:
2010-08-16 Leandro Pereira <leandro@profusion.mobi>
[EFL] Build fix after r65366.
* CMakeLists.txt: Use if (VAR) instead of if (${VAR}) to check if
they're empty.
2010-08-14 Joseph Pecoraro <joepeck@webkit.org>
Reviewed by Pavel Feldman.
Web Inspector: -[WebInspector attach] and detach should work
https://bugs.webkit.org/show_bug.cgi?id=43924
* WebKit.xcodeproj/project.pbxproj: Added WebInspectorFrontend.{h,mm}.
2010-08-14 Patrick Gansterer <paroga@paroga.com>
Reviewed by Kenneth Rohde Christiansen.
[CMake] Set target properties only if available
https://bugs.webkit.org/show_bug.cgi?id=43978
* CMakeLists.txt:
2010-08-13 Gavin Barraclough <barraclough@apple.com>
Rubber stamped by Sam Weinig.
Switch String::/UString::ascii() to return a CString.
* WebKit.xcodeproj/project.pbxproj:
2010-08-06 Gavin Barraclough <barraclough@apple.com>
Rubber stamped by Sam Weinig
Bug 43594 - Add string forwards to Forward.h
This allows us to remove forward declarations for these classes from
WebCore/WebKit (a step in moving these class from WebCore:: to WTF::).
* WebKit.xcodeproj/project.pbxproj:
2010-08-06 Jessie Berlin <jberlin@apple.com>
Roll out http://trac.webkit.org/changeset/64801, which broke the Safari Windows Build.
Unreviewed.
* WebKit.xcodeproj/project.pbxproj:
2010-08-03 Joseph Pecoraro <joepeck@webkit.org>
Reviewed by David Kilzer.
Limit ApplicationCache Total and Per-Origin Storage Capacity (Quotas)
https://bugs.webkit.org/show_bug.cgi?id=40627
Part 5 - Refactor Quota Management in WebSecurityOrigin into Managers
* WebKit.xcodeproj/project.pbxproj: Add new Quota Managers, remove old SecurityOrigin subclasses.
2010-07-31 David Kilzer <ddkilzer@apple.com>
<http://webkit.org/b/43307> Make sure all private headers are copied to PrivateHeaders directory
Reviewed by Dan Bernstein.
This also fixes compilation of DumpRenderTree after changes for
Bug 40627.
* WebKit.xcodeproj/project.pbxproj: Set the PRIVATE attribute on
the following headers:
- WebFormDelegatePrivate.h
- WebKitStatisticsPrivate.h
- WebSecurityOriginPrivate.h
2010-07-30 Joseph Pecoraro <joepeck@webkit.org>
Reviewed by David Kilzer.
Limit ApplicationCache Total and Per-Origin Storage Capacity (Quotas)
https://bugs.webkit.org/show_bug.cgi?id=40627
* WebKit.xcodeproj/project.pbxproj:
* efl/WebCoreSupport/ChromeClientEfl.cpp:
(WebCore::ChromeClientEfl::reachedApplicationCacheOriginQuota):
* efl/WebCoreSupport/ChromeClientEfl.h:
2010-07-30 Rafael Antognolli <antognolli@profusion.mobi>
Reviewed by Antonio Gomes.
[EFL] Add library version and soname to EFL generated libraries and binary.
https://bugs.webkit.org/show_bug.cgi?id=43212
Add version and soname to libewebkit.so.
* CMakeLists.txt:
2010-07-26 Rafael Antognolli <antognolli@profusion.mobi>
Reviewed by Antonio Gomes.
[EFL] Move CMakeListsEfl.txt to WebKit/efl/
https://bugs.webkit.org/show_bug.cgi?id=43002
This should reduce the noise in WebKit/ChangeLog that comes from EFL
port. Most of the changes on EFL port should be logged in
WebKit/efl/ChangeLog.
* CMakeLists.txt: Just change the path from where to include the file.
2010-07-23 Rafael Antognolli <antognolli@profusion.mobi>
Reviewed by Antonio Gomes.
[EFL] Cleanup glib support (make it optional)
https://bugs.webkit.org/show_bug.cgi?id=42480
Just add glib flags and directories if necessary.
* CMakeListsEfl.txt:
2010-07-23 Rafael Antognolli <antognolli@profusion.mobi>
Reviewed by Antonio Gomes.
[EFL] Add support for using libcurl network backend.
https://bugs.webkit.org/show_bug.cgi?id=42286
Just add soup/curl directories and flags for the specific
backend being used.
* CMakeLists.txt:
* CMakeListsEfl.txt:
2010-07-22 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Antonio Gomes.
[EFL] Implement input method notification
https://bugs.webkit.org/show_bug.cgi?id=42640
Notify browser when keyboard should be shown/hidden. Input method
hints are updated before sending the signal. Client should be able to
determine the input type by calling ewk_view_imh_get().
* efl/EWebLauncher/main.c:
(on_inputmethod_changed): example implementation that just prints to
stdout if keyboard should be shown or hidden and the imh flags.
(browserCreate): listen to signal about input method changing its
state.
* efl/WebCoreSupport/EditorClientEfl.cpp:
(WebCore::EditorClientEfl::setInputMethodState): call new function
responsible for implementing this notification.
* efl/ewk/ewk_private.h: ewk_view_input_method_state_set() is called
only from inside WebKit.
* efl/ewk/ewk_view.cpp: implement setters and getters
(ewk_view_imh_get):
(ewk_view_input_method_state_set):
* efl/ewk/ewk_view.h: introduce Ewk_Imh enum which contains the
possible input types.
(_Ewk_View_Smart_Class::):
2010-07-20 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Fix zoom in/out on EFL after r62666. The patch for adding viewport
missed the initialization of zoom_range.user_scalable. In case browser
doesn't care about the viewport and does not listen to the signal,
user_scalable will be always false, thus inhibiting zoom in/out.
https://bugs.webkit.org/show_bug.cgi?id=42656
* efl/EWebLauncher/main.c:
(on_viewport_changed): when listening to signal about viewport meta tag,
it's not sufficient to receive the parameters. One needs also to enforce
these parameters in WebKit.
* efl/ewk/ewk_view.cpp:
(_ewk_view_priv_new): initialize user_scalable parameter to allow
browser zooming in and out.
2010-07-16 Zhe Su <suzhe@chromium.org>
Reviewed by Darin Adler.
REGRESSION(r61484): Broke focus behaviour on Qt and probably other platforms
https://bugs.webkit.org/show_bug.cgi?id=42253
Dummy implementation of EditorClient::willSetInputMethodState.
* efl/WebCoreSupport/EditorClientEfl.cpp:
(WebCore::EditorClientEfl::willSetInputMethodState):
* efl/WebCoreSupport/EditorClientEfl.h:
2010-07-15 Mark Rowe <mrowe@apple.com>
Update the sorting in the Xcode project files.
* WebKit.xcodeproj/project.pbxproj:
2010-07-14 Sam Weinig <sam@webkit.org>
Reviewed by Darin Adler.
Patch for https://bugs.webkit.org/show_bug.cgi?id=42232
Make changing Cursors work in WebKit2.
* efl/WebCoreSupport/ChromeClientEfl.cpp:
(WebCore::ChromeClientEfl::setCursor):
* efl/WebCoreSupport/ChromeClientEfl.h:
Change prototype to match new one.
2010-07-14 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Antonio Gomes.
[EFL] Add eina_safety to popup menu deletion.
https://bugs.webkit.org/show_bug.cgi?id=41873
Since this is a public call, it's better to have an eina_safety on
public calls. It would crash if browser calls this function to select
an item of a nonexistent popup.
* efl/ewk/ewk_view.cpp: add eina_safety to return if popup menu client does
not exist.
2010-07-13 Simon Fraser <simon.fraser@apple.com>
Reviewed by Dan Bernstein.
<rdar://problem/8186963> Expose RenderLayer hierarchy via Obj-C for debugging.
Add WebRenderLayer files.
* WebKit.xcodeproj/project.pbxproj:
2010-07-13 Rafael Antognolli <antognolli@profusion.mobi>
Reviewed by Antonio Gomes.
This commit implements an API for configuring a path to the cookie
file in the Mozilla "cookies.txt" format, and functions to deal with it
in a more EFL like API.
[EFL] Add API for dealing with cookies in EFL port.
https://bugs.webkit.org/show_bug.cgi?id=41770
* CMakeListsEfl.txt:
* efl/ewk/EWebKit.h:
* efl/ewk/ewk_cookies.cpp: Added.
(ewk_cookies_file_set): Set a path to the file storing cookies.
(ewk_cookies_clear): Clear all the cookies from the current cookie jar.
(ewk_cookies_get_all): Get all the cookies from the current cookie jar.
(ewk_cookies_cookie_del): Delete a specific cookie from the cookie jar.
(ewk_cookies_cookie_free): Free memory used by a cookie.
(ewk_cookies_policy_set): Set which acceptance policy will be used.
(ewk_cookies_policy_get): Get current acceptance policy being used.
* efl/ewk/ewk_cookies.h: Added.
(_Ewk_Cookie::):
2010-07-12 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Unreviewed build fix after r60050.
* CMakeLists.txt: Add WebCore/bindings to the include path.
2010-07-11 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Adam Barth.
[EFL] Fix style errors in ewk_private.h.
https://bugs.webkit.org/show_bug.cgi?id=41742
* efl/ewk/ewk_private.h:
2010-07-09 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated for recent changes.
2010-07-08 Joone Hur <joone@kldp.org>
Reviewed by Antonio Gomes.
[EFL] fix cmake build for EWebLauncher
https://bugs.webkit.org/show_bug.cgi?id=41830
* CMakeListsEfl.txt: add ${LIBSOUP24_LDFLAGS} for link flags
2010-07-08 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Implement several notification hooks in FrameLoaderClient.
We just notify browser, making the appropriate type conversions about
the events occurring in WebCore.
https://bugs.webkit.org/show_bug.cgi?id=41005
* efl/WebCoreSupport/FrameLoaderClientEfl.cpp:
(WebCore::FrameLoaderClientEfl::dispatchWillSendRequest): alloc 2 new
wrapper structures in stack in order to give client the opportunity to
change parameters. Then, call the function it defines.
(WebCore::FrameLoaderClientEfl::assignIdentifierToInitialRequest):
(WebCore::FrameLoaderClientEfl::didPerformFirstNavigation): notify
client.
(WebCore::FrameLoaderClientEfl::saveViewStateToItem): notify client.
(WebCore::FrameLoaderClientEfl::restoreViewState): notify client.
(WebCore::FrameLoaderClientEfl::dispatchDidChangeLocationWithinPage):
notify browser that the url changed.
(WebCore::FrameLoaderClientEfl::dispatchDidReceiveIcon): notify
browser.
(WebCore::FrameLoaderClientEfl::dispatchDidStartProvisionalLoad):
notify browser.
(WebCore::FrameLoaderClientEfl::dispatchDidFinishDocumentLoad): notify
browser.
(WebCore::FrameLoaderClientEfl::dispatchDidFirstLayout): norify
browser.
(WebCore::FrameLoaderClientEfl::dispatchDidFirstVisuallyNonEmptyLayout):
notify browser.
(WebCore::FrameLoaderClientEfl::dispatchShow): notify browser.
* efl/ewk/ewk_frame.cpp:
(ewk_frame_request_will_send): emit signal notifying browser.
(ewk_frame_request_assign_identifier): emit signal notifying browser.
(ewk_frame_did_perform_first_navigation): emit signal notifying browser.
(ewk_frame_view_state_save): emit signal notifying browser.
(ewk_frame_load_provisional): emit signal notifying browser.
(ewk_frame_load_firstlayout_finished): emit signal notifying browser.
(ewk_frame_load_firstlayout_nonempty_finished): emit signal notifying browser.
(ewk_frame_load_document_finished): emit signal notifying browser.
* efl/ewk/ewk_frame.h: update documentation about signals being sent
and implement wrapper struct for ResourceRequest.
* efl/ewk/ewk_private.h: export private functions.
2010-07-08 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Flush backing store when going to new page.
Call client method to flush backing store when going to a new page. This
is the notification that data related to current page should be dropped,
since a new page is being loaded.
https://bugs.webkit.org/show_bug.cgi?id=41008
* efl/WebCoreSupport/FrameLoaderClientEfl.cpp:
(WebCore::FrameLoaderClientEfl::transitionToCommittedForNewPage):
2010-07-07 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Unreviewed build fix after r62676.
[EFL] Fix build after Page constructor has changed. By now, the
introduced BackForwardControllerClient is not used.
https://bugs.webkit.org/show_bug.cgi?id=41825
* efl/ewk/ewk_view.cpp:
(_ewk_view_priv_new): Add missing parameter to WebCore::Page
constructor.
2010-07-07 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Rename the WebBaseNetscapePluginStream.cpp and .h files to WebNetscapePluginStream.cpp and .h to match the class name.
* WebKit.xcodeproj/project.pbxproj:
2010-07-07 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Kenneth Rohde Christiansen.
[EFL] EFLWebKit doesn't support viewport meta tag.
Support viewport meta tag on EFL Port.
https://bugs.webkit.org/show_bug.cgi?id=40278
* efl/EWebLauncher/main.c: Process 'viewport,changed' signal.
(viewport_set):
(on_viewport_changed): Add a callback function for the 'viewport,changed' signal.
(browserCreate): Register the callback function for the 'viewport,changed' signal.
* efl/WebCoreSupport/ChromeClientEfl.cpp: Implement method to process viewport tag.
(WebCore::ChromeClientEfl::didReceiveViewportArguments):
* efl/WebCoreSupport/ChromeClientEfl.h: Define method to process viewport tag.
* efl/WebCoreSupport/FrameLoaderClientEfl.cpp:
(WebCore::FrameLoaderClientEfl::FrameLoaderClientEfl): Implement a function to set layout
when website doesn't contain viewport tag.
(WebCore::FrameLoaderClientEfl::dispatchDidCommitLoad):
(WebCore::FrameLoaderClientEfl::dispatchDidFirstLayout):
* efl/WebCoreSupport/FrameLoaderClientEfl.h:
(WebCore::FrameLoaderClientEfl::setInitLayoutCompleted):
(WebCore::FrameLoaderClientEfl::getInitLayoutCompleted):
* efl/ewk/ewk_private.h: Added internal APIs to process viewport tag.
* efl/ewk/ewk_view.cpp: Added APIs to process and to handle viewport tag.
(_ewk_view_priv_new):
(ewk_view_fixed_layout_size_set):
(ewk_view_zoom_set):
(ewk_view_zoom_weak_set):
(ewk_view_zoom_animated_set):
(ewk_view_viewport_set): Reports that viewport has changed.
(ewk_view_viewport_get): Reports that viewport has changed.
(ewk_view_zoom_range_set): Sets the zoom range.
(ewk_view_zoom_range_min_get): Gets minimum value of zoom range.
(ewk_view_zoom_range_max_get): Gets maximum value of zoom range.
(ewk_view_user_scalable_set): Sets if zoom is enabled.
(ewk_view_user_scalable_get): Gets if zoom is enabled.
* efl/ewk/ewk_view.h:
2010-07-07 Rafael Antognolli <antognolli@profusion.mobi>
Reviewed by Adam Barth.
[EFL] Fix cmake build and libsoup detection
Some changes should be done to cmake build system to fix the detection of libsoup and correct some link paths:
- LINK_FLAGS should be set using quotes, otherwise some wrong
substitution takes place;
- we should use LIBSOUP24_* instead of LIBSOUP_* since this is the
version we are using;
- need to set HAVE_LIBSOUP_2_29_90 if we find a version equal or newer
than that.
https://bugs.webkit.org/show_bug.cgi?id=41717
* CMakeLists.txt:
* CMakeListsEfl.txt:
2010-07-05 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Implement downloadURL in ContextMenuClientEfl
When user selects a download menu from context menu, send the download
request to application.
https://bugs.webkit.org/show_bug.cgi?id=41149
* efl/WebCoreSupport/ContextMenuClientEfl.cpp:
(WebCore::ContextMenuClientEfl::downloadURL): Get url for downloading
file and Send it to application.
* efl/WebCoreSupport/ContextMenuClientEfl.h:
2010-06-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Implement windowRect() and setWindowRect() in ChromeClientEfl.cpp
https://bugs.webkit.org/show_bug.cgi?id=40876
* efl/WebCoreSupport/ChromeClientEfl.cpp: Implements two methods
to change window size.
(WebCore::ChromeClientEfl::windowRect):
(WebCore::ChromeClientEfl::setWindowRect):
2010-06-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Unreviewed build fix.
[EFL] Build fix for latest version of Ecore library.
Ecore recently changed return type of callbacks from int to Eina_Bool.
* efl/EWebLauncher/main.c:
* efl/ewk/ewk_view.cpp:
(_ewk_view_zoom_animator_cb): Return Eina_Bool instead of int.
2010-06-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Simplify zoom setting by narrowing with WebCore API.
Instead of creating a zoom_text_only field, use the already defined enum
by WebCore.
https://bugs.webkit.org/show_bug.cgi?id=40993
* efl/ewk/ewk_frame.cpp: sd->zoom_text_only => sd->zoom_mode
(ewk_frame_zoom_set):
(ewk_frame_zoom_text_only_get):
(ewk_frame_zoom_text_only_set):
2010-06-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Implement download requests
When a download request arrives through FrameLoaderClient, forward it to
browser in order to be possible to download files.
https://bugs.webkit.org/show_bug.cgi?id=40967
* efl/WebCoreSupport/FrameLoaderClientEfl.cpp:
(WebCore::FrameLoaderClientEfl::download): get file names and
forward to ewk_view_download_request()
* efl/ewk/ewk_private.h: export private function to WebCoreSupport
2010-06-25 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Stop frame loaders when deleting view.
Frame loaders were still alive after view is deleted, causing
segmentation fault when libsoup had something to deliver yet.
https://bugs.webkit.org/show_bug.cgi?id=41007
* efl/ewk/ewk_view.cpp:
(_ewk_view_smart_del): stop loaders.
2010-06-25 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Fix warnings about printf format
When printing uint64_t the macro PRIu64 is needed in order to be
portable across 32 and 64 bits. It was previously showing warning
messages on 32-bits systems.
https://bugs.webkit.org/show_bug.cgi?id=40965
* efl/ewk/ewk_view.cpp:
(ewk_view_exceeded_database_quota):
2010-06-25 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Do not load error message for download and cancellation.
When a download is made or a request is cancelled an error page should
not be shown.
https://bugs.webkit.org/show_bug.cgi?id=40956
* efl/WebCoreSupport/FrameLoaderClientEfl.cpp:
(WebCore::FrameLoaderClientEfl::dispatchDidFailLoading): return if it
should not fallback.
(WebCore::FrameLoaderClientEfl::dispatchDidFailLoad): return if it
should not fallback.
(WebCore::FrameLoaderClientEfl::interruptForPolicyChangeError): fix
typo in related error message.
(WebCore::FrameLoaderClientEfl::shouldFallBack): if user cancelled the
request or the policy changed (for example, because the request is a
download) then it should not fallback.
2010-06-25 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Implement runOpenPanel method. The interface with browser was
already implemented. Now we are actually calling it.
https://bugs.webkit.org/show_bug.cgi?id=40923
* efl/WebCoreSupport/ChromeClientEfl.cpp:
(WebCore::ChromeClientEfl::runOpenPanel): implement method.
* efl/ewk/ewk_private.h: export to WebCoreSupport the needed method
2010-06-24 Jer Noble <jer.noble@apple.com>
Reviewed by Eric Carlson.
Full-screened content doesn't keep the display on: Safari not grabbing a power assertion?
https://bugs.webkit.org/show_bug.cgi?id=40939
rdar://problem/7996172
Add IOKit.framework to the list of linked frameworks.
* WebKit.xcodeproj/project.pbxproj:
2010-06-23 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Gustavo Noronha Silva.
[EFL] Add Libs.private to ewebkit.pc when building with SHARED_CORE.
https://bugs.webkit.org/show_bug.cgi?id=40862
* CMakeListsEfl.txt:
* efl/ewebkit.pc.in:
2010-06-23 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Gustavo Noronha Silva.
Add implementaion of new windows for EFL port. Both cases of a link
with target="_blank" and a javascript that does window.open() are
treated, delegating to browser the role of actually creating the
window (or blocking it).
https://bugs.webkit.org/show_bug.cgi?id=40930
* CMakeListsEfl.txt: add new file that wraps the WindowFeatures struct
* efl/WebCoreSupport/ChromeClientEfl.cpp:
(WebCore::ChromeClientEfl::createWindow): implement method for
creating new window by delegating to browser its creation. Browser
might decide to continue on the same window by returning the same
view object.
* efl/WebCoreSupport/FrameLoaderClientEfl.cpp:
(WebCore::FrameLoaderClientEfl::dispatchCreatePage): implement method
for creating new window when its creation is done by a javascript
script.
* efl/ewk/EWebKit.h: new header for WindowFeatures.
* efl/ewk/ewk_private.h:
* efl/ewk/ewk_view.cpp:
(ewk_view_window_create): call the method implemented by browser.
* efl/ewk/ewk_view.h:
* efl/ewk/ewk_window_features.cpp: Added.
(ewk_window_features_unref):
(ewk_window_features_ref):
(ewk_window_features_bool_property_get):
(ewk_window_features_int_property_get):
(ewk_window_features_new_from_core): create and wrapped struct
containing the core struct.
* efl/ewk/ewk_window_features.h: Added.
2010-06-18 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Rename WebPluginPackage.m to make it an Objective-C++ file.
* WebKit.xcodeproj/project.pbxproj:
2010-06-18 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Make WebCoreSystemInterface.h a C++ only header
https://bugs.webkit.org/show_bug.cgi?id=40867
* WebKit.xcodeproj/project.pbxproj:
2010-06-18 Anders Carlsson <andersca@apple.com>
Reviewed by Dan Bernstein.
Add stubbed out WebPlatformStrategies class to WebKit.
https://bugs.webkit.org/show_bug.cgi?id=40851
* WebKit.xcodeproj/project.pbxproj:
2010-06-18 Alexis Menard <alexis.menard@nokia.com>
Reviewed by Simon Hausmann.
[qt] Better check for the declarative plugin inclusion.
* WebKit.pro:
2010-06-17 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Eric Seidel.
Clean EFL header files in order to diminish the compilation time with
EFL from subversion. We remove the EFL includes from header files and use
forward declarations, including the headers in correspondent source
files when needed. This causes only the needed source files to be
recompiled in case a new version of EFL is installed instead of
triggering a recompilation of almost all WebCore/WebKit.
https://bugs.webkit.org/show_bug.cgi?id=40575
* efl/WebCoreSupport/ChromeClientEfl.cpp: include needed header.
* efl/WebCoreSupport/ChromeClientEfl.h: forward declaration.
* efl/WebCoreSupport/EditorClientEfl.h: forward declaration.
2010-06-15 Gustavo Noronha Silva <gns@gnome.org>
Unreviewed EFL build fix. Simple typo.
* efl/WebCoreSupport/InspectorClientEfl.cpp:
(WebCore::InspectorClientEfl::sendMessageToFrontend):
2010-06-14 Tony Chang <tony@chromium.org>
Reviewed by Darin Fisher.
Chromium shouldn't build inside the source directory
https://bugs.webkit.org/show_bug.cgi?id=40489
Ignore directories fetched by chromium and chromium mac output dir.
* chromium: Added property svn:ignore.
2010-06-14 Ilya Tikhonovsky <loislo@chromium.org>
Reviewed by Pavel Feldman.
WebInspector: On the way to Remote Debugging we want to transfer dom/timeline/etc
data from inspected page to WebInspector as JSON string via http. The native
serialization to JSON string is supported by InspectorValue's classes. This patch
has the implementation of sendMessageToFrontend function. WebKit version of it still
uses ScriptFunctionCall and will be switched to another transport a little bit later.
https://bugs.webkit.org/show_bug.cgi?id=40134
* efl/WebCoreSupport/InspectorClientEfl.cpp:
(WebCore::InspectorClientEfl::sendMessageToFrontend):
* efl/WebCoreSupport/InspectorClientEfl.h:
2010-06-09 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r60889.
http://trac.webkit.org/changeset/60889
https://bugs.webkit.org/show_bug.cgi?id=40365
gtk bot has some kind of memory corruption (Requested by
loislo on #webkit).
* efl/WebCoreSupport/InspectorClientEfl.cpp:
* efl/WebCoreSupport/InspectorClientEfl.h:
2010-06-07 Ilya Tikhonovsky <loislo@chromium.org>
Reviewed by Pavel Feldman.
WebInspector: On the way to Remote Debugging we want to transfer dom/timeline/etc
data from inspected page to WebInspector as JSON string via http. The native
serialization to JSON string is supported by InspectorValue's classes. This patch
has the implementation of sendMessageToFrontend function. WebKit version of it still
uses ScriptFunctionCall and will be switched to another transport a little bit later.
https://bugs.webkit.org/show_bug.cgi?id=40134
* efl/WebCoreSupport/InspectorClientEfl.cpp:
(WebCore::InspectorClientEfl::sendMessageToFrontend):
* efl/WebCoreSupport/InspectorClientEfl.h:
2010-06-01 Alexey Proskuryakov <ap@apple.com>
Reviewed by Sam Weinig.
https://bugs.webkit.org/show_bug.cgi?id=39434
REGRESSION (r59811): Geolocation callbacks cannot be created
Removing unused WebGeolocationMock.
* WebKit.xcodeproj/project.pbxproj:
2010-05-31 Lyon Chen <liachen@rim.com>
Reviewed by Kent Tamura.
Enum value FORWARD, BACKWARD, RIGHT, LEFT are causing macro conflicts.
https://bugs.webkit.org/show_bug.cgi?id=35530
Change enum EAlteration from { MOVE, EXTEND } to { AlterationMove, AlterationExtend } and enum EDirection { FORWARD, BACKWARD, RIGHT, LEFT} to { DirectionForward, DirectionBackward, DirectionRight, DirectionLeft } to avoid macro conflict, and also better coding style conformance.
* efl/WebCoreSupport/EditorClientEfl.cpp:
(WebCore::EditorClientEfl::handleEditingKeyboardEvent):
2010-05-31 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Add Context Menu implementation
https://bugs.webkit.org/show_bug.cgi?id=39821
* CMakeListsEfl.txt: add context menu files.
* efl/WebCoreSupport/ContextMenuClientEfl.cpp:
(WebCore::ContextMenuClientEfl::getCustomMenuFromDefaultItems):
(WebCore::ContextMenuClientEfl::newPlatformDescription):
(WebCore::ContextMenuClientEfl::freePlatformDescription):
(WebCore::ContextMenuClientEfl::appendItem):
(WebCore::ContextMenuClientEfl::show):
* efl/WebCoreSupport/ContextMenuClientEfl.h:
* efl/ewk/EWebKit.h:
* efl/ewk/ewk_contextmenu.cpp: Added. Implement the API used by
browser for manipulating context menus.
(ewk_context_menu_ref):
(ewk_context_menu_unref):
(ewk_context_menu_destroy):
(ewk_context_menu_item_list_get):
(ewk_context_menu_item_new):
(ewk_context_menu_item_select):
(ewk_context_menu_item_free):
(ewk_context_menu_item_type_get):
(ewk_context_menu_item_type_set):
(ewk_context_menu_item_action_get):
(ewk_context_menu_item_action_set):
(ewk_context_menu_item_title_get):
(ewk_context_menu_item_title_set):
(ewk_context_menu_item_checked_get):
(ewk_context_menu_item_checked_set):
(ewk_context_menu_item_enabled_get):
(ewk_context_menu_item_enabled_set):
(ewk_context_menu_new):
(ewk_context_menu_free):
(ewk_context_menu_item_append):
(ewk_context_menu_custom_get):
(ewk_context_menu_show):
* efl/ewk/ewk_contextmenu.h: Added.
* efl/ewk/ewk_private.h:
* efl/ewk/ewk_view.cpp:
(ewk_view_context_menu_forward_event): inform browser a new context
menu was created.
(ewk_view_exceeded_database_quota): small fix to previous
changed function.
* efl/ewk/ewk_view.h:
2010-05-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EF] Remove compiler warnings and add test for switching page
encoding.
https://bugs.webkit.org/show_bug.cgi?id=39871
* efl/EWebLauncher/main.c:
(print_history):
(on_key_down):
(main):
2010-05-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Allow client to override default database quota. We increase the
default database quota to 1MB (it was incorrectly set to 1KB, which is
too low) and add methods to allow client to iteratively database quota
when it becomes greater than the allowed value.
https://bugs.webkit.org/show_bug.cgi?id=39867
* efl/WebCoreSupport/ChromeClientEfl.cpp:
(WebCore::ChromeClientEfl::exceededDatabaseQuota): reimplement method
to allow client to increase database quota iteratively.
* efl/ewk/ewk_private.h:
* efl/ewk/ewk_settings.cpp:
* efl/ewk/ewk_view.h:
2010-05-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Add default path to web database and methods to set it.
If a default path is not set, it will default to "/", in which a
normal user usually does not have write permission.
* efl/EWebLauncher/main.c: overwrite default directory with another
one.
(main):
* efl/ewk/ewk_main.cpp:
(ewk_init): add default path
* efl/ewk/ewk_settings.cpp: add methods to set and get database path
(ewk_settings_web_database_path_set):
(ewk_settings_web_database_path_get):
* efl/ewk/ewk_settings.h:
2010-05-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Fix wrongly set clipper. Now the scrollbars from main
frame are shown even on a zoom level lower than 1.0.
* efl/ewk/ewk_view_single.c:
(_ewk_view_single_smart_add):
(_ewk_view_single_smart_backing_store_add):
(ewk_view_single_smart_set):
2010-05-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Add support for Popup menus
https://bugs.webkit.org/show_bug.cgi?id=39629
* efl/WebCoreSupport/ChromeClientEfl.cpp: implement methods to create
and destroy popup menu.
(WebCore::ChromeClientEfl::createSelectPopup): ditto.
(WebCore::ChromeClientEfl::destroySelectPopup): ditto.
* efl/WebCoreSupport/ChromeClientEfl.h: ditto.
* efl/ewk/ewk_private.h: add function to call browser when a popup is
created/deleted
2010-05-25 Joone Hur <joone.hur@samsung.com>
Reviewed by Gustavo Noronha Silva.
[EFL] Build fix.
http://webkit.org/b/39648
* efl/ewk/ewk_frame.cpp:
(ewk_frame_zoom_get): Add missed namespace
(ewk_frame_zoom_set): Ditto.
(ewk_frame_zoom_text_only_set): Ditto.
* efl/ewk/ewk_view.cpp:
(_ewk_view_priv_new): Add a null parameter when creating a Page.
2010-05-24 Darin Adler <darin@apple.com>
Reviewed by Eric Seidel.
Move view-related functions from Frame to FrameView
https://bugs.webkit.org/show_bug.cgi?id=39366
* efl/ewk/ewk_frame.cpp:
(ewk_frame_editable_set): Removed call to empty function,
removeEditingStyleFromBodyElement.
(ewk_frame_zoom_get): Call function on FrameView.
(ewk_frame_zoom_set): Ditto.
(ewk_frame_zoom_text_only_set): Ditto.
2010-05-15 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Adam Treat.
[EFL] Add build system for the EFL port.
http://webkit.org/b/37945
* CMakeLists.txt: Added.
* CMakeListsEfl.txt: Added.
2010-05-14 Lucas De Marchi <lucas.demarchi@profusion.mobi>
Reviewed by David Levin.
[EF] Include missing header.
http://webkit.org/b/38905
* efl/ewk/ewk_main.cpp: Include PageGroup.h
2010-05-08 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Laszlo Gombos.
[EFL] Only compile database stuff if ENABLE_DATABASE is set.
http://webkit.org/b/38777
* efl/WebCoreSupport/ChromeClientEfl.cpp:
2010-05-05 Dan Bernstein <mitz@apple.com>
Reviewed by Simon Fraser.
<rdar://problem/7932072> Iframes in composited layers don’t repaint correctly (affects Yahoo! Mail with Flash Player 10.1)
https://bugs.webkit.org/show_bug.cgi?id=38427
* WebKit.xcodeproj/project.pbxproj: Renamed WebClipView.m to WebClipView.mm and changed it to
Objective-C++.
2010-05-03 Darin Adler <darin@apple.com>
* English.lproj/Localizable.strings: Regenerated.
* StringsNotToBeLocalized.txt: Updated for recent changes.
2010-05-03 Jens Alfke <snej@chromium.org>
Reviewed by Darin Fisher.
[chromium] Add "willSendSubmitEvent" hook to WebFrameClient and FrameLoaderClient
https://bugs.webkit.org/show_bug.cgi?id=38397
No tests (functionality is exposed only through native WebKit API.)
* efl/WebCoreSupport/FrameLoaderClientEfl.h:
(WebCore::FrameLoaderClientEfl::dispatchWillSendSubmitEvent):
2010-04-22 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Gustavo Noronha Silva.
Implement findThemePath to locate the correct theme file instead of
relying on a hardcoded location.
http://webkit.org/b/37996
* efl/EWebLauncher/main.c:
(findThemePath): Fix to locate the correct theme files.
(main): Use findThemePath() instead of a hardcoded one.
2010-04-22 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Gustavo Noronha Silva.
Update efl/ewebkit.pc.in to match the variable substitution syntax
of CMake.
http://webkit.org/b/37999
* efl/ewebkit.pc.in: Updated.
2010-04-22 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Gustavo Noronha Silva.
Update EWebKit (EFL port) to match recent API changes.
http://webkit.org/b/37997
* efl/ewk/ewk_frame.cpp:
(ewk_frame_zoom_set): Change to use WebCore::ZoomMode.
(ewk_frame_zoom_text_only_set): Change to use WebCore::ZoomMode.
(_ewk_frame_handle_key_scrolling): s/WebCore::VK_/VK_/g
(ewk_frame_plugin_create): Disable temporarily PluginView-related
code until a proper plugin implementation is made.
* efl/ewk/ewk_view.cpp: Fix typo in _parent_sc declaration.
(ewk_view_selection_get): Fix a reference to WebCore::CString to
WTF::CString.
2010-04-22 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Gustavo Noronha Silva.
Update EFL port files to match recent API changes.
http://webkit.org/b/37876
* efl/WebCoreSupport/ChromeClientEfl.cpp:
(kit): Added.
(WebCore::ChromeClientEfl::ChromeClientEfl): Coding style fix.
(WebCore::ChromeClientEfl::runBeforeUnloadConfirmPanel): Coding
style fix.
(WebCore::ChromeClientEfl::mouseDidMoveOverElement): Coding style fix.
(WebCore::ChromeClientEfl::runOpenPanel): Implemented.
(WebCore::ChromeClientEfl::cancelGeolocationPermissionRequestForFrame): Stubbed.
(WebCore::ChromeClientEfl::cancelGeolocationPermissionForFrame): Stubbed.
(WebCore::ChromeClientEfl::invalidateContents): Stubbed.
(WebCore::ChromeClientEfl::invalidateWindow): Stubbed.
(WebCore::ChromeClientEfl::invalidateContentsAndWindow): Implemented.
(WebCore::ChromeClientEfl::invalidateContentsForSlowScroll): Implemented.
(WebCore::ChromeClientEfl::scroll): Updated.
(WebCore::ChromeClientEfl::iconForFiles): Stubbed.
(WebCore::ChromeClientEfl::chooseIconForFiles): Stubbed.
* efl/WebCoreSupport/ChromeClientEfl.h: Add new method prototypes.
* efl/WebCoreSupport/FrameLoaderClientEfl.cpp:
(WebCore::FrameLoaderClientEfl::committedLoad): Call setEncoding()
from FrameLoader::writer.
(WebCore::FrameLoaderClientEfl::finishedLoading): Ditto.
(WebCore::FrameLoaderClientEfl::dispatchDidFailLoading): Ditto.
(WebCore::FrameLoaderClientEfl::setMainDocumentError): Ditto.
2010-04-21 Gustavo Sverzut Barbieri <barbieri@profusion.mobi>
Reviewed by Nikolas Zimmermann.
Add missing EFL WebKit/efl theme files.
http://webkit.org/b/37854
* efl/DefaultTheme/default.edc: Added.
* efl/DefaultTheme/widget/button/button.edc: Added.
* efl/DefaultTheme/widget/check/check.edc: Added.
* efl/DefaultTheme/widget/combo/combo.edc: Added.
* efl/DefaultTheme/widget/entry/entry.edc: Added.
* efl/DefaultTheme/widget/file/file.edc: Added.
* efl/DefaultTheme/widget/radio/radio.edc: Added.
* efl/DefaultTheme/widget/scrollbar/scrollbar.edc: Added.
* efl/DefaultTheme/widget/search/cancel/search_cancel.edc: Added.
* efl/DefaultTheme/widget/search/decoration/search_decoration.edc: Added.
* efl/DefaultTheme/widget/search/field/search_field.edc: Added.
2010-04-21 Gustavo Sverzut Barbieri <barbieri@profusion.mobi>
Reviewed by Adam Roben.
Update EFL port to match recent API changes.
http://webkit.org/b/37853
* efl/WebCoreSupport/EditorClientEfl.cpp:
* efl/WebCoreSupport/FrameLoaderClientEfl.cpp:
(WebCore::FrameLoaderClientEfl::didTransferChildFrameToNewDocument):
(WebCore::FrameLoaderClientEfl::objectContentType):
(WebCore::FrameLoaderClientEfl::dispatchDidChangeIcons):
(WebCore::FrameLoaderClientEfl::canShowMIMEType):
* efl/WebCoreSupport/FrameLoaderClientEfl.h:
2010-04-15 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Add EFL port files to efl/WebCoreSupport.
http://webkit.org/b/35915
* efl/WebCoreSupport/FrameLoaderClientEfl.cpp: Added.
* efl/WebCoreSupport/FrameLoaderClientEfl.h: Added.
2010-04-15 Adam Roben <aroben@apple.com>
Expose UserContentURLPattern as WebKit SPI
Fixes <http://webkit.org/b/37354>.
Reviewed by Tim Hatcher.
* WebKit.xcodeproj/project.pbxproj: Add WebUserContentURLPattern.
2010-04-15 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Add EFL port files to efl/WebCoreSupport.
http://webkit.org/b/35918
* efl/WebCoreSupport/EditorClientEfl.cpp: Added.
* efl/WebCoreSupport/EditorClientEfl.h: Added.
2010-04-10 Mark Rowe <mrowe@apple.com>
Reviewed by Dan Bernstein.
<rdar://problem/7845305> Further adoption of formal protocols for delegates.
Move EmptyProtocolDefinitions.h down in to WebCore, and add the new protocols. Adopt the protocols in the appropriate places.
* WebKit.xcodeproj/project.pbxproj:
2010-04-07 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Add ewk_view (the high level object to acces the WebKit-EFL browser
component) to efl/ewk.
http://webkit.org/b/35932
* efl/ewk/ewk_view.cpp: Added.
* efl/ewk/ewk_view.h: Added.
2010-04-05 Alexey Proskuryakov <ap@apple.com>
Reviewed by Darin Adler.
https://bugs.webkit.org/show_bug.cgi?id=37111
<rdar://problem/7790327> Draw replacement text when plug-in host crashes
https://bugs.webkit.org/show_bug.cgi?id=37111
<rdar://problem/7790327> Draw replacement text when plug-in host crashes
* English.lproj/Localizable.strings: Added a string for plug-in failure.
2010-04-01 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Gustavo Noronha Silva.
Add EFL's pkg-config metadata file file to efl/.
http://webkit.org/b/36766
* efl/ewebkit.pc.in: Added.
2010-03-30 Gavin Barraclough <barraclough@apple.com>
Rubber stamped by Sam Weinig.
https://bugs.webkit.org/show_bug.cgi?id=36866
Move CString to WTF
* efl/WebCoreSupport/ChromeClientEfl.cpp:
* efl/ewk/ewk_frame.cpp:
(ewk_frame_name_get):
(ewk_frame_selection_get):
(ewk_frame_uri_changed):
* efl/ewk/ewk_history.cpp:
* efl/ewk/ewk_settings.cpp:
2010-03-28 Alexey Proskuryakov <ap@apple.com>
Build fix. Include WindowsKeyboardCodes.h instead of KeyboardCodes.h.
* efl/ewk/ewk_frame.cpp:
2010-03-22 Kevin Decker <kdecker@apple.com>
Reviewed by Simon Fraser.
https://bugs.webkit.org/show_bug.cgi?id=36328
* WebKit.xcodeproj/project.pbxproj: Remove WebNullPluginView and nullplugin.tiff from the project.
2010-03-22 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated for recent changes.
2010-03-22 Kevin Decker <kdecker@apple.com>
Reviewed by John Sullivan.
https://bugs.webkit.org/show_bug.cgi?id=36328
* English.lproj/Localizable.strings: Added "Missing Plug-in" string.
2010-03-18 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Add EFL port files to efl/ewk.
http://webkit.org/b/35931
* efl/ewk/ewk_settings.cpp: Added.
* efl/ewk/ewk_settings.h: Added.
2010-03-17 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Add default theme files to efl/DefaultTheme.
http://webkit.org/b/36240
* efl/DefaultTheme/widget/radio/img_radio_on.png: Added.
* efl/DefaultTheme/radio/img_radio_off_hover.png: Added.
* efl/DefaultTheme/radio/img_radio_on_hover.png: Added.
* efl/DefaultTheme/radio/img_radio_off.png: Added.
* efl/DefaultTheme/radio/img_radio_off_focus.png: Added.
* efl/DefaultTheme/radio/img_radio_on_focus.png: Added.
* efl/DefaultTheme/combo/combo_normal.png: Added.
* efl/DefaultTheme/combo/combo_focus_button.png: Added.
* efl/DefaultTheme/combo/combo_hover_button.png: Added.
* efl/DefaultTheme/combo/combo_hover.png: Added.
* efl/DefaultTheme/combo/combo_focus.png: Added.
* efl/DefaultTheme/combo/combo_press_button.png: Added.
* efl/DefaultTheme/combo/combo_normal_button.png: Added.
* efl/DefaultTheme/combo/combo_press.png: Added.
* efl/DefaultTheme/combo/icon.png: Added.
* efl/DefaultTheme/file/file_normal.png: Added.
* efl/DefaultTheme/file/file_press.png: Added.
* efl/DefaultTheme/file/file_hover.png: Added.
* efl/DefaultTheme/file/file_focus.png: Added.
* efl/DefaultTheme/search/cancel/cancel_normal_button.png: Added.
* efl/DefaultTheme/search/cancel/cancel_normal_button2.png: Added.
* efl/DefaultTheme/search/decoration/decoration_normal_button.png: Added.
* efl/DefaultTheme/search/field/field_focused.png: Added.
* efl/DefaultTheme/search/field/field_normal.png: Added.
* efl/DefaultTheme/search/field/field_hovered.png: Added.
* efl/DefaultTheme/entry/img_normal.png: Added.
* efl/DefaultTheme/entry/img_hovered.png: Added.
* efl/DefaultTheme/entry/img_focused.png: Added.
* efl/DefaultTheme/check/img_check_off_hover.png: Added.
* efl/DefaultTheme/check/img_check_on.png: Added.
* efl/DefaultTheme/check/img_check_off_focus.png: Added.
* efl/DefaultTheme/check/img_check_on_focus.png: Added.
* efl/DefaultTheme/check/img_check_off.png: Added.
* efl/DefaultTheme/check/img_check_on_hover.png: Added.
* efl/DefaultTheme/scrollbar/scrollbar_knob_h.png: Added.
* efl/DefaultTheme/scrollbar/scrollbar_knob_v.png: Added.
* efl/DefaultTheme/scrollbar/scrollbar_hilight.png: Added.
* efl/DefaultTheme/scrollbar/scrollbar_v.png: Added.
* efl/DefaultTheme/scrollbar/scrollbar_h.png: Added.
* efl/DefaultTheme/button/img_button_normal.png: Added.
* efl/DefaultTheme/button/img_button_focus.png: Added.
* efl/DefaultTheme/button/img_button_hover.png: Added.
* efl/DefaultTheme/button/img_button_press.png: Added.
2010-03-17 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Add EFL example browser to efl/EWebLauncher.
http://webkit.org/b/36176
* efl/EWebLauncher/main.c: Added.
2010-03-16 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Add EFL port files to efl/WebCoreSupport.
http://webkit.org/b/35916
* efl/WebCoreSupport/ContextMenuClientEfl.cpp: Added.
* efl/WebCoreSupport/ContextMenuClientEfl.h: Added.
2010-03-16 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Introduce InspectorFrontendClient that provides InspectorFrontend with an interface to the embedder. InspectorClient now serves as a delegate for InspectorController and does not contain methods for managing inspector frontend window. That allows to create remote InspectorFrontendHost.
Introduce InspectorFrontendClient that would provide InspectorFrontend with an interface to the embedder
https://bugs.webkit.org/show_bug.cgi?id=35036
* efl/WebCoreSupport/InspectorClientEfl.cpp:
(WebCore::InspectorClientEfl::openInspectorFrontend):
* efl/WebCoreSupport/InspectorClientEfl.h:
2010-03-13 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Add EFL port files to efl/ewk.
http://webkit.org/b/35925
* efl/ewk/ewk_history.cpp: Added.
* efl/ewk/ewk_history.h: Added.
2010-03-13 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Add EFL port files to efl/ewk.
http://webkit.org/b/35928
* efl/ewk/ewk_main.cpp: Added.
* efl/ewk/ewk_main.h: Added.
2010-03-13 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Add EFL port files to efl/ewk.
http://webkit.org/b/35924
* efl/ewk/ewk_frame.cpp: Added.
* efl/ewk/ewk_frame.h: Added.
2010-03-13 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Add EFL port files to efl/ewk.
http://webkit.org/b/35936
* efl/ewk/ewk_view_single.c: Added.
2010-03-13 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Add EFL port files to efl/ewk.
http://webkit.org/b/35929
* efl/ewk/ewk_util.cpp: Added.
* efl/ewk/ewk_util.h: Added.
2010-03-13 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
Add EFL port files to efl/ewk.
http://webkit.org/b/35934
* efl/ewk/EWebKit.h: Added.
* efl/ewk/ewk_eapi.h: Added.
* efl/ewk/ewk_logging.h: Added.
* efl/ewk/ewk_private.h: Added.
2010-03-11 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Gustavo Noronha Silva.
Add EFL port files to efl/WebCoreSupport.
http://webkit.org/b/35917
* efl/WebCoreSupport/InspectorClientEfl.h: Added.
* efl/WebCoreSupport/InspectorClientEfl.cpp: Added.
2010-03-11 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Gustavo Noronha Silva.
Add EFL port files to efl/WebCoreSupport.
http://webkit.org/b/35914
* efl/WebCoreSupport/DragClientEfl.h: Added.
* efl/WebCoreSupport/DragClientEfl.cpp: Added.
2010-03-11 Simon Fraser <simon.fraser@apple.com>
Reviewed by Mark Rowe.
Sort the project file.
* WebKit.xcodeproj/project.pbxproj:
2010-03-10 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Holger Freyther.
Add EFL port files to efl/WebCoreSupport.
http://webkit.org/b/35913
* efl/WebCoreSupport/ChromeClientEfl.cpp: Added.
* efl/WebCoreSupport/ChromeClientEfl.h: Added.
2010-03-09 John Sullivan <sullivan@apple.com>
Fixed localized string key collision. update-webkit-localized-strings now
runs without errors.
Reviewed by Adam Roben.
* English.lproj/Localizable.strings:
Regenerated.
2010-03-09 John Sullivan <sullivan@apple.com>
* StringsNotToBeLocalized.txt:
Brought this file up to date. update-webkit-localizable-strings still lists
one key collision, but that's a separate issue.
2010-03-04 Mark Rowe <mrowe@apple.com>
Reviewed by Sam Weinig.
Add a script to verify that WebKit framework headers are internally consistent.
* WebKit.xcodeproj/project.pbxproj: Run the script during the build and fail with
an error should the consistency check fail.
2010-02-25 Alexey Proskuryakov <ap@apple.com>
Reviewed by Geoffrey Garen.
https://bugs.webkit.org/show_bug.cgi?id=35394
<rdar://problem/7685262> Make passing objects between Java and plug-ins work
* WebKit.xcodeproj/project.pbxproj: Added new files.
2010-02-04 Mark Rowe <mrowe@apple.com>
Reviewed by Timothy Hatcher.
Build fix. Remove a symbol corresponding to an inline function from the linker export
file to prevent a weak external failure.
* WebKit.xcodeproj/project.pbxproj: Accommodate rename of script.
2010-02-04 John Sullivan <sullivan@apple.com>
https://bugs.webkit.org/show_bug.cgi?id=34611
WebLocalizedString() could use an assertion that it is being called on the main thread
Reviewed by Tim Hatcher.
* WebKit.xcodeproj/project.pbxproj:
Updated for renamed file (WebLocalizableStrings.m -> WebLocalizableStrings.mm)
2010-01-29 Mark Rowe <mrowe@apple.com>
Sort Xcode projects.
* WebKit.xcodeproj/project.pbxproj:
2010-01-19 Dan Bernstein <mitz@apple.com>
Redo DumpRenderTree build fix without making WebTypesInternal.h a private header
* WebKit.xcodeproj/project.pbxproj:
2010-01-19 Simon Fraser <simon.fraser@apple.com>
Build fix, no review.
Fix build of DumpRenderTree by making the header WebTypesInternal.h Private
in WebKit.
* WebKit.xcodeproj/project.pbxproj:
2010-01-19 Jon Honeycutt <jhoneycutt@apple.com>
MSAA: The child <option> elements of a non-multiple <select> are not
exposed
https://bugs.webkit.org/show_bug.cgi?id=33773
<rdar://problem/7550556>
Reviewed by Alice Liu.
* English.lproj/Localizable.strings:
Add new localized strings.
2010-01-13 Kevin Decker <kdecker@apple.com>
Reviewed by Mark Rowe.
https://bugs.webkit.org/show_bug.cgi?id=33610
<rdar://problem/7288546> Silverlight full screen performance problem seen on Snow Leopard.
* WebKit.xcodeproj/project.pbxproj: Link the project against OpenGL.
2009-12-25 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated for recent changes.
2009-12-18 Dan Bernstein <mitz@apple.com>
Updated localizable strings after r52368
* English.lproj/Localizable.strings:
2009-12-18 Sam Weinig <sam@webkit.org>
Reviewed by Dan Bernstein.
Add Mac WebKit side of the client based geolocation provider.
* WebKit.xcodeproj/project.pbxproj:
2009-12-16 Mark Rowe <mrowe@apple.com>
Build fix. Disable debug variants of WebKit frameworks.
* WebKit.xcodeproj/project.pbxproj:
2009-12-16 John Sullivan <sullivan@apple.com>
Brought this file up to date, sans review.
* StringsNotToBeLocalized.txt:
2009-11-30 Mark Rowe <mrowe@apple.com>
Use the correct path to Info.plist to avoid creating an empty file at the top of the WebKit directory.
* WebKit.xcodeproj/project.pbxproj:
2009-11-24 Dmitry Titov <dimich@chromium.org>
Reviewed by Eric Seidel.
Add ENABLE_SHARED_SCRIPT feature define and flag for build-webkit
https://bugs.webkit.org/show_bug.cgi?id=31444
* chromium/features.gypi:
2009-11-24 Mark Rowe <mrowe@apple.com>
Fix production builds where the source tree may be read-only.
* WebKit.xcodeproj/project.pbxproj:
2009-11-20 Dave Hyatt <hyatt@apple.com>
Reviewed by Oliver Hunt and Jon Honeycutt.
Add support for WebSerializedJSValue to WebKit. This object wraps the SerializedScriptValue functionality in WebCore
and exposes the ability to do JS value serialization/deserialization to WebKit clients.
* WebKit.xcodeproj/project.pbxproj:
2009-11-20 Chris Fleizach <cfleizach@apple.com>
Reviewed by Beth Dakin.
WAI-ARIA: add support for 'math' role
https://bugs.webkit.org/show_bug.cgi?id=31706
* English.lproj/Localizable.strings:
* StringsNotToBeLocalized.txt:
2009-11-19 Eric Carlson <eric.carlson@apple.com>
Reviewed by Dan Bernstein.
<rdar://problem/7035231>
Support closed caption in <video> element
* English.lproj/Localizable.strings:
Add strings for toggle captions button.
2009-11-18 Michelangelo De Simone <micdesim@gmail.com>
Reviewed by Darin Adler.
Fix for <https://bugs.webkit.org/show_bug.cgi?id=27959>.
Support for validationMessage attribute, as per HTML5 specs.
* English.lproj/Localizable.strings: new localizable strings
2009-11-18 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
Make the Mac Geolocation API async.
* WebKit.xcodeproj/project.pbxproj: Remove WebGeolocation.
2009-11-13 Adam Roben <aroben@apple.com>
Add WebFrameLoadDelegatePrivat.h to WebKit.xcodeproj
Fixes <http://webkit.org/b/31124> Tell the WebFrameLoadDelegate when
window objects in isolated worlds are cleared
Reviewed by Dave Hyatt.
* WebKit.xcodeproj/project.pbxproj: Added
WebFrameLoadDelegatePrivate.h, which already existed.
2009-11-12 Adam Roben <aroben@apple.com>
Replace worldIDs with world objects
Part of <http://webkit.org/b/31414> Implement new SPI for dealing with
user scripts/stylesheets and isolated worlds
Reviewed by Sam Weinig.
* WebKit.xcodeproj/project.pbxproj: Added WebScriptWorld to the project.
2009-11-12 Chris Fleizach <cfleizach@apple.com>
Reviewed by Darin Adler.
ARIA: add alert type roles
https://bugs.webkit.org/show_bug.cgi?id=31392
* English.lproj/Localizable.strings:
* StringsNotToBeLocalized.txt:
2009-11-02 Eric Carlson <eric.carlson@apple.com>
Reviewed by John Sullivan and Mark Rowe.
<rdar://problem/7356733> Voiceover does not read correct media controller time values
Fix localized strings for media controller time values.
* English.lproj/Localizable.strings:
2009-11-02 Chris Fleizach <cfleizach@apple.com>
Reviewed by Beth Dakin.
Support ARIA "tab" roles
https://bugs.webkit.org/show_bug.cgi?id=30842
Add a localizable string for tab panel.
* English.lproj/Localizable.strings:
* StringsNotToBeLocalized.txt:
2009-10-27 Dan Bernstein <mitz@apple.com>
Reviewed by Darin Adler.
Updated license
* LICENSE:
2009-10-26 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
Move some WebView event handling code into its own file, WebViewEventHandling.mm
* WebKit.xcodeproj/project.pbxproj:
2009-10-19 John Gregg <johnnyg@google.com>
Reviewed by Dimitri Glazkov.
set ENABLE_NOTIFICATIONS=1 for Chromium
https://bugs.webkit.org/show_bug.cgi?id=29949
* chromium/features.gypi:
2009-10-13 Drew Wilson <atwilson@atwilson-macpro.local>
Reviewed by David Levin.
Enable SHARED_WORKERS for Chromium
https://bugs.webkit.org/show_bug.cgi?id=30289
* chromium/features.gypi:
Turned on ENABLE_SHARED_WORKERS by default. This doesn't actually turn on
SharedWorkers yet, as Chromium overrides this flag in its feature_overrides.gypi.
2009-10-12 Yaar Schnitman <yaar@chromium.org>
Reviewed by Dimitri Glazkov.
Chromium Port - Windows
https://bugs.webkit.org/show_bug.cgi?id=29969
* chromium/DEPS: Added gtest dep required by windows and incremented some of the deps revisions.
2009-10-06 Simon Fraser <simon.fraser@apple.com>
Reviewed by Mark Rowe.
accessibility/media-element.html crashes (and has incorrect result)
https://bugs.webkit.org/show_bug.cgi?id=30108
Fix up the accessibilty label for the newly added fullscreen button,
and update the test result accordingly.
* English.lproj/Localizable.strings:
2009-10-05 Kevin Decker <kdecker@apple.com>
Reviewed by Dan Bernstein.
* WebKit.xcodeproj/project.pbxproj: Add WebPluginHalterClient to the project.
2009-10-05 Yaar Schnitman <yaar@chromium.org>
Reviewed by Dimitri Glazkov.
One of the dependencies' SVN url was missing a @ before the revision number.
https://bugs.webkit.org/show_bug.cgi?id=30101
* chromium/DEPS:
2009-10-05 Pierre d'Herbemont <pdherbemont@webkit.org>
Reviewed by Simon Fraser
Support fullscreen in MediaPlayer (Mac)
https://bugs.webkit.org/show_bug.cgi?id=26742
Add new files for video fullscreen.
* WebKit.xcodeproj/project.pbxproj:
2009-10-05 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Timothy Hatcher.
Web Inspector: add testing harness for Web Inspector.
https://bugs.webkit.org/show_bug.cgi?id=30010
* WebKit.xcodeproj/project.pbxproj:
2009-10-04 Fumitoshi Ukai <ukai@chromium.org>
Reviewed by Eric Seidel
Enable Web Sockets in chromium build.
https://bugs.webkit.org/show_bug.cgi?id=29917
* chromium/features.gypi:
2009-10-02 Yaar Schnitman <yaar@chromium.org>
Reviewed by Dimitri Glazkov.
Added gyp_webkit that does a subset of the things gyp_chromium does
plus some specialization for an upstream chromium build.
https://bugs.webkit.org/show_bug.cgi?id=29986
* chromium/DEPS: Points to gyp_webkit instead of gyp_chromium.
* chromium/gyp_webkit: A new python file.
2009-10-01 Yaar Schnitman <yaar@chromium.org>
Reviewed by Dimitri Glazkov.
Make it possible to override the list of feature defines when building
downstream.
https://bugs.webkit.org/show_bug.cgi?id=29979
* chromium/features.gypi:
2009-10-01 Yaar Schnitman <yaar@chromium.org>
Reviewed by Dimitri Glazkov.
Added windows-specific dependencies, updated some revisions and
re-organized file to make revision tracking easier. Also removed
extensions/v8 dependency that is no longer needed upstream.
https://bugs.webkit.org/show_bug.cgi?id=29973
* chromium/DEPS:
2009-09-30 Yaar Schnitman <yaar@chromium.org>
Reviewed by Dimitri Glazkov.
1. Keeping up with downstream revisions.
2. Turning off v8 snapshot build step.
https://bugs.webkit.org/show_bug.cgi?id=29928
* chromium/DEPS
2009-09-29 Brady Eidson <beidson@apple.com>
Reviewed by John Sullivan.
WebKit Mac API should provide a delegate interface for global history.
<rdar://problem/7042773> and https://webkit.org/b/29904
* WebKit.xcodeproj/project.pbxproj:
2009-09-28 Yaar Schnitman <yaar@chromium.org>
Reviewed by Dimitri Glazkov.
https://bugs.webkit.org/show_bug.cgi?id=29722
* chromium/DEPS: Describes the chromium port's dependencies and
is used by gclient to fetch them.
* chromium/webkit.gyp: Currently only builds webcore but in
the future will also build the webkit api.
2009-09-26 David Kilzer <ddkilzer@apple.com>
Part 2 of 2: <http://webkit.org/b/29753> DerivedSources.make broken for non-Mac targets
Reviewed by Darin Adler.
Fix ENABLE_ORIENTATION_EVENTS for non-Mac platforms.
* chromium/features.gypi: Added 'ENABLE_ORIENTATION_EVENTS=0' to
disable this feature by default.
2009-09-22 Yaar Schnitman <yaar@chromium.org>
Reviewed by David Levin.
Create chromium directory and ported chromium.org's features.gypi for
the webkit chromium port.
https://bugs.webkit.org/show_bug.cgi?id=29617
* chromium/features.gypi: Added.
2009-09-21 Dan Bernstein <mitz@apple.com>
Reviewed by Anders Carlsson.
<rdar://problem/4137135> iFrame with PDF not being handled correctly on
usps.com
https://bugs.webkit.org/show_bug.cgi?id=4151
* WebKit.xcodeproj/project.pbxproj: Added WebPDFDocumentExtras.{h,mm}
and WebJSPDFDoc.{h,mm} and changed WebPDFRepresentation to
Objective-C++.
2009-09-07 Steve Block <steveblock@google.com>
Reviewed by Adam Barth.
Adds a mock Geolocation service. This will be used to provide predictable behavior of the
Geolocation API for use in LayoutTests. Later changes will integrate the the mock
Geolocation service with DumpRenderTree.
https://bugs.webkit.org/show_bug.cgi?id=28264
* WebKit.xcodeproj/project.pbxproj: Modified. Adds WebGeolocationMock.
2009-09-03 John Sullivan <sullivan@apple.com>
Reviewed by Adam Roben
* StringsNotToBeLocalized.txt:
Brought this file up to date.
2009-08-31 Mark Rowe <mrowe@apple.com>
Rubber-stamped by Beth Dakin.
Remove WebViewEditingContextMenu.nib and WebViewEditingContextMenuOld.nib.
We stopped using these back in r18592 when we switched over to context menus
driven by WebCore.
* English.lproj/WebViewEditingContextMenu.nib/classes.nib: Removed.
* English.lproj/WebViewEditingContextMenu.nib/info.nib: Removed.
* English.lproj/WebViewEditingContextMenu.nib/objects.nib: Removed.
* English.lproj/WebViewEditingContextMenuOld.nib/classes.nib: Removed.
* English.lproj/WebViewEditingContextMenuOld.nib/info.nib: Removed.
* English.lproj/WebViewEditingContextMenuOld.nib/objects.nib: Removed.
* WebKit.xcodeproj/project.pbxproj:
2009-08-28 Chris Fleizach <cfleizach@apple.com>
Reviewed by John Sullivan.
update-webkit-localizable-strings script can no longer complete
https://bugs.webkit.org/show_bug.cgi?id=28792
* English.lproj/Localizable.strings:
2009-08-27 John Sullivan <sullivan@apple.com>
* StringsNotToBeLocalized.txt:
Brought up to date, other than the problem mentioned in https://bugs.webkit.org/show_bug.cgi?id=28792
2009-08-25 Eric Carlson <eric.carlson@apple.com>
Reviewed by Oliver Hunt.
<video> and <audio> controller should be accessible
https://bugs.webkit.org/show_bug.cgi?id=28081
Add localized strings for media controller accessiblility.
* English.lproj/Localizable.strings:
2009-08-20 Chris Fleizach <cfleizach@apple.com>
Reviewed by Darin Adler.
Enable various "grouping" ARIA roles
https://bugs.webkit.org/show_bug.cgi?id=28486
* English.lproj/Localizable.strings:
2009-08-18 Drew Wilson <atwilson@google.com>
Reviewed by Eric Seidel.
Need to extend DumpRenderTree to expose number of worker threads.
https://bugs.webkit.org/show_bug.cgi?id=28292
* WebKit.xcodeproj/project.pbxproj:
Added WebWorkersPrivate APIs to mac WebKit to expose workerThreadCount() for DumpRenderTree.
2009-08-06 Mark Rowe <mrowe@apple.com>
Rubber-stamped by Sam Weinig.
Add explicit dependencies for our build verification scripts to ensure that they always run after linking has completed.
* WebKit.xcodeproj/project.pbxproj:
2009-08-06 Mark Rowe <mrowe@apple.com>
Bring a little order to our otherwise out of control lives.
* WebKit.xcodeproj/project.pbxproj:
2009-08-06 Mark Rowe <mrowe@apple.com>
Build fix.
Don't attempt to build a file that Anders just deleted.
* WebKit.xcodeproj/project.pbxproj:
2009-07-29 David Kilzer <ddkilzer@apple.com>
<http://webkit.org/b/27788> Don't export WebPluginController.h as a private header
Reviewed by Mark Rowe.
WebPluginController.h includes WebPluginContainerCheck.h, which
is not a private header. Since WebPluginController.h doesn't
appear to be used anywhere, remove its private header status.
* WebKit.xcodeproj/project.pbxproj: Remove private header
attribute from WebPluginController.h.
2009-07-28 Maxime Simon <simon.maxime@gmail.com>
Reviewed by David Levin.
Added FrameLoaderClient for Haiku WebCore support.
https://bugs.webkit.org/show_bug.cgi?id=26952
* haiku/WebCoreSupport/FrameLoaderClientHaiku.cpp: Added.
(WebCore::FrameLoaderClientHaiku::FrameLoaderClientHaiku):
(WebCore::FrameLoaderClientHaiku::setFrame):
(WebCore::FrameLoaderClientHaiku::setWebView):
(WebCore::FrameLoaderClientHaiku::detachFrameLoader):
(WebCore::FrameLoaderClientHaiku::hasWebView):
(WebCore::FrameLoaderClientHaiku::hasBackForwardList):
(WebCore::FrameLoaderClientHaiku::resetBackForwardList):
(WebCore::FrameLoaderClientHaiku::provisionalItemIsTarget):
(WebCore::FrameLoaderClientHaiku::makeRepresentation):
(WebCore::FrameLoaderClientHaiku::forceLayout):
(WebCore::FrameLoaderClientHaiku::forceLayoutForNonHTML):
(WebCore::FrameLoaderClientHaiku::updateHistoryForCommit):
(WebCore::FrameLoaderClientHaiku::updateHistoryForBackForwardNavigation):
(WebCore::FrameLoaderClientHaiku::updateHistoryForReload):
(WebCore::FrameLoaderClientHaiku::updateHistoryForStandardLoad):
(WebCore::FrameLoaderClientHaiku::updateHistoryForInternalLoad):
(WebCore::FrameLoaderClientHaiku::updateHistoryAfterClientRedirect):
(WebCore::FrameLoaderClientHaiku::setCopiesOnScroll):
(WebCore::FrameLoaderClientHaiku::tokenForLoadErrorReset):
(WebCore::FrameLoaderClientHaiku::resetAfterLoadError):
(WebCore::FrameLoaderClientHaiku::doNotResetAfterLoadError):
(WebCore::FrameLoaderClientHaiku::willCloseDocument):
(WebCore::FrameLoaderClientHaiku::detachedFromParent2):
(WebCore::FrameLoaderClientHaiku::detachedFromParent3):
(WebCore::FrameLoaderClientHaiku::dispatchDidHandleOnloadEvents):
(WebCore::FrameLoaderClientHaiku::dispatchDidReceiveServerRedirectForProvisionalLoad):
(WebCore::FrameLoaderClientHaiku::dispatchDidCancelClientRedirect):
(WebCore::FrameLoaderClientHaiku::dispatchWillPerformClientRedirect):
(WebCore::FrameLoaderClientHaiku::dispatchDidChangeLocationWithinPage):
(WebCore::FrameLoaderClientHaiku::dispatchWillClose):
(WebCore::FrameLoaderClientHaiku::dispatchDidStartProvisionalLoad):
(WebCore::FrameLoaderClientHaiku::dispatchDidReceiveTitle):
(WebCore::FrameLoaderClientHaiku::dispatchDidCommitLoad):
(WebCore::FrameLoaderClientHaiku::dispatchDidFinishDocumentLoad):
(WebCore::FrameLoaderClientHaiku::dispatchDidFinishLoad):
(WebCore::FrameLoaderClientHaiku::dispatchDidFirstLayout):
(WebCore::FrameLoaderClientHaiku::dispatchDidFirstVisuallyNonEmptyLayout):
(WebCore::FrameLoaderClientHaiku::dispatchShow):
(WebCore::FrameLoaderClientHaiku::cancelPolicyCheck):
(WebCore::FrameLoaderClientHaiku::dispatchWillSubmitForm):
(WebCore::FrameLoaderClientHaiku::dispatchDidLoadMainResource):
(WebCore::FrameLoaderClientHaiku::revertToProvisionalState):
(WebCore::FrameLoaderClientHaiku::postProgressStartedNotification):
(WebCore::FrameLoaderClientHaiku::postProgressEstimateChangedNotification):
(WebCore::FrameLoaderClientHaiku::postProgressFinishedNotification):
(WebCore::FrameLoaderClientHaiku::progressStarted):
(WebCore::FrameLoaderClientHaiku::progressCompleted):
(WebCore::FrameLoaderClientHaiku::setMainFrameDocumentReady):
(WebCore::FrameLoaderClientHaiku::willChangeTitle):
(WebCore::FrameLoaderClientHaiku::didChangeTitle):
(WebCore::FrameLoaderClientHaiku::finishedLoading):
(WebCore::FrameLoaderClientHaiku::canShowMIMEType):
(WebCore::FrameLoaderClientHaiku::representationExistsForURLScheme):
(WebCore::FrameLoaderClientHaiku::generatedMIMETypeForURLScheme):
(WebCore::FrameLoaderClientHaiku::frameLoadCompleted):
(WebCore::FrameLoaderClientHaiku::saveViewStateToItem):
(WebCore::FrameLoaderClientHaiku::restoreViewState):
(WebCore::FrameLoaderClientHaiku::restoreScrollPositionAndViewState):
(WebCore::FrameLoaderClientHaiku::provisionalLoadStarted):
(WebCore::FrameLoaderClientHaiku::shouldTreatURLAsSameAsCurrent):
(WebCore::FrameLoaderClientHaiku::addHistoryItemForFragmentScroll):
(WebCore::FrameLoaderClientHaiku::didFinishLoad):
(WebCore::FrameLoaderClientHaiku::prepareForDataSourceReplacement):
(WebCore::FrameLoaderClientHaiku::setTitle):
(WebCore::FrameLoaderClientHaiku::userAgent):
(WebCore::FrameLoaderClientHaiku::dispatchDidReceiveIcon):
(WebCore::FrameLoaderClientHaiku::frameLoaderDestroyed):
(WebCore::FrameLoaderClientHaiku::canHandleRequest):
(WebCore::FrameLoaderClientHaiku::partClearedInBegin):
(WebCore::FrameLoaderClientHaiku::updateGlobalHistory):
(WebCore::FrameLoaderClientHaiku::updateGlobalHistoryRedirectLinks):
(WebCore::FrameLoaderClientHaiku::shouldGoToHistoryItem):
(WebCore::FrameLoaderClientHaiku::saveScrollPositionAndViewStateToItem):
(WebCore::FrameLoaderClientHaiku::canCachePage):
(WebCore::FrameLoaderClientHaiku::setMainDocumentError):
(WebCore::FrameLoaderClientHaiku::committedLoad):
(WebCore::FrameLoaderClientHaiku::cancelledError):
(WebCore::FrameLoaderClientHaiku::blockedError):
(WebCore::FrameLoaderClientHaiku::cannotShowURLError):
(WebCore::FrameLoaderClientHaiku::interruptForPolicyChangeError):
(WebCore::FrameLoaderClientHaiku::cannotShowMIMETypeError):
(WebCore::FrameLoaderClientHaiku::fileDoesNotExistError):
(WebCore::FrameLoaderClientHaiku::shouldFallBack):
(WebCore::FrameLoaderClientHaiku::createDocumentLoader):
(WebCore::FrameLoaderClientHaiku::download):
(WebCore::FrameLoaderClientHaiku::assignIdentifierToInitialRequest):
(WebCore::FrameLoaderClientHaiku::dispatchWillSendRequest):
(WebCore::FrameLoaderClientHaiku::shouldUseCredentialStorage):
(WebCore::FrameLoaderClientHaiku::dispatchDidReceiveAuthenticationChallenge):
(WebCore::FrameLoaderClientHaiku::dispatchDidCancelAuthenticationChallenge):
(WebCore::FrameLoaderClientHaiku::dispatchDidReceiveResponse):
(WebCore::FrameLoaderClientHaiku::dispatchDidReceiveContentLength):
(WebCore::FrameLoaderClientHaiku::dispatchDidFinishLoading):
(WebCore::FrameLoaderClientHaiku::dispatchDidFailLoading):
(WebCore::FrameLoaderClientHaiku::dispatchDidLoadResourceFromMemoryCache):
(WebCore::FrameLoaderClientHaiku::dispatchDidLoadResourceByXMLHttpRequest):
(WebCore::FrameLoaderClientHaiku::dispatchDidFailProvisionalLoad):
(WebCore::FrameLoaderClientHaiku::dispatchDidFailLoad):
(WebCore::FrameLoaderClientHaiku::dispatchCreatePage):
(WebCore::FrameLoaderClientHaiku::dispatchDecidePolicyForMIMEType):
(WebCore::FrameLoaderClientHaiku::dispatchDecidePolicyForNewWindowAction):
(WebCore::FrameLoaderClientHaiku::dispatchDecidePolicyForNavigationAction):
(WebCore::FrameLoaderClientHaiku::dispatchUnableToImplementPolicy):
(WebCore::FrameLoaderClientHaiku::startDownload):
(WebCore::FrameLoaderClientHaiku::createFrame):
(WebCore::FrameLoaderClientHaiku::objectContentType):
(WebCore::FrameLoaderClientHaiku::createPlugin):
(WebCore::FrameLoaderClientHaiku::redirectDataToPlugin):
(WebCore::FrameLoaderClientHaiku::pluginWillHandleLoadError):
(WebCore::FrameLoaderClientHaiku::createJavaAppletWidget):
(WebCore::FrameLoaderClientHaiku::overrideMediaType):
(WebCore::FrameLoaderClientHaiku::windowObjectCleared):
(WebCore::FrameLoaderClientHaiku::documentElementAvailable):
(WebCore::FrameLoaderClientHaiku::didPerformFirstNavigation):
(WebCore::FrameLoaderClientHaiku::registerForIconNotification):
(WebCore::FrameLoaderClientHaiku::savePlatformDataToCachedFrame):
(WebCore::FrameLoaderClientHaiku::transitionToCommittedFromCachedFrame):
(WebCore::FrameLoaderClientHaiku::transitionToCommittedForNewPage):
* haiku/WebCoreSupport/FrameLoaderClientHaiku.h: Added.
(WebCore::FrameLoaderClientHaiku::~FrameLoaderClientHaiku):
2009-07-28 Maxime Simon <simon.maxime@gmail.com>
Reviewed by David Levin.
Added ChromeClient for Haiku WebCore support.
https://bugs.webkit.org/show_bug.cgi?id=26952
* haiku/WebCoreSupport/ChromeClientHaiku.cpp: Added.
(WebCore::ChromeClientHaiku::ChromeClientHaiku):
(WebCore::ChromeClientHaiku::~ChromeClientHaiku):
(WebCore::ChromeClientHaiku::chromeDestroyed):
(WebCore::ChromeClientHaiku::setWindowRect):
(WebCore::ChromeClientHaiku::windowRect):
(WebCore::ChromeClientHaiku::pageRect):
(WebCore::ChromeClientHaiku::scaleFactor):
(WebCore::ChromeClientHaiku::focus):
(WebCore::ChromeClientHaiku::unfocus):
(WebCore::ChromeClientHaiku::canTakeFocus):
(WebCore::ChromeClientHaiku::takeFocus):
(WebCore::ChromeClientHaiku::createWindow):
(WebCore::ChromeClientHaiku::createModalDialog):
(WebCore::ChromeClientHaiku::show):
(WebCore::ChromeClientHaiku::canRunModal):
(WebCore::ChromeClientHaiku::runModal):
(WebCore::ChromeClientHaiku::setToolbarsVisible):
(WebCore::ChromeClientHaiku::toolbarsVisible):
(WebCore::ChromeClientHaiku::setStatusbarVisible):
(WebCore::ChromeClientHaiku::statusbarVisible):
(WebCore::ChromeClientHaiku::setScrollbarsVisible):
(WebCore::ChromeClientHaiku::scrollbarsVisible):
(WebCore::ChromeClientHaiku::setMenubarVisible):
(WebCore::ChromeClientHaiku::menubarVisible):
(WebCore::ChromeClientHaiku::setResizable):
(WebCore::ChromeClientHaiku::addMessageToConsole):
(WebCore::ChromeClientHaiku::canRunBeforeUnloadConfirmPanel):
(WebCore::ChromeClientHaiku::runBeforeUnloadConfirmPanel):
(WebCore::ChromeClientHaiku::closeWindowSoon):
(WebCore::ChromeClientHaiku::runJavaScriptAlert):
(WebCore::ChromeClientHaiku::runJavaScriptConfirm):
(WebCore::ChromeClientHaiku::runJavaScriptPrompt):
(WebCore::ChromeClientHaiku::setStatusbarText):
(WebCore::ChromeClientHaiku::shouldInterruptJavaScript):
(WebCore::ChromeClientHaiku::tabsToLinks):
(WebCore::ChromeClientHaiku::windowResizerRect):
(WebCore::ChromeClientHaiku::repaint):
(WebCore::ChromeClientHaiku::scroll):
(WebCore::ChromeClientHaiku::screenToWindow):
(WebCore::ChromeClientHaiku::windowToScreen):
(WebCore::ChromeClientHaiku::platformWindow):
(WebCore::ChromeClientHaiku::contentsSizeChanged):
(WebCore::ChromeClientHaiku::scrollRectIntoView):
(WebCore::ChromeClientHaiku::addToDirtyRegion):
(WebCore::ChromeClientHaiku::scrollBackingStore):
(WebCore::ChromeClientHaiku::updateBackingStore):
(WebCore::ChromeClientHaiku::mouseDidMoveOverElement):
(WebCore::ChromeClientHaiku::setToolTip):
(WebCore::ChromeClientHaiku::print):
(WebCore::ChromeClientHaiku::exceededDatabaseQuota):
(WebCore::ChromeClientWx::reachedMaxAppCacheSize):
(WebCore::ChromeClientHaiku::requestGeolocationPermissionForFrame):
(WebCore::ChromeClientHaiku::runOpenPanel):
(WebCore::ChromeClientHaiku::setCursor):
(WebCore::ChromeClientHaiku::formStateDidChange):
(WebCore::ChromeClientHaiku::createHTMLParserQuirks):
* haiku/WebCoreSupport/ChromeClientHaiku.h: Added.
2009-07-28 Robert Hogan <robert@roberthogan.net>
Reviewed by Simon Hausmann.
Add WebKit version API to Qt.
Get the current version of WebKit from WebKit/mac/Configurations/Version.xcconfig
at compile time and make it available to webkit ports through WebKitVersion.h.
https://bugs.webkit.org/show_bug.cgi?id=27158
* scripts/generate-webkitversion.pl: Added
2009-07-24 Andrei Popescu <andreip@google.com>
ApplicationCache should have size limit
https://bugs.webkit.org/show_bug.cgi?id=22700
Updated the project after adding WebApplicationCache.h/mm
* WebKit.xcodeproj/project.pbxproj:
2009-07-16 Maxime Simon <simon.maxime@gmail.com>
Reviewed by Eric Seidel.
Added InspectorClient for Haiku WebCore support.
https://bugs.webkit.org/show_bug.cgi?id=26952
Adding two files, InspectorClientHaiku.h and InspectorClientHaiku.cpp
* haiku/WebCoreSupport/InspectorClientHaiku.cpp: Added.
(WebCore::InspectorClientHaiku::inspectorDestroyed):
(WebCore::InspectorClientHaiku::createPage):
(WebCore::InspectorClientHaiku::localizedStringsURL):
(WebCore::InspectorClientHaiku::hiddenPanels):
(WebCore::InspectorClientHaiku::showWindow):
(WebCore::InspectorClientHaiku::closeWindow):
(WebCore::InspectorClientHaiku::attachWindow):
(WebCore::InspectorClientHaiku::detachWindow):
(WebCore::InspectorClientHaiku::setAttachedWindowHeight):
(WebCore::InspectorClientHaiku::highlight):
(WebCore::InspectorClientHaiku::hideHighlight):
(WebCore::InspectorClientHaiku::inspectedURLChanged):
(WebCore::InspectorClientHaiku::populateSetting):
(WebCore::InspectorClientHaiku::storeSetting):
(WebCore::InspectorClientHaiku::removeSetting):
* haiku/WebCoreSupport/InspectorClientHaiku.h: Added.
2009-07-16 Maxime Simon <simon.maxime@gmail.com>
Reviewed by Oliver Hunt.
Added EditorClient for Haiku WebCore support.
https://bugs.webkit.org/show_bug.cgi?id=26952
Adding two files, EditorClientHaiku.h and EditorClientHaiku.cpp
* haiku/WebCoreSupport/EditorClientHaiku.cpp: Added.
(WebCore::EditorClientHaiku::EditorClientHaiku):
(WebCore::EditorClientHaiku::setPage):
(WebCore::EditorClientHaiku::pageDestroyed):
(WebCore::EditorClientHaiku::shouldDeleteRange):
(WebCore::EditorClientHaiku::shouldShowDeleteInterface):
(WebCore::EditorClientHaiku::smartInsertDeleteEnabled):
(WebCore::EditorClientHaiku::isSelectTrailingWhitespaceEnabled):
(WebCore::EditorClientHaiku::isContinuousSpellCheckingEnabled):
(WebCore::EditorClientHaiku::toggleContinuousSpellChecking):
(WebCore::EditorClientHaiku::isGrammarCheckingEnabled):
(WebCore::EditorClientHaiku::toggleGrammarChecking):
(WebCore::EditorClientHaiku::spellCheckerDocumentTag):
(WebCore::EditorClientHaiku::isEditable):
(WebCore::EditorClientHaiku::shouldBeginEditing):
(WebCore::EditorClientHaiku::shouldEndEditing):
(WebCore::EditorClientHaiku::shouldInsertNode):
(WebCore::EditorClientHaiku::shouldInsertText):
(WebCore::EditorClientHaiku::shouldChangeSelectedRange):
(WebCore::EditorClientHaiku::shouldApplyStyle):
(WebCore::EditorClientHaiku::shouldMoveRangeAfterDelete):
(WebCore::EditorClientHaiku::didBeginEditing):
(WebCore::EditorClientHaiku::respondToChangedContents):
(WebCore::EditorClientHaiku::respondToChangedSelection):
(WebCore::EditorClientHaiku::didEndEditing):
(WebCore::EditorClientHaiku::didWriteSelectionToPasteboard):
(WebCore::EditorClientHaiku::didSetSelectionTypesForPasteboard):
(WebCore::EditorClientHaiku::registerCommandForUndo):
(WebCore::EditorClientHaiku::registerCommandForRedo):
(WebCore::EditorClientHaiku::clearUndoRedoOperations):
(WebCore::EditorClientHaiku::canUndo):
(WebCore::EditorClientHaiku::canRedo):
(WebCore::EditorClientHaiku::undo):
(WebCore::EditorClientHaiku::redo):
(WebCore::EditorClientHaiku::handleKeyboardEvent):
(WebCore::EditorClientHaiku::handleInputMethodKeydown):
(WebCore::EditorClientHaiku::textFieldDidBeginEditing):
(WebCore::EditorClientHaiku::textFieldDidEndEditing):
(WebCore::EditorClientHaiku::textDidChangeInTextField):
(WebCore::EditorClientHaiku::doTextFieldCommandFromEvent):
(WebCore::EditorClientHaiku::textWillBeDeletedInTextField):
(WebCore::EditorClientHaiku::textDidChangeInTextArea):
(WebCore::EditorClientHaiku::ignoreWordInSpellDocument):
(WebCore::EditorClientHaiku::learnWord):
(WebCore::EditorClientHaiku::checkSpellingOfString):
(WebCore::EditorClientHaiku::getAutoCorrectSuggestionForMisspelledWord):
(WebCore::EditorClientHaiku::checkGrammarOfString):
(WebCore::EditorClientHaiku::updateSpellingUIWithGrammarString):
(WebCore::EditorClientHaiku::updateSpellingUIWithMisspelledWord):
(WebCore::EditorClientHaiku::showSpellingUI):
(WebCore::EditorClientHaiku::spellingUIIsShowing):
(WebCore::EditorClientHaiku::getGuessesForWord):
(WebCore::EditorClientHaiku::setInputMethodState):
(WebCore::EditorClientHaiku::isEditing):
* haiku/WebCoreSupport/EditorClientHaiku.h: Added.
2009-07-16 Maxime Simon <simon.maxime@gmail.com>
Reviewed by Eric Seidel.
Added DragClient for Haiku WebCore support.
https://bugs.webkit.org/show_bug.cgi?id=26952
Adding two files, DragClientHaiku.h and DragClientHaiku.cpp
* haiku/WebCoreSupport/DragClientHaiku.cpp: Added.
(WebCore::DragClientHaiku::actionMaskForDrag):
(WebCore::DragClientHaiku::willPerformDragDestinationAction):
(WebCore::DragClientHaiku::dragControllerDestroyed):
(WebCore::DragClientHaiku::dragSourceActionMaskForPoint):
(WebCore::DragClientHaiku::willPerformDragSourceAction):
(WebCore::DragClientHaiku::startDrag):
(WebCore::DragClientHaiku::createDragImageForLink):
* haiku/WebCoreSupport/DragClientHaiku.h: Added.
2009-07-16 Maxime Simon <simon.maxime@gmail.com>
Reviewed by Oliver Hunt.
Added ContextMenuClient for Haiku WebCore support.
https://bugs.webkit.org/show_bug.cgi?id=26952
Adding two files, ContextMenuClientHaiku.h
and ContextMenuClientHaiku.cpp
* haiku/WebCoreSupport/ContextMenuClientHaiku.cpp: Added.
(WebCore::ContextMenuClientHaiku::contextMenuDestroyed):
(WebCore::ContextMenuClientHaiku::getCustomMenuFromDefaultItems):
(WebCore::ContextMenuClientHaiku::contextMenuItemSelected):
(WebCore::ContextMenuClientHaiku::downloadURL):
(WebCore::ContextMenuClientHaiku::lookUpInDictionary):
(WebCore::ContextMenuClientHaiku::speak):
(WebCore::ContextMenuClientHaiku::isSpeaking):
(WebCore::ContextMenuClientHaiku::stopSpeaking):
(WebCore::ContextMenuClientHaiku::searchWithGoogle):
* haiku/WebCoreSupport/ContextMenuClientHaiku.h: Added.
2009-07-10 Adam Roben <aroben@apple.com>
Sort all our Xcode projects
Accomplished using sort-Xcode-project-file.
Requested by Dave Kilzer.
* WebKit.xcodeproj/project.pbxproj:
2009-07-02 Adam Roben <aroben@apple.com>
Fix warnings from update-webkit-localizable-strings
Rubber-stamped by Eric Carlson.
* English.lproj/Localizable.strings: Updated.
2009-07-02 Adam Roben <aroben@apple.com>
Update StringsNotToBeLocalized.txt for (not so) recent changes
Bug 26926: StringsNotToBeLocalized.txt is out-of-date
<https://bugs.webkit.org/show_bug.cgi?id=26926>
Reviewed by John Sullivan.
* StringsNotToBeLocalized.txt:
2009-07-02 Pierre d'Herbemont <pdherbemont@apple.com>
Reviewed by Simon Fraser.
<rdar://problem/6518119>
Add localized strings for media controller status messages.
* English.lproj/Localizable.strings: Localized text.
2009-06-08 Dan Bernstein <mitz@apple.com>
Rubber-stamped by Mark Rowe.
- updated the project after giving Objective-C++ the .mm extension
* WebKit.xcodeproj/project.pbxproj:
2009-06-04 Sam Weinig <sam@webkit.org>
Reviewed by Alice Liu.
Move WebView internal data into WebViewData.h/mm.
* WebKit.xcodeproj/project.pbxproj:
2009-06-03 Sam Weinig <sam@webkit.org>
Reviewed by Mark Rowe.
Added WebDelegateImplementationCaching.h/mm
* WebKit.xcodeproj/project.pbxproj:
2009-06-03 Sam Weinig <sam@webkit.org>
Reviewed by Mark Rowe.
Add WebViewInternal.mm.
* WebKit.xcodeproj/project.pbxproj:
2009-06-03 Dan Bernstein <mitz@apple.com>
Reviewed by Anders Carlsson.
- WebKit project part of eliminating WebCoreTextRenderer
* WebKit.xcodeproj/project.pbxproj: Changed WebKitNSStringExtras.m to
compile as Objective-C++.
2009-06-01 Darin Adler <darin@apple.com>
Reviewed by Maciej Stachowiak.
Bug 26113: break WebTextCompletionController out into its own source file
https://bugs.webkit.org/show_bug.cgi?id=26113
* WebKit.xcodeproj/project.pbxproj: Add WebTextCompletionController.h/mm.
2009-05-28 Mark Rowe <mrowe@apple.com>
Rubber-stamped by Anders Carlsson.
Symlink WebKitPluginHost.app in to place if needed.
* WebKit.xcodeproj/project.pbxproj:
2009-05-24 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated for recent changes. Got rid of most full-file exceptions.
2009-05-16 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig and Dan Bernstein.
Fix <rdar://problem/6889644>.
* English.lproj/Localizable.strings:
2009-05-10 Alexey Proskuryakov <ap@webkit.org>
Reviewed by Dan Bernstein.
<rdar://problem/6870383> Have to enter credentials twice when downloading from a protected page
* WebKit.xcodeproj/project.pbxproj: Renamed Misc/WebDownload.m as WebDownload.mm, so that
it could use C++ code from AuthenticaitonMac.h.
2009-04-27 Douglas R. Davidson <ddavidso@apple.com>
Add localizable strings for
<rdar://problem/6724106> WebViews need to implement text checking
Reviewed by Justin Garcia.
* English.lproj/Localizable.strings:
2009-04-27 Kevin Decker <kdecker@apple.com>
Reviewed by Anders Carlsson.
<rdar://problem/6352982>
* WebKit.xcodeproj/project.pbxproj: Added WebNetscapeContainerCheckContextInfo.mm to the project.
2009-04-23 Kevin Decker <kdecker@apple.com>
Reviewed by Anders Carlsson.
* WebKit.xcodeproj/project.pbxproj: Added WebNetscapeContainerCheckPrivate.mm and header to the project.
2009-04-21 Adam Roben <aroben@apple.com>
Update StringsNotToBeLocalized.txt for recent changes
Rubber-stamped by John Sullivan.
* StringsNotToBeLocalized.txt:
2009-04-19 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated for recent changes.
2009-04-17 David Kilzer <ddkilzer@apple.com>
Simplify FEATURE_DEFINES definition
Reviewed by Darin Adler.
This moves FEATURE_DEFINES and its related ENABLE_FEATURE_NAME
variables to their own FeatureDefines.xcconfig file. It also
extracts a new ENABLE_GEOLOCATION variable so that
FEATURE_DEFINES only needs to be defined once.
* WebKit.xcodeproj/project.pbxproj: Added
FeatureDefines.xcconfig file.
2009-04-10 Timothy Hatcher <timothy@apple.com>
Remove DOMDocumentPrivate.h now that <rdar://problem/6730996> is fixed.
Rubber-stamped by Mark Rowe.
* WebKit.xcodeproj/project.pbxproj:
2009-04-09 Mike Thole <mthole@apple.com>
Reviewed by Adam Roben.
* WebKit.xcodeproj/project.pbxproj:
Set the Localizable.strings encoding to UTF-16.
2009-04-07 Anders Carlsson <andersca@apple.com>
Try to fix the Leopard build once more.
* WebKit.xcodeproj/project.pbxproj:
2009-04-07 Anders Carlsson <andersca@apple.com>
Another attempt at fixing the build.
* WebKit.xcodeproj/project.pbxproj:
2009-04-02 Adele Peterson <adele@apple.com>
Reviewed by Darin Adler.
* WebKit.xcodeproj/project.pbxproj:
Add WebDOMOperationsInternal.h and make WebDOMOperationsPrivate.h private.
2009-04-01 Greg Bolsinga <bolsinga@apple.com>
Reviewed by Mark Rowe.
https://bugs.webkit.org/show_bug.cgi?id=24990
Put SECTORDER_FLAGS into xcconfig files.
* WebKit.xcodeproj/project.pbxproj:
2009-03-27 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated for recent changes.
2009-03-16 Darin Adler <darin@apple.com>
Reviewed by Dan Bernstein.
* English.lproj/Localizable.strings: Updated.
* StringsNotToBeLocalized.txt: Updated for recent changes.
2009-03-13 Greg Bolsinga <bolsinga@apple.com>
Reviewed by Simon Fraser.
Update Geolocation perimission dialogs to be asynchronous.
https://bugs.webkit.org/show_bug.cgi?id=24505
Add WebGeolocation, a wrapper around WebCore::Geolocation. It mimics the
coding style set by WebSecurityOrigin.
* WebKit.xcodeproj/project.pbxproj:
2009-03-13 Anders Carlsson <andersca@apple.com>
Reviewed by Dan Bernstein.
<rdar://problem/6610666> Revise the Cocoa event model text API
Remove nptextinput.h
* WebKit.xcodeproj/project.pbxproj:
2009-03-03 David Kilzer <ddkilzer@apple.com>
<rdar://problem/6581203> WebCore and WebKit should install the same set of headers during installhdrs phase as build phase
Reviewed by Mark Rowe.
The fix is to add INSTALLHDRS_COPY_PHASE = YES and
INSTALLHDRS_SCRIPT_PHASE = YES to WebKit.xcconfig, then to
make sure various build phase scripts work with the installhdrs
build phase.
* WebKit.xcodeproj/project.pbxproj:
- Added shell code to prevent running "Check For Global
Initializers", "Check For Exit Time Destructors" and "Check
For Weak VTables" scripts during the installhdrs build phase.
- Removed UMBRELLA_FRAMEWORKS_DIR from the Debug and Release
targets since it's no longer needed after defining
WEBCORE_PRIVATE_HEADERS_DIR in WebKit.xcconfig.
2009-03-03 David Kilzer <ddkilzer@apple.com>
Remove last vestiges of JAVASCRIPTCORE_PRIVATE_HEADERS_DIR from WebKit
Reviewed by Adam Roben.
Use of JAVASCRIPTCORE_PRIVATE_HEADERS_DIR was removed in r37465
since NPAPI headers had migrated from JavaScriptCore to WebCore
before that.
* WebKit.xcodeproj/project.pbxproj: Removed
JAVASCRIPTCORE_PRIVATE_HEADERS_DIR build setting from from Debug
and Release configurations.
2009-03-02 Anders Carlsson <andersca@apple.com>
WebNetscapePluginPackage.mm is an Objective-C++ file.
* WebKit.xcodeproj/project.pbxproj:
2009-03-02 Anders Carlsson <andersca@apple.com>
Reviewed by John Sullivan.
Rename WebNetscapePluginPackage.m to WebNetscapePluginPackage.mm
* WebKit.xcodeproj/project.pbxproj:
2009-02-20 Anders Carlsson <andersca@apple.com>
Reviewed by Dan Bernstein.
Add new files.
* WebKit.xcodeproj/project.pbxproj:
2009-02-13 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated for recent changes.
2009-02-07 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated for recent changes.
2009-02-04 Timothy Hatcher <timothy@apple.com>
Removed the WebDefaultScriptDebugDelegate now that we have CallScriptDebugDelegate.
<rdar://problem/6508457> Launching widget in Dashcode debugger is
super-slow due forwardInvocation: calling debug delegate
Reviewed by Oliver Hunt.
* WebKit.xcodeproj/project.pbxproj:
2009-02-02 Anders Carlsson <andersca@apple.com>
Reviewed by Dan Bernstein.
Remove WebKitPluginContainerView.{h|mm}, they aren't used anywhere.
* WebKit.xcodeproj/project.pbxproj:
2009-01-26 Mark Rowe <mrowe@apple.com>
Rubber-stamped by Sam Weinig.
Clean up after r40240.
* WebKit.xcodeproj/project.pbxproj: Reinstate WebKitPluginHost.defs.
2009-01-25 Darin Adler <darin@apple.com>
Try to fix full build on Mac Leopard.
* WebKit.xcodeproj/project.pbxproj: Removed WebKitPluginClient.defs from the WebKit target.
Maybe this is temporary, but I had to do it to get the full build to succeed.
2009-01-25 Mark Rowe <mrowe@apple.com>
Rubber-stamped by Dan Bernstein.
Improve the consistency of settings in our .xcconfig files.
* WebKit.xcodeproj/project.pbxproj:
2009-01-23 Brady Eidson <beidson@apple.com>
Rubberstamped by Darin Adler
Rename CachedPagePlatformData to CachedFramePlatformData to more accurately reflect its true role.
* WebKit.xcodeproj/project.pbxproj:
2009-01-20 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Add ProxyInstance files.
* WebKit.xcodeproj/project.pbxproj:
2009-01-04 David Kilzer <ddkilzer@apple.com>
Don't install internal headers in WebKit framework
Reviewed by Darin Adler.
* WebKit.xcodeproj/project.pbxproj: Remove roles from internal
headers so they're not installed.
2009-01-02 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated.
2008-12-23 Darin Adler <darin@apple.com>
Reviewed by Alexey Proskuryakov.
- fix https://bugs.webkit.org/show_bug.cgi?id=22976
crash due to Mail's use of WebArchive and WebResource on non-main thread
* StringsNotToBeLocalized.txt: Updated.
* WebKit.xcodeproj/project.pbxproj: Added new file WebNSObjectExtras.mm and
existing file WebResourceInternal.h.
2008-12-08 David Kilzer <ddkilzer@apple.com>
Bug 22555: Sort "children" sections in Xcode project files
<https://bugs.webkit.org/show_bug.cgi?id=22555>
Reviewed by Eric Seidel.
* WebKit.xcodeproj/project.pbxproj: Sorted.
2008-12-08 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated for recent changes.
2008-12-05 Dan Bernstein <mitz@apple.com>
Mac build fix.
* WebKit.xcodeproj/project.pbxproj:
2008-12-05 Dan Bernstein <mitz@apple.com>
Mac build fix.
* WebKit.xcodeproj/project.pbxproj:
2008-12-04 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Add HostedNetscapePluginStream.
* WebKit.xcodeproj/project.pbxproj:
2008-12-03 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Move WebPluginRequest to its own file.
* WebKit.xcodeproj/project.pbxproj:
2008-12-03 Steve Falkenburg <sfalken@apple.com>
Update strings not to be localized.
Reviewed by Adam Roben.
* StringsNotToBeLocalized.txt:
2008-11-26 Mark Rowe <mrowe@apple.com>
Build fix.
Fix up the references to files under WebKit/mac/Plugins/Hosted.
* WebKit.xcodeproj/project.pbxproj:
2008-11-26 Anders Carlsson <andersca@apple.com>
Reviewed by Mark Rowe.
Add plug-in host related files to the Xcode project.
* WebKit.xcodeproj/project.pbxproj:
2008-11-14 Dan Bernstein <mitz@apple.com>
Reviewed by Darin Adler.
- part of <rdar://problem/6234337> Add a Text Direction menu to the default context menu when appropriate
* English.lproj/Localizable.strings: Added the Text Direction submenu
title.
2008-11-13 John Sullivan <sullivan@apple.com>
fixed <rdar://problem/6361578> Web Kit UI strings: a few edits
Reviewed by Tim Hatcher
* English.lproj/Localizable.strings:
updated for these changes
* StringsNotToBeLocalized.txt:
removed unused exception
2008-11-12 John Sullivan <sullivan@apple.com>
fixed <rdar://problem/3839110> Authentication dialogs talk about passwords being sent "in the clear"
Reviewed by Tim Hatcher
* English.lproj/Localizable.strings:
* StringsNotToBeLocalized.txt:
updated for this change
2008-11-10 Anders Carlsson <andersca@apple.com>
Reviewed by Kevin Decker.
Add WebHostedNetscapePluginView to the project.
* WebKit.xcodeproj/project.pbxproj:
2008-11-10 Anders Carlsson <andersca@apple.com>
Reviewed by Kevin Decker.
Add a new WebBaseNetscapePluginView class.
* WebKit.xcodeproj/project.pbxproj:
2008-11-10 Anders Carlsson <andersca@apple.com>
Reviewed by Adam Roben.
Rename WebBaseNetscapePluginView to WebNetscapePluginView.
* StringsNotToBeLocalized.txt:
* WebKit.xcodeproj/project.pbxproj:
2008-11-05 Anders Carlsson <andersca@apple.com>
Reviewed by Kevin Decker.
Remove WebPlugInStreamLoaderDelegate.h
* WebKit.xcodeproj/project.pbxproj:
2008-11-03 Darin Adler <darin@apple.com>
Reviewed by Tim Hatcher.
- https://bugs.webkit.org/show_bug.cgi?id=22061
create script to check for exit-time destructors
* WebKit.xcodeproj/project.pbxproj: Added a script
phase that runs the check-for-exit-time-destructors script.
2008-10-31 Anders Carlsson <andersca@apple.com>
Reviewed by Kevin Decker.
Move WebNetscapePluginEventHandler classes to a subgroup of Netscape Plug-Ins.
* WebKit.xcodeproj/project.pbxproj:
2008-10-29 Matt Lilek <webkit@mattlilek.com>
Not reviewed, build fix.
* WebKit.xcodeproj/project.pbxproj:
2008-10-28 Adele Peterson <adele@apple.com>
Reviewed by John Sullivan.
Fix for https://bugs.webkit.org/show_bug.cgi?id=21880
"files" string for multifile uploads needs to be localized
* English.lproj/Localizable.strings: Updated with new string.
2008-10-28 Adele Peterson <adele@apple.com>
Reviewed by Sam Weinig.
* English.lproj/Localizable.strings:
Updated.
2008-10-27 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated for recent changes.
2008-10-24 Timothy Hatcher <timothy@apple.com>
Implement new InspectorClient methods to work with Settings.
https://bugs.webkit.org/show_bug.cgi?id=21856
Reviewed by Darin Adler.
* WebKit.xcodeproj/project.pbxproj: Add the new InspectorClientCF.cpp file.
2008-10-15 Mark Rowe <mrowe@apple.com>
Rubber-stamped by Brady Eidson.
<rdar://problem/5803460> A file named StringsNotToBeLocalized.txt file is installed Webkit.framework/Resources.
* WebKit.xcodeproj/project.pbxproj: Don't install StringsNotToBeLocalized.txt.
2008-10-14 Maxime Britto <britto@apple.com>
Reviewed by Darin Adler.
* WebKit.xcodeproj/project.pbxproj: Added two files for the
WebTextIterator, and made the WebTextIterator.h private
2008-10-04 Mark Rowe <mrowe@apple.com>
Reviewed by Tim Hatcher.
Add a 'Check For Weak VTables' build phase to catch weak vtables as early as possible.
* WebKit.xcodeproj/project.pbxproj:
2008-09-24 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated for recent changes.
2008-09-15 Chris Fleizach <cfleizach@apple.com>
Reviewed by Darin Adler, Beth Dakin
Support strings for AXLists
* English.lproj/Localizable.strings:
2008-09-15 Anders Carlsson <andersca@apple.com>
Reviewed by Mitz.
Merge WebNetscapePluginStream into WebBaseNetscapePluginStream.
* WebKit.xcodeproj/project.pbxproj:
2008-09-02 Mark Rowe <mrowe@apple.com>
Reviewed by Tim Hatcher.
Build fix. Remove the now unnecessary check for "4" in the user agent string.
* WebKit.xcodeproj/project.pbxproj:
2008-08-17 Geoffrey Garen <ggaren@apple.com>
Reviewed by Cameron Zwarich.
Updated project files to XCode 3.1.
* WebKit.xcodeproj/project.pbxproj:
2008-08-15 Mark Rowe <mrowe@apple.com>
Rubber-stamped by Geoff Garen.
<rdar://problem/6139914> Please include a _debug version of JavaScriptCore framework
* WebKit.xcodeproj/project.pbxproj: Enable the debug variant.
2008-08-05 Anders Carlsson <andersca@apple.com>
Reviewed by Darin Adler.
Remove MainThreadObjectDeallocator.{h|mm}.
* WebKit.xcodeproj/project.pbxproj:
2008-08-04 Mark Rowe <mrowe@apple.com>
Reviewed by Darin Adler.
Declare empty protocols when using versions of AppKit that do not use formal protocols for delegates and data sources.
Part one of fix for <rdar://problem/5853147>.
* WebKit.xcodeproj/project.pbxproj:
2008-07-31 David D. Kilzer <ddkilzer@webkit.org>
Fix layout test results for webarchive/test-xml-stylesheet.xml
Reviewed by Darin Adler.
* WebKit.xcodeproj/project.pbxproj: Added WebHTMLRepresentationInternal.h.
Changed WebHTMLRepresentationInternal.h and WebHTMLRepresentationPrivate.h
to private so they're copied into PrivateHeaders.
2008-07-11 Stephanie Lewis <slewis@apple.com>
Reviewed by Darin Adler.
Move WebPreferences.m to objc++ so it can include the new WTF leak counting class.
* WebKit.xcodeproj/project.pbxproj:
2008-07-07 Mark Rowe <mrowe@apple.com>
Fix references to WebRenderNode.h and WebRenderNode.mm in Xcode project
so that they don't have an unnecessary ".." in the path.
* WebKit.xcodeproj/project.pbxproj:
2008-07-05 Mark Rowe <mrowe@apple.com>
Reviewed by John Sullivan.
Remove WebSearchableTextView as it has been unused for some time now.
* WebKit.xcodeproj/project.pbxproj:
2008-06-26 Anders Carlsson <andersca@apple.com>
Reviewed by Darin Adler.
Add MainThreadObjectDeallocator to sources.
* WebKit.xcodeproj/project.pbxproj:
2008-06-24 John Sullivan <sullivan@apple.com>
Rubber-stamped by Sam Weinig
* StringsNotToBeLocalized.txt:
brought this file up to date
2008-06-17 Mark Rowe <mrowe@apple.com>
Reviewed by Darin Adler.
<rdar://problem/5775802> WebKit should not force use of GCC 4.0.
* WebKit.xcodeproj/project.pbxproj:
2008-05-22 Timothy Hatcher <timothy@apple.com>
<rdar://problem/5956403> Update the Develop menu to match the new Inspector items
Reviewed by Adam Roben.
* English.lproj/Localizable.strings: Added new strings.
2008-05-21 Anders Carlsson <andersca@apple.com>
Reviewed by Maciej.
Add WebIconFetcher files.
* WebKit.xcodeproj/project.pbxproj:
2008-05-16 Timothy Hatcher <timothy@apple.com>
Removes WebScriptDebugServer files and related calls. This removes
the hooks that Drosera uses for debugging. Now that the Web Inspector
has a better debugger, we don't need these anymore.
Reviewed by Sam Weinig.
* StringsNotToBeLocalized.txt:
* WebKit.xcodeproj/project.pbxproj:
2008-05-13 Chris Fleizach <cfleizach@apple.com>
Reviewed by Beth Dakin
<rdar://problem/4780592> WebKit application has its window announced as HTML content
* English.lproj/Localizable.strings:
* WebKit.xcodeproj/project.pbxproj:
2008-05-09 Anders Carlsson <andersca@apple.com>
Reviewed by Oliver.
<rdar://problem/5774495> Make Unicode text input possible in Netscape-style plug-ins
Add nptextinput.h as a public header.
* WebKit.xcodeproj/project.pbxproj:
2008-05-06 Stephanie Lewis <slewis@apple.com>
Reviewed by Andersca.
prepare for plugin fast teardown work - make WebPluginDatabase a objective C++ file.
* WebKit.xcodeproj/project.pbxproj:
2008-05-01 Anders Carlsson <andersca@apple.com>
Reviewed by Tim.
Remove npfunctions.h
* WebKit.xcodeproj/project.pbxproj:
2008-05-01 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
Turn off deprecated warnings for WebNetscapePluginEventHandlerCarbon.mm.
* WebKit.xcodeproj/project.pbxproj:
2008-04-30 Anders Carlsson <andersca@apple.com>
Reviewed by Adam.
Add Cocoa event handler.
* WebKit.xcodeproj/project.pbxproj:
2008-04-29 Anders Carlsson <andersca@apple.com>
Reviewed by Adam.
Add new event handlers.
* WebKit.xcodeproj/project.pbxproj:
2008-04-07 John Sullivan <sullivan@apple.com>
Reviewed by Tim
- made the JavaScript text input panel not block Quit (part of 4133196)
* English.lproj/WebJavaScriptTextInputPanel.nib/classes.nib:
* English.lproj/WebJavaScriptTextInputPanel.nib/info.nib:
* English.lproj/WebJavaScriptTextInputPanel.nib/keyedobjects.nib:
Made the panel be a NonBlockingPanel
2008-04-04 Ada Chan <adachan@apple.com>
Updated the format string for window title for a standalone image to take integers.
Reviewed by Dan.
* English.lproj/Localizable.strings:
2008-03-28 Brady Eidson <beidson@apple.com>
Rubberstamped by Darin Adler
Remove WebArchiver.h/mm
* WebKit.xcodeproj/project.pbxproj:
2008-03-25 Brady Eidson <beidson@apple.com>
Reviewed by Darin
<rdar://problem/4516169> - Support WebArchives on Windows
* WebKit.xcodeproj/project.pbxproj:
2008-03-24 Brady Eidson <beidson@apple.com>
Reviewed by Darin's rubberstamp
Rename a .m to .mm
* WebKit.xcodeproj/project.pbxproj:
2008-03-20 John Sullivan <sullivan@apple.com>
* StringsNotToBeLocalized.txt:
Brought this file up to date
2008-03-20 Adam Roben <aroben@apple.com>
Mark WebNodeHighlight.m and WebNodeHighlightView.m Obj-C++
Reviewed by Tim Hatcher.
* WebKit.xcodeproj/project.pbxproj:
2008-03-12 Darin Adler <darin@apple.com>
Reviewed by Anders.
- http://bugs.webkit.org/show_bug.cgi?id=17640
eliminate WebCoreFrameBridge
* StringsNotToBeLocalized.txt: Updated for recent changes.
* WebKit.xcodeproj/project.pbxproj: Removed WebFrameBridge.h and WebFrameBridge.mm.
2008-03-11 Darin Adler <darin@apple.com>
Reviewed by Anders.
* WebKit.xcodeproj/project.pbxproj: Change WebDynamicScrollBarsView.m to be Obj-C++.
We can rename the file later.
2008-03-07 Mark Rowe <mrowe@apple.com>
Reviewed by Oliver Hunt.
Fix WebKit build with GCC 4.2.
* WebKit.xcodeproj/project.pbxproj: Mark WebTypesInternal.h as a private header so that DumpRenderTree can use it.
2008-03-06 Darin Adler <darin@apple.com>
* WebKit.xcodeproj/project.pbxproj: Added WebHistoryInternal.h.
2008-03-06 David D. Kilzer <ddkilzer@apple.com>
Name the WebKit build phase script that generates WebKit.LP64.exp.
* WebKit.xcodeproj/project.pbxproj: Name the build phase script
that generates the 64-bit export file to match the corresponding
build phase script in WebCore.
2008-03-05 Adam Roben <aroben@apple.com>
Remove WebCoreScriptDebugger.{h,mm}
Reviewed by Kevin M.
* WebKit.xcodeproj/project.pbxproj:
2008-03-05 Adam Roben <aroben@apple.com>
Rename WebCoreScriptDebuggerImp.{h,mm} to WebScriptDebugger.{h,mm}
Reviewed by Kevin M.
* WebKit.xcodeproj/project.pbxproj:
2008-03-05 Adam Roben <aroben@apple.com>
Remove WebScriptDebugger
Reviewed by Kevin M.
* WebKit.xcodeproj/project.pbxproj: Remove
WebScriptDebugDelegatePrivate.h from the project.
2008-03-05 Adam Roben <aroben@apple.com>
Move WebCoreScriptDebuggerImp to its own source files
Reviewed by Kevin M.
* WebKit.xcodeproj/project.pbxproj: Added new files to the project.
2008-03-05 Adam Roben <aroben@apple.com>
Move WebCoreScriptDebugger to WebKit
Reviewed by Darin Adler.
* WebKit.xcodeproj/project.pbxproj: Added WebCoreScriptDebugger.{h,mm}
to the project.
2008-01-26 Greg Bolsinga <bolsinga@apple.com>
<rdar://problem/5708388> WebDashboardRegion.h duplicated between WebCore / WebKit
Reviewed by Darin Adler.
* WebKit.xcodeproj/project.pbxproj: Removed WebDashboardRegion.h.
2008-01-23 Steve Falkenburg <sfalken@apple.com>
Update localization exceptions.
Reviewed by Darin Adler.
* English.lproj/Localizable.strings:
* StringsNotToBeLocalized.txt:
2008-01-20 Mark Rowe <mrowe@apple.com>
Reviewed by Dan Bernstein.
Remove code bracketed by REMOVE_SAFARI_DOM_TREE_DEBUG_ITEM as we are no longer
interested in supporting Safari 2 with TOT WebKit.
* WebKit.xcodeproj/project.pbxproj: Don't define REMOVE_SAFARI_DOM_TREE_DEBUG_ITEM
as it is no longer used.
2008-01-03 Darin Adler <darin@apple.com>
- fix Safari build
* WebKit.xcodeproj/project.pbxproj: Mark header private (fixes Safari build).
2008-01-02 Alexey Proskuryakov <ap@webkit.org>
Reviewed by Darin Adler.
Removed "BackwardDelete", which is no longer present in source code.
* StringsNotToBeLocalized.txt:
2007-12-16 Mark Rowe <mrowe@apple.com>
Reviewed by Maciej Stachowiak.
Refactor Mac plugin stream code to use the shared NetscapePlugInStreamLoader implementation.
* WebKit.xcodeproj/project.pbxproj: Add new files.
2007-12-14 Darin Adler <darin@apple.com>
* StringsNotToBeLocalized.txt: Updated.
2007-12-12 Brady Eidson <beidson@apple.com>
Reviewed by Sam Weinig
Fix for <rdar://problem/4886844> and lay groundwork for <rdar://problem/4516170> (Back/Forward Cache on Windows)
* WebKit.xcodeproj/project.pbxproj: Added a new file
2007-12-12 Mark Rowe <mrowe@apple.com>
Reviewed by Dave Kilzer.
Remove abuse of projectDirPath from WebKit.xcodeproj to fix Production builds.
* WebKit.xcodeproj/project.pbxproj:
2007-11-19 Brady Eidson <beidson@apple.com>
Reviewed by Maciej
* WebKit.xcodeproj/project.pbxproj: Sorted!
2007-11-17 Timothy Hatcher <timothy@apple.com>
Reviewed by Mark Rowe.
Bug 13470: i18n: The Web Inspector is not localizable
http://bugs.webkit.org/show_bug.cgi?id=13470
Update the localized strings and the file encoding of WebInspectorClient.mm.
* English.lproj/Localizable.strings:
* StringsNotToBeLocalized.txt:
* WebKit.xcodeproj/project.pbxproj:
2007-11-16 Mark Rowe <mrowe@apple.com>
Reviewed by Tim Hatcher.
Build WebCore as a sub-framework of WebKit in all configurations.
* WebKit.xcodeproj/project.pbxproj:
2007-11-16 Brady Eidson <beidson@apple.com>
* WebKit.xcodeproj/project.pbxproj: WebDatabaseManagerPrivate.h, also!
2007-11-16 Brady Eidson <beidson@apple.com>
* WebKit.xcodeproj/project.pbxproj: Mark WebSecurityOriginPrivate.h private so
it is exported
2007-11-16 Brady Eidson <beidson@apple.com>
Reviewed by John
Database management API tweaks
* WebKit.xcodeproj/project.pbxproj:
2007-11-15 Brady Eidson <beidson@apple.com>
Reviewed by John
Stubbing out everything required for a WebKit API for databases
* WebKit.xcodeproj/project.pbxproj:
2007-11-12 Adam Roben <aroben@apple.com>
* StringsNotToBeLocalized.txt: Updated.
2007-11-08 Kevin Ollivier <kevino@theolliviers.com>
Adding the wx WebKit implementation.
Reviewed by Mark Rowe.
* wx: Added.
2007-11-07 Mark Rowe <mrowe@apple.com>
Reviewed by Kevin Decker.
Fix 64-bit Mac build.
* WebKit.xcodeproj/project.pbxproj: Change paths specified relative to SRCROOT
to be relative to PROJECT_DIR. PROJECT_DIR takes into account the projectDirPath
setting of the project, which in this instance includes the necessary "mac"
subdirectory.
|