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
|
2008-06-15 Alp Toker <alp@nuanti.com>
Rubber-stamped by Maciej.
Install 'jsc' application by default.
* GNUmakefile.am:
2008-06-08 Alp Toker <alp@nuanti.com>
autotools/GTK+ build system cleanup. Don't include WebKit API in the
WebCore build as it's no longer needed since r34426.
* GNUmakefile.am:
2008-06-08 Alp Toker <alp@nuanti.com>
Rubber-stamped by Mark Rowe.
Bring back -fstrict-aliasing for JavaScriptCore which was removed in
r31821, since aliasing issues have now been fixed.
Use -O3, not -O2 for the JavaScriptCore build.
* GNUmakefile.am:
* configure.ac:
2008-06-05 Christian Dywan <christian@twotoasts.de>
Reviewed by Alp Toker.
https://bugs.webkit.org/show_bug.cgi?id=14141
Please add a version to the Gtk port
* GNUmakefile.am:
2008-06-02 Alp Toker <alp@nuanti.com>
GTK+/autotools Windows build system fixes.
* GNUmakefile.am:
* configure.ac:
2008-06-02 Jan Michael Alonzo <jmalonzo@webkit.org>
Reviewed by Alp Toker.
Build WebCore GTK+ sources as part of WebCore, not WebKit.
Split common and GTK+-specific sources into separate file lists.
* GNUmakefile.am:
2008-06-01 Josh Triplett <josh@freedesktop.org>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=16891
[GTK] autotools build is slow
Add dolt revision 5e9eef10 to the autotools build system. Speeds up
the build, often by a factor of two or more on supported platforms,
otherwise falls back to libtool.
See http://dolt.freedesktop.org for details.
* acinclude.m4: Added.
* configure.ac:
2008-05-25 Jan Michael Alonzo <jmalonzo@webkit.org>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=19142
[Gtk] Remove build options --svg-experimental and --cross-document-messaging
* configure.ac:
2008-05-24 Alp Toker <alp@nuanti.com>
GTK+/Win32 build fixes. Link against Windows ICU without using
icu-config since it's not available on that platform.
Link against Ws2_32 when the curl http backend is chosen since we
use select() directly.
* configure.ac:
2008-05-23 Alp Toker <alp@nuanti.com>
GTK+ fixes for building without database support.
* configure.ac:
2008-05-20 Jan Michael Alonzo <jmalonzo@webkit.org>
Reviewed by Alp Toker.
Fix for previous autotools change.
* configure.ac:
2008-05-20 Jan Michael Alonzo <jmalonzo@webkit.org>
Reviewed by Alp.
http://bugs.webkit.org/show_bug.cgi?id=18483
[Gtk] Autotools should match build-webkit default flags
* configure.ac:
2008-05-19 Alp Toker <alp@nuanti.com>
GTK+ build fix for Mac/Win. Don't check for FreeType/FontConfig when
the Pango font backend is selected.
* GNUmakefile.am:
* configure.ac:
2008-05-16 Julien Chaffraix <jchaffraix@webkit.org>
Reviewed by Eric.
Preparatory work for bug 9191: JS*ElementWrapperFactory should be autogenerated
* configure.ac: Add HTML_FLAGS and set it when video is enabled.
2008-05-15 Ariya Hidayat <ariya.hidayat@trolltech.com>
Reviewed by Simon.
Since WebKitGtk is fully using autotools now, clean-up the .pro/.pri files
from gtk-port.
* WebKit.pri:
* WebKit.pro:
2008-05-09 Anders Carlsson <andersca@apple.com>
Reviewed by Mark.
Add x86_64 rule.
* Makefile:
2008-05-09 Simon Hausmann <hausmann@webkit.org>
Reviewed by Holger.
Removed explicit linkage against libxml and libxslt on Qt/Mac builds.
This dependency is completely unnecessary here and creates only problems by
propagating through WebCore.pro over libQtWebKit.prl right now customer
applications.
* WebKit.pri:
2008-05-02 Anders Carlsson <andersca@apple.com>
Reviewed by Mark.
Add an "x86_64" make rule.
* Makefile.shared:
2008-05-02 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Reviewed by Eric.
https://bugs.webkit.org/show_bug.cgi?id=18811
Enable dashboard and offline web apps in autotools
* configure.ac:
2008-05-01 Marc Ordinas i Llopis <marc.ordinasillopis@collabora.co.uk>
Reviewed by Alp Toker.
https://bugs.webkit.org/show_bug.cgi?id=14750
Added support for NPAPI plugins on Gtk and Qt-x11 ports.
* GNUmakefile.am: Added Xt library.
2008-04-29 David Kilzer <ddkilzer@apple.com>
BUILD FIX for ENABLE(DASHBOARD_SUPPORT)
* configure.ac: Added conditional for ENABLE_DASHBOARD_SUPPORT.
2008-04-22 Alp Toker <alp@nuanti.com>
GTK+ debug build fix for changes in r32257.
* GNUmakefile.am:
2008-04-18 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=16620
[GTK] Autotools make dist and make check support
Cleanups.
* GNUmakefile.am:
2008-04-11 Mark Rowe <mrowe@apple.com>
Rubber-stamped by Antti Koivisto.
* GNUmakefile.am: Disable a warning that GCC 4.3 triggers all over the show.
2008-04-17 Alp Toker <alp@atoker.com>
GTK+ build fix. Back out the libjpeg check part of r32008 from bug
#17865 (reopened).
* configure.ac:
2008-04-17 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=17865
[Gtk] Improve detection of jpeglib and glib tools
Improve detecting jpeglib and glib tools
* configure.ac: Throw an error if the dependencies above are
currently not installed
2008-04-14 Xan Lopez <xan@gnome.org>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=17917
Bug 17917: Cookie support for HTTP soup backend
Bumped the libsoup required version to 2.23 for cookie support.
* configure.ac:
2008-04-11 Mark Rowe <mrowe@apple.com>
Rubber-stamped by Anders Carlsson.
Fix https://bugs.webkit.org/show_bug.cgi?id=18430
Bug 18430: SIGSEGV on amd64 when built with gcc 4.3
GCC 4.3 generates bad code in some instances when working with our HashTables
as some of the HashTable code violates the strict aliasing requirements. Since
GCC 4.2 this code has generated warnings when -fstrict-aliasing is enabled. Until
the code can be fixed to be safe with strict aliasing enabled, we will disable
strict aliasing.
* GNUmakefile.am:
2008-03-12 Michael Emmel <mike.emmel@gmail.com>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=18397
Fix leaving spaces before parens in functions
* WebKitTools/Scripts/wkstyle:
2008-04-07 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Build fix, rubber-stamped and landed by ap.
* configure.ac: Add autoconf flag for HTML5 client-side session and persistent storage support.
2008-03-21 Rodney Dawes <dobey@wayofthemonkey.com>
Reviewed by Holger.
Remove the JSCore include path options from global_cppflags.
Place JSCore include path options in javascriptcore_cppflags.
Add javascriptcore_cppflags to libWebCore_la_CPPFLAGS.
* GNUmakefile.am:
2008-03-20 Jasper Bryant-Greene <jasper@unix.geek.nz>
Reviewed by Anders.
Resolves http://bugs.webkit.org/show_bug.cgi?id=16092
"[GTK] Middle-mouse click should allow opening a URL in a new tab"
Added WebKitNavigationAction object to GTK API
* GNUmakefile.am:
2008-03-12 Xan Lopez <xan@gnome.org>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=15229
Add optional font backend support with freetype and pango
backends. Default is freetype for now.
Original patch by Sven Herzberg <sven@imendio.com>
* configure.ac:
2008-03-11 Xan Lopez <xan@gnome.org>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=16476
Add support for multiple http backends, and add soup backend (off by default).
* GNUmakefile.am:
* configure.ac:
2008-03-07 Simon Hausmann <hausmann@webkit.org>
Reviewed by Darin.
Done with Lars.
Added plugins subdirectory to the include path.
* WebKit.pri:
2008-03-09 Alp Toker <alp@atoker.com>
GTK+ build fix for r30913.
Use UNICODE_CFLAGS for C++ sources as well as C sources.
* GNUmakefile.am:
2008-03-09 Jrg Billeter <j@bitron.ch>
Reviewed by Alp Toker.
Conditionalise ICU for Unicode in the GTK+ port.
* GNUmakefile.am:
* configure.ac:
2008-03-03 Brent Fulgham <bfulgham@gmail.com>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=17644
Build GTK on Mac OS X using native ICU library
Use Apple native ICU libraries when building GTK
webkit on Mac OS.
* configure.ac:
2008-03-02 Brent Fulgham <bfulgham@gmail.com>
Reviewed by Alp Toker.
Add ICU_CPPFLAGS earlier in include path for WebCore
so that we find $(icu_cppflags)/unicode/utf8.h, rather than
the wtf/unicode/UTF8.h on case-insensitive file systems.
* GNUmakefile.am:
2008-03-02 Alp Toker <alp@atoker.com>
Reviewed by Mark Rowe.
Split the WebKit GTK+ build out of the WebCore build and change the
shared object name to match the package name.
* GNUmakefile.am:
2008-02-28 Alp Toker <alp@atoker.com>
Fix a configure script typo spotted by Kalle Vahlman.
* configure.ac:
2008-02-26 Timothy Hatcher <timothy@apple.com>
Reviewed by Darin Adler.
Add "64" and "64u" make rules to allow easy building of 64-bit versions.
make 64: will build Intel-only 64-bit.
make 64u: will build 4-way universal for PPC and Intel.
* Makefile:
* Makefile.shared:
2008-02-23 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Rubber stamped by Darin.
Add separator '\' after libJavaScriptCore_la_LIBADD and cleanup
whitespaces introduced in the previous commit.
* GNUmakefile.am:
2008-02-23 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Rubber-stamped by Darin.
* GNUmakefile.am: Add both GLOBALDEPS and WEBKITDEPS instead of DEPENDENCIES.
* configure.ac: Break dependent modules into GLOBALDEPS and WEBKITDEPS.
2008-02-21 Alp Toker <alp@atoker.com>
Fix a configure script typo.
* configure.ac:
2008-02-21 Alp Toker <alp@atoker.com>
GTK+/autotools SVG experimental build fix
Don't enable SVG filters in --enable-svg-experimental.
This feature isn't supported at all yet. Developers can enable it
explicitly by passing --enable-svg-filters if needed.
* configure.ac:
2008-02-21 Mike Auty <mike.auty@gmail.com>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=17445
[GTK] WebKit doesn't compile with LDFLAGS="-Wl,--as-needed"
The GNUmakefile.am files make use of the LDFLAGS variable to include library
additions such as -ljpeg etc. Unfortunately, if these inclusions aren't made
in LIBADD/LDADD variables, then they are mis-ordered during the linking.
The as-needed flag discards libraries whose functions have not been needed by
earlier libraries, which therefore makes the ordering important.
This moves all -l library inclusion statements from LDFLAGS variables to
LIBADD/LDADD variables.
* GNUmakefile.am:
2008-02-15 Alp Toker <alp@atoker.com>
Reviewed by Holger.
GTK+ configure script cleanups
Categorize the configuration summary printout.
Bump GTK+ requirement to 2.8.
Rename 'webkit_target' to just 'target'.
Don't check for pthread on Win32.
* configure.ac:
2008-02-14 Adam Roben <aroben@apple.com>
Turn on cross-document messaging support by default
Reviewed by Darin.
* configure.ac:
2008-02-14 Adam Roben <aroben@apple.com>
Conditionalize cross-document messaging support
The cross-document messaging parts of HTML 5 are in flux and we want
ports to be able to turn off the support as needed.
Note that the support is turned off by default right now. A subsequent
commit will turn it on by default.
Reviewed by Darin.
* configure.ac:
2008-02-12 Rodney Dawes <dobey@wayofthemonkey.com>
Reviewed by Alp Toker.
Add a --with-hildon argument to configure.ac for adding MAEMO_CHANGES
to the CPPFLAGS for WebCore and WebKit
Add a pkgconfig check for hildon-1 when --with-hildon specified
Output the use of Hildon support in the summary
Add HILDON_CPPFLAGS to webkitgtk_cppflags
Add HILDON_CFLAGS to libWebKitGtk_la_CFLAGS
Add HILDON_LIBS to libWebKitGtk_la_LDFLAGS
* configure.ac:
* GNUmakefile.am:
2008-02-08 Alp Toker <alp@atoker.com>
Rubber-stamped by Maciej.
Bump autoconf CAIRO_REQUIRED_VERSION up to 1.4.
* configure.ac:
2008-02-06 Timothy Hatcher <timothy@apple.com>
Rubber-stamped by Mark Rowe.
Dump of bugs.webkit.org's Bugzilla instance.
* BugsSite: Added.
* BugsSite/.htaccess: Added.
* BugsSite/Bugzilla: Added.
* BugsSite/Bugzilla.pm: Added.
* BugsSite/Bugzilla/.cvsignore: Added.
* BugsSite/Bugzilla/.htaccess: Added.
* BugsSite/Bugzilla/Attachment.pm: Added.
* BugsSite/Bugzilla/Auth: Added.
* BugsSite/Bugzilla/Auth.pm: Added.
* BugsSite/Bugzilla/Auth/Login: Added.
* BugsSite/Bugzilla/Auth/Login/WWW: Added.
* BugsSite/Bugzilla/Auth/Login/WWW.pm: Added.
* BugsSite/Bugzilla/Auth/Login/WWW/CGI: Added.
* BugsSite/Bugzilla/Auth/Login/WWW/CGI.pm: Added.
* BugsSite/Bugzilla/Auth/Login/WWW/CGI/Cookie.pm: Added.
* BugsSite/Bugzilla/Auth/Login/WWW/Env.pm: Added.
* BugsSite/Bugzilla/Auth/README: Added.
* BugsSite/Bugzilla/Auth/Verify: Added.
* BugsSite/Bugzilla/Auth/Verify/DB.pm: Added.
* BugsSite/Bugzilla/Auth/Verify/LDAP.pm: Added.
* BugsSite/Bugzilla/Bug.pm: Added.
* BugsSite/Bugzilla/BugMail.pm: Added.
* BugsSite/Bugzilla/CGI.pm: Added.
* BugsSite/Bugzilla/Chart.pm: Added.
* BugsSite/Bugzilla/Config.pm: Added.
* BugsSite/Bugzilla/Constants.pm: Added.
* BugsSite/Bugzilla/DB: Added.
* BugsSite/Bugzilla/DB.pm: Added.
* BugsSite/Bugzilla/DB/Mysql.pm: Added.
* BugsSite/Bugzilla/DB/Pg.pm: Added.
* BugsSite/Bugzilla/DB/Schema: Added.
* BugsSite/Bugzilla/DB/Schema.pm: Added.
* BugsSite/Bugzilla/DB/Schema/Mysql.pm: Added.
* BugsSite/Bugzilla/DB/Schema/Pg.pm: Added.
* BugsSite/Bugzilla/Error.pm: Added.
* BugsSite/Bugzilla/Flag.pm: Added.
* BugsSite/Bugzilla/FlagType.pm: Added.
* BugsSite/Bugzilla/Group.pm: Added.
* BugsSite/Bugzilla/Search.pm: Added.
* BugsSite/Bugzilla/Series.pm: Added.
* BugsSite/Bugzilla/Template: Added.
* BugsSite/Bugzilla/Template.pm: Added.
* BugsSite/Bugzilla/Template/Plugin: Added.
* BugsSite/Bugzilla/Template/Plugin/Bugzilla.pm: Added.
* BugsSite/Bugzilla/Template/Plugin/Hook.pm: Added.
* BugsSite/Bugzilla/Template/Plugin/User.pm: Added.
* BugsSite/Bugzilla/Token.pm: Added.
* BugsSite/Bugzilla/User: Added.
* BugsSite/Bugzilla/User.pm: Added.
* BugsSite/Bugzilla/User/Setting.pm: Added.
* BugsSite/Bugzilla/Util.pm: Added.
* BugsSite/CGI.pl: Added.
* BugsSite/PrettyPatch: Added.
* BugsSite/PrettyPatch/PrettyPatch.rb: Added.
* BugsSite/PrettyPatch/prettify.rb: Added.
* BugsSite/QUICKSTART: Added.
* BugsSite/README: Added.
* BugsSite/UPGRADING: Added.
* BugsSite/UPGRADING-pre-2.8: Added.
* BugsSite/ant.jpg: Added.
* BugsSite/attachment-aroben.cgi: Added.
* BugsSite/attachment.cgi: Added.
* BugsSite/buglist.cgi: Added.
* BugsSite/bugzilla.dtd: Added.
* BugsSite/chart.cgi: Added.
* BugsSite/checksetup.pl: Added.
* BugsSite/colchange.cgi: Added.
* BugsSite/collectstats.pl: Added.
* BugsSite/config.cgi: Added.
* BugsSite/contrib: Added.
* BugsSite/contrib/BugzillaEmail.pm: Added.
* BugsSite/contrib/README: Added.
* BugsSite/contrib/README.Mailif: Added.
* BugsSite/contrib/bug_email.pl: Added.
* BugsSite/contrib/bugmail_help.html: Added.
* BugsSite/contrib/bugzilla-submit: Added.
* BugsSite/contrib/bugzilla-submit/README: Added.
* BugsSite/contrib/bugzilla-submit/bugdata.txt: Added.
* BugsSite/contrib/bugzilla-submit/bugzilla-submit: Added.
* BugsSite/contrib/bugzilla-submit/bugzilla-submit.xml: Added.
* BugsSite/contrib/bugzilla.procmailrc: Added.
* BugsSite/contrib/bugzilla_email_append.pl: Added.
* BugsSite/contrib/bugzilla_ldapsync.rb: Added.
* BugsSite/contrib/bzdbcopy.pl: Added.
* BugsSite/contrib/cmdline: Added.
* BugsSite/contrib/cmdline/bugcount: Added.
* BugsSite/contrib/cmdline/bugids: Added.
* BugsSite/contrib/cmdline/buglist: Added.
* BugsSite/contrib/cmdline/bugs: Added.
* BugsSite/contrib/cmdline/bugslink: Added.
* BugsSite/contrib/cmdline/makequery: Added.
* BugsSite/contrib/cmdline/query.conf: Added.
* BugsSite/contrib/cvs-update.pl: Added.
* BugsSite/contrib/gnats2bz.pl: Added.
* BugsSite/contrib/gnatsparse: Added.
* BugsSite/contrib/gnatsparse/README: Added.
* BugsSite/contrib/gnatsparse/gnatsparse.py: Added.
* BugsSite/contrib/gnatsparse/magic.py: Added.
* BugsSite/contrib/gnatsparse/specialuu.py: Added.
* BugsSite/contrib/jb2bz.py: Added.
* BugsSite/contrib/mysqld-watcher.pl: Added.
* BugsSite/contrib/sendbugmail.pl: Added.
* BugsSite/contrib/sendunsentbugmail.pl: Added.
* BugsSite/contrib/syncLDAP.pl: Added.
* BugsSite/contrib/yp_nomail.sh: Added.
* BugsSite/createaccount.cgi: Added.
* BugsSite/data: Added.
* BugsSite/data/.htaccess: Added.
* BugsSite/data/attachments: Added.
* BugsSite/data/attachments/.htaccess: Added.
* BugsSite/data/duplicates: Added.
* BugsSite/data/mail: Added.
* BugsSite/data/mimedump-tmp: Added.
* BugsSite/data/mining: Added.
* BugsSite/data/nomail: Added.
* BugsSite/data/params: Added.
* BugsSite/data/template: Added.
* BugsSite/data/template/template: Added.
* BugsSite/data/template/template/en: Added.
* BugsSite/data/template/template/en/custom: Added.
* BugsSite/data/template/template/en/custom/account: Added.
* BugsSite/data/template/template/en/custom/account/auth: Added.
* BugsSite/data/template/template/en/custom/account/auth/ldap-error.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/auth/login-small.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/auth/login.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/cancel-token.txt.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/create.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/created.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/email: Added.
* BugsSite/data/template/template/en/custom/account/email/change-new.txt.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/email/change-old.txt.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/email/confirm.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/exists.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/password: Added.
* BugsSite/data/template/template/en/custom/account/password/forgotten-password.txt.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/password/set-forgotten-password.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/prefs: Added.
* BugsSite/data/template/template/en/custom/account/prefs/account.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/prefs/email.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/prefs/footer.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/prefs/permissions.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/prefs/prefs.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/prefs/saved-searches.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/account/prefs/settings.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin: Added.
* BugsSite/data/template/template/en/custom/admin/classifications: Added.
* BugsSite/data/template/template/en/custom/admin/classifications/add.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/classifications/del.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/classifications/delete.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/classifications/edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/classifications/new.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/classifications/reclassify.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/classifications/select.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/classifications/update.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/components: Added.
* BugsSite/data/template/template/en/custom/admin/components/confirm-delete.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/components/create.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/components/created.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/components/deleted.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/components/edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/components/footer.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/components/list.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/components/select-product.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/components/updated.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/fieldvalues: Added.
* BugsSite/data/template/template/en/custom/admin/fieldvalues/confirm-delete.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/fieldvalues/create.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/fieldvalues/created.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/fieldvalues/deleted.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/fieldvalues/edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/fieldvalues/footer.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/fieldvalues/list.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/fieldvalues/select-field.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/fieldvalues/updated.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/flag-type: Added.
* BugsSite/data/template/template/en/custom/admin/flag-type/confirm-delete.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/flag-type/edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/flag-type/list.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/groups: Added.
* BugsSite/data/template/template/en/custom/admin/groups/change.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/groups/create.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/groups/created.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/groups/delete.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/groups/deleted.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/groups/edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/groups/list.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/groups/remove.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/keywords: Added.
* BugsSite/data/template/template/en/custom/admin/keywords/confirm-delete.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/keywords/create.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/keywords/created.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/keywords/edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/keywords/list.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/keywords/rebuild-cache.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/milestones: Added.
* BugsSite/data/template/template/en/custom/admin/milestones/confirm-delete.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/milestones/create.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/milestones/created.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/milestones/deleted.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/milestones/edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/milestones/footer.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/milestones/list.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/milestones/select-product.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/milestones/updated.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/products: Added.
* BugsSite/data/template/template/en/custom/admin/products/confirm-delete.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/products/deleted.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/products/footer.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/products/groupcontrol: Added.
* BugsSite/data/template/template/en/custom/admin/products/groupcontrol/confirm-edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/products/groupcontrol/edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/products/list-classifications.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/products/list.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/settings: Added.
* BugsSite/data/template/template/en/custom/admin/settings/edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/settings/updated.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/table.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/users: Added.
* BugsSite/data/template/template/en/custom/admin/users/confirm-delete.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/users/create.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/users/edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/users/list.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/users/listselectvars.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/users/search.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/users/userdata.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/versions: Added.
* BugsSite/data/template/template/en/custom/admin/versions/confirm-delete.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/versions/create.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/versions/created.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/versions/deleted.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/versions/edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/versions/footer.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/versions/list.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/versions/select-product.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/admin/versions/updated.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/attachment: Added.
* BugsSite/data/template/template/en/custom/attachment/choose.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/attachment/content-types.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/attachment/create.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/attachment/created.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/attachment/diff-file.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/attachment/diff-footer.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/attachment/diff-header.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/attachment/edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/attachment/list.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/attachment/show-multiple.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/attachment/updated.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug: Added.
* BugsSite/data/template/template/en/custom/bug/activity: Added.
* BugsSite/data/template/template/en/custom/bug/activity/show.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/activity/table.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/choose.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/comments.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/create: Added.
* BugsSite/data/template/template/en/custom/bug/create/comment-guided.txt.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/create/comment.txt.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/create/create-guided.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/create/create.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/create/created.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/create/make-template.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/create/user-message.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/dependency-graph.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/dependency-tree.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/edit.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/knob.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/navigate.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/process: Added.
* BugsSite/data/template/template/en/custom/bug/process/bugmail.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/process/confirm-duplicate.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/process/header.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/process/midair.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/process/next.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/process/results.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/process/verify-new-product.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/show-multiple.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/show.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/show.xml.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/summarize-time.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/time.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/votes: Added.
* BugsSite/data/template/template/en/custom/bug/votes/delete-all.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/votes/list-for-bug.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/bug/votes/list-for-user.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/config.js.tmpl: Added.
* BugsSite/data/template/template/en/custom/config.rdf.tmpl: Added.
* BugsSite/data/template/template/en/custom/flag: Added.
* BugsSite/data/template/template/en/custom/flag/list.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global: Added.
* BugsSite/data/template/template/en/custom/global/banner.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/choose-classification.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/choose-product.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/code-error.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/confirm-user-match.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/field-descs.none.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/footer.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/header.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/help-header.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/help.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/hidden-fields.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/initialize.none.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/message.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/messages.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/select-menu.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/setting-descs.none.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/site-navigation.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/useful-links.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/user-error.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/userselect.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/global/variables.none.tmpl: Added.
* BugsSite/data/template/template/en/custom/index.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/list: Added.
* BugsSite/data/template/template/en/custom/list/change-columns.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/list/edit-multiple.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/list/list-simple.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/list/list.csv.tmpl: Added.
* BugsSite/data/template/template/en/custom/list/list.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/list/list.ics.tmpl: Added.
* BugsSite/data/template/template/en/custom/list/list.js.tmpl: Added.
* BugsSite/data/template/template/en/custom/list/list.rdf.tmpl: Added.
* BugsSite/data/template/template/en/custom/list/list.rss.tmpl: Added.
* BugsSite/data/template/template/en/custom/list/quips.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/list/server-push.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/list/table.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/pages: Added.
* BugsSite/data/template/template/en/custom/pages/bug-writing.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/pages/fields.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/pages/linked.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/pages/linkify.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/pages/voting.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports: Added.
* BugsSite/data/template/template/en/custom/reports/chart.csv.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/chart.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/chart.png.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/components.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/create-chart.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/duplicates-simple.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/duplicates-table.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/duplicates.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/duplicates.rdf.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/edit-series.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/keywords.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/menu.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/report-bar.png.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/report-line.png.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/report-pie.png.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/report-simple.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/report-table.csv.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/report-table.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/report.csv.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/report.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/series-common.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/reports/series.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/request: Added.
* BugsSite/data/template/template/en/custom/request/email.txt.tmpl: Added.
* BugsSite/data/template/template/en/custom/request/queue.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/search: Added.
* BugsSite/data/template/template/en/custom/search/boolean-charts.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/search/form.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/search/knob.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/search/search-advanced.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/search/search-create-series.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/search/search-help.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/search/search-report-graph.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/search/search-report-select.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/search/search-report-table.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/search/search-specific.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/search/tabs.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/sidebar.xul.tmpl: Added.
* BugsSite/data/template/template/en/custom/whine: Added.
* BugsSite/data/template/template/en/custom/whine/mail.html.tmpl: Added.
* BugsSite/data/template/template/en/custom/whine/mail.txt.tmpl: Added.
* BugsSite/data/template/template/en/custom/whine/multipart-mime.txt.tmpl: Added.
* BugsSite/data/template/template/en/custom/whine/schedule.html.tmpl: Added.
* BugsSite/data/template/template/en/default: Added.
* BugsSite/data/template/template/en/default/attachment: Added.
* BugsSite/data/template/template/en/default/attachment/edit-aroben.html.tmpl: Added.
* BugsSite/data/template/template/en/default/list: Added.
* BugsSite/data/template/template/en/default/list/list.atom.tmpl: Added.
* BugsSite/data/versioncache: Added.
* BugsSite/data/versioncache.13P9L: Added.
* BugsSite/data/versioncache.1lH1E: Added.
* BugsSite/data/versioncache.3AnHd: Added.
* BugsSite/data/versioncache.3Jmjt: Added.
* BugsSite/data/versioncache.3JzIL: Added.
* BugsSite/data/versioncache.77b4y: Added.
* BugsSite/data/versioncache.7VzyU: Added.
* BugsSite/data/versioncache.EQdAm: Added.
* BugsSite/data/versioncache.EouAG: Added.
* BugsSite/data/versioncache.LJ5n1: Added.
* BugsSite/data/versioncache.Lb0fW: Added.
* BugsSite/data/versioncache.PyAd8: Added.
* BugsSite/data/versioncache.SFyse: Added.
* BugsSite/data/versioncache.SkTTg: Added.
* BugsSite/data/versioncache.VVO7E: Added.
* BugsSite/data/versioncache.XbxgU: Added.
* BugsSite/data/versioncache.Yezqr: Added.
* BugsSite/data/versioncache.dtzIv: Added.
* BugsSite/data/versioncache.jzpeh: Added.
* BugsSite/data/versioncache.pbn6U: Added.
* BugsSite/data/versioncache.qyixS: Added.
* BugsSite/data/versioncache.sBMdb: Added.
* BugsSite/data/versioncache.xNi34: Added.
* BugsSite/data/webdot: Added.
* BugsSite/data/webdot/.htaccess: Added.
* BugsSite/data/webdot/0ZLH3QpFd8.dot: Added.
* BugsSite/data/webdot/3s6e7eC2Dy.dot: Added.
* BugsSite/data/webdot/6MW0q54cyY.dot: Added.
* BugsSite/data/webdot/A2RlhPdO2Q.dot: Added.
* BugsSite/data/webdot/DuBX4I4946.dot: Added.
* BugsSite/data/webdot/GudTgvrKBX.dot: Added.
* BugsSite/data/webdot/I1mCbLtAzQ.dot: Added.
* BugsSite/data/webdot/JtKgvWGVb4.dot: Added.
* BugsSite/data/webdot/RFk4bjAwYc.dot: Added.
* BugsSite/data/webdot/YQ1pWFVfqt.dot: Added.
* BugsSite/data/webdot/YcFUepShZI.dot: Added.
* BugsSite/data/webdot/a9i00KgTQk.dot: Added.
* BugsSite/data/webdot/c412GYaHch.dot: Added.
* BugsSite/data/webdot/hjYnYr3tV1.dot: Added.
* BugsSite/data/webdot/pq3Qw7wynI.dot: Added.
* BugsSite/data/webdot/tL7GjA7bqH.dot: Added.
* BugsSite/defparams.pl: Added.
* BugsSite/describecomponents.cgi: Added.
* BugsSite/describekeywords.cgi: Added.
* BugsSite/describekeywords.cgi.bak: Added.
* BugsSite/docs: Added.
* BugsSite/docs/.cvsignore: Added.
* BugsSite/docs/README.docs: Added.
* BugsSite/docs/html: Added.
* BugsSite/docs/html/Bugzilla-Guide.html: Added.
* BugsSite/docs/html/about.html: Added.
* BugsSite/docs/html/administration.html: Added.
* BugsSite/docs/html/bug_page.html: Added.
* BugsSite/docs/html/bugreports.html: Added.
* BugsSite/docs/html/cmdline-bugmail.html: Added.
* BugsSite/docs/html/cmdline.html: Added.
* BugsSite/docs/html/components.html: Added.
* BugsSite/docs/html/configuration.html: Added.
* BugsSite/docs/html/conventions.html: Added.
* BugsSite/docs/html/copyright.html: Added.
* BugsSite/docs/html/credits.html: Added.
* BugsSite/docs/html/cust-change-permissions.html: Added.
* BugsSite/docs/html/cust-hooks.html: Added.
* BugsSite/docs/html/cust-templates.html: Added.
* BugsSite/docs/html/customization.html: Added.
* BugsSite/docs/html/dbdoc.html: Added.
* BugsSite/docs/html/dbmodify.html: Added.
* BugsSite/docs/html/disclaimer.html: Added.
* BugsSite/docs/html/extraconfig.html: Added.
* BugsSite/docs/html/faq.html: Added.
* BugsSite/docs/html/flags-overview.html: Added.
* BugsSite/docs/html/flags.html: Added.
* BugsSite/docs/html/general-advice.html: Added.
* BugsSite/docs/html/gfdl-0.html: Added.
* BugsSite/docs/html/gfdl-1.html: Added.
* BugsSite/docs/html/gfdl-10.html: Added.
* BugsSite/docs/html/gfdl-2.html: Added.
* BugsSite/docs/html/gfdl-3.html: Added.
* BugsSite/docs/html/gfdl-4.html: Added.
* BugsSite/docs/html/gfdl-5.html: Added.
* BugsSite/docs/html/gfdl-6.html: Added.
* BugsSite/docs/html/gfdl-7.html: Added.
* BugsSite/docs/html/gfdl-8.html: Added.
* BugsSite/docs/html/gfdl-9.html: Added.
* BugsSite/docs/html/gfdl-howto.html: Added.
* BugsSite/docs/html/gfdl.html: Added.
* BugsSite/docs/html/glossary.html: Added.
* BugsSite/docs/html/groups.html: Added.
* BugsSite/docs/html/hintsandtips.html: Added.
* BugsSite/docs/html/index.html: Added.
* BugsSite/docs/html/install-perlmodules-manual.html: Added.
* BugsSite/docs/html/installation.html: Added.
* BugsSite/docs/html/installing-bugzilla.html: Added.
* BugsSite/docs/html/integration.html: Added.
* BugsSite/docs/html/lifecycle.html: Added.
* BugsSite/docs/html/list.html: Added.
* BugsSite/docs/html/milestones.html: Added.
* BugsSite/docs/html/modules-manual-download.html: Added.
* BugsSite/docs/html/modules-manual-instructions.html: Added.
* BugsSite/docs/html/modules-manual-optional.html: Added.
* BugsSite/docs/html/myaccount.html: Added.
* BugsSite/docs/html/newversions.html: Added.
* BugsSite/docs/html/nonroot.html: Added.
* BugsSite/docs/html/os-specific.html: Added.
* BugsSite/docs/html/parameters.html: Added.
* BugsSite/docs/html/paranoid-security.html: Added.
* BugsSite/docs/html/patches.html: Added.
* BugsSite/docs/html/patchviewer.html: Added.
* BugsSite/docs/html/products.html: Added.
* BugsSite/docs/html/query.html: Added.
* BugsSite/docs/html/quips.html: Added.
* BugsSite/docs/html/reporting.html: Added.
* BugsSite/docs/html/security-bugzilla.html: Added.
* BugsSite/docs/html/security-mysql.html: Added.
* BugsSite/docs/html/security-os.html: Added.
* BugsSite/docs/html/security-webserver.html: Added.
* BugsSite/docs/html/security.html: Added.
* BugsSite/docs/html/trbl-bundlebugzilla.html: Added.
* BugsSite/docs/html/trbl-dbdsponge.html: Added.
* BugsSite/docs/html/trbl-index.html: Added.
* BugsSite/docs/html/trbl-passwd-encryption.html: Added.
* BugsSite/docs/html/trbl-perlmodule.html: Added.
* BugsSite/docs/html/trbl-relogin-everyone.html: Added.
* BugsSite/docs/html/trbl-testserver.html: Added.
* BugsSite/docs/html/trouble-filetemp.html: Added.
* BugsSite/docs/html/troubleshooting.html: Added.
* BugsSite/docs/html/upgrading.html: Added.
* BugsSite/docs/html/useradmin.html: Added.
* BugsSite/docs/html/userpreferences.html: Added.
* BugsSite/docs/html/using-intro.html: Added.
* BugsSite/docs/html/using.html: Added.
* BugsSite/docs/html/versions.html: Added.
* BugsSite/docs/html/voting.html: Added.
* BugsSite/docs/html/whining.html: Added.
* BugsSite/docs/html/x3190.html: Added.
* BugsSite/docs/images: Added.
* BugsSite/docs/images/bzLifecycle.png: Added.
* BugsSite/docs/images/bzLifecycle.xml: Added.
* BugsSite/docs/images/callouts: Added.
* BugsSite/docs/images/callouts/1.gif: Added.
* BugsSite/docs/images/callouts/2.gif: Added.
* BugsSite/docs/images/callouts/3.gif: Added.
* BugsSite/docs/images/caution.gif: Added.
* BugsSite/docs/images/note.gif: Added.
* BugsSite/docs/images/tip.gif: Added.
* BugsSite/docs/images/warning.gif: Added.
* BugsSite/docs/makedocs.pl: Added.
* BugsSite/docs/pdf: Added.
* BugsSite/docs/pdf/Bugzilla-Guide.pdf: Added.
* BugsSite/docs/rel_notes.txt: Added.
* BugsSite/docs/txt: Added.
* BugsSite/docs/txt/Bugzilla-Guide.txt: Added.
* BugsSite/docs/xml: Added.
* BugsSite/docs/xml/Bugzilla-Guide.xml: Added.
* BugsSite/docs/xml/about.xml: Added.
* BugsSite/docs/xml/administration.xml: Added.
* BugsSite/docs/xml/conventions.xml: Added.
* BugsSite/docs/xml/customization.xml: Added.
* BugsSite/docs/xml/dbschema.mysql: Added.
* BugsSite/docs/xml/faq.xml: Added.
* BugsSite/docs/xml/filetemp.patch: Added.
* BugsSite/docs/xml/gfdl.xml: Added.
* BugsSite/docs/xml/glossary.xml: Added.
* BugsSite/docs/xml/index.xml: Added.
* BugsSite/docs/xml/installation.xml: Added.
* BugsSite/docs/xml/integration.xml: Added.
* BugsSite/docs/xml/introduction.xml: Added.
* BugsSite/docs/xml/modules.xml: Added.
* BugsSite/docs/xml/patches.xml: Added.
* BugsSite/docs/xml/requiredsoftware.xml: Added.
* BugsSite/docs/xml/security.xml: Added.
* BugsSite/docs/xml/troubleshooting.xml: Added.
* BugsSite/docs/xml/using.xml: Added.
* BugsSite/doeditparams.cgi: Added.
* BugsSite/duplicates.cgi: Added.
* BugsSite/duplicates.xul: Added.
* BugsSite/editclassifications.cgi: Added.
* BugsSite/editcomponents.cgi: Added.
* BugsSite/editflagtypes.cgi: Added.
* BugsSite/editgroups.cgi: Added.
* BugsSite/editkeywords.cgi: Added.
* BugsSite/editmilestones.cgi: Added.
* BugsSite/editparams.cgi: Added.
* BugsSite/editproducts.cgi: Added.
* BugsSite/editsettings.cgi: Added.
* BugsSite/editusers.cgi: Added.
* BugsSite/editvalues.cgi: Added.
* BugsSite/editversions.cgi: Added.
* BugsSite/editwhines.cgi: Added.
* BugsSite/enter_bug.cgi: Added.
* BugsSite/favicon.ico: Added.
* BugsSite/globals.pl: Added.
* BugsSite/graphs: Added.
* BugsSite/images: Added.
* BugsSite/images/padlock.png: Added.
* BugsSite/importxml.pl: Added.
* BugsSite/index.cgi: Added.
* BugsSite/js: Added.
* BugsSite/js/duplicates.js: Added.
* BugsSite/js/productform.js: Added.
* BugsSite/localconfig.js: Added.
* BugsSite/long_list.cgi: Added.
* BugsSite/move.pl: Added.
* BugsSite/page.cgi: Added.
* BugsSite/post_bug.cgi: Added.
* BugsSite/process_bug.cgi: Added.
* BugsSite/productmenu.js: Added.
* BugsSite/query.cgi: Added.
* BugsSite/quicksearch.html: Added.
* BugsSite/quicksearch.js: Added.
* BugsSite/quicksearchhack.html: Added.
* BugsSite/quips.cgi: Added.
* BugsSite/relogin.cgi: Added.
* BugsSite/report.cgi: Added.
* BugsSite/reports.cgi: Added.
* BugsSite/request.cgi: Added.
* BugsSite/robots.txt: Added.
* BugsSite/runtests.pl: Added.
* BugsSite/sanitycheck.cgi: Added.
* BugsSite/show_activity.cgi: Added.
* BugsSite/show_bug.cgi: Added.
* BugsSite/showattachment.cgi: Added.
* BugsSite/showdependencygraph.cgi: Added.
* BugsSite/showdependencytree.cgi: Added.
* BugsSite/sidebar.cgi: Added.
* BugsSite/skins: Added.
* BugsSite/skins/.cvsignore: Added.
* BugsSite/skins/custom: Added.
* BugsSite/skins/custom/admin.css: Added.
* BugsSite/skins/custom/buglist.css: Added.
* BugsSite/skins/custom/duplicates.css: Added.
* BugsSite/skins/custom/editusers.css: Added.
* BugsSite/skins/custom/global.css: Added.
* BugsSite/skins/custom/index.css: Added.
* BugsSite/skins/custom/opendarwin.gif: Added.
* BugsSite/skins/custom/panel.css: Added.
* BugsSite/skins/custom/show_multiple.css: Added.
* BugsSite/skins/custom/summarize-time.css: Added.
* BugsSite/skins/custom/voting.css: Added.
* BugsSite/skins/standard: Added.
* BugsSite/skins/standard/admin.css: Added.
* BugsSite/skins/standard/buglist.css: Added.
* BugsSite/skins/standard/duplicates.css: Added.
* BugsSite/skins/standard/editusers.css: Added.
* BugsSite/skins/standard/global: Added.
* BugsSite/skins/standard/global.css: Added.
* BugsSite/skins/standard/global/body-back.gif: Added.
* BugsSite/skins/standard/global/header.png: Added.
* BugsSite/skins/standard/index: Added.
* BugsSite/skins/standard/index.css: Added.
* BugsSite/skins/standard/index/front.jpg: Added.
* BugsSite/skins/standard/index/front.png: Added.
* BugsSite/skins/standard/panel.css: Added.
* BugsSite/skins/standard/show_multiple.css: Added.
* BugsSite/skins/standard/summarize-time.css: Added.
* BugsSite/skins/standard/voting.css: Added.
* BugsSite/summarize_time.cgi: Added.
* BugsSite/t: Added.
* BugsSite/t/001compile.t: Added.
* BugsSite/t/002goodperl.t: Added.
* BugsSite/t/003safesys.t: Added.
* BugsSite/t/004template.t: Added.
* BugsSite/t/005no_tabs.t: Added.
* BugsSite/t/006spellcheck.t: Added.
* BugsSite/t/007util.t: Added.
* BugsSite/t/008filter.t: Added.
* BugsSite/t/009bugwords.t: Added.
* BugsSite/t/011pod.t: Added.
* BugsSite/t/Support: Added.
* BugsSite/t/Support/Files.pm: Added.
* BugsSite/t/Support/Systemexec.pm: Added.
* BugsSite/t/Support/Templates.pm: Added.
* BugsSite/t/testchart.gif: Added.
* BugsSite/t/testchart.png: Added.
* BugsSite/t/testgd.png: Added.
* BugsSite/template: Added.
* BugsSite/template/.cvsignore: Added.
* BugsSite/template/.htaccess: Added.
* BugsSite/template/en: Added.
* BugsSite/template/en/.cvsignore: Added.
* BugsSite/template/en/custom: Added.
* BugsSite/template/en/custom/account: Added.
* BugsSite/template/en/custom/account/auth: Added.
* BugsSite/template/en/custom/account/auth/ldap-error.html.tmpl: Added.
* BugsSite/template/en/custom/account/auth/login-small.html.tmpl: Added.
* BugsSite/template/en/custom/account/auth/login.html.tmpl: Added.
* BugsSite/template/en/custom/account/cancel-token.txt.tmpl: Added.
* BugsSite/template/en/custom/account/create.html.tmpl: Added.
* BugsSite/template/en/custom/account/created.html.tmpl: Added.
* BugsSite/template/en/custom/account/email: Added.
* BugsSite/template/en/custom/account/email/change-new.txt.tmpl: Added.
* BugsSite/template/en/custom/account/email/change-old.txt.tmpl: Added.
* BugsSite/template/en/custom/account/email/confirm.html.tmpl: Added.
* BugsSite/template/en/custom/account/exists.html.tmpl: Added.
* BugsSite/template/en/custom/account/password: Added.
* BugsSite/template/en/custom/account/password/forgotten-password.txt.tmpl: Added.
* BugsSite/template/en/custom/account/password/set-forgotten-password.html.tmpl: Added.
* BugsSite/template/en/custom/account/prefs: Added.
* BugsSite/template/en/custom/account/prefs/account.html.tmpl: Added.
* BugsSite/template/en/custom/account/prefs/email.html.tmpl: Added.
* BugsSite/template/en/custom/account/prefs/footer.html.tmpl: Added.
* BugsSite/template/en/custom/account/prefs/permissions.html.tmpl: Added.
* BugsSite/template/en/custom/account/prefs/prefs.html.tmpl: Added.
* BugsSite/template/en/custom/account/prefs/saved-searches.html.tmpl: Added.
* BugsSite/template/en/custom/account/prefs/settings.html.tmpl: Added.
* BugsSite/template/en/custom/admin: Added.
* BugsSite/template/en/custom/admin/classifications: Added.
* BugsSite/template/en/custom/admin/classifications/add.html.tmpl: Added.
* BugsSite/template/en/custom/admin/classifications/del.html.tmpl: Added.
* BugsSite/template/en/custom/admin/classifications/delete.html.tmpl: Added.
* BugsSite/template/en/custom/admin/classifications/edit.html.tmpl: Added.
* BugsSite/template/en/custom/admin/classifications/new.html.tmpl: Added.
* BugsSite/template/en/custom/admin/classifications/reclassify.html.tmpl: Added.
* BugsSite/template/en/custom/admin/classifications/select.html.tmpl: Added.
* BugsSite/template/en/custom/admin/classifications/update.html.tmpl: Added.
* BugsSite/template/en/custom/admin/components: Added.
* BugsSite/template/en/custom/admin/components/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/custom/admin/components/create.html.tmpl: Added.
* BugsSite/template/en/custom/admin/components/created.html.tmpl: Added.
* BugsSite/template/en/custom/admin/components/deleted.html.tmpl: Added.
* BugsSite/template/en/custom/admin/components/edit.html.tmpl: Added.
* BugsSite/template/en/custom/admin/components/footer.html.tmpl: Added.
* BugsSite/template/en/custom/admin/components/list.html.tmpl: Added.
* BugsSite/template/en/custom/admin/components/select-product.html.tmpl: Added.
* BugsSite/template/en/custom/admin/components/updated.html.tmpl: Added.
* BugsSite/template/en/custom/admin/fieldvalues: Added.
* BugsSite/template/en/custom/admin/fieldvalues/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/custom/admin/fieldvalues/create.html.tmpl: Added.
* BugsSite/template/en/custom/admin/fieldvalues/created.html.tmpl: Added.
* BugsSite/template/en/custom/admin/fieldvalues/deleted.html.tmpl: Added.
* BugsSite/template/en/custom/admin/fieldvalues/edit.html.tmpl: Added.
* BugsSite/template/en/custom/admin/fieldvalues/footer.html.tmpl: Added.
* BugsSite/template/en/custom/admin/fieldvalues/list.html.tmpl: Added.
* BugsSite/template/en/custom/admin/fieldvalues/select-field.html.tmpl: Added.
* BugsSite/template/en/custom/admin/fieldvalues/updated.html.tmpl: Added.
* BugsSite/template/en/custom/admin/flag-type: Added.
* BugsSite/template/en/custom/admin/flag-type/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/custom/admin/flag-type/edit.html.tmpl: Added.
* BugsSite/template/en/custom/admin/flag-type/list.html.tmpl: Added.
* BugsSite/template/en/custom/admin/groups: Added.
* BugsSite/template/en/custom/admin/groups/change.html.tmpl: Added.
* BugsSite/template/en/custom/admin/groups/create.html.tmpl: Added.
* BugsSite/template/en/custom/admin/groups/created.html.tmpl: Added.
* BugsSite/template/en/custom/admin/groups/delete.html.tmpl: Added.
* BugsSite/template/en/custom/admin/groups/deleted.html.tmpl: Added.
* BugsSite/template/en/custom/admin/groups/edit.html.tmpl: Added.
* BugsSite/template/en/custom/admin/groups/list.html.tmpl: Added.
* BugsSite/template/en/custom/admin/groups/remove.html.tmpl: Added.
* BugsSite/template/en/custom/admin/keywords: Added.
* BugsSite/template/en/custom/admin/keywords/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/custom/admin/keywords/create.html.tmpl: Added.
* BugsSite/template/en/custom/admin/keywords/created.html.tmpl: Added.
* BugsSite/template/en/custom/admin/keywords/edit.html.tmpl: Added.
* BugsSite/template/en/custom/admin/keywords/list.html.tmpl: Added.
* BugsSite/template/en/custom/admin/keywords/rebuild-cache.html.tmpl: Added.
* BugsSite/template/en/custom/admin/milestones: Added.
* BugsSite/template/en/custom/admin/milestones/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/custom/admin/milestones/create.html.tmpl: Added.
* BugsSite/template/en/custom/admin/milestones/created.html.tmpl: Added.
* BugsSite/template/en/custom/admin/milestones/deleted.html.tmpl: Added.
* BugsSite/template/en/custom/admin/milestones/edit.html.tmpl: Added.
* BugsSite/template/en/custom/admin/milestones/footer.html.tmpl: Added.
* BugsSite/template/en/custom/admin/milestones/list.html.tmpl: Added.
* BugsSite/template/en/custom/admin/milestones/select-product.html.tmpl: Added.
* BugsSite/template/en/custom/admin/milestones/updated.html.tmpl: Added.
* BugsSite/template/en/custom/admin/products: Added.
* BugsSite/template/en/custom/admin/products/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/custom/admin/products/deleted.html.tmpl: Added.
* BugsSite/template/en/custom/admin/products/footer.html.tmpl: Added.
* BugsSite/template/en/custom/admin/products/groupcontrol: Added.
* BugsSite/template/en/custom/admin/products/groupcontrol/confirm-edit.html.tmpl: Added.
* BugsSite/template/en/custom/admin/products/groupcontrol/edit.html.tmpl: Added.
* BugsSite/template/en/custom/admin/products/list-classifications.html.tmpl: Added.
* BugsSite/template/en/custom/admin/products/list.html.tmpl: Added.
* BugsSite/template/en/custom/admin/settings: Added.
* BugsSite/template/en/custom/admin/settings/edit.html.tmpl: Added.
* BugsSite/template/en/custom/admin/settings/updated.html.tmpl: Added.
* BugsSite/template/en/custom/admin/table.html.tmpl: Added.
* BugsSite/template/en/custom/admin/users: Added.
* BugsSite/template/en/custom/admin/users/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/custom/admin/users/create.html.tmpl: Added.
* BugsSite/template/en/custom/admin/users/edit.html.tmpl: Added.
* BugsSite/template/en/custom/admin/users/list.html.tmpl: Added.
* BugsSite/template/en/custom/admin/users/listselectvars.html.tmpl: Added.
* BugsSite/template/en/custom/admin/users/search.html.tmpl: Added.
* BugsSite/template/en/custom/admin/users/userdata.html.tmpl: Added.
* BugsSite/template/en/custom/admin/versions: Added.
* BugsSite/template/en/custom/admin/versions/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/custom/admin/versions/create.html.tmpl: Added.
* BugsSite/template/en/custom/admin/versions/created.html.tmpl: Added.
* BugsSite/template/en/custom/admin/versions/deleted.html.tmpl: Added.
* BugsSite/template/en/custom/admin/versions/edit.html.tmpl: Added.
* BugsSite/template/en/custom/admin/versions/footer.html.tmpl: Added.
* BugsSite/template/en/custom/admin/versions/list.html.tmpl: Added.
* BugsSite/template/en/custom/admin/versions/select-product.html.tmpl: Added.
* BugsSite/template/en/custom/admin/versions/updated.html.tmpl: Added.
* BugsSite/template/en/custom/attachment: Added.
* BugsSite/template/en/custom/attachment/choose.html.tmpl: Added.
* BugsSite/template/en/custom/attachment/content-types.html.tmpl: Added.
* BugsSite/template/en/custom/attachment/create.html.tmpl: Added.
* BugsSite/template/en/custom/attachment/created.html.tmpl: Added.
* BugsSite/template/en/custom/attachment/diff-file.html.tmpl: Added.
* BugsSite/template/en/custom/attachment/diff-footer.html.tmpl: Added.
* BugsSite/template/en/custom/attachment/diff-header.html.tmpl: Added.
* BugsSite/template/en/custom/attachment/edit.html.tmpl: Added.
* BugsSite/template/en/custom/attachment/list.html.tmpl: Added.
* BugsSite/template/en/custom/attachment/show-multiple.html.tmpl: Added.
* BugsSite/template/en/custom/attachment/updated.html.tmpl: Added.
* BugsSite/template/en/custom/bug: Added.
* BugsSite/template/en/custom/bug/activity: Added.
* BugsSite/template/en/custom/bug/activity/show.html.tmpl: Added.
* BugsSite/template/en/custom/bug/activity/table.html.tmpl: Added.
* BugsSite/template/en/custom/bug/choose.html.tmpl: Added.
* BugsSite/template/en/custom/bug/comments.html.tmpl: Added.
* BugsSite/template/en/custom/bug/create: Added.
* BugsSite/template/en/custom/bug/create/comment-guided.txt.tmpl: Added.
* BugsSite/template/en/custom/bug/create/comment.txt.tmpl: Added.
* BugsSite/template/en/custom/bug/create/create-guided.html.tmpl: Added.
* BugsSite/template/en/custom/bug/create/create.html.tmpl: Added.
* BugsSite/template/en/custom/bug/create/created.html.tmpl: Added.
* BugsSite/template/en/custom/bug/create/make-template.html.tmpl: Added.
* BugsSite/template/en/custom/bug/create/user-message.html.tmpl: Added.
* BugsSite/template/en/custom/bug/dependency-graph.html.tmpl: Added.
* BugsSite/template/en/custom/bug/dependency-tree.html.tmpl: Added.
* BugsSite/template/en/custom/bug/edit.html.tmpl: Added.
* BugsSite/template/en/custom/bug/knob.html.tmpl: Added.
* BugsSite/template/en/custom/bug/navigate.html.tmpl: Added.
* BugsSite/template/en/custom/bug/process: Added.
* BugsSite/template/en/custom/bug/process/bugmail.html.tmpl: Added.
* BugsSite/template/en/custom/bug/process/confirm-duplicate.html.tmpl: Added.
* BugsSite/template/en/custom/bug/process/header.html.tmpl: Added.
* BugsSite/template/en/custom/bug/process/midair.html.tmpl: Added.
* BugsSite/template/en/custom/bug/process/next.html.tmpl: Added.
* BugsSite/template/en/custom/bug/process/results.html.tmpl: Added.
* BugsSite/template/en/custom/bug/process/verify-new-product.html.tmpl: Added.
* BugsSite/template/en/custom/bug/show-multiple.html.tmpl: Added.
* BugsSite/template/en/custom/bug/show.html.tmpl: Added.
* BugsSite/template/en/custom/bug/show.xml.tmpl: Added.
* BugsSite/template/en/custom/bug/summarize-time.html.tmpl: Added.
* BugsSite/template/en/custom/bug/time.html.tmpl: Added.
* BugsSite/template/en/custom/bug/votes: Added.
* BugsSite/template/en/custom/bug/votes/delete-all.html.tmpl: Added.
* BugsSite/template/en/custom/bug/votes/list-for-bug.html.tmpl: Added.
* BugsSite/template/en/custom/bug/votes/list-for-user.html.tmpl: Added.
* BugsSite/template/en/custom/config.js.tmpl: Added.
* BugsSite/template/en/custom/config.rdf.tmpl: Added.
* BugsSite/template/en/custom/filterexceptions.pl: Added.
* BugsSite/template/en/custom/flag: Added.
* BugsSite/template/en/custom/flag/list.html.tmpl: Added.
* BugsSite/template/en/custom/global: Added.
* BugsSite/template/en/custom/global/banner.html.tmpl: Added.
* BugsSite/template/en/custom/global/choose-classification.html.tmpl: Added.
* BugsSite/template/en/custom/global/choose-product.html.tmpl: Added.
* BugsSite/template/en/custom/global/code-error.html.tmpl: Added.
* BugsSite/template/en/custom/global/confirm-user-match.html.tmpl: Added.
* BugsSite/template/en/custom/global/field-descs.none.tmpl: Added.
* BugsSite/template/en/custom/global/footer.html.tmpl: Added.
* BugsSite/template/en/custom/global/header.html.tmpl: Added.
* BugsSite/template/en/custom/global/help-header.html.tmpl: Added.
* BugsSite/template/en/custom/global/help.html.tmpl: Added.
* BugsSite/template/en/custom/global/hidden-fields.html.tmpl: Added.
* BugsSite/template/en/custom/global/initialize.none.tmpl: Added.
* BugsSite/template/en/custom/global/message.html.tmpl: Added.
* BugsSite/template/en/custom/global/messages.html.tmpl: Added.
* BugsSite/template/en/custom/global/select-menu.html.tmpl: Added.
* BugsSite/template/en/custom/global/setting-descs.none.tmpl: Added.
* BugsSite/template/en/custom/global/site-navigation.html.tmpl: Added.
* BugsSite/template/en/custom/global/useful-links.html.tmpl: Added.
* BugsSite/template/en/custom/global/user-error.html.tmpl: Added.
* BugsSite/template/en/custom/global/userselect.html.tmpl: Added.
* BugsSite/template/en/custom/global/variables.none.tmpl: Added.
* BugsSite/template/en/custom/index.html.tmpl: Added.
* BugsSite/template/en/custom/list: Added.
* BugsSite/template/en/custom/list/change-columns.html.tmpl: Added.
* BugsSite/template/en/custom/list/edit-multiple.html.tmpl: Added.
* BugsSite/template/en/custom/list/list-simple.html.tmpl: Added.
* BugsSite/template/en/custom/list/list.csv.tmpl: Added.
* BugsSite/template/en/custom/list/list.html.tmpl: Added.
* BugsSite/template/en/custom/list/list.ics.tmpl: Added.
* BugsSite/template/en/custom/list/list.js.tmpl: Added.
* BugsSite/template/en/custom/list/list.rdf.tmpl: Added.
* BugsSite/template/en/custom/list/list.rss.tmpl: Added.
* BugsSite/template/en/custom/list/quips.html.tmpl: Added.
* BugsSite/template/en/custom/list/server-push.html.tmpl: Added.
* BugsSite/template/en/custom/list/table.html.tmpl: Added.
* BugsSite/template/en/custom/pages: Added.
* BugsSite/template/en/custom/pages/bug-writing.html.tmpl: Added.
* BugsSite/template/en/custom/pages/fields.html.tmpl: Added.
* BugsSite/template/en/custom/pages/linked.html.tmpl: Added.
* BugsSite/template/en/custom/pages/linkify.html.tmpl: Added.
* BugsSite/template/en/custom/pages/voting.html.tmpl: Added.
* BugsSite/template/en/custom/reports: Added.
* BugsSite/template/en/custom/reports/chart.csv.tmpl: Added.
* BugsSite/template/en/custom/reports/chart.html.tmpl: Added.
* BugsSite/template/en/custom/reports/chart.png.tmpl: Added.
* BugsSite/template/en/custom/reports/components.html.tmpl: Added.
* BugsSite/template/en/custom/reports/create-chart.html.tmpl: Added.
* BugsSite/template/en/custom/reports/duplicates-simple.html.tmpl: Added.
* BugsSite/template/en/custom/reports/duplicates-table.html.tmpl: Added.
* BugsSite/template/en/custom/reports/duplicates.html.tmpl: Added.
* BugsSite/template/en/custom/reports/duplicates.rdf.tmpl: Added.
* BugsSite/template/en/custom/reports/edit-series.html.tmpl: Added.
* BugsSite/template/en/custom/reports/keywords.html.tmpl: Added.
* BugsSite/template/en/custom/reports/menu.html.tmpl: Added.
* BugsSite/template/en/custom/reports/report-bar.png.tmpl: Added.
* BugsSite/template/en/custom/reports/report-line.png.tmpl: Added.
* BugsSite/template/en/custom/reports/report-pie.png.tmpl: Added.
* BugsSite/template/en/custom/reports/report-simple.html.tmpl: Added.
* BugsSite/template/en/custom/reports/report-table.csv.tmpl: Added.
* BugsSite/template/en/custom/reports/report-table.html.tmpl: Added.
* BugsSite/template/en/custom/reports/report.csv.tmpl: Added.
* BugsSite/template/en/custom/reports/report.html.tmpl: Added.
* BugsSite/template/en/custom/reports/series-common.html.tmpl: Added.
* BugsSite/template/en/custom/reports/series.html.tmpl: Added.
* BugsSite/template/en/custom/request: Added.
* BugsSite/template/en/custom/request/email.txt.tmpl: Added.
* BugsSite/template/en/custom/request/queue.html.tmpl: Added.
* BugsSite/template/en/custom/search: Added.
* BugsSite/template/en/custom/search/boolean-charts.html.tmpl: Added.
* BugsSite/template/en/custom/search/form.html.tmpl: Added.
* BugsSite/template/en/custom/search/knob.html.tmpl: Added.
* BugsSite/template/en/custom/search/search-advanced.html.tmpl: Added.
* BugsSite/template/en/custom/search/search-create-series.html.tmpl: Added.
* BugsSite/template/en/custom/search/search-help.html.tmpl: Added.
* BugsSite/template/en/custom/search/search-report-graph.html.tmpl: Added.
* BugsSite/template/en/custom/search/search-report-select.html.tmpl: Added.
* BugsSite/template/en/custom/search/search-report-table.html.tmpl: Added.
* BugsSite/template/en/custom/search/search-specific.html.tmpl: Added.
* BugsSite/template/en/custom/search/tabs.html.tmpl: Added.
* BugsSite/template/en/custom/sidebar.xul.tmpl: Added.
* BugsSite/template/en/custom/whine: Added.
* BugsSite/template/en/custom/whine/mail.html.tmpl: Added.
* BugsSite/template/en/custom/whine/mail.txt.tmpl: Added.
* BugsSite/template/en/custom/whine/multipart-mime.txt.tmpl: Added.
* BugsSite/template/en/custom/whine/schedule.html.tmpl: Added.
* BugsSite/template/en/default: Added.
* BugsSite/template/en/default/account: Added.
* BugsSite/template/en/default/account/auth: Added.
* BugsSite/template/en/default/account/auth/ldap-error.html.tmpl: Added.
* BugsSite/template/en/default/account/auth/login-small.html.tmpl: Added.
* BugsSite/template/en/default/account/auth/login.html.tmpl: Added.
* BugsSite/template/en/default/account/cancel-token.txt.tmpl: Added.
* BugsSite/template/en/default/account/create.html.tmpl: Added.
* BugsSite/template/en/default/account/created.html.tmpl: Added.
* BugsSite/template/en/default/account/email: Added.
* BugsSite/template/en/default/account/email/change-new.txt.tmpl: Added.
* BugsSite/template/en/default/account/email/change-old.txt.tmpl: Added.
* BugsSite/template/en/default/account/email/confirm.html.tmpl: Added.
* BugsSite/template/en/default/account/exists.html.tmpl: Added.
* BugsSite/template/en/default/account/password: Added.
* BugsSite/template/en/default/account/password/forgotten-password.txt.tmpl: Added.
* BugsSite/template/en/default/account/password/set-forgotten-password.html.tmpl: Added.
* BugsSite/template/en/default/account/prefs: Added.
* BugsSite/template/en/default/account/prefs/account.html.tmpl: Added.
* BugsSite/template/en/default/account/prefs/email.html.tmpl: Added.
* BugsSite/template/en/default/account/prefs/footer.html.tmpl: Added.
* BugsSite/template/en/default/account/prefs/permissions.html.tmpl: Added.
* BugsSite/template/en/default/account/prefs/prefs.html.tmpl: Added.
* BugsSite/template/en/default/account/prefs/saved-searches.html.tmpl: Added.
* BugsSite/template/en/default/account/prefs/settings.html.tmpl: Added.
* BugsSite/template/en/default/admin: Added.
* BugsSite/template/en/default/admin/classifications: Added.
* BugsSite/template/en/default/admin/classifications/add.html.tmpl: Added.
* BugsSite/template/en/default/admin/classifications/del.html.tmpl: Added.
* BugsSite/template/en/default/admin/classifications/delete.html.tmpl: Added.
* BugsSite/template/en/default/admin/classifications/edit.html.tmpl: Added.
* BugsSite/template/en/default/admin/classifications/new.html.tmpl: Added.
* BugsSite/template/en/default/admin/classifications/reclassify.html.tmpl: Added.
* BugsSite/template/en/default/admin/classifications/select.html.tmpl: Added.
* BugsSite/template/en/default/admin/classifications/update.html.tmpl: Added.
* BugsSite/template/en/default/admin/components: Added.
* BugsSite/template/en/default/admin/components/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/default/admin/components/create.html.tmpl: Added.
* BugsSite/template/en/default/admin/components/created.html.tmpl: Added.
* BugsSite/template/en/default/admin/components/deleted.html.tmpl: Added.
* BugsSite/template/en/default/admin/components/edit.html.tmpl: Added.
* BugsSite/template/en/default/admin/components/footer.html.tmpl: Added.
* BugsSite/template/en/default/admin/components/list.html.tmpl: Added.
* BugsSite/template/en/default/admin/components/select-product.html.tmpl: Added.
* BugsSite/template/en/default/admin/components/updated.html.tmpl: Added.
* BugsSite/template/en/default/admin/fieldvalues: Added.
* BugsSite/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/default/admin/fieldvalues/create.html.tmpl: Added.
* BugsSite/template/en/default/admin/fieldvalues/created.html.tmpl: Added.
* BugsSite/template/en/default/admin/fieldvalues/deleted.html.tmpl: Added.
* BugsSite/template/en/default/admin/fieldvalues/edit.html.tmpl: Added.
* BugsSite/template/en/default/admin/fieldvalues/footer.html.tmpl: Added.
* BugsSite/template/en/default/admin/fieldvalues/list.html.tmpl: Added.
* BugsSite/template/en/default/admin/fieldvalues/select-field.html.tmpl: Added.
* BugsSite/template/en/default/admin/fieldvalues/updated.html.tmpl: Added.
* BugsSite/template/en/default/admin/flag-type: Added.
* BugsSite/template/en/default/admin/flag-type/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/default/admin/flag-type/edit.html.tmpl: Added.
* BugsSite/template/en/default/admin/flag-type/list.html.tmpl: Added.
* BugsSite/template/en/default/admin/groups: Added.
* BugsSite/template/en/default/admin/groups/change.html.tmpl: Added.
* BugsSite/template/en/default/admin/groups/create.html.tmpl: Added.
* BugsSite/template/en/default/admin/groups/created.html.tmpl: Added.
* BugsSite/template/en/default/admin/groups/delete.html.tmpl: Added.
* BugsSite/template/en/default/admin/groups/deleted.html.tmpl: Added.
* BugsSite/template/en/default/admin/groups/edit.html.tmpl: Added.
* BugsSite/template/en/default/admin/groups/list.html.tmpl: Added.
* BugsSite/template/en/default/admin/groups/remove.html.tmpl: Added.
* BugsSite/template/en/default/admin/keywords: Added.
* BugsSite/template/en/default/admin/keywords/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/default/admin/keywords/create.html.tmpl: Added.
* BugsSite/template/en/default/admin/keywords/created.html.tmpl: Added.
* BugsSite/template/en/default/admin/keywords/edit.html.tmpl: Added.
* BugsSite/template/en/default/admin/keywords/list.html.tmpl: Added.
* BugsSite/template/en/default/admin/keywords/rebuild-cache.html.tmpl: Added.
* BugsSite/template/en/default/admin/milestones: Added.
* BugsSite/template/en/default/admin/milestones/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/default/admin/milestones/create.html.tmpl: Added.
* BugsSite/template/en/default/admin/milestones/created.html.tmpl: Added.
* BugsSite/template/en/default/admin/milestones/deleted.html.tmpl: Added.
* BugsSite/template/en/default/admin/milestones/edit.html.tmpl: Added.
* BugsSite/template/en/default/admin/milestones/footer.html.tmpl: Added.
* BugsSite/template/en/default/admin/milestones/list.html.tmpl: Added.
* BugsSite/template/en/default/admin/milestones/select-product.html.tmpl: Added.
* BugsSite/template/en/default/admin/milestones/updated.html.tmpl: Added.
* BugsSite/template/en/default/admin/products: Added.
* BugsSite/template/en/default/admin/products/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/default/admin/products/deleted.html.tmpl: Added.
* BugsSite/template/en/default/admin/products/footer.html.tmpl: Added.
* BugsSite/template/en/default/admin/products/groupcontrol: Added.
* BugsSite/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl: Added.
* BugsSite/template/en/default/admin/products/groupcontrol/edit.html.tmpl: Added.
* BugsSite/template/en/default/admin/products/list-classifications.html.tmpl: Added.
* BugsSite/template/en/default/admin/products/list.html.tmpl: Added.
* BugsSite/template/en/default/admin/settings: Added.
* BugsSite/template/en/default/admin/settings/edit.html.tmpl: Added.
* BugsSite/template/en/default/admin/settings/updated.html.tmpl: Added.
* BugsSite/template/en/default/admin/table.html.tmpl: Added.
* BugsSite/template/en/default/admin/users: Added.
* BugsSite/template/en/default/admin/users/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/default/admin/users/create.html.tmpl: Added.
* BugsSite/template/en/default/admin/users/edit.html.tmpl: Added.
* BugsSite/template/en/default/admin/users/list.html.tmpl: Added.
* BugsSite/template/en/default/admin/users/listselectvars.html.tmpl: Added.
* BugsSite/template/en/default/admin/users/search.html.tmpl: Added.
* BugsSite/template/en/default/admin/users/userdata.html.tmpl: Added.
* BugsSite/template/en/default/admin/versions: Added.
* BugsSite/template/en/default/admin/versions/confirm-delete.html.tmpl: Added.
* BugsSite/template/en/default/admin/versions/create.html.tmpl: Added.
* BugsSite/template/en/default/admin/versions/created.html.tmpl: Added.
* BugsSite/template/en/default/admin/versions/deleted.html.tmpl: Added.
* BugsSite/template/en/default/admin/versions/edit.html.tmpl: Added.
* BugsSite/template/en/default/admin/versions/footer.html.tmpl: Added.
* BugsSite/template/en/default/admin/versions/list.html.tmpl: Added.
* BugsSite/template/en/default/admin/versions/select-product.html.tmpl: Added.
* BugsSite/template/en/default/admin/versions/updated.html.tmpl: Added.
* BugsSite/template/en/default/attachment: Added.
* BugsSite/template/en/default/attachment/choose.html.tmpl: Added.
* BugsSite/template/en/default/attachment/content-types.html.tmpl: Added.
* BugsSite/template/en/default/attachment/create.html.tmpl: Added.
* BugsSite/template/en/default/attachment/created.html.tmpl: Added.
* BugsSite/template/en/default/attachment/diff-file.html.tmpl: Added.
* BugsSite/template/en/default/attachment/diff-footer.html.tmpl: Added.
* BugsSite/template/en/default/attachment/diff-header.html.tmpl: Added.
* BugsSite/template/en/default/attachment/edit-aroben.html.tmpl: Added.
* BugsSite/template/en/default/attachment/edit.html.tmpl: Added.
* BugsSite/template/en/default/attachment/list.html.tmpl: Added.
* BugsSite/template/en/default/attachment/show-multiple.html.tmpl: Added.
* BugsSite/template/en/default/attachment/updated.html.tmpl: Added.
* BugsSite/template/en/default/bug: Added.
* BugsSite/template/en/default/bug/activity: Added.
* BugsSite/template/en/default/bug/activity/show.html.tmpl: Added.
* BugsSite/template/en/default/bug/activity/table.html.tmpl: Added.
* BugsSite/template/en/default/bug/choose.html.tmpl: Added.
* BugsSite/template/en/default/bug/comments.html.tmpl: Added.
* BugsSite/template/en/default/bug/create: Added.
* BugsSite/template/en/default/bug/create/comment-guided.txt.tmpl: Added.
* BugsSite/template/en/default/bug/create/comment.txt.tmpl: Added.
* BugsSite/template/en/default/bug/create/create-guided.html.tmpl: Added.
* BugsSite/template/en/default/bug/create/create.html.tmpl: Added.
* BugsSite/template/en/default/bug/create/created.html.tmpl: Added.
* BugsSite/template/en/default/bug/create/make-template.html.tmpl: Added.
* BugsSite/template/en/default/bug/create/user-message.html.tmpl: Added.
* BugsSite/template/en/default/bug/dependency-graph.html.tmpl: Added.
* BugsSite/template/en/default/bug/dependency-tree.html.tmpl: Added.
* BugsSite/template/en/default/bug/edit.html.tmpl: Added.
* BugsSite/template/en/default/bug/knob.html.tmpl: Added.
* BugsSite/template/en/default/bug/navigate.html.tmpl: Added.
* BugsSite/template/en/default/bug/process: Added.
* BugsSite/template/en/default/bug/process/bugmail.html.tmpl: Added.
* BugsSite/template/en/default/bug/process/confirm-duplicate.html.tmpl: Added.
* BugsSite/template/en/default/bug/process/header.html.tmpl: Added.
* BugsSite/template/en/default/bug/process/midair.html.tmpl: Added.
* BugsSite/template/en/default/bug/process/next.html.tmpl: Added.
* BugsSite/template/en/default/bug/process/results.html.tmpl: Added.
* BugsSite/template/en/default/bug/process/verify-new-product.html.tmpl: Added.
* BugsSite/template/en/default/bug/show-multiple.html.tmpl: Added.
* BugsSite/template/en/default/bug/show.html.tmpl: Added.
* BugsSite/template/en/default/bug/show.xml.tmpl: Added.
* BugsSite/template/en/default/bug/summarize-time.html.tmpl: Added.
* BugsSite/template/en/default/bug/time.html.tmpl: Added.
* BugsSite/template/en/default/bug/votes: Added.
* BugsSite/template/en/default/bug/votes/delete-all.html.tmpl: Added.
* BugsSite/template/en/default/bug/votes/list-for-bug.html.tmpl: Added.
* BugsSite/template/en/default/bug/votes/list-for-user.html.tmpl: Added.
* BugsSite/template/en/default/config.js.tmpl: Added.
* BugsSite/template/en/default/config.rdf.tmpl: Added.
* BugsSite/template/en/default/filterexceptions.pl: Added.
* BugsSite/template/en/default/flag: Added.
* BugsSite/template/en/default/flag/list.html.tmpl: Added.
* BugsSite/template/en/default/global: Added.
* BugsSite/template/en/default/global/banner.html.tmpl: Added.
* BugsSite/template/en/default/global/choose-classification.html.tmpl: Added.
* BugsSite/template/en/default/global/choose-product.html.tmpl: Added.
* BugsSite/template/en/default/global/code-error.html.tmpl: Added.
* BugsSite/template/en/default/global/confirm-user-match.html.tmpl: Added.
* BugsSite/template/en/default/global/field-descs.none.tmpl: Added.
* BugsSite/template/en/default/global/footer.html.tmpl: Added.
* BugsSite/template/en/default/global/header.html.tmpl: Added.
* BugsSite/template/en/default/global/help-header.html.tmpl: Added.
* BugsSite/template/en/default/global/help.html.tmpl: Added.
* BugsSite/template/en/default/global/hidden-fields.html.tmpl: Added.
* BugsSite/template/en/default/global/initialize.none.tmpl: Added.
* BugsSite/template/en/default/global/message.html.tmpl: Added.
* BugsSite/template/en/default/global/messages.html.tmpl: Added.
* BugsSite/template/en/default/global/select-menu.html.tmpl: Added.
* BugsSite/template/en/default/global/setting-descs.none.tmpl: Added.
* BugsSite/template/en/default/global/site-navigation.html.tmpl: Added.
* BugsSite/template/en/default/global/useful-links.html.tmpl: Added.
* BugsSite/template/en/default/global/user-error.html.tmpl: Added.
* BugsSite/template/en/default/global/userselect.html.tmpl: Added.
* BugsSite/template/en/default/global/variables.none.tmpl: Added.
* BugsSite/template/en/default/index.html.tmpl: Added.
* BugsSite/template/en/default/list: Added.
* BugsSite/template/en/default/list/change-columns.html.tmpl: Added.
* BugsSite/template/en/default/list/edit-multiple.html.tmpl: Added.
* BugsSite/template/en/default/list/list-simple.html.tmpl: Added.
* BugsSite/template/en/default/list/list.atom.tmpl: Added.
* BugsSite/template/en/default/list/list.csv.tmpl: Added.
* BugsSite/template/en/default/list/list.html.tmpl: Added.
* BugsSite/template/en/default/list/list.ics.tmpl: Added.
* BugsSite/template/en/default/list/list.js.tmpl: Added.
* BugsSite/template/en/default/list/list.rdf.tmpl: Added.
* BugsSite/template/en/default/list/quips.html.tmpl: Added.
* BugsSite/template/en/default/list/server-push.html.tmpl: Added.
* BugsSite/template/en/default/list/table.html.tmpl: Added.
* BugsSite/template/en/default/pages: Added.
* BugsSite/template/en/default/pages/bug-writing.html.tmpl: Added.
* BugsSite/template/en/default/pages/fields.html.tmpl: Added.
* BugsSite/template/en/default/pages/linked.html.tmpl: Added.
* BugsSite/template/en/default/pages/linkify.html.tmpl: Added.
* BugsSite/template/en/default/pages/voting.html.tmpl: Added.
* BugsSite/template/en/default/reports: Added.
* BugsSite/template/en/default/reports/chart.csv.tmpl: Added.
* BugsSite/template/en/default/reports/chart.html.tmpl: Added.
* BugsSite/template/en/default/reports/chart.png.tmpl: Added.
* BugsSite/template/en/default/reports/components.html.tmpl: Added.
* BugsSite/template/en/default/reports/create-chart.html.tmpl: Added.
* BugsSite/template/en/default/reports/duplicates-simple.html.tmpl: Added.
* BugsSite/template/en/default/reports/duplicates-table.html.tmpl: Added.
* BugsSite/template/en/default/reports/duplicates.html.tmpl: Added.
* BugsSite/template/en/default/reports/duplicates.rdf.tmpl: Added.
* BugsSite/template/en/default/reports/edit-series.html.tmpl: Added.
* BugsSite/template/en/default/reports/keywords.html.tmpl: Added.
* BugsSite/template/en/default/reports/menu.html.tmpl: Added.
* BugsSite/template/en/default/reports/report-bar.png.tmpl: Added.
* BugsSite/template/en/default/reports/report-line.png.tmpl: Added.
* BugsSite/template/en/default/reports/report-pie.png.tmpl: Added.
* BugsSite/template/en/default/reports/report-simple.html.tmpl: Added.
* BugsSite/template/en/default/reports/report-table.csv.tmpl: Added.
* BugsSite/template/en/default/reports/report-table.html.tmpl: Added.
* BugsSite/template/en/default/reports/report.csv.tmpl: Added.
* BugsSite/template/en/default/reports/report.html.tmpl: Added.
* BugsSite/template/en/default/reports/series-common.html.tmpl: Added.
* BugsSite/template/en/default/reports/series.html.tmpl: Added.
* BugsSite/template/en/default/request: Added.
* BugsSite/template/en/default/request/email.txt.tmpl: Added.
* BugsSite/template/en/default/request/queue.html.tmpl: Added.
* BugsSite/template/en/default/search: Added.
* BugsSite/template/en/default/search/boolean-charts.html.tmpl: Added.
* BugsSite/template/en/default/search/form.html.tmpl: Added.
* BugsSite/template/en/default/search/knob.html.tmpl: Added.
* BugsSite/template/en/default/search/search-advanced.html.tmpl: Added.
* BugsSite/template/en/default/search/search-create-series.html.tmpl: Added.
* BugsSite/template/en/default/search/search-help.html.tmpl: Added.
* BugsSite/template/en/default/search/search-report-graph.html.tmpl: Added.
* BugsSite/template/en/default/search/search-report-select.html.tmpl: Added.
* BugsSite/template/en/default/search/search-report-table.html.tmpl: Added.
* BugsSite/template/en/default/search/search-specific.html.tmpl: Added.
* BugsSite/template/en/default/search/tabs.html.tmpl: Added.
* BugsSite/template/en/default/sidebar.xul.tmpl: Added.
* BugsSite/template/en/default/whine: Added.
* BugsSite/template/en/default/whine/mail.html.tmpl: Added.
* BugsSite/template/en/default/whine/mail.txt.tmpl: Added.
* BugsSite/template/en/default/whine/multipart-mime.txt.tmpl: Added.
* BugsSite/template/en/default/whine/schedule.html.tmpl: Added.
* BugsSite/template/en/extension: Added.
* BugsSite/template/en/extension/filterexceptions.pl: Added.
* BugsSite/testagent.cgi: Added.
* BugsSite/testserver.pl: Added.
* BugsSite/token.cgi: Added.
* BugsSite/userprefs.cgi: Added.
* BugsSite/votes.cgi: Added.
* BugsSite/whine.pl: Added.
* BugsSite/whineatnews.pl: Added.
* BugsSite/xml.cgi: Added.
2008-02-04 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Reviewed by Alp Toker and Mark Rowe.
http://bugs.webkit.org/show_bug.cgi?id=16618
[GTK] build-webkit and run-webkit-tests autootools support
Add support for the autotools build to the WebKit build and test
scripts.
2008-02-04 Rodney Dawes <dobey@wayofthemonkey.com>
Reviewed by Alp Toker and Mark Rowe.
Fix http://bugs.webkit.org/show_bug.cgi?id=17175.
Bug 17175: Use of C++ compiler flags in CFLAGS
Add global_cxxflags definition for inclusion in CXXFLAGS variables.
Only use -fno-rtti and $(SYMBOL_VISIBILITY_INLINES) with global_cxxflags as gcc complains they aren't valid for C.
* GNUmakefile.am:
2008-02-04 Alp Toker <alp@atoker.com>
Rubber-stamped by Mark Rowe.
Remove all trailing whitespace in the GTK+ port and related
components.
* GNUmakefile.am:
* configure.ac:
2008-01-31 Alp Toker <alp@atoker.com>
Reviewed by Mark Rowe.
Fix the pkg-config file to follow GTK+ package naming and versioning
conventions.
Remove unneeded dependency listings.
* GNUmakefile.am:
* configure.ac:
2008-01-31 Alp Toker <alp@atoker.com>
Rubber-stamped by Adam Roben.
http://bugs.webkit.org/show_bug.cgi?id=17006
[GTK] Header path should be webkit/webkit.h
Move the GTK+ API sources as needed and update the build systems.
* GNUmakefile.am:
* WebKit.pri:
2008-01-27 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=14811
[gtk] [request] add a webkit_gtk_page_go_to_history_item function
* GNUmakefile.am: Added webkitwebbackforwardlist and webkitwebhistoryitem
2008-01-26 Mark Rowe <mrowe@apple.com>
Reviewed by Alp Toker.
Fix http://bugs.webkit.org/show_bug.cgi?id=17007.
Bug 17007: [GTK] autogen.sh attempts to use "libtoolize" on the Mac
libtoolize is installed as glibtoolize on Mac OS X to avoid naming conflicts
with other system commands. Check for the presence of glibtoolize if libtoolize
cannot be found.
* autogen.sh:
2008-01-23 Alp Toker <alp@atoker.com>
Rubber-stamped by Mark Rowe.
Remove whitespace after -I in automake include lists.
* GNUmakefile.am:
2008-01-22 Christian Dywan <christian@imendio.com>
Reviewed by Alp Toker.
[GTK] API: WebKitWebSettings is not usable
http://bugs.webkit.org/show_bug.cgi?id=16219
Implement WebKitWebSettings.
* GNUmakefile.am:
2008-01-22 Simon Hausmann <hausmann@webkit.org>
Reviewed by Lars.
Don't compile the ICO plugin when building against Qt >= 4.4
* WebKit.pro:
2008-01-21 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=16955
Get errors when cross-compile webkit-gtk
* GNUmakefile.am: added ICU_CPPFLAGS
* configure.ac: added ICU_CPPFLAGS, removed ICU_CFLAGS
2008-01-19 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Reviewed by Alp Toker.
Add svg foreign object and svg experimental to the GTK+/autotools
build system.
* configure.ac:
2008-01-15 Alp Toker <alp@atoker.com>
Rubber-stamped by Anders.
Make the HTTP backend configurable in the GTK+ port. curl is currently
the only option.
* GNUmakefile.am:
* WebKit.pri:
* configure.ac:
2008-01-15 Alp Toker <alp@atoker.com>
GTK+/autotools build fix for GCC < 4. Use the -fvisibility compiler
flags only when they're available.
Additionally, use -fvisibility-inlines-hidden in both debug and
release builds when available to match the Mac build.
* GNUmakefile.am:
* configure.ac:
2008-01-12 Alp Toker <alp@atoker.com>
Reviewed by Mark Rowe.
Hide non-public symbols in GTK+/autotools release builds.
* GNUmakefile.am:
2008-01-11 Alp Toker <alp@atoker.com>
Reviewed by Oliver Hunt.
Enable FastMalloc by default in GTK+/autotools and add a configure
switch.
* GNUmakefile.am:
* configure.ac:
2008-01-11 Luca Bruno <lethalman88@gmail.com>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=16838
[GTK] Bad autotools debug and video options
Fix some configure options.
* configure.ac:
2008-01-11 Mark Rowe <mrowe@apple.com>
Attempt to fix the GTK+ and Qt builds.
* WebKit.pro:
2008-01-10 Alp Toker <alp@atoker.com>
SVG font build fix for GTK+/autotools.
* configure.ac:
2008-01-05 Alp Toker <alp@atoker.com>
Rubber-stamped by Mark Rowe.
Fix configure script output with correct descriptions of the default
configuration options.
* configure.ac:
2008-01-05 Sylvain Pasche <sylvain.pasche@gmail.com>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=16736
Allow autogen.sh invocation from a separate build directory.
* autogen.sh:
2008-01-04 Alp Toker <alp@atoker.com>
Rubber-stamped by Mark Rowe.
Remove AM_MAINTAINER_MODE, as recommended by the automake manual. The
"rebuild rules" will now be enabled by default.
This obviates the need to pass '--enable-maintainer-mode' to
configure.
* configure.ac:
2008-01-02 Holger Hans Peter Freyther <zecke@selfish.org>
Rubber stamped by Alp.
Remove GDK_MULTIHEAD_SAFE and GTK_MULTIHEAD_SAFE because they break
the build. At least people doing a debug build on Ubuntu Hardy will see
the breakage. I was asked to leave the flags inside the files to ease future
debugging.
* GNUmakefile.am:
* WebKit.pri:
2008-01-01 Alp Toker <alp@atoker.com>
GTK+ autotools build fix. Track changes in r29051, r29058 and pass the
correct parameter to AM_INIT_AUTOMAKE.
* configure.ac:
2007-12-30 Alp Toker <alp@atoker.com>
Build fix for older autoconf versions.
* configure.ac:
2007-12-29 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Reviewed by Alp Toker.
Enable Database, XPath and XSLT features by default
* configure.ac:
2007-12-29 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=16669
autotools update and fixes
Various fixes to the autotools build
* GNUmakefile.am:
- Remove ICU_FLAGS because it adds -g in the CFLAGS/CXXFLAGS
- Fix clean rules (Rodney Dawes)
- Added webcore specific variables, remove STDINT_H and
PTHREAD_NP_H checks (already included in config.h)
* autogen.sh:
- Loosen automake and aclocal requirement
* configure.ac:
- Workaround AC_PROG_CXX putting -g in CXXFLAGS. Only use -g
when doing a debug build (Rodney Dawes)
- Fix webkit target and remove traces of XBL
2007-12-27 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=16353
[GTK] Check for deprecated API use (G_DISABLE_DEPRECATED etc.)
Added the flags mentioned in the bug only when doing 'debug'
builds. -DGST_DISABLE_DEPRECATED only added when video is enabled.
* GNUmakefile.am:
* WebKit.pri:
2007-12-26 Jan Michael Alonzo <jmalonzo@unpluggable.com>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=16390
Use autotools or GNU make as the build system for the GTK port
* GNUmakefile.am: Added.
* autogen.sh: Added.
* configure.ac: Added.
2007-12-20 Alp Toker <alp@atoker.com>
Rubber-stamped by Maciej.
http://bugs.webkit.org/show_bug.cgi?id=16542
[GTK] Text is missing with old Pango version
Back out commits r28880, r28876, r28865, r28864 which added Pango font
selection support. These changes caused a regression where no text was
displayed with older Pango versions.
* WebKit.pri:
2007-12-19 Alp Toker <alp@atoker.com>
Remove the cairo-ft pkg-config check. The GTK+ port doesn't use
cairo-ft directly following changes in r28864.
* WebKit.pri:
2007-12-12 Alp Toker <alp@atoker.com>
Reviewed by Mark Rowe.
http://bugs.webkit.org/show_bug.cgi?id=16302
[GTK] Compiler flags for optimization
Use the compiler flags -fno-exceptions -fno-rtti.
This patch does not add all the flags discussed in the bug report,
only these two.
* WebKit.pri:
2007-12-04 Xan Lopez <xan@gnome.org>
Reviewed by Alp Toker.
http://bugs.webkit.org/show_bug.cgi?id=15561
GTK port needs DumpRenderTree implementation
Start work on the GTK+ DRT.
* WebKit.pro:
2007-11-30 Alp Toker <alp@atoker.com>
Reviewed by Adam Roben.
http://bugs.webkit.org/show_bug.cgi?id=15691
[GTK] Public API does not follow GTK+ conventions
Refactor the WebKit/GTK+ public API. Changes:
WebKitPage -> WebKitWebView
WebKitFrame -> WebKitWebFrame
Public API source and header names have been updated to mirror the API
changes.
The API is now kept in WebKit/gtk/WebView to match other ports in the
same class such as Mac and Win.
* WebKit.pri:
2007-11-26 Rodney Dawes <dobey@wayofthemonkey.com>
Reviewed by Mark Rowe.
Set CONFIG option for the window system GTK+ is using
* WebKit.pri:
2007-11-22 Alp Toker <alp@atoker.com>
GTK+ build fix. Pass a correct LIBDIR value.
* WebKit.pri:
2007-11-20 Mark Rowe <mrowe@apple.com>
Reviewed by Alp Toker.
* WebKit.pri: Add in -Wno-unused-parameter to silence warnings in WebCore.
2007-11-20 Alp Toker <alp@atoker.com>
Reviewed by Simon Hausmann.
Clean up GTK+ port configuration.
Use similar compiler warning flags to the Mac build.
Add the qmake changes needed for DirectFB support.
* WebKit.pri:
2007-11-07 Simon Hausmann <hausmann@kde.org>
Reviewed by Mark.
Add WebKit/qt/Api to the dependency path when building QtLauncher and DumpRenderTree.
That means that changes to the public API of the Qt port also trigger a rebuild of the tools.
* WebKit.pri:
2007-10-03 Lars Knoll <lars@trolltech.com>
Signed off by olliej.
move WebKitQt to WebKit/qt for consistency with the other ports.
* WebKit.pri:
* WebKit.pro:
2007-10-03 Lars Knoll <lars@trolltech.com>
Reviewed by olliej.
Move the Qt version of DRT into the correct place and put the binary into BUILDDIR/bin.
* WebKit.pro:
2007-09-29 Holger Hans Peter Freyther <zecke@selfish.org>
Reviewed by Mark.
-Fix http://bugs.webkit.org/show_bug.cgi?id=13226.
Remove Bakefiles from svn.
* Bakefiles/Bakefiles.bkgen: Removed.
* Bakefiles/ChangeLog: Removed.
* Bakefiles/Readme.txt: Removed.
* Bakefiles/presets.bkl: Removed.
* Bakefiles/update-file-lists.py: Removed.
2007-09-20 Holger Hans Peter Freyther <zecke@selfish.org>
Rubber stamped by Adam.
Renamed files from *Gdk to *Gtk (see #14732) using the
work of Juan A. Suarez Romero as a base.
GDK -> GTK
* WebKit.pri:
* WebKit.pro:
2007-07-29 Brian Mastenbrook <brian@mastenbrook.net>
Build fix for WebKit/Gtk to compile on Fedora 7 as described in
http://bugs.webkit.org/show_bug.cgi?id=14557
* WebKit.pri: cairo-ft is used by the WebKit/Gtk port
2007-07-27 Simon Hausmann <hausmann@kde.org>
Done with and reviewed by Lars and Zack.
Exclude DumpRenderTree from the Qt build on Windows for now.
* WebKit.pro:
2007-07-27 Simon Hausmann <hausmann@kde.org>
Done with and reviewed by Lars and Zack.
Temporarily disable the ICO support for the Qt build on Windows.
* WebKit.pro:
2007-07-26 Simon Hausmann <hausmann@kde.org>
Reviewed by Lars.
Use QMAKE_LIBDIR instead of QMAKE_LFLAGS to specify the library search path for QtWebKit, as the former is portable and correctly transformed to /LIBPATH: with msvc for example.
* WebKit.pri:
2007-07-22 Holger Hans Peter Freyther <zecke@selfish.org>
Reviewed by Adam.
Add WebKit/gtk/Api and WebCoreSupport API to the INCLUDEPATH to allow GdkLauncher to be
build against it.
* WebKit.pri:
2007-07-18 Simon Hausmann <hausmann@kde.org>
Reviewed by Zack.
Don't call gcc directly when building the dftables tool but use a separate .pro file for the Qt build.
* WebKit.pro:
2007-07-18 Timothy Hatcher <timothy@apple.com>
Add a SCRIPTS_PATH variable so Makefiles of differnet nested directories can
still use this one Makefile.shared as an include.
* Makefile.shared:
2007-07-12 George Staikos <staikos@kde.org>
Fix build in debug mode.
* WebKit.pri:
2007-07-11 Holger Hans Peter Freyther <zecke@selfish.org>
Reviewed by Darin.
As of http://bugs.webkit.org/show_bug.cgi?id=14527 move the
WebCore/ForwardingHeader/JavaScriptCore to JavaScriptCore
* WebKit.pri: Adjust INCLUDEPATH
2007-06-25 Adam Roben <aroben@apple.com>
Really remove LayoutTestResults.
* LayoutTestResults: Removed.
2007-06-25 Adam Roben <aroben@apple.com>
Fix Bug 14405: LayoutTestResults/qt should be in LayoutTests/qt
http://bugs.webkit.org/show_bug.cgi?id=14405
Reviewed by Anders.
* LayoutTestResults: Removed.
2007-06-25 Alp Toker <alp.toker@collabora.co.uk>
Reviewed by Mark.
http://bugs.webkit.org/show_bug.cgi?id=13975
Use system-provided libjpeg and libpng
* WebKit.pri: Link against external libjpeg and libpng.
2007-06-20 Adam Roben <aroben@apple.com>
Reviewed by Simon Hausmann.
More Gdk build fixing.
* WebKit.pro:
2007-06-15 Adam Treat <adam@staikos.net>
Reviewed by George Staikos.
Add ICO support to the Qt build.
* WebKit.pro:
2007-06-13 George Staikos <staikos@kde.org>
Reviewed by Lars.
Compile without self-linking.
* WebKit.pri:
2007-06-13 Simon Hausmann <hausmann@kde.org>
Reviewed by Lars.
* WebKit.pri: WebKitQt is now called QtWebKit.
2007-05-31 Alp Toker <alp.toker@collabora.co.uk>
Reviewed by Eric Seidel.
http://bugs.webkit.org/show_bug.cgi?id=13941
Rename WebCore/platform/network/gdk to WebCore/platform/network/curl
* WebKit.pri:
2007-05-18 Holger Hans Peter Freyther <zecke@selfish.org>
Reviewed by Mark Rowe.
* WebKit.pro: Build testkjs for Gdk and Qt
2007-05-11 Holger Freyther <freyther@kde.org>
Reviewed by Mark Rowe.
Move libcurl configuration into WebKit.pri so it will be used by GdkLauncher,
and add ICU configuration to QMAKE_CXXFLAGS.
* WebKit.pri:
2007-05-06 Erik Bunce <kde@bunce.us>
Reviewed by Mark Rowe.
* WebKit.pri:
Removed unnecessary dependency on MacPorts (/opt/local)
2007-05-03 Holger Freyther <freyther@kde.org>
Reviewed by Zack, landed by Simon.
This is bugzilla bug 13499.
* WebKit.pri: Place Qt into a scope, start sharing qmake with the Gdk
port
* WebKit.pro: Place Qt into a scope, start sharing qmake with the Gdk
port
2007-04-27 Holger Freyther <freyther@kde.org>
Reviewed by Maciej.
Remove unmaintained CMake build system.
* CMakeLists.txt: Removed.
2007-01-30 Simon Hausmann <hausmann@kde.org>
Reviewed by Zack.
* WebKit.pri: libJavaScriptCore is gone with the Qt build
* WebKit.pro:
2007-01-26 George Staikos <staikos@kde.org>
Remove headers - not needed now.
* WebKit.pri:
2007-01-23 George Staikos <staikos@kde.org>
Put everything back since we can't build everything without it yet.
* WebKit.pri:
2007-01-16 Lars Knoll <lars@trolltech.com>
Reviewed by Zack
Remove everything but the new public API from
the include path.
* WebKit.pri:
2007-01-11 George Staikos <staikos@kde.org>
Fix the Qt build
* WebKit.pri:
2007-01-03 Lars Knoll <lars@trolltech.com>
Fix the Qt build
* WebKit.pri:
2006-12-17 Simon Hausmann <hausmann@kde.org>
Reviewed by Rob Buis.
* WebKit.pro: Build testkjs.
2006-12-14 Timothy Hatcher <timothy@apple.com>
Reviewed by Brady.
* Makefile.shared: use $PIPESTATUS[0] and a sub-shell to exit with xcodebuild's exit status
2006-12-13 Maciej Stachowiak <mjs@apple.com>
Reviewed by Brady and Anders.
* Makefile.shared: Stop spewing the environment all the time, at least for command-line builds.
2006-12-10 Zack Rusin <zack@kde.org>
Client classes have been moved to WebKitQt/WebCoreSupport so
adjusting the pri file.
* WebKit.pri:
2006-12-10 George Staikos <staikos@kde.org>
Reviewed by Zack.
Add WebKitBuild/Release back to the output dir for external build cases.
* WebKit.pri:
2006-12-10 Zack Rusin <zack@kde.org>
Fix the link directory location.
* WebKit.pri:
2006-12-10 Lars Knoll <lars@trolltech.com>
Reviewed by Zack
Include DumpRenderTree in the Qt build
* WebKit.pro:
2006-12-09 George Staikos <staikos@kde.org>
Reviewed by Zack.
Correct the path to the libraries for QMake.
* WebKit.pri:
2006-12-09 Lars Knoll <lars@trolltech.com>
Reviewed by Zack
Make it possible to build WebKit with qmake.
* WebKit.pri: Added.
* WebKit.pro: Added.
2006-11-19 Simon Hausmann <hausmann@kde.org>
Reviewed by Zack.
http://bugs.webkit.org/show_bug.cgi?id=11649
* CMakeLists.txt: Fix Qt-only build without KDE cmake files
2006-10-30 Timothy Hatcher <timothy@apple.com>
Reviewed by Brady.
Make the universal build return non-zero when module make fails.
* Makefile:
2006-10-30 Stephanie Lewis <slewis@apple.com>
Reviewed by Darin.
Change Makefiles to return non-zero when module make fails.
* Makefile:
2006-10-27 Brady Eidson <beidson@apple.com>
Rubber stamped by Tim Hatcher
Added "make universal" to build universal binaries
* Makefile:
* Makefile.shared:
2006-10-01 Nikolas Zimmermann <zimmermann@kde.org>
Reviewed by eseidel.
* CMakeLists.txt: add option to disable colored output when building on the buildbot
|