1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790
|
commit 8b7264bfe0fe8492553def2977ba4680d8e7fbb5
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Nov 6 09:49:43 2013 +0100
html: Replaces minified version of jQuery-UI by a normal version
html/default/index.html | 2 +-
.../jquery-ui/js/jquery-ui-1.8.9.custom.min.js | 781 --
html/default/jquery-ui/js/jquery-ui-1.8.9.js | 11530 +++++++++++++++++++
3 files changed, 11531 insertions(+), 782 deletions(-)
commit eee3383bedf076deff3bd7ff8a0f45e485874a27
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Nov 3 13:04:37 2013 +0100
release: 0.1.16
configure.ac | 2 +-
html/default/index.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit a43fe04566daf37206f7072a1b56bb85d5e56c95
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Nov 2 13:05:32 2013 +0100
html: Updates address for Bitcoin donations
html/default/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 58e1d72813893c87fa75f48f147ae83005d785ef
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Nov 2 12:17:41 2013 +0100
build: Explicitly lists HTML files to install
instead of installing all files in 'default' and 'common' folders.
html/Makefile.am | 55 +++++++++++++++++++++++++++++++++++++++++++++++--------
1 file changed, 47 insertions(+), 8 deletions(-)
commit 11086fc3f43c84a796dfacb24a78b3daca8946d7
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Oct 31 13:21:10 2013 +0100
Revert "Makes jquery-ui an external dependency, taking it out of the repo"
This reverts commit e966f57a1955daa6e97bad303c94ef89a9255f9d.
jQuery-UI API has changed in an incompatible way after 1.8.9. Updating our code
now does not guarantee this won't happend again in the future. Hence, the safest
solution is to revert the patch that made jQuery-UI an external dependency.
Also, since in the near future the UI will migrate from jQuery-UI to a different
framework, it is ok to keep all this code in the repo by now.
filetea.conf | 6 -
filetea/filetea-node.c | 48 +-
html/default/index.html | 6 +-
.../jquery-ui/js/jquery-ui-1.8.9.custom.min.js | 781 +++++++++++++++++++++
4 files changed, 795 insertions(+), 46 deletions(-)
commit 9587ccb8b560de96184fc5ea19efacd67760e27a
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Oct 15 19:41:51 2013 +0200
Removes call to g_type_init() in main.c
evd_tls_init() already calls it.
filetea/main.c | 1 -
1 file changed, 1 deletion(-)
commit 7174fd24c55bae0e46b967b207c1c28681af433c
Author: Alberto Garcia <berto@igalia.com>
Date: Sun Oct 13 15:40:31 2013 +0300
Fix make distcheck
Use $(srcdir) to copy the data files under html/, make sure that they
have the right permissions and add an uninstall target.
html/Makefile.am | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
commit a41249fdaa18873fb999e3fd753e9e7c0b53b915
Author: Alberto Garcia <berto@igalia.com>
Date: Sun Oct 13 13:21:30 2013 +0300
Build using the uuid library
configure.ac | 1 +
filetea/Makefile.am | 2 ++
2 files changed, 3 insertions(+)
commit c9fce352cc9c26c33fc3dbb500d2d1c45cc76783
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Feb 8 20:58:17 2013 +0100
build: Prepares for 0.1.15 development cycle, which will end up in release 0.2.0
configure.ac | 2 +-
html/default/index.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 580f1f951af88bd74d6f4200bd1992e634726c6f
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Feb 8 19:15:38 2013 +0100
release: 0.1.14
configure.ac | 4 ++--
html/default/index.html | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
commit 40749aa4114b403f00bbfbe0c69c7199af095d57
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Feb 8 18:51:39 2013 +0100
Improves source id generation to be Base-64 encoded
filetea.conf | 15 ++++++---------
filetea/filetea-node.c | 40 ++++++++++++++++++++++++++++------------
2 files changed, 34 insertions(+), 21 deletions(-)
commit 64d9adabf21bffbe444ee7cd8898616f9eb7a029
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Mon Nov 26 15:40:55 2012 +0100
Updates to new selector API in EvdWebTransportServer
use_selector() instead of set_selector().
filetea/filetea-node.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit f979d70c6168ff3272cd243e32743398577cb480
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Sep 11 13:29:22 2012 +0200
html: Adds a bitcoin donation message at the bottom of the main page
html/common/bitcoin.png | Bin 0 -> 6242 bytes
html/default/index.html | 9 +++++++++
html/default/main.css | 15 +++++++++++++++
3 files changed, 24 insertions(+)
commit 2f805fd51286ecac608b0982b42a284eaa50e286
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Sep 9 17:05:42 2012 +0200
Updates size of a source with that reported in content-length of transfer
filetea/filetea-node.c | 46 +++++++++++++++++++++++++++++++++++++++++
html/common/fileTea.js | 18 ++++++++++++++++
html/default/sharedFilesView.js | 15 ++++++++++++++
3 files changed, 79 insertions(+)
commit e05f3816563d7886f66f668c1984db4da0eee6da
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Jun 28 16:30:15 2012 +0200
html: Updates link to repository to point to Github instead of Gitorious
html/default/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 4d476429a9efb41f08978a9818cb6d491728fbba
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Jun 28 16:26:32 2012 +0200
html: Updates maturity level to "beta"
html/default/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 5d7b44dddbe9527af175a8d40fd08494a716ff30
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Mar 18 20:24:26 2012 +0100
tools: Adds very basic debian sample init script
filetea-init.d | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
commit 490948dfc12439ff649f8c5332daae7dcb1c2be6
Author: Alberto Garcia <agarcia@igalia.com>
Date: Sun Nov 20 01:27:00 2011 +0100
html: Fixes a few typos in the privacy policy
html/common/privacy-policy.html | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
commit c0a65ecaed478be87713cd034261af9abec3aae0
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Nov 9 13:59:33 2011 +0100
Improves HTTP and HTTPS port resolving logic and error reporting
filetea/main.c | 88 +++++++++++++++++++++++++++++++++++-----------------------
1 file changed, 54 insertions(+), 34 deletions(-)
commit d22388f1885fbef472662a5d7b81a8fcad36820c
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Nov 9 13:43:29 2011 +0100
Prevents aborting the daemon when 'dh-depth' config option is commented
filetea/main.c | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
commit 8bc0cbe2571f3a0d59ffce6bb19523ab13044c2a
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Nov 9 13:08:05 2011 +0100
Removes unused code for obtaining HTTP port in main()
That code was moved to setup_http_node() and was left there by mistake.
filetea/main.c | 22 ----------------------
1 file changed, 22 deletions(-)
commit c61b26fd0e38a0ae44837f8e147261b27313f527
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Nov 6 02:30:36 2011 +0100
html: Changes to an unminified version of require.js
All source code in the repository must remain legible.
html/common/require.js | 1966 +++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 1934 insertions(+), 32 deletions(-)
commit 3cd89f96200a825adf19135586de9307e84bf99f
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Nov 4 10:34:52 2011 +0100
release: 0.1.12
configure.ac | 2 +-
html/default/index.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 0bfe598a09dfd07ad7fec20a39f2cb7246125552
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Nov 4 10:31:06 2011 +0100
build: Adds an 'enable-debug' configure option
that activates CFLAGS useful for debugging (-ggdb, -Werror -g3 -O0).
configure.ac | 8 ++++++++
filetea/Makefile.am | 8 +++++++-
2 files changed, 15 insertions(+), 1 deletion(-)
commit 6cac1a006cf6ffea9c2b28a416b232aae87876f5
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Nov 4 10:27:47 2011 +0100
Uses warnings instead of asserts to debug some error conditions
in FileteaNode.
filetea/filetea-node.c | 64 +++++++++++++++++++++++++-------------------------
1 file changed, 32 insertions(+), 32 deletions(-)
commit 725d07325a56080bb1376639dbbbcc002cc2f3af
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Nov 3 09:15:09 2011 +0100
Updates AUTHORS file to include Berto
Thanks a lot man!
AUTHORS | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
commit 539896a437dc0d4bce96119be00b1a03e1913f85
Author: Alberto Garcia <agarcia@igalia.com>
Date: Mon Oct 31 13:08:51 2011 +0100
Distributes manual page
Makefile.am | 1 +
1 file changed, 1 insertion(+)
commit 3fbb652da58be0fea99ace907c15ead534a59cbc
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Mon Oct 31 00:30:24 2011 +0100
build: Updates for 0.1.11 development cycle
configure.ac | 2 +-
html/default/index.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 45905766db2d44cdea1d686454ad9e62b69bd384
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Mon Oct 31 00:25:58 2011 +0100
release: 0.1.10
configure.ac | 2 +-
html/default/index.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 9b01b234ef925c4edc23b26a0a816e186ef58e1b
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Mon Oct 31 00:24:17 2011 +0100
build: Raises required version of EventDance to 0.1.16
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit f041a0e7e95480ab3f259087955dd811280fc645
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Mon Oct 31 00:14:06 2011 +0100
Removes INSTALL file from the repository
This file is generated by autoconf.
INSTALL | 365 ----------------------------------------------------------------
1 file changed, 365 deletions(-)
commit ae64380e105b0e2730d7adb7bd1f53caff11e73b
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Oct 30 22:44:16 2011 +0100
Updates for API changes in EventDance
Now throttling API is in EvdIoStream instead of EvdConnection.
filetea/file-transfer.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 22fd9f1327bc36d02976fde37aeebad02c75ec87
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Oct 30 22:31:10 2011 +0100
Updates for API changes in EventDance
EvdWebTransport has been renamed to EvdWebTransportServer.
filetea/filetea-node.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
commit e966f57a1955daa6e97bad303c94ef89a9255f9d
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 28 16:12:06 2011 +0200
Makes jquery-ui an external dependency, taking it out of the repo
As with jquery, almost all distros already ship jquery-ui library so it makes no sense to
distribute it along with FileTea.
A new config option 'jquery-ui-dir' is added to tell FileTea where to find the
directory containing jquery-ui.min.js (the minified form).
filetea.conf | 6 +
filetea/filetea-node.c | 48 +-
html/default/index.html | 6 +-
.../jquery-ui/js/jquery-ui-1.8.9.custom.min.js | 781 ---------------------
4 files changed, 46 insertions(+), 795 deletions(-)
commit bdd0fb65e31072336a91462ab0e682281e94f5fc
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Oct 27 23:53:01 2011 +0200
Implements PID file writing feature and adds 'pid-file' option in config
filetea.conf | 4 ++++
filetea/main.c | 9 +++++++++
2 files changed, 13 insertions(+)
commit 2bebe51d87cde181cd6afa5d16fc1b7be66aded3
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Oct 27 23:52:11 2011 +0200
build: Raises required version of EventDance to 0.1.15
due to recent API changes.
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 2283588758dd48a9a7a24d0101f9ad463618eff2
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Oct 27 23:39:59 2011 +0200
Handles error condition when running filetea daemon
also synchronizing with API changes in run() of EvdDaemon.
filetea/main.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
commit 6ad25d9d3e18df5c7e85da5e1f745b7840c64d63
Author: Alberto Garcia <agarcia@igalia.com>
Date: Thu Oct 27 18:01:28 2011 +0200
Formats config file to 80 columns and fixes a few typos
filetea.conf | 119 +++++++++++++++++++++++++++++++++++------------------------
1 file changed, 70 insertions(+), 49 deletions(-)
commit f340bbf0ed77dd6cf142fd52ba093e3046790f5a
Author: Alberto Garcia <agarcia@igalia.com>
Date: Thu Oct 27 17:35:06 2011 +0200
Fixes error in default value of 'http-log-file' option in config
Log files go to /var/log, not /usr/log.
filetea.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 7a72c720f6e9b7b3b8264cf27b6119e2288841ae
Author: Alberto Garcia <agarcia@igalia.com>
Date: Wed Oct 26 17:10:29 2011 +0200
build: Installs config file in $(prefix)/etc/filetea/filetea.conf
automatically upon 'make install'.
Makefile.am | 5 ++-
filetea.conf | 117 ++++++++++++++++++++++++++++++++++++++++++++++++++++
sample-filetea.conf | 117 ----------------------------------------------------
3 files changed, 121 insertions(+), 118 deletions(-)
commit 2c8595c5c86ab6b57ceb738c5ad2b82d6e00af04
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Oct 26 01:11:29 2011 +0200
Updates default values and comment some options in sample config file
sample-filetea.conf | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
commit d6d2026ae4d3f57bd68522f79b9bfa1cb3d2e055
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Oct 26 00:55:12 2011 +0200
html: Adds missing comment blocks into javascript files
html/common/contentManager.js | 22 ++++++++++++++++++++++
html/common/fileTea.js | 22 ++++++++++++++++++++++
html/common/utils.js | 7 ++++---
html/default/downloadView.js | 22 ++++++++++++++++++++++
html/default/sharedFilesView.js | 22 ++++++++++++++++++++++
html/default/transfersView.js | 22 ++++++++++++++++++++++
html/default/ux.js | 22 ++++++++++++++++++++++
7 files changed, 136 insertions(+), 3 deletions(-)
commit 471812bcddea954a34cc539f07f7ac2a2a27481f
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Oct 26 00:52:28 2011 +0200
html: Removes unused file jsonRpc.js
Its functionality was moved into fileTea.js long ago.
html/common/jsonRpc.js | 37 -------------------------------------
1 file changed, 37 deletions(-)
commit 90d1c25e539f26bcd9bcc41fc00097309076e4ef
Author: Alberto Garcia <agarcia@igalia.com>
Date: Tue Oct 25 21:26:32 2011 +0300
doc: Improves manual page for filetea service daemon
filetea.8 | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
commit 3f290726cbec64303192f76fe49a3499552f8044
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Oct 25 19:21:42 2011 +0200
Makes jquery an external dependency, taking it out of the repo
Almost all distros already ship jquery library so it makes no sense to
distribute it along with FileTea.
A new config option 'jquery-dir' is added to tell FileTea where to find the
directory containing jquery.min.js (the minified form).
filetea/filetea-node.c | 27 +++++++
html/common/jquery-1.4.4.min.js | 167 ----------------------------------------
html/default/index.html | 2 +-
sample-filetea.conf | 5 ++
4 files changed, 33 insertions(+), 168 deletions(-)
commit e7c2c9787946219b439e4a3e7f3ff1970c89f8c3
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Oct 22 18:30:08 2011 +0200
Adds manpage for filetea service daemon
Makefile.am | 2 ++
filetea.8 | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 65 insertions(+)
commit e58cce6fe3b25cf7198bc1af980e38d8be82d280
Author: Alberto Garcia <agarcia@igalia.com>
Date: Tue Oct 25 14:31:32 2011 +0300
Disables 'peer' sections in the config file
sample-filetea.conf | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
commit 4e256c75019dfb5b5cefda0d64d6e927f216d8d9
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Oct 25 17:18:25 2011 +0200
Moves call to daemonize() before setting up nodes
Currently EventDance's epoll functionality breaks if the process is daemonized
after sockets have already been added to the epoll set.
filetea/main.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
commit 2af360cef72167a43c37b6e9742da7fc76271cce
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Oct 25 17:17:35 2011 +0200
html: Removes unused file jquery-ui-1.8.9.custom.css-backup from repo
.../css/start/jquery-ui-1.8.9.custom.css-backup | 295 ---------------------
1 file changed, 295 deletions(-)
commit dda48dcdf0d5c961dcb30e02b76c7a18704507c2
Author: Berto <berto@elpiso.org>
Date: Mon Oct 24 16:45:46 2011 +0300
build: Installs the filetea binary in the sbin directory
filetea/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 041ebba6e545893e2326a8bdd1c47433f98f3df8
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Oct 22 21:08:53 2011 +0200
build: Prepares for 0.1.9 development cycle
configure.ac | 2 +-
html/default/index.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 72639d4eefc07f4f002c514d0c11a12344fea117
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Oct 22 20:46:08 2011 +0200
release: 0.1.8
configure.ac | 2 +-
html/default/index.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 80815a4b2371936481bea1b77c266c517472ddfb
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Oct 22 20:38:21 2011 +0200
build: Raises required version of EventDance to 0.1.14
due to new used API from EvdJsonrpc.
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit f3ed5e8a29b3e5bd0a0d6398035c6888f2119a64
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Oct 22 18:38:29 2011 +0200
html: Makes DownloadView use new method getRemotePeerId() of Ft
html/default/downloadView.js | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
commit 4de78812ab07b9d5b11dccf670de881dea575b28
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Oct 22 18:37:29 2011 +0200
html: Adds new method getRemotePeerId() to Ft object
html/common/fileTea.js | 7 +++++++
1 file changed, 7 insertions(+)
commit a785fd70e6df1997ceb9ba8323a562d9071ea789
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Oct 22 18:26:59 2011 +0200
html: Adds a 'Transfers' section into main manu
together with a TransfersView widget.
html/default/index.html | 19 +++-
html/default/transfers-view.css | 168 ++++++++++++++++++++++++++++++
html/default/transfersView.js | 225 ++++++++++++++++++++++++++++++++++++++++
html/default/ux.js | 18 +++-
4 files changed, 425 insertions(+), 5 deletions(-)
commit 8a2774dcc87e5785c43e073f7425094d3a6c2ba9
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Oct 22 16:54:08 2011 +0200
html: Implements API for tab highlighting (blinking) in UxManager
A setHightlight() public method is added to UxManager.
html/default/main.css | 4 ++++
html/default/ux.js | 29 +++++++++++++++++++++++++++++
2 files changed, 33 insertions(+)
commit 20dae9568789fa315de4c86d96d159176b4c9679
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Oct 22 16:48:18 2011 +0200
html: Adds a DownloadView widget and integrates it in Ux
This will also remove the temporary code in ContentManager previously providing
download view functionality.
html/common/contentManager.js | 38 +-------------------
html/default/download-view.css | 2 +-
html/default/download-view.html | 8 ++---
html/default/downloadView.js | 70 +++++++++++++++++++++++++++++++++++++
html/default/ux.js | 77 ++++++++++++++++++++++++++++++++---------
5 files changed, 137 insertions(+), 58 deletions(-)
commit f6362448ec1463a3d9c08e488fbe49917231b54a
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Oct 22 16:44:10 2011 +0200
html: Adds new method getCurrent() to ContentManaget
It returns the id of the current content being shown.
html/common/contentManager.js | 4 ++++
1 file changed, 4 insertions(+)
commit 5dcfef46bdf6f26c70db577d2a188a26f0149ab6
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Oct 22 16:41:34 2011 +0200
html: Adds a second argument 'callback' to open() method of ContentManager
html/common/contentManager.js | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
commit e665647e25b26f090fe617637391455ad1547737
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 17:33:44 2011 +0200
html: Implements new method 'cancel()' in TransfersManager
html/common/fileTea.js | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
commit db22776242337fa85e4595936473e9b32cc5fcc8
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 17:32:04 2011 +0200
html: Prevents FileSources to accept a file with invalid size (<= 0)
html/common/fileTea.js | 3 +++
1 file changed, 3 insertions(+)
commit aca52c10324dfe4f83ef7f76ff319a6a3942d5ae
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 17:30:22 2011 +0200
html: Implements transfer status reporting in TransferManager
html/common/fileTea.js | 91 ++++++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 88 insertions(+), 3 deletions(-)
commit 8293526c7dae1dff0362c0f2f5b200c19676d296
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 17:28:17 2011 +0200
html: Removes RPC object caching in FileTransfer manager
RPC object should be obtained using 'rpcFunc' argument, anytime it is needed.
html/common/fileTea.js | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
commit e25c3fc9e8a4d8a510c19ee06e2b3f9eff987ea9
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 17:09:39 2011 +0200
html: Sets the id attr of the tabs 'ul' and its 'li' items
This is to be able to reference them to implement tab highlight (blinking).
html/default/index.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 882e4f454d699e79813635b5831cf8968ca8e1b6
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 17:06:58 2011 +0200
Implements new RPC method 'cancelTransfer' in FileteaNode
filetea/filetea-node.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
commit 5028564dd5338af7c5bb9f257235fffe6ddf6820
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 17:04:22 2011 +0200
Implements transfer status reporting to remote peer at regular intervals
filetea/filetea-node.c | 156 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 156 insertions(+)
commit 2b74101e9beda9f0621b1253389e746b47c08884
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 17:00:44 2011 +0200
Adds data structure to track transfers grouped by peers in FileteaNode
This is a convenient way of grouping transfers to allow status reporting ot all
transfers of a peer at once.
filetea/filetea-node.c | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
commit 41b9c108a2235f4955c909ab6a7f6fd6efb9a50c
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 01:31:32 2011 +0200
Associates a target peer to a transfer
by looking at peer id in url query of the download request. This will allow
to report transfer status to the target peer (leecher) as well.
filetea/filetea-node.c | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
commit 8a9ac2f2a2817485c9cbca996a068642640f3ae8
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 01:23:02 2011 +0200
Fixes code indentation in FileTransfer header file
filetea/file-transfer.h | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
commit cd00e4af99fbbd77d7209bcc5aa69d5ac9f87ff4
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 01:16:52 2011 +0200
Adds new public method cancel() to FileTransfer
filetea/file-transfer.c | 18 ++++++++++++++++++
filetea/file-transfer.h | 2 ++
2 files changed, 20 insertions(+)
commit 79faf03f93dcd37301557fe140114c81936b657b
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 01:10:28 2011 +0200
Makes the async result call in an idle when a transfer finishes
instead of inmediately. This will prevent any already queued status report event
to be triggered before the transfer notifies its termination.
filetea/file-transfer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 67875478776ba776f3f25963fb7b9a3de2bca923
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 01:09:12 2011 +0200
Adds new public method set_target_peer() to FileTransfer
filetea/file-transfer.c | 10 ++++++++++
filetea/file-transfer.h | 3 +++
2 files changed, 13 insertions(+)
commit afe56f4bfe8d42f54f82bda363a9248f6f04771b
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 01:07:16 2011 +0200
Adds new public method get_status() to FileTransfer
This will output the status code, transferred size and bandwidth of the
transfer.
filetea/file-transfer.c | 32 ++++++++++++++++++++++++++++++++
filetea/file-transfer.h | 5 +++++
2 files changed, 37 insertions(+)
commit 4d63eee68875d786e6cd9c59c8d5a1e6908a8adb
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 01:02:49 2011 +0200
Removes obsolete status reporting logic from FileTransfer
It will be consistently replaced in FileteaNode to ensure that all reports for
a peer are sent at once avoiding transport waste.
filetea/file-transfer.c | 22 ----------------------
filetea/file-transfer.h | 10 ----------
2 files changed, 32 deletions(-)
commit 26c09b7aae354a95288cc52b8d47b09814dc098f
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 01:01:24 2011 +0200
Adds tracking of bandwidth usage in FileTransfer
filetea/file-transfer.c | 4 ++++
filetea/file-transfer.h | 1 +
2 files changed, 5 insertions(+)
commit 5d93890fc95201b01c43dc2f3d6c1a9b688092b4
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 00:55:36 2011 +0200
Reorganizes code a bit in transfer completed logic of FileTransfer
filetea/file-transfer.c | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
commit 2bab3e8450efcd71e82a1b476d5ae12a13192956
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Oct 21 00:53:03 2011 +0200
Adds FileTransferStatus enum to FileTransfer and tracks transfer state
filetea/file-transfer.c | 8 ++++++++
filetea/file-transfer.h | 10 ++++++++++
2 files changed, 18 insertions(+)
commit fe1b7e019cb2e485fbe5433075b939fd58ce3787
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Oct 20 00:38:13 2011 +0200
Renames 'transfers' member of FileteaNode to 'transfers_by_id'
for consistency.
filetea/filetea-node.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
commit ce3f31ac7883f74da3c24978c5576184c54d60e9
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Oct 20 00:03:51 2011 +0200
html: Adds new function humanizeTime to Utils
This will output a formatted string with the days, hours, minutes and seconds
represented by the 'seconds' input argument.
html/common/utils.js | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
commit c58b9995aedb497ce8869e8e4bde9784179ab346
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Oct 20 00:03:10 2011 +0200
html: Improves code in humanizeTime() function of Utils
html/common/utils.js | 24 ++++++++++++++----------
1 file changed, 14 insertions(+), 10 deletions(-)
commit 74d631d8bb7edceed98cf7c0ce044378dff2a03c
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Oct 19 23:55:19 2011 +0200
html: Makes the remove icon be background image instead of a real img
in SharedFilesView items.
html/common/delete.png | Bin 2758 -> 1614 bytes
html/default/shared-files-view.css | 50 ++++++++++++++++++++++---------------
html/default/sharedFilesView.js | 7 ++----
3 files changed, 32 insertions(+), 25 deletions(-)
commit ae901450eb765d27342c379deeae314f84bdbb96
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Oct 19 23:53:05 2011 +0200
html: Reorganizes code a bit in _init() of SharedFilesView
html/default/sharedFilesView.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
commit 271c30372e577fe4aa60d28e1c7a2f75c8d9389d
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Oct 9 02:12:04 2011 +0200
Adds TransferManager into fileTea.js and removes transfers.js
html/common/fileTea.js | 79 ++++++++++++++++++++++++++++++++++++++++--------
html/common/transfers.js | 63 --------------------------------------
2 files changed, 66 insertions(+), 76 deletions(-)
commit 7a55b397935e8e1d074f9c020263c3e7745c26ec
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Oct 9 01:25:57 2011 +0200
Takes ContentManager out of FileTea JS to remove conflation
html/common/contentManager.js | 191 +++++++++++++++++++++++++++++++++++++
html/common/fileTea.js | 212 +-----------------------------------------
html/default/index.html | 44 ++++++---
html/default/ux.js | 86 ++++++++---------
4 files changed, 263 insertions(+), 270 deletions(-)
commit 7e34325b084de57a05c04274a42c328f6e671850
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Oct 9 00:56:39 2011 +0200
Fixes _getRpc() of FileTea JS object to work well with concurrent calls
html/common/fileTea.js | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
commit 17f6c38a777a1322c26ccb34204e0002c60f823b
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Oct 9 00:41:35 2011 +0200
Escapes file name before registering it to prevent encoding issues
filetea/file-transfer.c | 5 ++++-
html/common/fileTea.js | 4 ++--
2 files changed, 6 insertions(+), 3 deletions(-)
commit 1e0822f19a3ed630528057dbd714de1be3e00822
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Oct 8 23:27:05 2011 +0200
Adds check for null id when removing file source in FileteaNode
filetea/filetea-node.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit ec2bc7c3208f49bafa55ea83868dba1ec08571f2
Author: Alberto Garcia <agarcia@igalia.com>
Date: Thu Oct 20 23:07:48 2011 +0300
Changes default user and group to 'nobody' and 'nogroup'
sample-filetea.conf | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit ab8442573fb2e6f6bd696c79a925486e21c6b25f
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Oct 20 21:40:17 2011 +0200
Replaces deprecated g_atomic_int_exchange_and_add() by g_atomic_int_add()
in file_transfer_ref() and file_source_ref().
filetea/file-source.c | 2 +-
filetea/file-transfer.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 7d445abb3efb52dd1d189f62e6e9fa42637b9cd3
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Oct 20 21:37:31 2011 +0200
Fixes error in FileteaNode when 'http-log-file' conf is left blank
It was still enabling the HTTP logs when the HTTP log filename was an empty
string.
filetea/filetea-node.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
commit 7303385f7a7c4dd5d6e37072304497c5ecf3bea2
Author: Alberto GarcÃa <agarcia@igalia.com>
Date: Fri Oct 14 18:50:44 2011 +0200
Adds missing files for 'make dist'
Makefile.am | 3 ++-
filetea/Makefile.am | 2 +-
html/Makefile.am | 2 ++
3 files changed, 5 insertions(+), 2 deletions(-)
commit 0f69176acdf070a85f524c0f9b66ea2ad9551488
Author: Alberto GarcÃa <agarcia@igalia.com>
Date: Fri Oct 14 18:49:23 2011 +0200
Generates a ChangeLog file from git when running make dist
Makefile.am | 12 ++++++++++++
1 file changed, 12 insertions(+)
commit eead5a662c0199a7e79dcc8ad69075358a5e5263
Author: Alberto GarcÃa <agarcia@igalia.com>
Date: Fri Oct 14 18:48:24 2011 +0200
Adds support for running autogen.sh with NOCONFIGURE
autogen.sh | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
commit fc7216e1cee934d6fea3a0e532c46494e3a45383
Author: Alberto GarcÃa <agarcia@igalia.com>
Date: Fri Oct 14 18:47:18 2011 +0200
Adds missing files for 'make dist'
html/Makefile.am | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
commit ea9e50407cf962d7ab228cc6bfb619c67d21432a
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Sep 23 20:27:16 2011 +0200
build: Updates for 0.1.7 development cycle
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 615dac439551982826d481a0a6979fc3084abb28
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Sep 23 20:25:17 2011 +0200
release: 0.1.6
configure.ac | 2 +-
html/default/index.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 37a9d44a3c16a128b7874cda02683d2be6cc75ec
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Sep 23 20:11:53 2011 +0200
build: Raises required version of EventDance to 0.1.12
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit caab8298511c17ffd3e232b8e910c907c6ffcd79
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Sep 23 20:04:17 2011 +0200
Implements HTTP access logging using Apache-like format
A 'log' group with 'http-log-file' option has been added to configuration file.
filetea/filetea-node.c | 120 +++++++++++++++++++++++++++++++++++++++++++++++++
sample-filetea.conf | 8 ++++
2 files changed, 128 insertions(+)
commit 53859542242b6c5b02167d7de148e684537ad3c6
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Sep 22 16:40:13 2011 +0200
Fixes erroneous unref of node's TLS credentials after loading certificate
filetea/main.c | 2 --
1 file changed, 2 deletions(-)
commit e616382d643b87db204d4729b172f254166a0505
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Sep 20 23:03:19 2011 +0200
Adds check for pending ops before reading from source in FileteaTransfer
filetea/file-transfer.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
commit 3a9b001ff7b92d7535194acbad4768ffe17c3f62
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Sep 20 01:46:40 2011 +0200
Adds missing sample configuration option for 'dh-depth'
sample-filetea.conf | 5 +++++
1 file changed, 5 insertions(+)
commit d53a0f36f2cc17e88a51bfecea7a4717d2897228
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Sep 20 01:24:08 2011 +0200
build: Updates for 0.1.5 development cycle
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit c1f5f4f282aac37010907d3fc23712277bd07fa8
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Sep 20 01:22:07 2011 +0200
release: 0.1.4
configure.ac | 2 +-
html/default/index.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
commit 297c03e4af5689d6724cf85fb529d669c8fa8896
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Sep 20 01:20:36 2011 +0200
build: Raises required version of EventDance to 0.1.11
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 653db302238df4cdb0038dff8407dfc4b46a2b1d
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Sep 20 01:17:17 2011 +0200
Adds TLS support with its corresponding configuration options
filetea/filetea-node.c | 37 +++++++
filetea/main.c | 254 +++++++++++++++++++++++++++++++++++++++++++------
sample-filetea.conf | 25 ++++-
3 files changed, 285 insertions(+), 31 deletions(-)
commit 58c0aee68171d9f3f31390438b3e70c0ecdd9545
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Mon Sep 12 12:59:23 2011 +0200
html: Adds function to humanize file sizes included in a utils JS library
html/common/fileTea.js | 18 +++++++++++------
html/common/utils.js | 45 +++++++++++++++++++++++++++++++++++++++++
html/default/sharedFilesView.js | 8 ++++++--
3 files changed, 63 insertions(+), 8 deletions(-)
commit 6d9eb86bfbb232e8dbf8ca90e14e173a8b6589c0
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Sep 11 19:38:58 2011 +0200
html: Reuduces download icon to 100x100 pixels
html/common/download.png | Bin 68902 -> 14599 bytes
1 file changed, 0 insertions(+), 0 deletions(-)
commit 9df6ed9c1fe58d80778bd72239845f946e855145
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Sep 11 19:15:37 2011 +0200
html: Adds download-view page
html/default/download-view.css | 50 +++++++++++++++++++++++++++++++++++++++++
html/default/download-view.html | 24 ++++++++++++++++++++
2 files changed, 74 insertions(+)
commit c7928a999d41f7d31d6387763c7ebe30889c3b70
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Sep 11 19:03:30 2011 +0200
html: Minor fixes in css for the main content section
html/common/download.png | Bin 0 -> 68902 bytes
html/default/main.css | 11 +++++++++++
2 files changed, 11 insertions(+)
commit 137030df091ccfcdecf20cda84d1c840b6a0f4fd
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Sep 11 19:02:11 2011 +0200
Adds user confirmation page before downloading a file
This feature required several changes in the way content was managed.
filetea/filetea-node.c | 84 +++++++++++++++++------
html/common/fileTea.js | 179 ++++++++++++++++++++++++++----------------------
html/default/index.html | 14 +++-
html/default/ux.js | 15 ++--
4 files changed, 181 insertions(+), 111 deletions(-)
commit 220796340c238ab482ce8ca77cabf55906dffeaf
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Sep 11 18:29:22 2011 +0200
html: Adds a 'not found' page to repository
to be shown to user when requesting a file that is no longer shared.
html/default/not-found-view.html | 13 +++++++++++++
1 file changed, 13 insertions(+)
commit 44dadde238bc7c0ad1a43bb2cbf038af7539ee12
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Sep 11 10:56:22 2011 +0200
Improves method-call error reporting in FileteaNode
filetea/filetea-node.c | 66 ++++++++++++++++++++++++++++++++++++++++----------
1 file changed, 53 insertions(+), 13 deletions(-)
commit 6de1257d62dadd612ea0022db3116105b9fb0e92
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Sep 9 16:51:37 2011 +0200
html: Adds content 'loading' animated gif
Forgot to add it in previous commit :).
html/common/loading_big.gif | Bin 0 -> 1924 bytes
1 file changed, 0 insertions(+), 0 deletions(-)
commit 24c057c38450660efed4412da692fa85f7c3919c
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Sep 9 16:19:07 2011 +0200
html: Adds inmediate feedback about content loading
html/common/fileTea.js | 2 ++
html/default/main.css | 8 ++++++++
html/default/ux.js | 27 +++++++++++++++++++--------
3 files changed, 29 insertions(+), 8 deletions(-)
commit f169a991bdbfe06bfa0daf73281102f8a5c4bc99
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Mon Sep 5 01:16:47 2011 +0200
Resets http port to default value (8080) in sample config file
sample-filetea.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 4d7fdfc4bca7897a9e0a7589c2b1b2d98c24a191
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Mon Sep 5 01:06:24 2011 +0200
html: Adds a warning dialog with confirmation before navigating away
if there are shared files.
html/common/warning.png | Bin 0 -> 20700 bytes
html/default/index.html | 5 +++++
html/default/main.css | 9 +++++++++
html/default/ux.js | 19 +++++++++++++++++++
4 files changed, 33 insertions(+)
commit 67502d56dd9d7403e40090cb40e6eba7f59166de
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Mon Sep 5 01:00:44 2011 +0200
html: Adds new method isEmpty() to SharedFilesView widget
html/default/sharedFilesView.js | 4 ++++
1 file changed, 4 insertions(+)
commit 015770fc9716f85edca48da86536cb9ef7560a5d
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Mon Sep 5 00:54:40 2011 +0200
html: Encapsulates the 'sharedFilesView' instance within the Ux object
html/default/index.html | 18 ------------------
html/default/ux.js | 14 ++++++++++++++
2 files changed, 14 insertions(+), 18 deletions(-)
commit fb5b255039fe1a2bcd6d39c31c517bb54890b849
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Aug 30 18:45:49 2011 +0200
build: Adds 'gcrypt' to filetea LDADD libraries
filetea/Makefile.am | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
commit 092a136b37cfd342361506665e4b1314ed10c404
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Aug 26 17:22:23 2011 +0200
html: Fixes error in content box css width introduced by mistake
in previous patch.
html/default/main.css | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 0f11681ee3efcbeb86679e38ac445c4ef900c01f
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Aug 26 17:05:53 2011 +0200
html: Adds minor layout improvements in css
html/default/main.css | 6 ++++--
html/default/shared-files-view.css | 3 ++-
2 files changed, 6 insertions(+), 3 deletions(-)
commit 1d11670841ad4ceb946a0676c7c1854a0385825a
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Aug 26 17:01:35 2011 +0200
html: Improves html and css code for the logo
html/default/index.html | 4 +++-
html/default/main.css | 5 ++++-
2 files changed, 7 insertions(+), 2 deletions(-)
commit 56716cb2466548bd322bcf87441a4730c2be20e6
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Aug 26 16:57:18 2011 +0200
html: Adds corner banner to index.html showing version maturity (alpha)
html/default/index.html | 1 +
html/default/main.css | 36 ++++++++++++++++++++++++++++++++++++
2 files changed, 37 insertions(+)
commit e7dc80b77a23e7cdf6c76df7609c4f40f090bbfd
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Aug 26 10:33:16 2011 +0200
html: Minor text update to privacy policy statement
html/common/privacy-policy.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 29596e3156838471cb3b28bd6339be626da6d32b
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Aug 24 17:54:38 2011 +0200
html: Updates FileTea version notice in footer of main HTML page
html/default/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 67400645db18b0ab5e4664403331f8b4f833dfad
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Aug 24 17:51:22 2011 +0200
build: Updates for 0.1.3 development cycle
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 9e8e60fee47188fcb267cf78f1a71b170089c918
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Aug 24 17:46:21 2011 +0200
build: Cleans up improves code in configure.ac
configure.ac | 15 ++-------------
1 file changed, 2 insertions(+), 13 deletions(-)
commit cc5413433e9e8f3b4c365042f4026698d1bb9237
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Aug 24 17:37:21 2011 +0200
build: Updates required version of EventDance library to 0.1.8
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 1d258d32a116c55162f52e1d84989df55055cb6f
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Aug 24 13:08:49 2011 +0200
Fixes COPYING file to include AGPL3 text and removes unneeded LICENSE file
COPYING | 147 +++++++--------
LICENSE | 661 ----------------------------------------------------------------
2 files changed, 67 insertions(+), 741 deletions(-)
commit f11f2eaa4593487df9e7333da69ab953885b7189
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Aug 23 21:00:13 2011 +0200
html: Improves layout of footer elements
html/default/index.html | 35 ++++++++++++++++++++++-------------
html/default/main.css | 19 +++++++++++++++++--
2 files changed, 39 insertions(+), 15 deletions(-)
commit 2dff7c04c8bff2e4f26ee46743bfac04badab64c
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Aug 23 19:22:15 2011 +0200
Udpates node termination message to something nicer
filetea/main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 1bf0750b50d8e9861bbd5aee85fa945308a2d48b
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Aug 23 19:21:46 2011 +0200
Removes unused code in FileteaNode
filetea/filetea-node.c | 76 --------------------------------------------------
1 file changed, 76 deletions(-)
commit 676c65953649e3f5776f44ef1a26c84ca4b02c83
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Aug 23 19:13:33 2011 +0200
Adds support for dropping privileges of node owner
if requested in config file, and a new property 'user' and 'group' was added
to 'node' group.
filetea/main.c | 34 +++++++++++++++++++++++-----------
sample-filetea.conf | 7 ++++++-
2 files changed, 29 insertions(+), 12 deletions(-)
commit d5454a53f465de8c25c3f9543a3e82cfe0e2a153
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Aug 3 15:24:46 2011 +0200
html: Cleans up code and content sections in index.html
html/default/index.html | 37 ++-----------------------------------
1 file changed, 2 insertions(+), 35 deletions(-)
commit 139992190ccace5c1b5c197c4bf146ea40b4ec6d
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Aug 3 15:23:52 2011 +0200
Adds a 'url' attribute to add() method of client-side ContentManager object
html/common/fileTea.js | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
commit af08cfcc9f3c5353bffbab7b9df052913ed9016b
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Aug 3 15:23:00 2011 +0200
html: Adds privacy policy content
html/common/privacy-policy.html | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
commit 697c3d61be8ac522df9faa8e9c1568e7b663f6ca
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Aug 2 13:40:59 2011 +0200
Adds missing stylesheet file main.css to repo
html/default/main.css | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
commit 74fc84c7e93052e52ed01b086cb7e754826320b5
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Jul 13 17:58:33 2011 +0200
Increases required version of Evd to 0.1.7 (current master)
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 2f4ffa0b454309bca306c7c3942218e7c71c200f
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Jul 13 17:55:16 2011 +0200
Makes main.c use FileteaNode core object
Also adds command line parsing and configuration file support. The file
'sample-filetea.conf' was added as a sample configuration file.
filetea/main.c | 673 ++++++----------------------------------------------
sample-filetea.conf | 72 ++++++
2 files changed, 151 insertions(+), 594 deletions(-)
commit 908abab7430eafacb4c8b5e2031951c56d5a0fff
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Jul 13 17:53:40 2011 +0200
Adds FileteNode object, representing the core of a Filetea node
This is basically the the code that was in main.c, with some new additions.
filetea/Makefile.am | 6 +-
filetea/filetea-node.c | 872 +++++++++++++++++++++++++++++++++++++++++++++++++
filetea/filetea-node.h | 68 ++++
3 files changed, 944 insertions(+), 2 deletions(-)
commit 2618010aba277e360aed7748d706c26bf934f203
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Jul 13 17:51:43 2011 +0200
Adds a 'node' argument to FileSource
representing the Filetea node associated with the source.
filetea/file-source.c | 12 +++++++++++-
filetea/file-source.h | 5 ++++-
2 files changed, 15 insertions(+), 2 deletions(-)
commit 5b06e4c10e9f230d079759bbdae54b8138deb6c6
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Jul 13 17:49:23 2011 +0200
Big client-side code factorization and organization
Implemented fragment-identifier based content navigation.
html/common/fileTea.js | 403 ++++++++++++++++++++++++++++++++++++-
html/common/loading.gif | Bin 0 -> 4176 bytes
html/common/transfers.js | 63 ++++++
html/default/index.html | 280 +++++---------------------
html/default/shared-files-view.css | 19 +-
html/default/sharedFilesView.js | 142 ++++++++++---
html/default/ux.js | 63 ++++++
7 files changed, 697 insertions(+), 273 deletions(-)
commit 700cfb29487a79998da87578874dc708bb6e7f08
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Mon Jul 11 11:50:50 2011 +0200
Updates file transfer code to sync with API changes in EvdHttpConnection
filetea/file-transfer.c | 1 +
1 file changed, 1 insertion(+)
commit 771be3365b4aa2fd4dab123771c75cacf6498a81
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri May 20 17:53:41 2011 +0200
daemon: Updates for latest API changes in EvdDaemon
filetea/main.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
commit 5fe2d17c305121e1cc3cd3a49ad263df4ffaeb53
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Apr 10 20:56:16 2011 +0200
Prepares release 0.1.2
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit d637ee54ee65a3f7fa6b21c2b88108e2f1c2d3fb
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Apr 10 20:51:42 2011 +0200
release: 0.1.1
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 0154e33968e2565d2df7586e9cd81423083dfe3d
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Apr 10 20:40:03 2011 +0200
build: Spits install prefix at the end of configure script
configure.ac | 1 +
1 file changed, 1 insertion(+)
commit c6444a6869203b7eba7151a1b857f9bbe14d7fda
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Apr 10 20:36:04 2011 +0200
Updates AUTHORS file
AUTHORS | 1 +
1 file changed, 1 insertion(+)
commit b39a732c4853ec4a7b5028ba8e7621d286ff1481
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Apr 10 20:34:06 2011 +0200
Adds LICENSE file with GNU AGPL contents
LICENSE | 661 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 661 insertions(+)
commit 87ee5cb5f728e6c72545b1ca1538412585c40c15
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Apr 10 20:33:34 2011 +0200
Adds comment block to sensible source code files
configure.ac | 20 ++++++++++++++++++++
filetea/file-source.c | 22 ++++++++++++++++++++++
filetea/file-source.h | 22 ++++++++++++++++++++++
filetea/file-transfer.c | 22 ++++++++++++++++++++++
filetea/file-transfer.h | 22 ++++++++++++++++++++++
filetea/main.c | 22 ++++++++++++++++++++++
6 files changed, 130 insertions(+)
commit 418b4c588f5417d87f5bcf43b49620b0bea1bac8
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Apr 10 19:11:35 2011 +0200
Takes id generation out of FileTransfer constructor
This allows us to relate the transfer id with the instance id.
filetea/file-transfer.c | 14 +++-----------
filetea/file-transfer.h | 3 ++-
filetea/main.c | 9 ++++++++-
3 files changed, 13 insertions(+), 13 deletions(-)
commit ed222bdda3dd99957b5bffbff265d945bd720388
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Apr 10 19:04:05 2011 +0200
Disables Websockets mechanism in the Web transport
Some reverse proxies don't work well with Websockets yet.
filetea/main.c | 1 +
1 file changed, 1 insertion(+)
commit a8a185bf2d34dcfcccc68cfbacb88ea63df334b9
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Apr 10 12:50:39 2011 +0200
html: Removes unimplemented 'Terms' section
html/default/index.html | 2 --
1 file changed, 2 deletions(-)
commit 19876d082afc6d07465623bfbc0d5daf879b5ddb
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Apr 10 12:47:32 2011 +0200
build: Updates HTML webroot install target
html/Makefile.am | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit 0b08f0748666fecfa7a27dfd22e8b87290e288b2
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Apr 10 12:46:50 2011 +0200
Updates a couple of broken links in shared-files view
html/default/index.html | 4 ++--
html/default/sharedFilesView.js | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
commit 7db4cdd9a7d837b592d6c3d440459520612472e9
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Apr 9 14:06:16 2011 +0200
build: Adds autotools integration and completely reorganizes source code
AUTHORS | 0
COPYING | 674 ++++++++++++++++++
ChangeLog | 0
INSTALL | 365 ++++++++++
Makefile | 16 -
Makefile.am | 27 +
NEWS | 0
README | 0
autogen.sh | 21 +
configure.ac | 70 ++
file-source.c | 69 --
file-source.h | 25 -
file-transfer.c | 400 -----------
file-transfer.h | 50 --
filetea/Makefile.am | 29 +
filetea/file-source.c | 69 ++
filetea/file-source.h | 25 +
filetea/file-transfer.c | 400 +++++++++++
filetea/file-transfer.h | 53 ++
filetea/main.c | 659 +++++++++++++++++
html/Makefile.am | 8 +
html/common/delete.png | Bin 0 -> 2758 bytes
html/common/fileTea.js | 55 ++
html/common/gradient-top.png | Bin 0 -> 131 bytes
html/common/html5_logo_32.png | Bin 0 -> 816 bytes
html/common/jquery-1.4.4.min.js | 167 +++++
html/common/jsonRpc.js | 37 +
html/common/mime-type-icon-default.png | Bin 0 -> 1710 bytes
html/common/require.js | 32 +
html/default/index.html | 326 +++++++++
.../start/images/ui-bg_flat_55_999999_40x100.png | Bin 0 -> 180 bytes
.../start/images/ui-bg_flat_75_aaaaaa_40x100.png | Bin 0 -> 180 bytes
.../start/images/ui-bg_glass_45_0078ae_1x400.png | Bin 0 -> 136 bytes
.../start/images/ui-bg_glass_55_f8da4e_1x400.png | Bin 0 -> 131 bytes
.../start/images/ui-bg_glass_75_79c9ec_1x400.png | Bin 0 -> 132 bytes
.../images/ui-bg_gloss-wave_45_e14f1c_500x100.png | Bin 0 -> 3649 bytes
.../images/ui-bg_gloss-wave_50_6eac2c_500x100.png | Bin 0 -> 4256 bytes
.../images/ui-bg_gloss-wave_75_2191c0_500x100.png | Bin 0 -> 3457 bytes
.../images/ui-bg_inset-hard_100_fcfdfd_1x100.png | Bin 0 -> 88 bytes
.../css/start/images/ui-icons_0078ae_256x240.png | Bin 0 -> 4369 bytes
.../css/start/images/ui-icons_056b93_256x240.png | Bin 0 -> 5355 bytes
.../css/start/images/ui-icons_d8e7f3_256x240.png | Bin 0 -> 5355 bytes
.../css/start/images/ui-icons_e0fdff_256x240.png | Bin 0 -> 4369 bytes
.../css/start/images/ui-icons_f5e175_256x240.png | Bin 0 -> 4369 bytes
.../css/start/images/ui-icons_f7a50d_256x240.png | Bin 0 -> 4369 bytes
.../css/start/images/ui-icons_fcd113_256x240.png | Bin 0 -> 4369 bytes
.../jquery-ui/css/start/jquery-ui-1.8.9.custom.css | 573 +++++++++++++++
.../css/start/jquery-ui-1.8.9.custom.css-backup | 295 ++++++++
.../jquery-ui/js/jquery-ui-1.8.9.custom.min.js | 781 +++++++++++++++++++++
html/default/shared-files-view.css | 100 +++
html/default/sharedFilesView.js | 99 +++
html/delete.png | Bin 2758 -> 0 bytes
html/fileTea.js | 55 --
html/gradient-top.png | Bin 131 -> 0 bytes
html/html5_logo_32.png | Bin 816 -> 0 bytes
html/index.html | 324 ---------
.../start/images/ui-bg_flat_55_999999_40x100.png | Bin 180 -> 0 bytes
.../start/images/ui-bg_flat_75_aaaaaa_40x100.png | Bin 180 -> 0 bytes
.../start/images/ui-bg_glass_45_0078ae_1x400.png | Bin 136 -> 0 bytes
.../start/images/ui-bg_glass_55_f8da4e_1x400.png | Bin 131 -> 0 bytes
.../start/images/ui-bg_glass_75_79c9ec_1x400.png | Bin 132 -> 0 bytes
.../images/ui-bg_gloss-wave_45_e14f1c_500x100.png | Bin 3649 -> 0 bytes
.../images/ui-bg_gloss-wave_50_6eac2c_500x100.png | Bin 4256 -> 0 bytes
.../images/ui-bg_gloss-wave_75_2191c0_500x100.png | Bin 3457 -> 0 bytes
.../images/ui-bg_inset-hard_100_fcfdfd_1x100.png | Bin 88 -> 0 bytes
.../css/start/images/ui-icons_0078ae_256x240.png | Bin 4369 -> 0 bytes
.../css/start/images/ui-icons_056b93_256x240.png | Bin 5355 -> 0 bytes
.../css/start/images/ui-icons_d8e7f3_256x240.png | Bin 5355 -> 0 bytes
.../css/start/images/ui-icons_e0fdff_256x240.png | Bin 4369 -> 0 bytes
.../css/start/images/ui-icons_f5e175_256x240.png | Bin 4369 -> 0 bytes
.../css/start/images/ui-icons_f7a50d_256x240.png | Bin 4369 -> 0 bytes
.../css/start/images/ui-icons_fcd113_256x240.png | Bin 4369 -> 0 bytes
.../jquery-ui/css/start/jquery-ui-1.8.9.custom.css | 573 ---------------
.../css/start/jquery-ui-1.8.9.custom.css-backup | 295 --------
html/jquery-ui/index.html | 367 ----------
html/jquery-ui/js/jquery-1.4.4.min.js | 167 -----
html/jquery-ui/js/jquery-ui-1.8.9.custom.min.js | 781 ---------------------
html/jsonRpc.js | 37 -
html/mime-type-icon-default.png | Bin 1710 -> 0 bytes
html/require.js | 32 -
html/shared-files-view.css | 100 ---
html/sharedFilesView.js | 99 ---
main.c | 624 ----------------
83 files changed, 4865 insertions(+), 4014 deletions(-)
commit b3ac7e2c949cbd1fb5d01b1ce61ca5c91856ab9f
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Mar 29 18:31:36 2011 +0200
Removes unnecessary 'development-bundle' folder of jquery-ui
html/jquery-ui/development-bundle/AUTHORS.txt | 30 -
html/jquery-ui/development-bundle/GPL-LICENSE.txt | 278 -
html/jquery-ui/development-bundle/MIT-LICENSE.txt | 25 -
.../demos/accordion/collapsible.html | 57 -
.../demos/accordion/custom-icons.html | 69 -
.../demos/accordion/default.html | 85 -
.../demos/accordion/fillspace.html | 76 -
.../demos/accordion/hoverintent.html | 134 -
.../development-bundle/demos/accordion/index.html | 25 -
.../demos/accordion/mouseover.html | 57 -
.../demos/accordion/no-auto-height.html | 60 -
.../demos/accordion/sortable.html | 83 -
.../development-bundle/demos/addClass/default.html | 52 -
.../development-bundle/demos/addClass/index.html | 18 -
.../development-bundle/demos/animate/default.html | 61 -
.../development-bundle/demos/animate/index.html | 18 -
.../demos/autocomplete/categories.html | 71 -
.../demos/autocomplete/combobox.html | 171 -
.../demos/autocomplete/custom-data.html | 95 -
.../demos/autocomplete/default.html | 64 -
.../demos/autocomplete/folding.html | 62 -
.../demos/autocomplete/images/jquery_32x32.png | Bin 1417 -> 0 bytes
.../demos/autocomplete/images/jqueryui_32x32.png | Bin 1193 -> 0 bytes
.../demos/autocomplete/images/sizzlejs_32x32.png | Bin 999 -> 0 bytes
.../demos/autocomplete/images/transparent_1x1.png | Bin 95 -> 0 bytes
.../autocomplete/images/ui-anim_basic_16x16.gif | Bin 1459 -> 0 bytes
.../demos/autocomplete/index.html | 27 -
.../demos/autocomplete/london.xml | 114 -
.../demos/autocomplete/maxheight.html | 79 -
.../demos/autocomplete/multiple-remote.html | 84 -
.../demos/autocomplete/multiple.html | 99 -
.../demos/autocomplete/remote-jsonp.html | 86 -
.../demos/autocomplete/remote-with-cache.html | 59 -
.../demos/autocomplete/remote.html | 59 -
.../demos/autocomplete/search.php | 640 -
.../development-bundle/demos/autocomplete/xml.html | 72 -
.../development-bundle/demos/button/checkbox.html | 44 -
.../development-bundle/demos/button/default.html | 38 -
.../development-bundle/demos/button/icons.html | 56 -
.../development-bundle/demos/button/index.html | 23 -
.../development-bundle/demos/button/radio.html | 39 -
.../demos/button/splitbutton.html | 55 -
.../development-bundle/demos/button/toolbar.html | 120 -
.../demos/datepicker/alt-field.html | 36 -
.../demos/datepicker/animation.html | 58 -
.../demos/datepicker/buttonbar.html | 35 -
.../demos/datepicker/date-formats.html | 47 -
.../demos/datepicker/date-range.html | 49 -
.../demos/datepicker/default.html | 33 -
.../demos/datepicker/dropdown-month-year.html | 36 -
.../demos/datepicker/icon-trigger.html | 37 -
.../demos/datepicker/images/calendar.gif | Bin 269 -> 0 bytes
.../development-bundle/demos/datepicker/index.html | 31 -
.../demos/datepicker/inline.html | 33 -
.../demos/datepicker/localization.html | 160 -
.../demos/datepicker/min-max.html | 33 -
.../demos/datepicker/multiple-calendars.html | 36 -
.../demos/datepicker/other-months.html | 37 -
.../demos/datepicker/show-week.html | 39 -
html/jquery-ui/development-bundle/demos/demos.css | 334 -
.../development-bundle/demos/dialog/animated.html | 56 -
.../development-bundle/demos/dialog/default.html | 54 -
.../development-bundle/demos/dialog/index.html | 23 -
.../demos/dialog/modal-confirmation.html | 69 -
.../demos/dialog/modal-form.html | 167 -
.../demos/dialog/modal-message.html | 71 -
.../development-bundle/demos/dialog/modal.html | 60 -
.../demos/draggable/constrain-movement.html | 69 -
.../demos/draggable/cursor-style.html | 49 -
.../demos/draggable/default.html | 39 -
.../demos/draggable/delay-start.html | 45 -
.../development-bundle/demos/draggable/events.html | 77 -
.../development-bundle/demos/draggable/handle.html | 50 -
.../development-bundle/demos/draggable/index.html | 28 -
.../development-bundle/demos/draggable/revert.html | 44 -
.../development-bundle/demos/draggable/scroll.html | 51 -
.../demos/draggable/snap-to.html | 68 -
.../demos/draggable/sortable.html | 57 -
.../demos/draggable/visual-feedback.html | 77 -
.../demos/droppable/accepted-elements.html | 60 -
.../demos/droppable/default.html | 53 -
.../demos/droppable/images/high_tatras.jpg | Bin 22994 -> 0 bytes
.../demos/droppable/images/high_tatras2.jpg | Bin 25619 -> 0 bytes
.../demos/droppable/images/high_tatras2_min.jpg | Bin 2164 -> 0 bytes
.../demos/droppable/images/high_tatras3.jpg | Bin 24583 -> 0 bytes
.../demos/droppable/images/high_tatras3_min.jpg | Bin 1901 -> 0 bytes
.../demos/droppable/images/high_tatras4.jpg | Bin 24870 -> 0 bytes
.../demos/droppable/images/high_tatras4_min.jpg | Bin 2541 -> 0 bytes
.../demos/droppable/images/high_tatras_min.jpg | Bin 2147 -> 0 bytes
.../development-bundle/demos/droppable/index.html | 24 -
.../demos/droppable/photo-manager.html | 184 -
.../demos/droppable/propagation.html | 80 -
.../development-bundle/demos/droppable/revert.html | 61 -
.../demos/droppable/shopping-cart.html | 101 -
.../demos/droppable/visual-feedback.html | 78 -
.../development-bundle/demos/effect/default.html | 109 -
.../development-bundle/demos/effect/easing.html | 107 -
.../development-bundle/demos/effect/index.html | 19 -
.../development-bundle/demos/hide/default.html | 102 -
.../development-bundle/demos/hide/index.html | 18 -
.../development-bundle/demos/images/calendar.gif | Bin 269 -> 0 bytes
.../demos/images/demo-config-on-tile.gif | Bin 172 -> 0 bytes
.../demos/images/demo-config-on.gif | Bin 335 -> 0 bytes
.../demos/images/demo-spindown-closed.gif | Bin 103 -> 0 bytes
.../demos/images/demo-spindown-open.gif | Bin 105 -> 0 bytes
.../demos/images/icon-docs-info.gif | Bin 206 -> 0 bytes
.../development-bundle/demos/images/pbar-ani.gif | Bin 7970 -> 0 bytes
html/jquery-ui/development-bundle/demos/index.html | 320 -
.../development-bundle/demos/position/cycler.html | 122 -
.../development-bundle/demos/position/default.html | 153 -
.../demos/position/images/earth.jpg | Bin 29850 -> 0 bytes
.../demos/position/images/flight.jpg | Bin 33637 -> 0 bytes
.../demos/position/images/rocket.jpg | Bin 32986 -> 0 bytes
.../development-bundle/demos/position/index.html | 19 -
.../demos/progressbar/animated.html | 44 -
.../demos/progressbar/default.html | 35 -
.../demos/progressbar/images/pbar-ani.gif | Bin 7970 -> 0 bytes
.../demos/progressbar/index.html | 20 -
.../demos/progressbar/resize.html | 40 -
.../demos/removeClass/default.html | 52 -
.../demos/removeClass/index.html | 18 -
.../demos/resizable/animate.html | 43 -
.../demos/resizable/aspect-ratio.html | 42 -
.../demos/resizable/constrain-area.html | 47 -
.../demos/resizable/default.html | 40 -
.../demos/resizable/delay-start.html | 52 -
.../development-bundle/demos/resizable/helper.html | 43 -
.../development-bundle/demos/resizable/index.html | 28 -
.../demos/resizable/max-min.html | 45 -
.../demos/resizable/snap-to-grid.html | 42 -
.../demos/resizable/synchronous-resize.html | 49 -
.../demos/resizable/textarea.html | 41 -
.../demos/resizable/visual-feedback.html | 43 -
.../demos/selectable/default.html | 50 -
.../demos/selectable/display-grid.html | 55 -
.../development-bundle/demos/selectable/index.html | 20 -
.../demos/selectable/serialize.html | 61 -
.../development-bundle/demos/show/default.html | 104 -
.../development-bundle/demos/show/index.html | 18 -
.../demos/slider/colorpicker.html | 95 -
.../development-bundle/demos/slider/default.html | 37 -
.../demos/slider/hotelrooms.html | 59 -
.../development-bundle/demos/slider/index.html | 29 -
.../demos/slider/multiple-vertical.html | 77 -
.../demos/slider/range-vertical.html | 51 -
.../development-bundle/demos/slider/range.html | 52 -
.../development-bundle/demos/slider/rangemax.html | 50 -
.../development-bundle/demos/slider/rangemin.html | 51 -
.../demos/slider/side-scroll.html | 140 -
.../demos/slider/slider-vertical.html | 52 -
.../development-bundle/demos/slider/steps.html | 51 -
.../development-bundle/demos/slider/tabs.html | 67 -
.../demos/sortable/connect-lists-through-tabs.html | 78 -
.../demos/sortable/connect-lists.html | 58 -
.../development-bundle/demos/sortable/default.html | 51 -
.../demos/sortable/delay-start.html | 67 -
.../demos/sortable/display-grid.html | 54 -
.../demos/sortable/empty-lists.html | 69 -
.../development-bundle/demos/sortable/index.html | 26 -
.../development-bundle/demos/sortable/items.html | 70 -
.../demos/sortable/placeholder.html | 56 -
.../demos/sortable/portlets.html | 96 -
.../demos/switchClass/default.html | 47 -
.../demos/switchClass/index.html | 18 -
.../development-bundle/demos/tabs/ajax.html | 53 -
.../demos/tabs/ajax/content1.html | 4 -
.../demos/tabs/ajax/content2.html | 4 -
.../demos/tabs/ajax/content3-slow.php | 7 -
.../demos/tabs/ajax/content4-broken.php | 3 -
.../development-bundle/demos/tabs/bottom.html | 60 -
.../development-bundle/demos/tabs/collapsible.html | 55 -
.../development-bundle/demos/tabs/cookie.html | 56 -
.../development-bundle/demos/tabs/default.html | 49 -
.../development-bundle/demos/tabs/index.html | 25 -
.../demos/tabs/manipulation.html | 124 -
.../development-bundle/demos/tabs/mouseover.html | 53 -
.../development-bundle/demos/tabs/sortable.html | 58 -
.../development-bundle/demos/tabs/vertical.html | 61 -
.../development-bundle/demos/toggle/default.html | 94 -
.../development-bundle/demos/toggle/index.html | 18 -
.../demos/toggleClass/default.html | 46 -
.../demos/toggleClass/index.html | 18 -
.../development-bundle/docs/accordion.html | 1017 --
.../development-bundle/docs/addClass.html | 109 -
.../jquery-ui/development-bundle/docs/animate.html | 78 -
.../development-bundle/docs/autocomplete.html | 791 --
html/jquery-ui/development-bundle/docs/button.html | 500 -
.../development-bundle/docs/datepicker.html | 2570 -----
html/jquery-ui/development-bundle/docs/dialog.html | 1697 ---
.../development-bundle/docs/draggable.html | 1577 ---
.../development-bundle/docs/droppable.html | 829 --
html/jquery-ui/development-bundle/docs/effect.html | 143 -
html/jquery-ui/development-bundle/docs/hide.html | 144 -
.../development-bundle/docs/position.html | 227 -
.../development-bundle/docs/progressbar.html | 460 -
.../development-bundle/docs/removeClass.html | 113 -
.../development-bundle/docs/resizable.html | 1201 --
.../development-bundle/docs/selectable.html | 848 --
html/jquery-ui/development-bundle/docs/show.html | 144 -
html/jquery-ui/development-bundle/docs/slider.html | 860 --
.../development-bundle/docs/sortable.html | 1951 ----
.../development-bundle/docs/switchClass.html | 129 -
html/jquery-ui/development-bundle/docs/tabs.html | 1549 ---
html/jquery-ui/development-bundle/docs/toggle.html | 144 -
.../development-bundle/docs/toggleClass.html | 111 -
.../external/jquery.bgiframe-2.1.2.js | 39 -
.../development-bundle/external/jquery.cookie.js | 89 -
.../development-bundle/external/jquery.metadata.js | 122 -
.../development-bundle/external/qunit.css | 153 -
.../jquery-ui/development-bundle/external/qunit.js | 1261 --
html/jquery-ui/development-bundle/jquery-1.4.4.js | 7179 ------------
.../base/images/ui-bg_flat_0_aaaaaa_40x100.png | Bin 180 -> 0 bytes
.../base/images/ui-bg_flat_75_ffffff_40x100.png | Bin 178 -> 0 bytes
.../base/images/ui-bg_glass_55_fbf9ee_1x400.png | Bin 120 -> 0 bytes
.../base/images/ui-bg_glass_65_ffffff_1x400.png | Bin 105 -> 0 bytes
.../base/images/ui-bg_glass_75_dadada_1x400.png | Bin 111 -> 0 bytes
.../base/images/ui-bg_glass_75_e6e6e6_1x400.png | Bin 110 -> 0 bytes
.../base/images/ui-bg_glass_95_fef1ec_1x400.png | Bin 119 -> 0 bytes
.../ui-bg_highlight-soft_75_cccccc_1x100.png | Bin 101 -> 0 bytes
.../themes/base/images/ui-icons_222222_256x240.png | Bin 4369 -> 0 bytes
.../themes/base/images/ui-icons_2e83ff_256x240.png | Bin 4369 -> 0 bytes
.../themes/base/images/ui-icons_454545_256x240.png | Bin 4369 -> 0 bytes
.../themes/base/images/ui-icons_888888_256x240.png | Bin 4369 -> 0 bytes
.../themes/base/images/ui-icons_cd0a0a_256x240.png | Bin 4369 -> 0 bytes
.../themes/base/jquery.ui.accordion.css | 19 -
.../themes/base/jquery.ui.all.css | 11 -
.../themes/base/jquery.ui.autocomplete.css | 53 -
.../themes/base/jquery.ui.base.css | 11 -
.../themes/base/jquery.ui.button.css | 38 -
.../themes/base/jquery.ui.core.css | 41 -
.../themes/base/jquery.ui.datepicker.css | 68 -
.../themes/base/jquery.ui.dialog.css | 21 -
.../themes/base/jquery.ui.progressbar.css | 11 -
.../themes/base/jquery.ui.resizable.css | 20 -
.../themes/base/jquery.ui.selectable.css | 10 -
.../themes/base/jquery.ui.slider.css | 24 -
.../themes/base/jquery.ui.tabs.css | 18 -
.../themes/base/jquery.ui.theme.css | 252 -
.../ui-bg_diagonals-thick_18_b81900_40x40.png | Bin 260 -> 0 bytes
.../ui-bg_diagonals-thick_20_666666_40x40.png | Bin 251 -> 0 bytes
.../images/ui-bg_flat_10_000000_40x100.png | Bin 178 -> 0 bytes
.../images/ui-bg_glass_100_f6f6f6_1x400.png | Bin 104 -> 0 bytes
.../images/ui-bg_glass_100_fdf5ce_1x400.png | Bin 125 -> 0 bytes
.../images/ui-bg_glass_65_ffffff_1x400.png | Bin 105 -> 0 bytes
.../images/ui-bg_gloss-wave_35_f6a828_500x100.png | Bin 3762 -> 0 bytes
.../ui-bg_highlight-soft_100_eeeeee_1x100.png | Bin 90 -> 0 bytes
.../ui-bg_highlight-soft_75_ffe45c_1x100.png | Bin 129 -> 0 bytes
.../images/ui-icons_222222_256x240.png | Bin 4369 -> 0 bytes
.../images/ui-icons_228ef1_256x240.png | Bin 4369 -> 0 bytes
.../images/ui-icons_ef8c08_256x240.png | Bin 4369 -> 0 bytes
.../images/ui-icons_ffd27a_256x240.png | Bin 4369 -> 0 bytes
.../images/ui-icons_ffffff_256x240.png | Bin 4369 -> 0 bytes
.../themes/ui-lightness/jquery-ui-1.8.9.custom.css | 573 -
.../themes/ui-lightness/jquery.ui.accordion.css | 19 -
.../themes/ui-lightness/jquery.ui.all.css | 11 -
.../themes/ui-lightness/jquery.ui.autocomplete.css | 53 -
.../themes/ui-lightness/jquery.ui.base.css | 11 -
.../themes/ui-lightness/jquery.ui.button.css | 38 -
.../themes/ui-lightness/jquery.ui.core.css | 41 -
.../themes/ui-lightness/jquery.ui.datepicker.css | 68 -
.../themes/ui-lightness/jquery.ui.dialog.css | 21 -
.../themes/ui-lightness/jquery.ui.progressbar.css | 11 -
.../themes/ui-lightness/jquery.ui.resizable.css | 20 -
.../themes/ui-lightness/jquery.ui.selectable.css | 10 -
.../themes/ui-lightness/jquery.ui.slider.css | 24 -
.../themes/ui-lightness/jquery.ui.tabs.css | 18 -
.../themes/ui-lightness/jquery.ui.theme.css | 254 -
.../development-bundle/ui/i18n/jquery-ui-i18n.js | 1357 ---
.../ui/i18n/jquery.ui.datepicker-af.js | 23 -
.../ui/i18n/jquery.ui.datepicker-ar-DZ.js | 23 -
.../ui/i18n/jquery.ui.datepicker-ar.js | 23 -
.../ui/i18n/jquery.ui.datepicker-az.js | 23 -
.../ui/i18n/jquery.ui.datepicker-bg.js | 24 -
.../ui/i18n/jquery.ui.datepicker-bs.js | 23 -
.../ui/i18n/jquery.ui.datepicker-ca.js | 23 -
.../ui/i18n/jquery.ui.datepicker-cs.js | 23 -
.../ui/i18n/jquery.ui.datepicker-da.js | 23 -
.../ui/i18n/jquery.ui.datepicker-de.js | 23 -
.../ui/i18n/jquery.ui.datepicker-el.js | 23 -
.../ui/i18n/jquery.ui.datepicker-en-AU.js | 23 -
.../ui/i18n/jquery.ui.datepicker-en-GB.js | 23 -
.../ui/i18n/jquery.ui.datepicker-en-NZ.js | 23 -
.../ui/i18n/jquery.ui.datepicker-eo.js | 23 -
.../ui/i18n/jquery.ui.datepicker-es.js | 23 -
.../ui/i18n/jquery.ui.datepicker-et.js | 23 -
.../ui/i18n/jquery.ui.datepicker-eu.js | 23 -
.../ui/i18n/jquery.ui.datepicker-fa.js | 23 -
.../ui/i18n/jquery.ui.datepicker-fi.js | 23 -
.../ui/i18n/jquery.ui.datepicker-fo.js | 23 -
.../ui/i18n/jquery.ui.datepicker-fr-CH.js | 23 -
.../ui/i18n/jquery.ui.datepicker-fr.js | 25 -
.../ui/i18n/jquery.ui.datepicker-gl.js | 23 -
.../ui/i18n/jquery.ui.datepicker-he.js | 23 -
.../ui/i18n/jquery.ui.datepicker-hr.js | 23 -
.../ui/i18n/jquery.ui.datepicker-hu.js | 23 -
.../ui/i18n/jquery.ui.datepicker-hy.js | 23 -
.../ui/i18n/jquery.ui.datepicker-id.js | 23 -
.../ui/i18n/jquery.ui.datepicker-is.js | 23 -
.../ui/i18n/jquery.ui.datepicker-it.js | 23 -
.../ui/i18n/jquery.ui.datepicker-ja.js | 23 -
.../ui/i18n/jquery.ui.datepicker-ko.js | 23 -
.../ui/i18n/jquery.ui.datepicker-kz.js | 23 -
.../ui/i18n/jquery.ui.datepicker-lt.js | 23 -
.../ui/i18n/jquery.ui.datepicker-lv.js | 23 -
.../ui/i18n/jquery.ui.datepicker-ml.js | 23 -
.../ui/i18n/jquery.ui.datepicker-ms.js | 23 -
.../ui/i18n/jquery.ui.datepicker-nl.js | 23 -
.../ui/i18n/jquery.ui.datepicker-no.js | 23 -
.../ui/i18n/jquery.ui.datepicker-pl.js | 23 -
.../ui/i18n/jquery.ui.datepicker-pt-BR.js | 23 -
.../ui/i18n/jquery.ui.datepicker-pt.js | 22 -
.../ui/i18n/jquery.ui.datepicker-rm.js | 21 -
.../ui/i18n/jquery.ui.datepicker-ro.js | 26 -
.../ui/i18n/jquery.ui.datepicker-ru.js | 23 -
.../ui/i18n/jquery.ui.datepicker-sk.js | 23 -
.../ui/i18n/jquery.ui.datepicker-sl.js | 24 -
.../ui/i18n/jquery.ui.datepicker-sq.js | 23 -
.../ui/i18n/jquery.ui.datepicker-sr-SR.js | 23 -
.../ui/i18n/jquery.ui.datepicker-sr.js | 23 -
.../ui/i18n/jquery.ui.datepicker-sv.js | 23 -
.../ui/i18n/jquery.ui.datepicker-ta.js | 23 -
.../ui/i18n/jquery.ui.datepicker-th.js | 23 -
.../ui/i18n/jquery.ui.datepicker-tr.js | 23 -
.../ui/i18n/jquery.ui.datepicker-uk.js | 23 -
.../ui/i18n/jquery.ui.datepicker-vi.js | 23 -
.../ui/i18n/jquery.ui.datepicker-zh-CN.js | 23 -
.../ui/i18n/jquery.ui.datepicker-zh-HK.js | 23 -
.../ui/i18n/jquery.ui.datepicker-zh-TW.js | 23 -
.../ui/jquery-ui-1.8.9.custom.js | 11530 -------------------
.../development-bundle/ui/jquery.effects.blind.js | 49 -
.../development-bundle/ui/jquery.effects.bounce.js | 78 -
.../development-bundle/ui/jquery.effects.clip.js | 54 -
.../development-bundle/ui/jquery.effects.core.js | 747 --
.../development-bundle/ui/jquery.effects.drop.js | 50 -
.../ui/jquery.effects.explode.js | 79 -
.../development-bundle/ui/jquery.effects.fade.js | 32 -
.../development-bundle/ui/jquery.effects.fold.js | 56 -
.../ui/jquery.effects.highlight.js | 50 -
.../ui/jquery.effects.pulsate.js | 51 -
.../development-bundle/ui/jquery.effects.scale.js | 178 -
.../development-bundle/ui/jquery.effects.shake.js | 57 -
.../development-bundle/ui/jquery.effects.slide.js | 50 -
.../ui/jquery.effects.transfer.js | 45 -
.../development-bundle/ui/jquery.ui.accordion.js | 606 -
.../ui/jquery.ui.autocomplete.js | 605 -
.../development-bundle/ui/jquery.ui.button.js | 373 -
.../development-bundle/ui/jquery.ui.core.js | 308 -
.../development-bundle/ui/jquery.ui.datepicker.js | 1759 ---
.../development-bundle/ui/jquery.ui.dialog.js | 857 --
.../development-bundle/ui/jquery.ui.draggable.js | 797 --
.../development-bundle/ui/jquery.ui.droppable.js | 285 -
.../development-bundle/ui/jquery.ui.mouse.js | 151 -
.../development-bundle/ui/jquery.ui.position.js | 252 -
.../development-bundle/ui/jquery.ui.progressbar.js | 108 -
.../development-bundle/ui/jquery.ui.resizable.js | 812 --
.../development-bundle/ui/jquery.ui.selectable.js | 266 -
.../development-bundle/ui/jquery.ui.slider.js | 682 --
.../development-bundle/ui/jquery.ui.sortable.js | 1073 --
.../development-bundle/ui/jquery.ui.tabs.js | 758 --
.../development-bundle/ui/jquery.ui.widget.js | 262 -
.../ui/minified/jquery.effects.blind.min.js | 14 -
.../ui/minified/jquery.effects.bounce.min.js | 15 -
.../ui/minified/jquery.effects.clip.min.js | 14 -
.../ui/minified/jquery.effects.core.min.js | 30 -
.../ui/minified/jquery.effects.drop.min.js | 14 -
.../ui/minified/jquery.effects.explode.min.js | 15 -
.../ui/minified/jquery.effects.fade.min.js | 13 -
.../ui/minified/jquery.effects.fold.min.js | 14 -
.../ui/minified/jquery.effects.highlight.min.js | 14 -
.../ui/minified/jquery.effects.pulsate.min.js | 14 -
.../ui/minified/jquery.effects.scale.min.js | 20 -
.../ui/minified/jquery.effects.shake.min.js | 14 -
.../ui/minified/jquery.effects.slide.min.js | 14 -
.../ui/minified/jquery.effects.transfer.min.js | 14 -
.../ui/minified/jquery.ui.accordion.min.js | 30 -
.../ui/minified/jquery.ui.autocomplete.min.js | 31 -
.../ui/minified/jquery.ui.button.min.js | 25 -
.../ui/minified/jquery.ui.core.min.js | 17 -
.../ui/minified/jquery.ui.datepicker.min.js | 81 -
.../ui/minified/jquery.ui.dialog.min.js | 40 -
.../ui/minified/jquery.ui.draggable.min.js | 50 -
.../ui/minified/jquery.ui.droppable.min.js | 26 -
.../ui/minified/jquery.ui.mouse.min.js | 17 -
.../ui/minified/jquery.ui.position.min.js | 16 -
.../ui/minified/jquery.ui.progressbar.min.js | 16 -
.../ui/minified/jquery.ui.resizable.min.js | 47 -
.../ui/minified/jquery.ui.selectable.min.js | 22 -
.../ui/minified/jquery.ui.slider.min.js | 33 -
.../ui/minified/jquery.ui.sortable.min.js | 60 -
.../ui/minified/jquery.ui.tabs.min.js | 35 -
.../ui/minified/jquery.ui.widget.min.js | 15 -
html/jquery-ui/development-bundle/version.txt | 1 -
392 files changed, 64790 deletions(-)
commit 0d6734fe272a8c1da657b5c4fa5bc33230799414
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Mar 29 16:58:14 2011 +0200
Removes the ads-box from main Web view
html/index.html | 29 +++--------------------------
1 file changed, 3 insertions(+), 26 deletions(-)
commit 168caf51ad73499704f0976b32d6f21d92b31c05
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Mar 29 16:09:23 2011 +0200
Organizes a bit client-side code
- Adds 'require.js' JS library.
- Creates jsonRpc.js to centralize RPC comm with server.
- Lots of other cosmetic fixes.
html/fileTea.js | 1 -
html/index.html | 170 ++++++++++++++++++++++++++++--------------------
html/jsonRpc.js | 37 +++++++++++
html/require.js | 32 +++++++++
html/sharedFilesView.js | 7 +-
5 files changed, 175 insertions(+), 72 deletions(-)
commit 58aae1ab43a868164052cd7b3dfb5d33920cde7b
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Mar 29 13:36:44 2011 +0200
Adds 'getFileSourceInfo' method to server-side JSON-RPC handler
also factorizing its code a bit.
main.c | 62 +++++++++++++++++++++++++++++++++++++++++---------------------
1 file changed, 41 insertions(+), 21 deletions(-)
commit a7c8929f764ef709c8eb74f6a942cbc3c8ecd6fb
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Mar 12 10:10:33 2011 +0100
Uses an EvdDaemon instead of a GMainLoop directly
main.c | 31 +++++++++----------------------
1 file changed, 9 insertions(+), 22 deletions(-)
commit 56ea083086882924a7a0ed5eb1535f129050e078
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sat Mar 12 09:37:20 2011 +0100
Replaces listen_async() by listen() due to API changes in EvdService
main.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
commit 03f2659feaf48e914ed1038fe6bbf1befe702c95
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Mar 8 16:14:14 2011 +0100
Use new API in EvdJsonrpc to associate with an EvdTransport
main.c | 55 +++++--------------------------------------------------
1 file changed, 5 insertions(+), 50 deletions(-)
commit faada30fede5fb3f82eb453401bf897dc634161d
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Mar 8 10:44:55 2011 +0100
Removes cancellable argument from calls to evd_http_connection_respond()
This argument has been removed in EventDance.
file-transfer.c | 3 ---
1 file changed, 3 deletions(-)
commit 7e0cc13bb6f7722bc5708654184b74ac4cc3b180
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Feb 27 21:01:31 2011 +0100
Adds new script to main page for global Javascript functionality
html/fileTea.js | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
html/index.html | 2 ++
2 files changed, 58 insertions(+)
commit 8fb8e814cb66679395fdcee2a25de1209e545ced
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Tue Mar 1 10:16:11 2011 +0100
[html] Removes border to the HTML5 logo image
html/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 484c5719a5a1636bc442ef85bd4f7d1f736b7c52
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Feb 27 21:12:18 2011 +0100
Adds html5 logo image to repo and updates src of its image
html/html5_logo_32.png | Bin 0 -> 816 bytes
html/index.html | 2 +-
2 files changed, 1 insertion(+), 1 deletion(-)
commit 4258b6779607267021d9aba349e27cc06be85448
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Feb 27 20:41:35 2011 +0100
Renames fileSourceView.js to sharedFilesView.js
html/fileSourceView.js | 94 -------------------------------------------------
html/sharedFilesView.js | 94 +++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 94 insertions(+), 94 deletions(-)
commit 25bfc544d8988c1468b52e6010a5a11ec36840b7
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Feb 27 20:40:08 2011 +0100
Wraps tabs navigator by a 'content' div
html/index.html | 3 +++
1 file changed, 3 insertions(+)
commit ded885648dc137e2f294c5290bb769d063660dea
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Feb 27 20:39:32 2011 +0100
Renames file selector element to 'shared-files-selector'
html/index.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
commit f37f78f3f5bc9620696cf57f79dfb6c55f46c206
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Feb 27 20:38:54 2011 +0100
Adds more content to html footer
html/index.html | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
commit 0e786e058515218475ff488b3836e4ade8114513
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Feb 27 20:36:57 2011 +0100
Change to absolute urls everywhere in html
This is neccesary to allow providing proper content content regardless of
url path served.
html/index.html | 29 +++++++++++++++++++----------
1 file changed, 19 insertions(+), 10 deletions(-)
commit 1de796ea29012d07f8a700ac59cb1a365aca24d9
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Feb 27 20:33:49 2011 +0100
Organizes and cleans up css a bit
html/index.html | 118 ++-------------------------------------------
html/shared-files-view.css | 100 ++++++++++++++++++++++++++++++++++++++
2 files changed, 104 insertions(+), 114 deletions(-)
commit d2a9b358ef9ba93599741aa3ea42cfe1f4994e2b
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Feb 27 20:25:06 2011 +0100
Cleans up code in web streamer request handler routine
main.c | 107 ++++++++++++++++++++++++++++++++++++++++++++---------------------
1 file changed, 72 insertions(+), 35 deletions(-)
commit 2f98c1975b57fe8c679acb3ccf3ae9873410ed3c
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Sun Feb 27 14:23:57 2011 +0100
Removes unnecessary stream service to the Web selector
main.c | 6 ------
1 file changed, 6 deletions(-)
commit 41b5fab338e2f634b4abe787d53814a8d23fc165
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Feb 25 18:18:51 2011 +0100
Adds routine to generate file source ids
Now file sources ids are generated outside using a global service instance id as prefix.
This instance id uniquely identifies any running filetea service, and will be used to
route requests within a future distributed architecture.
main.c | 47 ++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 46 insertions(+), 1 deletion(-)
commit 81d10da790f5c3e0863762f45f1ef13c7341432a
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Feb 25 18:14:38 2011 +0100
Takes out the FileSource id generation
As we will encode other info inside a file source id, we need to generate it
outside the context of the file source, so now we pass it as argument to the
new() method, instead of generating it inside.
file-source.c | 13 ++-----------
file-source.h | 1 +
2 files changed, 3 insertions(+), 11 deletions(-)
commit 74e64fd430fd824b370e832cffb9c036a221f2ee
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Fri Feb 25 18:12:12 2011 +0100
Adds a 'download' flag to FileTransfer structure
and moves the 'download' argument from start() to new(). Whether the user want to download
or play de file is known when the FileStructure is created, not when the actual transfer
starts.
file-transfer.c | 7 +++++--
file-transfer.h | 5 +++--
2 files changed, 8 insertions(+), 4 deletions(-)
commit 8dc756fc3b8267d458277491360720b1e69e8ebf
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Thu Feb 24 00:20:29 2011 +0100
[ui] Adds a logo and slogan element, and a top gradient bg to index page
html/gradient-top.png | Bin 0 -> 131 bytes
html/index.html | 20 +++++++++++++++++++-
2 files changed, 19 insertions(+), 1 deletion(-)
commit 40098a7854be14e799ae9ac971ca73fb3b37e6f6
Author: Eduardo Lima Mitev <elima@igalia.com>
Date: Wed Feb 23 23:25:25 2011 +0100
Initial commit. FileTea comes to life!
Directly from concept-proof prototype, no autotools integration yet.
Makefile | 16 +
file-source.c | 78 +
file-source.h | 24 +
file-transfer.c | 400 +
file-transfer.h | 49 +
html/delete.png | Bin 0 -> 2758 bytes
html/fileSourceView.js | 94 +
html/index.html | 385 +
.../start/images/ui-bg_flat_55_999999_40x100.png | Bin 0 -> 180 bytes
.../start/images/ui-bg_flat_75_aaaaaa_40x100.png | Bin 0 -> 180 bytes
.../start/images/ui-bg_glass_45_0078ae_1x400.png | Bin 0 -> 136 bytes
.../start/images/ui-bg_glass_55_f8da4e_1x400.png | Bin 0 -> 131 bytes
.../start/images/ui-bg_glass_75_79c9ec_1x400.png | Bin 0 -> 132 bytes
.../images/ui-bg_gloss-wave_45_e14f1c_500x100.png | Bin 0 -> 3649 bytes
.../images/ui-bg_gloss-wave_50_6eac2c_500x100.png | Bin 0 -> 4256 bytes
.../images/ui-bg_gloss-wave_75_2191c0_500x100.png | Bin 0 -> 3457 bytes
.../images/ui-bg_inset-hard_100_fcfdfd_1x100.png | Bin 0 -> 88 bytes
.../css/start/images/ui-icons_0078ae_256x240.png | Bin 0 -> 4369 bytes
.../css/start/images/ui-icons_056b93_256x240.png | Bin 0 -> 5355 bytes
.../css/start/images/ui-icons_d8e7f3_256x240.png | Bin 0 -> 5355 bytes
.../css/start/images/ui-icons_e0fdff_256x240.png | Bin 0 -> 4369 bytes
.../css/start/images/ui-icons_f5e175_256x240.png | Bin 0 -> 4369 bytes
.../css/start/images/ui-icons_f7a50d_256x240.png | Bin 0 -> 4369 bytes
.../css/start/images/ui-icons_fcd113_256x240.png | Bin 0 -> 4369 bytes
.../jquery-ui/css/start/jquery-ui-1.8.9.custom.css | 573 +
.../css/start/jquery-ui-1.8.9.custom.css-backup | 295 +
html/jquery-ui/development-bundle/AUTHORS.txt | 30 +
html/jquery-ui/development-bundle/GPL-LICENSE.txt | 278 +
html/jquery-ui/development-bundle/MIT-LICENSE.txt | 25 +
.../demos/accordion/collapsible.html | 57 +
.../demos/accordion/custom-icons.html | 69 +
.../demos/accordion/default.html | 85 +
.../demos/accordion/fillspace.html | 76 +
.../demos/accordion/hoverintent.html | 134 +
.../development-bundle/demos/accordion/index.html | 25 +
.../demos/accordion/mouseover.html | 57 +
.../demos/accordion/no-auto-height.html | 60 +
.../demos/accordion/sortable.html | 83 +
.../development-bundle/demos/addClass/default.html | 52 +
.../development-bundle/demos/addClass/index.html | 18 +
.../development-bundle/demos/animate/default.html | 61 +
.../development-bundle/demos/animate/index.html | 18 +
.../demos/autocomplete/categories.html | 71 +
.../demos/autocomplete/combobox.html | 171 +
.../demos/autocomplete/custom-data.html | 95 +
.../demos/autocomplete/default.html | 64 +
.../demos/autocomplete/folding.html | 62 +
.../demos/autocomplete/images/jquery_32x32.png | Bin 0 -> 1417 bytes
.../demos/autocomplete/images/jqueryui_32x32.png | Bin 0 -> 1193 bytes
.../demos/autocomplete/images/sizzlejs_32x32.png | Bin 0 -> 999 bytes
.../demos/autocomplete/images/transparent_1x1.png | Bin 0 -> 95 bytes
.../autocomplete/images/ui-anim_basic_16x16.gif | Bin 0 -> 1459 bytes
.../demos/autocomplete/index.html | 27 +
.../demos/autocomplete/london.xml | 114 +
.../demos/autocomplete/maxheight.html | 79 +
.../demos/autocomplete/multiple-remote.html | 84 +
.../demos/autocomplete/multiple.html | 99 +
.../demos/autocomplete/remote-jsonp.html | 86 +
.../demos/autocomplete/remote-with-cache.html | 59 +
.../demos/autocomplete/remote.html | 59 +
.../demos/autocomplete/search.php | 640 +
.../development-bundle/demos/autocomplete/xml.html | 72 +
.../development-bundle/demos/button/checkbox.html | 44 +
.../development-bundle/demos/button/default.html | 38 +
.../development-bundle/demos/button/icons.html | 56 +
.../development-bundle/demos/button/index.html | 23 +
.../development-bundle/demos/button/radio.html | 39 +
.../demos/button/splitbutton.html | 55 +
.../development-bundle/demos/button/toolbar.html | 120 +
.../demos/datepicker/alt-field.html | 36 +
.../demos/datepicker/animation.html | 58 +
.../demos/datepicker/buttonbar.html | 35 +
.../demos/datepicker/date-formats.html | 47 +
.../demos/datepicker/date-range.html | 49 +
.../demos/datepicker/default.html | 33 +
.../demos/datepicker/dropdown-month-year.html | 36 +
.../demos/datepicker/icon-trigger.html | 37 +
.../demos/datepicker/images/calendar.gif | Bin 0 -> 269 bytes
.../development-bundle/demos/datepicker/index.html | 31 +
.../demos/datepicker/inline.html | 33 +
.../demos/datepicker/localization.html | 160 +
.../demos/datepicker/min-max.html | 33 +
.../demos/datepicker/multiple-calendars.html | 36 +
.../demos/datepicker/other-months.html | 37 +
.../demos/datepicker/show-week.html | 39 +
html/jquery-ui/development-bundle/demos/demos.css | 334 +
.../development-bundle/demos/dialog/animated.html | 56 +
.../development-bundle/demos/dialog/default.html | 54 +
.../development-bundle/demos/dialog/index.html | 23 +
.../demos/dialog/modal-confirmation.html | 69 +
.../demos/dialog/modal-form.html | 167 +
.../demos/dialog/modal-message.html | 71 +
.../development-bundle/demos/dialog/modal.html | 60 +
.../demos/draggable/constrain-movement.html | 69 +
.../demos/draggable/cursor-style.html | 49 +
.../demos/draggable/default.html | 39 +
.../demos/draggable/delay-start.html | 45 +
.../development-bundle/demos/draggable/events.html | 77 +
.../development-bundle/demos/draggable/handle.html | 50 +
.../development-bundle/demos/draggable/index.html | 28 +
.../development-bundle/demos/draggable/revert.html | 44 +
.../development-bundle/demos/draggable/scroll.html | 51 +
.../demos/draggable/snap-to.html | 68 +
.../demos/draggable/sortable.html | 57 +
.../demos/draggable/visual-feedback.html | 77 +
.../demos/droppable/accepted-elements.html | 60 +
.../demos/droppable/default.html | 53 +
.../demos/droppable/images/high_tatras.jpg | Bin 0 -> 22994 bytes
.../demos/droppable/images/high_tatras2.jpg | Bin 0 -> 25619 bytes
.../demos/droppable/images/high_tatras2_min.jpg | Bin 0 -> 2164 bytes
.../demos/droppable/images/high_tatras3.jpg | Bin 0 -> 24583 bytes
.../demos/droppable/images/high_tatras3_min.jpg | Bin 0 -> 1901 bytes
.../demos/droppable/images/high_tatras4.jpg | Bin 0 -> 24870 bytes
.../demos/droppable/images/high_tatras4_min.jpg | Bin 0 -> 2541 bytes
.../demos/droppable/images/high_tatras_min.jpg | Bin 0 -> 2147 bytes
.../development-bundle/demos/droppable/index.html | 24 +
.../demos/droppable/photo-manager.html | 184 +
.../demos/droppable/propagation.html | 80 +
.../development-bundle/demos/droppable/revert.html | 61 +
.../demos/droppable/shopping-cart.html | 101 +
.../demos/droppable/visual-feedback.html | 78 +
.../development-bundle/demos/effect/default.html | 109 +
.../development-bundle/demos/effect/easing.html | 107 +
.../development-bundle/demos/effect/index.html | 19 +
.../development-bundle/demos/hide/default.html | 102 +
.../development-bundle/demos/hide/index.html | 18 +
.../development-bundle/demos/images/calendar.gif | Bin 0 -> 269 bytes
.../demos/images/demo-config-on-tile.gif | Bin 0 -> 172 bytes
.../demos/images/demo-config-on.gif | Bin 0 -> 335 bytes
.../demos/images/demo-spindown-closed.gif | Bin 0 -> 103 bytes
.../demos/images/demo-spindown-open.gif | Bin 0 -> 105 bytes
.../demos/images/icon-docs-info.gif | Bin 0 -> 206 bytes
.../development-bundle/demos/images/pbar-ani.gif | Bin 0 -> 7970 bytes
html/jquery-ui/development-bundle/demos/index.html | 320 +
.../development-bundle/demos/position/cycler.html | 122 +
.../development-bundle/demos/position/default.html | 153 +
.../demos/position/images/earth.jpg | Bin 0 -> 29850 bytes
.../demos/position/images/flight.jpg | Bin 0 -> 33637 bytes
.../demos/position/images/rocket.jpg | Bin 0 -> 32986 bytes
.../development-bundle/demos/position/index.html | 19 +
.../demos/progressbar/animated.html | 44 +
.../demos/progressbar/default.html | 35 +
.../demos/progressbar/images/pbar-ani.gif | Bin 0 -> 7970 bytes
.../demos/progressbar/index.html | 20 +
.../demos/progressbar/resize.html | 40 +
.../demos/removeClass/default.html | 52 +
.../demos/removeClass/index.html | 18 +
.../demos/resizable/animate.html | 43 +
.../demos/resizable/aspect-ratio.html | 42 +
.../demos/resizable/constrain-area.html | 47 +
.../demos/resizable/default.html | 40 +
.../demos/resizable/delay-start.html | 52 +
.../development-bundle/demos/resizable/helper.html | 43 +
.../development-bundle/demos/resizable/index.html | 28 +
.../demos/resizable/max-min.html | 45 +
.../demos/resizable/snap-to-grid.html | 42 +
.../demos/resizable/synchronous-resize.html | 49 +
.../demos/resizable/textarea.html | 41 +
.../demos/resizable/visual-feedback.html | 43 +
.../demos/selectable/default.html | 50 +
.../demos/selectable/display-grid.html | 55 +
.../development-bundle/demos/selectable/index.html | 20 +
.../demos/selectable/serialize.html | 61 +
.../development-bundle/demos/show/default.html | 104 +
.../development-bundle/demos/show/index.html | 18 +
.../demos/slider/colorpicker.html | 95 +
.../development-bundle/demos/slider/default.html | 37 +
.../demos/slider/hotelrooms.html | 59 +
.../development-bundle/demos/slider/index.html | 29 +
.../demos/slider/multiple-vertical.html | 77 +
.../demos/slider/range-vertical.html | 51 +
.../development-bundle/demos/slider/range.html | 52 +
.../development-bundle/demos/slider/rangemax.html | 50 +
.../development-bundle/demos/slider/rangemin.html | 51 +
.../demos/slider/side-scroll.html | 140 +
.../demos/slider/slider-vertical.html | 52 +
.../development-bundle/demos/slider/steps.html | 51 +
.../development-bundle/demos/slider/tabs.html | 67 +
.../demos/sortable/connect-lists-through-tabs.html | 78 +
.../demos/sortable/connect-lists.html | 58 +
.../development-bundle/demos/sortable/default.html | 51 +
.../demos/sortable/delay-start.html | 67 +
.../demos/sortable/display-grid.html | 54 +
.../demos/sortable/empty-lists.html | 69 +
.../development-bundle/demos/sortable/index.html | 26 +
.../development-bundle/demos/sortable/items.html | 70 +
.../demos/sortable/placeholder.html | 56 +
.../demos/sortable/portlets.html | 96 +
.../demos/switchClass/default.html | 47 +
.../demos/switchClass/index.html | 18 +
.../development-bundle/demos/tabs/ajax.html | 53 +
.../demos/tabs/ajax/content1.html | 4 +
.../demos/tabs/ajax/content2.html | 4 +
.../demos/tabs/ajax/content3-slow.php | 7 +
.../demos/tabs/ajax/content4-broken.php | 3 +
.../development-bundle/demos/tabs/bottom.html | 60 +
.../development-bundle/demos/tabs/collapsible.html | 55 +
.../development-bundle/demos/tabs/cookie.html | 56 +
.../development-bundle/demos/tabs/default.html | 49 +
.../development-bundle/demos/tabs/index.html | 25 +
.../demos/tabs/manipulation.html | 124 +
.../development-bundle/demos/tabs/mouseover.html | 53 +
.../development-bundle/demos/tabs/sortable.html | 58 +
.../development-bundle/demos/tabs/vertical.html | 61 +
.../development-bundle/demos/toggle/default.html | 94 +
.../development-bundle/demos/toggle/index.html | 18 +
.../demos/toggleClass/default.html | 46 +
.../demos/toggleClass/index.html | 18 +
.../development-bundle/docs/accordion.html | 1017 ++
.../development-bundle/docs/addClass.html | 109 +
.../jquery-ui/development-bundle/docs/animate.html | 78 +
.../development-bundle/docs/autocomplete.html | 791 ++
html/jquery-ui/development-bundle/docs/button.html | 500 +
.../development-bundle/docs/datepicker.html | 2570 +++++
html/jquery-ui/development-bundle/docs/dialog.html | 1697 +++
.../development-bundle/docs/draggable.html | 1577 +++
.../development-bundle/docs/droppable.html | 829 ++
html/jquery-ui/development-bundle/docs/effect.html | 143 +
html/jquery-ui/development-bundle/docs/hide.html | 144 +
.../development-bundle/docs/position.html | 227 +
.../development-bundle/docs/progressbar.html | 460 +
.../development-bundle/docs/removeClass.html | 113 +
.../development-bundle/docs/resizable.html | 1201 ++
.../development-bundle/docs/selectable.html | 848 ++
html/jquery-ui/development-bundle/docs/show.html | 144 +
html/jquery-ui/development-bundle/docs/slider.html | 860 ++
.../development-bundle/docs/sortable.html | 1951 ++++
.../development-bundle/docs/switchClass.html | 129 +
html/jquery-ui/development-bundle/docs/tabs.html | 1549 +++
html/jquery-ui/development-bundle/docs/toggle.html | 144 +
.../development-bundle/docs/toggleClass.html | 111 +
.../external/jquery.bgiframe-2.1.2.js | 39 +
.../development-bundle/external/jquery.cookie.js | 89 +
.../development-bundle/external/jquery.metadata.js | 122 +
.../development-bundle/external/qunit.css | 153 +
.../jquery-ui/development-bundle/external/qunit.js | 1261 ++
html/jquery-ui/development-bundle/jquery-1.4.4.js | 7179 ++++++++++++
.../base/images/ui-bg_flat_0_aaaaaa_40x100.png | Bin 0 -> 180 bytes
.../base/images/ui-bg_flat_75_ffffff_40x100.png | Bin 0 -> 178 bytes
.../base/images/ui-bg_glass_55_fbf9ee_1x400.png | Bin 0 -> 120 bytes
.../base/images/ui-bg_glass_65_ffffff_1x400.png | Bin 0 -> 105 bytes
.../base/images/ui-bg_glass_75_dadada_1x400.png | Bin 0 -> 111 bytes
.../base/images/ui-bg_glass_75_e6e6e6_1x400.png | Bin 0 -> 110 bytes
.../base/images/ui-bg_glass_95_fef1ec_1x400.png | Bin 0 -> 119 bytes
.../ui-bg_highlight-soft_75_cccccc_1x100.png | Bin 0 -> 101 bytes
.../themes/base/images/ui-icons_222222_256x240.png | Bin 0 -> 4369 bytes
.../themes/base/images/ui-icons_2e83ff_256x240.png | Bin 0 -> 4369 bytes
.../themes/base/images/ui-icons_454545_256x240.png | Bin 0 -> 4369 bytes
.../themes/base/images/ui-icons_888888_256x240.png | Bin 0 -> 4369 bytes
.../themes/base/images/ui-icons_cd0a0a_256x240.png | Bin 0 -> 4369 bytes
.../themes/base/jquery.ui.accordion.css | 19 +
.../themes/base/jquery.ui.all.css | 11 +
.../themes/base/jquery.ui.autocomplete.css | 53 +
.../themes/base/jquery.ui.base.css | 11 +
.../themes/base/jquery.ui.button.css | 38 +
.../themes/base/jquery.ui.core.css | 41 +
.../themes/base/jquery.ui.datepicker.css | 68 +
.../themes/base/jquery.ui.dialog.css | 21 +
.../themes/base/jquery.ui.progressbar.css | 11 +
.../themes/base/jquery.ui.resizable.css | 20 +
.../themes/base/jquery.ui.selectable.css | 10 +
.../themes/base/jquery.ui.slider.css | 24 +
.../themes/base/jquery.ui.tabs.css | 18 +
.../themes/base/jquery.ui.theme.css | 252 +
.../ui-bg_diagonals-thick_18_b81900_40x40.png | Bin 0 -> 260 bytes
.../ui-bg_diagonals-thick_20_666666_40x40.png | Bin 0 -> 251 bytes
.../images/ui-bg_flat_10_000000_40x100.png | Bin 0 -> 178 bytes
.../images/ui-bg_glass_100_f6f6f6_1x400.png | Bin 0 -> 104 bytes
.../images/ui-bg_glass_100_fdf5ce_1x400.png | Bin 0 -> 125 bytes
.../images/ui-bg_glass_65_ffffff_1x400.png | Bin 0 -> 105 bytes
.../images/ui-bg_gloss-wave_35_f6a828_500x100.png | Bin 0 -> 3762 bytes
.../ui-bg_highlight-soft_100_eeeeee_1x100.png | Bin 0 -> 90 bytes
.../ui-bg_highlight-soft_75_ffe45c_1x100.png | Bin 0 -> 129 bytes
.../images/ui-icons_222222_256x240.png | Bin 0 -> 4369 bytes
.../images/ui-icons_228ef1_256x240.png | Bin 0 -> 4369 bytes
.../images/ui-icons_ef8c08_256x240.png | Bin 0 -> 4369 bytes
.../images/ui-icons_ffd27a_256x240.png | Bin 0 -> 4369 bytes
.../images/ui-icons_ffffff_256x240.png | Bin 0 -> 4369 bytes
.../themes/ui-lightness/jquery-ui-1.8.9.custom.css | 573 +
.../themes/ui-lightness/jquery.ui.accordion.css | 19 +
.../themes/ui-lightness/jquery.ui.all.css | 11 +
.../themes/ui-lightness/jquery.ui.autocomplete.css | 53 +
.../themes/ui-lightness/jquery.ui.base.css | 11 +
.../themes/ui-lightness/jquery.ui.button.css | 38 +
.../themes/ui-lightness/jquery.ui.core.css | 41 +
.../themes/ui-lightness/jquery.ui.datepicker.css | 68 +
.../themes/ui-lightness/jquery.ui.dialog.css | 21 +
.../themes/ui-lightness/jquery.ui.progressbar.css | 11 +
.../themes/ui-lightness/jquery.ui.resizable.css | 20 +
.../themes/ui-lightness/jquery.ui.selectable.css | 10 +
.../themes/ui-lightness/jquery.ui.slider.css | 24 +
.../themes/ui-lightness/jquery.ui.tabs.css | 18 +
.../themes/ui-lightness/jquery.ui.theme.css | 254 +
.../development-bundle/ui/i18n/jquery-ui-i18n.js | 1357 +++
.../ui/i18n/jquery.ui.datepicker-af.js | 23 +
.../ui/i18n/jquery.ui.datepicker-ar-DZ.js | 23 +
.../ui/i18n/jquery.ui.datepicker-ar.js | 23 +
.../ui/i18n/jquery.ui.datepicker-az.js | 23 +
.../ui/i18n/jquery.ui.datepicker-bg.js | 24 +
.../ui/i18n/jquery.ui.datepicker-bs.js | 23 +
.../ui/i18n/jquery.ui.datepicker-ca.js | 23 +
.../ui/i18n/jquery.ui.datepicker-cs.js | 23 +
.../ui/i18n/jquery.ui.datepicker-da.js | 23 +
.../ui/i18n/jquery.ui.datepicker-de.js | 23 +
.../ui/i18n/jquery.ui.datepicker-el.js | 23 +
.../ui/i18n/jquery.ui.datepicker-en-AU.js | 23 +
.../ui/i18n/jquery.ui.datepicker-en-GB.js | 23 +
.../ui/i18n/jquery.ui.datepicker-en-NZ.js | 23 +
.../ui/i18n/jquery.ui.datepicker-eo.js | 23 +
.../ui/i18n/jquery.ui.datepicker-es.js | 23 +
.../ui/i18n/jquery.ui.datepicker-et.js | 23 +
.../ui/i18n/jquery.ui.datepicker-eu.js | 23 +
.../ui/i18n/jquery.ui.datepicker-fa.js | 23 +
.../ui/i18n/jquery.ui.datepicker-fi.js | 23 +
.../ui/i18n/jquery.ui.datepicker-fo.js | 23 +
.../ui/i18n/jquery.ui.datepicker-fr-CH.js | 23 +
.../ui/i18n/jquery.ui.datepicker-fr.js | 25 +
.../ui/i18n/jquery.ui.datepicker-gl.js | 23 +
.../ui/i18n/jquery.ui.datepicker-he.js | 23 +
.../ui/i18n/jquery.ui.datepicker-hr.js | 23 +
.../ui/i18n/jquery.ui.datepicker-hu.js | 23 +
.../ui/i18n/jquery.ui.datepicker-hy.js | 23 +
.../ui/i18n/jquery.ui.datepicker-id.js | 23 +
.../ui/i18n/jquery.ui.datepicker-is.js | 23 +
.../ui/i18n/jquery.ui.datepicker-it.js | 23 +
.../ui/i18n/jquery.ui.datepicker-ja.js | 23 +
.../ui/i18n/jquery.ui.datepicker-ko.js | 23 +
.../ui/i18n/jquery.ui.datepicker-kz.js | 23 +
.../ui/i18n/jquery.ui.datepicker-lt.js | 23 +
.../ui/i18n/jquery.ui.datepicker-lv.js | 23 +
.../ui/i18n/jquery.ui.datepicker-ml.js | 23 +
.../ui/i18n/jquery.ui.datepicker-ms.js | 23 +
.../ui/i18n/jquery.ui.datepicker-nl.js | 23 +
.../ui/i18n/jquery.ui.datepicker-no.js | 23 +
.../ui/i18n/jquery.ui.datepicker-pl.js | 23 +
.../ui/i18n/jquery.ui.datepicker-pt-BR.js | 23 +
.../ui/i18n/jquery.ui.datepicker-pt.js | 22 +
.../ui/i18n/jquery.ui.datepicker-rm.js | 21 +
.../ui/i18n/jquery.ui.datepicker-ro.js | 26 +
.../ui/i18n/jquery.ui.datepicker-ru.js | 23 +
.../ui/i18n/jquery.ui.datepicker-sk.js | 23 +
.../ui/i18n/jquery.ui.datepicker-sl.js | 24 +
.../ui/i18n/jquery.ui.datepicker-sq.js | 23 +
.../ui/i18n/jquery.ui.datepicker-sr-SR.js | 23 +
.../ui/i18n/jquery.ui.datepicker-sr.js | 23 +
.../ui/i18n/jquery.ui.datepicker-sv.js | 23 +
.../ui/i18n/jquery.ui.datepicker-ta.js | 23 +
.../ui/i18n/jquery.ui.datepicker-th.js | 23 +
.../ui/i18n/jquery.ui.datepicker-tr.js | 23 +
.../ui/i18n/jquery.ui.datepicker-uk.js | 23 +
.../ui/i18n/jquery.ui.datepicker-vi.js | 23 +
.../ui/i18n/jquery.ui.datepicker-zh-CN.js | 23 +
.../ui/i18n/jquery.ui.datepicker-zh-HK.js | 23 +
.../ui/i18n/jquery.ui.datepicker-zh-TW.js | 23 +
.../ui/jquery-ui-1.8.9.custom.js | 11530 +++++++++++++++++++
.../development-bundle/ui/jquery.effects.blind.js | 49 +
.../development-bundle/ui/jquery.effects.bounce.js | 78 +
.../development-bundle/ui/jquery.effects.clip.js | 54 +
.../development-bundle/ui/jquery.effects.core.js | 747 ++
.../development-bundle/ui/jquery.effects.drop.js | 50 +
.../ui/jquery.effects.explode.js | 79 +
.../development-bundle/ui/jquery.effects.fade.js | 32 +
.../development-bundle/ui/jquery.effects.fold.js | 56 +
.../ui/jquery.effects.highlight.js | 50 +
.../ui/jquery.effects.pulsate.js | 51 +
.../development-bundle/ui/jquery.effects.scale.js | 178 +
.../development-bundle/ui/jquery.effects.shake.js | 57 +
.../development-bundle/ui/jquery.effects.slide.js | 50 +
.../ui/jquery.effects.transfer.js | 45 +
.../development-bundle/ui/jquery.ui.accordion.js | 606 +
.../ui/jquery.ui.autocomplete.js | 605 +
.../development-bundle/ui/jquery.ui.button.js | 373 +
.../development-bundle/ui/jquery.ui.core.js | 308 +
.../development-bundle/ui/jquery.ui.datepicker.js | 1759 +++
.../development-bundle/ui/jquery.ui.dialog.js | 857 ++
.../development-bundle/ui/jquery.ui.draggable.js | 797 ++
.../development-bundle/ui/jquery.ui.droppable.js | 285 +
.../development-bundle/ui/jquery.ui.mouse.js | 151 +
.../development-bundle/ui/jquery.ui.position.js | 252 +
.../development-bundle/ui/jquery.ui.progressbar.js | 108 +
.../development-bundle/ui/jquery.ui.resizable.js | 812 ++
.../development-bundle/ui/jquery.ui.selectable.js | 266 +
.../development-bundle/ui/jquery.ui.slider.js | 682 ++
.../development-bundle/ui/jquery.ui.sortable.js | 1073 ++
.../development-bundle/ui/jquery.ui.tabs.js | 758 ++
.../development-bundle/ui/jquery.ui.widget.js | 262 +
.../ui/minified/jquery.effects.blind.min.js | 14 +
.../ui/minified/jquery.effects.bounce.min.js | 15 +
.../ui/minified/jquery.effects.clip.min.js | 14 +
.../ui/minified/jquery.effects.core.min.js | 30 +
.../ui/minified/jquery.effects.drop.min.js | 14 +
.../ui/minified/jquery.effects.explode.min.js | 15 +
.../ui/minified/jquery.effects.fade.min.js | 13 +
.../ui/minified/jquery.effects.fold.min.js | 14 +
.../ui/minified/jquery.effects.highlight.min.js | 14 +
.../ui/minified/jquery.effects.pulsate.min.js | 14 +
.../ui/minified/jquery.effects.scale.min.js | 20 +
.../ui/minified/jquery.effects.shake.min.js | 14 +
.../ui/minified/jquery.effects.slide.min.js | 14 +
.../ui/minified/jquery.effects.transfer.min.js | 14 +
.../ui/minified/jquery.ui.accordion.min.js | 30 +
.../ui/minified/jquery.ui.autocomplete.min.js | 31 +
.../ui/minified/jquery.ui.button.min.js | 25 +
.../ui/minified/jquery.ui.core.min.js | 17 +
.../ui/minified/jquery.ui.datepicker.min.js | 81 +
.../ui/minified/jquery.ui.dialog.min.js | 40 +
.../ui/minified/jquery.ui.draggable.min.js | 50 +
.../ui/minified/jquery.ui.droppable.min.js | 26 +
.../ui/minified/jquery.ui.mouse.min.js | 17 +
.../ui/minified/jquery.ui.position.min.js | 16 +
.../ui/minified/jquery.ui.progressbar.min.js | 16 +
.../ui/minified/jquery.ui.resizable.min.js | 47 +
.../ui/minified/jquery.ui.selectable.min.js | 22 +
.../ui/minified/jquery.ui.slider.min.js | 33 +
.../ui/minified/jquery.ui.sortable.min.js | 60 +
.../ui/minified/jquery.ui.tabs.min.js | 35 +
.../ui/minified/jquery.ui.widget.min.js | 15 +
html/jquery-ui/development-bundle/version.txt | 1 +
html/jquery-ui/index.html | 367 +
html/jquery-ui/js/jquery-1.4.4.min.js | 167 +
html/jquery-ui/js/jquery-ui-1.8.9.custom.min.js | 781 ++
html/mime-type-icon-default.png | Bin 0 -> 1710 bytes
main.c | 586 +
423 files changed, 68605 insertions(+)
|