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
|
2010-01-02 14:09 dev
* adding all necessary files to MANIFEST.in, to compensate for the gone
'auto-include-all-files-under-version-control' setuptools feature
2010-01-02 14:05 dev
* rearranging genre and genres attribute in DIDLLite - thx Caleb
2010-01-01 18:42 philn
* fix face_path typo, fixes #275
2009-12-22 19:21 jmsizun
* add proper imports. fix #272
2009-12-14 14:53 philn
* coherence/backends/banshee_storage.py: banshee: be a little more
smart for typefinding
2009-12-14 12:15 philn
* coherence/backends/banshee_storage.py: fix typo...
2009-12-14 12:07 philn
* coherence/backends/banshee_storage.py: banshee: fixed backend
registration and implement release()
2009-12-14 12:06 philn
* coherence/dbus_service.py: pontoon: make get_devices_async
operate on a copy of the devices dict
2009-12-14 12:05 philn
* coherence/extern/telepathy/client.py,
coherence/extern/telepathy/mirabeau_tube_publisher.py,
coherence/extern/telepathy/tube.py, coherence/mirabeau.py:
various mirabeau cleanups
2009-12-12 10:29 dev
* coherence/upnp/core/utils.py: just some cleanups
2009-12-12 10:24 dev
* coherence/base.py: just some cleanups
2009-12-12 10:23 dev
* coherence/backends/fs_storage.py: allow en-/disabling the use of
inotify for auto-content update via a backend option
2009-12-12 10:13 dev
* coherence/backend.py,
coherence/backends/appletrailers_storage.py,
coherence/backends/flickr_storage.py: cleaning up some ''backend
complete'' signaling mess
2009-12-11 15:14 philn
* coherence/backends/picasa_storage.py: fixed missing imports
2009-12-11 15:12 philn
* coherence/backends/picasa_storage.py: oops leftover of [1501]
2009-12-11 15:11 philn
* coherence/backend.py, coherence/backends/miroguide_storage.py,
coherence/backends/playlist_storage.py,
coherence/backends/yamj_storage.py: Moved Container,
LazyContainer, AbstractBackendStore to backend.py as they are
generic enough
2009-12-11 13:08 philn
* coherence/backends/banshee_storage.py: banshee: refactored db
access methods to a new class
2009-12-11 12:21 philn
* coherence/base.py, coherence/extern/telepathy/client.py,
coherence/extern/telepathy/connect.py,
coherence/extern/telepathy/mirabeau_tube_consumer.py,
coherence/extern/telepathy/mirabeau_tube_publisher.py,
coherence/extern/telepathy/tube.py,
coherence/extern/telepathy/tubeconn.py, coherence/mirabeau.py,
coherence/tube_service.py: refactored mirabeau stuff from base.py
to a new module. Also properly close Channels when someone leaves
the MUC
2009-12-10 15:42 philn
* misc/Rhythmbox-Plugin/upnp_coherence/__init__.py: Use GIO to get
the face icon's mime-type. See
https://bugzilla.gnome.org/show_bug.cgi?id=604188
2009-12-02 16:53 philn
* coherence/dbus_service.py: pontoon: don't return infos about
services not exported over tubes
2009-11-26 23:17 jmsizun
* coherence/upnp/core/utils.py: final fix for #112. return error
404 (instead of 500) when resource item is missing
2009-11-26 17:41 dev
* coherence/backends/flickr_storage.py: trying to fix proxy-mode in
the Flickr UPnP backend
2009-11-26 13:52 philn
* coherence/backends/banshee_storage.py,
coherence/upnp/core/DIDLLite.py: videos (and video playlists)
support
2009-11-26 11:07 philn
* coherence/backends/banshee_storage.py: moved music related stuff
inside Music and added support for playlists
2009-11-22 21:56 dev
* coherence/upnp/core/DIDLLite.py: little hack to do tests without
DLNA flags
2009-11-13 22:46 jmsizun
* coherence/backends/appletrailers_storage.py, coherence/base.py,
coherence/upnp/core/utils.py: report error(404) when a request
for an erroneous URL is made
2009-11-13 21:42 jmsizun
* coherence/backends/appletrailers_storage.py: updated appeltrailer
plugin. Trailer have to be proxied through the coherence server
to work. Hopefully fixes #259
2009-11-12 21:04 dev
* coherence/dbus_service.py,
coherence/extern/telepathy/mirabeau_tube_publisher.py: maybe
that's it - trying to hide some DBus object from getting exported
over the tubes
2009-11-12 13:38 philn
* Coherence.egg-info/entry_points.txt,
coherence/backends/banshee_storage.py,
coherence/extern/db_row.py, setup.py: brand new Banshee Store
2009-11-12 13:37 philn
* coherence/backend.py: doc update
2009-11-12 13:37 philn
* coherence/upnp/devices/media_server.py: get_by_id can return a
deferred
2009-11-11 22:22 jmsizun
* coherence/backends/yamj_storage.py: YAMJ: added support for TV
Shows (episodes...)
2009-11-10 09:55 dev
* coherence/upnp/core/event.py: setting the proper publisher path
2009-11-10 09:27 dev
* coherence/dbus_service.py, coherence/upnp/core/event.py,
coherence/upnp/core/service.py, coherence/upnp/devices/basics.py:
* better handling of mal-format event notifications
* fix for absolute/relative URL handling in generic
description.xml
2009-11-07 15:44 dev
* coherence/backends/gstreamer_renderer.py: playbin2 has an empty
uri property after a pipeline stops,
as the uri is nowdays the next track to play, not the current one
2009-11-04 23:51 jmsizun
* coherence/backends/youtube_storage.py,
coherence/extern/youtubedl/youtubedl.py: fixed youtube backend
with youtubedl update (2009.09.13)
2009-11-04 22:30 jmsizun
* coherence/upnp/core/DIDLLite.py: fixed error with previous commit
2009-11-03 23:18 jmsizun
* coherence/backends/yamj_storage.py,
coherence/upnp/core/DIDLLite.py: fixed YAMJ backend + added
attributes 'actor'
2009-11-03 11:42 dev
* coherence/backends/fs_storage.py: react on the new mimetype
''audio/flac'' for flac files
2009-11-01 22:36 jmsizun
* coherence/backends/iradio_storage.py: fixed error with iRadio
items when requested from a browser
2009-11-01 11:41 dev
* misc/Rhythmbox-Plugin/upnp_coherence/MediaPlayer.py: add more
supported audio formats to the ''SinkProtocolInfo'' StateVariable
2009-10-29 21:29 dev
* misc/Rhythmbox-Plugin/upnp_coherence/UpnpSource.py: seconds can
be ''float''s, use proper conversion - addresses #258
2009-10-28 08:12 philn
* coherence/dbus_service.py: mirabeau: workaround to not reinject
services from the tubes to the dbus pontoon
2009-10-25 21:12 philn
* coherence/backends/gstreamer_renderer.py: audio/video sink are
now configurable in the gst MR, fixes #254
2009-10-25 10:26 dev
* coherence/upnp/core/variable.py: do always call callbacks via
notify to inform about updated StateVariable values, needs maybe
some more thoughs
2009-10-25 10:23 dev
* coherence/upnp/core/DIDLLite.py: some forgotten XBox adjustment
2009-10-20 19:57 jmsizun
* coherence/backends/gallery2_storage.py,
coherence/backends/itv_storage.py,
coherence/backends/miroguide_storage.py,
coherence/backends/picasa_storage.py,
coherence/backends/playlist_storage.py,
coherence/backends/yamj_storage.py,
coherence/backends/youtube_storage.py: Added 'description' and
'options' for backends gallery2, ITv, MiroGuide, Picasa,
Playlist, Yamj, Youtube
2009-10-19 15:23 dev
* coherence/upnp/devices/control_point.py: remove unnecessary
double logging
2009-10-19 15:22 dev
* coherence/upnp/core/service.py,
coherence/upnp/core/xml-service-descriptions/AVTransport1.xml,
coherence/upnp/core/xml-service-descriptions/RenderingControl1.xml,
coherence/upnp/core/xml-service-descriptions/RenderingControl2.xml:
fixing typos in the xml service descriptions and adjusting their
parsing
2009-10-19 15:20 dev
* coherence/backends/gstreamer_renderer.py: fix wrong argument
order - annoying, time to fix #200
2009-10-18 09:07 dev
* Coherence.egg-info/entry_points.txt,
coherence/upnp/core/DIDLLite.py: do a Resource.__init__ within
PlayContainerResource.__init__, gets us the new
''nrAudioChannels'' attribute there too
2009-10-16 23:50 jmsizun
* coherence/backends/picasa_storage.py: cosmetic changes to Picasa
backend
2009-10-16 23:48 jmsizun
* coherence/extern/et.py: small change to behave properly in some
error case I do not remember of
2009-10-16 23:46 jmsizun
* coherence/backends/youtube_storage.py: Minor cosmetic changes to
youtube backend
2009-10-16 23:41 jmsizun
* Coherence.egg-info/entry_points.txt,
coherence/backends/yamj_storage.py, setup.py: New media_server
backend to expose a YAMJ library
2009-10-16 23:29 jmsizun
* coherence/backends/gallery2_storage.py: correct gallery backend
name as appearing in logs
2009-10-16 23:28 jmsizun
* coherence/upnp/devices/media_server.py: allow media_server
backend to override device's "presentation URL" using attribute
media_server.presentationURL
2009-10-16 23:26 jmsizun
* coherence/upnp/core/DIDLLite.py: Added subelement
upnp:nrAudioChannels to DIDL resources + Added subelement
upnp:genre to DIDL items
2009-10-15 18:22 dev
* coherence/transcoder.py: fix wrong doc-string
2009-10-15 18:20 dev
* coherence/json.py: return more details in case of an error
2009-10-15 18:19 dev
* bin/coherence: corrected URL to homepage
2009-10-14 16:19 dev
* coherence/backends/fs_storage.py: experimenting with an options
system provided by the backend itself
Each backend shall provide class attributes ''description'' and
''options'' - ''descriptions'' being just a string, ''options''
is a list of option dictionaries.
The values of these dicts are:
''option'':: name of that option
''type'':: string or int
''default'':: default value, should be of type ''type''
(optional)
''enum'':: a tuple/list of possible values (optional)
''range'':: a dict with ''min'' and ''max'' elements (optional)
''help'':: a (short) text describing this option (optional)
''level'':: the level of this option - ''normal'' or ''advance''
(optional)
Anything else?
Accessing these attributes is like that:
{{{
>>> from coherence.base import Plugins
>>> p = Plugins()
>>> p['FSStore'].options
[{'default': 'my media', 'type': 'string', 'key': 'name'}, ...]
}}}
The Plugins class is a dict, so p.items() returns the backend
identifiers as keys and their classes as values.
2009-10-13 12:28 dev
* coherence/base.py: fixing a typo in the Plugins class and some
more logging
2009-10-13 08:31 dev
* coherence/backends/gstreamer_renderer.py: allow activation too
when ''glib'' option is set
2009-10-12 18:33 dev
* coherence/dbus_service.py, coherence/upnp/core/device.py: adding
''presentation_url'' and ''parent_udn'' to the D-Bus get_devices
response
2009-10-10 13:47 dev
* coherence/dbus_service.py: change the out-signature of the CDS
Browse and Search actions to 'aa{sv}iii' to ease de-marshaling
2009-10-10 12:00 philn
* coherence/backends/gstreamer_renderer.py: re-reworked gst
renderer (-> playbin2), better support for mute and pictures
display, fixes #251, #153
2009-10-10 11:02 dev
* coherence/backends/flickr_storage.py: fix the FlickrStore when
used without an user account
2009-10-10 10:26 philn
* Coherence.egg-info/entry_points.txt: feed store in egg metadata
2009-10-09 08:39 dev
* coherence/backends/gstreamer_renderer.py: reverting [1435],
addresses #251 and #153
2009-10-07 18:49 philn
* coherence/backends/gstreamer_renderer.py: reworked the gstreamer
media renderer to use playbin2, depend on the glib main loop and
properly deal with volume properties, fixes #153
2009-10-07 17:24 sebp
* coherence/backends/dvbd_storage.py: Added
process_DeleteTimer_result callback function
2009-10-07 17:14 sebp
* coherence/backends/dvbd_storage.py: Fixed bug when there are no
channels or recordings.
Added initial version of DVBDScheduledRecording class.
2009-10-06 20:21 dev
* coherence/dbus_service.py: more cleaning-up the DBus api
2009-10-06 19:12 dev
* coherence/json.py: adding first JSON calls:
* `http://host:port/json/devices` returns a list of device dicts
* `!http://host:port/json/<uuid>/<service>/<action>?arguments`
returns the result of the action call as a dict of the out
arguments[[BR]]
e.g.
`!http://host:port/json/<uuid>/<service>/ContentDirectory/Browse?ObjectID=0&BrowseFlag=BrowseDirectChildren&Filter=*&StartingIndex=0&RequestedCount=0&SortCriteria=`
2009-10-06 16:36 dev
* coherence/upnp/core/device.py: necessary helper adjustments to
enable embedded devices in the Inspector
2009-10-06 08:48 dev
* coherence/base.py, coherence/upnp/core/ssdp.py: using proper
interface on multihomed hosts for the SSDP multicast group,
closes #250
2009-10-04 16:27 dev
* coherence/dbus_service.py: emitting proper D-Bus signal
2009-10-04 15:20 dev
* coherence/dbus_service.py: fixing the fix
2009-10-04 15:18 zaheerm
* coherence/transcoder.py: fix typo
2009-10-04 15:02 sebp
* coherence/backends/dvbd_storage.py: dvdb_storage: Added support
for channel groups
2009-10-04 14:45 dev
* coherence/dbus_service.py: refining the new generic device signal
2009-10-04 14:09 dev
* coherence/dbus_service.py: adding generic device detected and
removed signals
2009-10-04 11:09 dev
* coherence/dbus_service.py: of course add the resources only when
needed
2009-10-04 11:05 dev
* coherence/dbus_service.py: now with the missing res array
2009-10-04 10:53 dev
* coherence/dbus_service.py: fix D-Bus items structure
2009-10-04 10:44 dev
* coherence/dbus_service.py: simplifying the D-Bus items structure
2009-10-04 09:27 dev
* coherence/upnp/devices/control_point.py: fixing logging error
2009-10-04 08:48 dev
* coherence/dbus_service.py: add XML to DBus dict parsing on our
side for the CDS.Browse action
2009-10-03 14:52 sebp
* coherence/backends/dvbd_storage.py: Adjusted DVB Daemon backend
to API changes
2009-10-03 14:28 dev
* coherence/json.py: importing the log from the proper place
2009-10-03 12:21 dev
* coherence/base.py, coherence/json.py,
coherence/upnp/core/action.py, coherence/upnp/core/device.py,
coherence/upnp/core/service.py: laying the foundation for JSON
"based" access to the devices/services and actions
2009-10-03 10:47 philn
* coherence/backend.py: chain up to Backend class constructor
2009-09-19 13:53 schrei5
* Coherence.egg-info/entry_points.txt,
coherence/backends/feed_storage.py: adding my feed storage
backend
to use it add something like the following to your configuration
<plugin active="yes">
<backend>FeedStore</backend>
<opml_url>http://www.swr3.de/rdf-feed/podcast/</opml_url>
<uuid>426e6b31-fe2d-46ef-a69a-f0733ff4914f</uuid>
<name>SWR3 OPML</name>
</plugin>
<plugin active="yes">
<backend>FeedStore</backend>
<uuid>b51ddca7-79ba-47bd-b558-2e830d1e2566</uuid>
<feed_url>http://podcast.wdr.de/quarks.xml</feed_url>
<name>Quarks</name>
</plugin>
2009-09-17 21:29 dev
* coherence/backends/fs_storage.py,
coherence/upnp/core/DIDLLite.py: implementing the missing parts
from the buried patch out of #237 - addresses #248 and closes
#237
2009-09-14 16:58 dev
* setup.py: add netifaces as a dependency when doing a setuptools
install on OpenSolaris and Windows, addresses #242
2009-09-12 13:08 dev
* coherence/upnp/devices/media_server.py: sending out a
''contentFeatures.dlna.org'' header whenever it is requested
2009-09-09 21:05 dev
* coherence/backends/fs_storage.py,
coherence/upnp/devices/media_server.py: support for subtitles -
Samsung style - addresses #248
Works so far with the FSStore backend, if there is a filename.srt
file we'll add that as an additional resource (maybe we can use
that one day for some other device) and make it accessible via an
attachment url
2009-09-09 17:41 lightyear
* coherence/transcoder.py: mimetype->content_type
2009-09-09 17:41 lightyear
* coherence/transcoder.py: disallow non-ascii in name
2009-09-09 17:41 lightyear
* coherence/test/test_transcoder.py: bad name test
2009-09-09 17:41 lightyear
* coherence/test/test_transcoder.py: add another anti-regression
test
2009-09-09 17:41 lightyear
* coherence/test/test_transcoder.py, coherence/transcoder.py: fix
the implementation: level the API, spacing, pep8-ing the code,
FIXMEs and basic clean up
2009-09-09 17:41 lightyear
* coherence/test/test_transcoder.py: fix the tests
2009-09-09 17:41 lightyear
* coherence/transcoder.py: fix the placeholder missing bug
2009-09-09 17:40 lightyear
* coherence/test/test_transcoder.py: add test for placeholder
missing bug
2009-09-09 17:40 lightyear
* coherence/transcoder.py: make it bulletproof for 2.4 as well
2009-09-09 17:40 lightyear
* coherence/test/test_transcoder.py, coherence/transcoder.py: fix
this fucking implementation
2009-09-09 17:40 lightyear
* coherence/test/test_transcoder.py, coherence/transcoder.py: more
transcoder manager test stuff
2009-09-09 17:40 lightyear
* coherence/test/test_transcoder.py, coherence/transcoder.py: more
transcoder tests
2009-09-09 17:40 lightyear
* coherence/test/test_transcoder.py: add first small and simple
tests about the transcoder manager
2009-09-09 16:04 dev
* coherence/upnp/core/DIDLLite.py: use the default DLNA.ORG_PN
value for transcoded mpeg files
2009-09-09 11:41 dev
* bin/coherence: making daemon mode work again, closes #230
Nevertheless we should consider using
http://www.jejik.com/articles/2007/02/a_simple_unix_linux_daemon_in_python/
2009-09-09 10:34 philn
* bin/coherence, coherence/__init__.py, setup.py: check
twisted{,.web} versions at runtime, fixes #243
2009-09-08 20:09 philn
* setup.py: put coherence base root package in packages to ship,
fixes #244
2009-09-06 19:17 dev
* coherence/transcoder.py: now with the ExternalProcessPipeline
2009-09-06 11:04 dev
* coherence/transcoder.py, coherence/upnp/core/DIDLLite.py: fixing
more typos
2009-09-05 15:16 dev
* coherence/upnp/core/DIDLLite.py: typo fix
2009-09-05 14:59 dev
* coherence/transcoder.py: there might be none transcoders defined
in the config at all, thx Crys
2009-09-05 13:14 dev
* coherence/transcoder.py: fixing some leftovers
2009-09-05 10:43 dev
* coherence/upnp/devices/media_server.py: remove the direct use to
the JPEGTranscoder
2009-09-05 09:58 dev
* coherence/base.py, coherence/transcoder.py,
coherence/upnp/devices/media_server.py: creating a
TranscoderManager and removing the selector from the MediaServer
2009-08-28 07:54 zaheerm
* ChangeLog, coherence/transcoder.py: * coherence/transcoder.py:
Proper pipeline for mpeg2 ts inserted.
2009-08-27 20:27 dev
* coherence/upnp/core/DIDLLite.py: more stubs for the mpegts video
transcoding - not that smart :-/
2009-08-27 19:38 dev
* coherence/transcoder.py,
coherence/upnp/devices/media_renderer.py,
coherence/upnp/devices/media_server.py: * stub for mpegts video
transcoding - intermediate solution to get the whole thing up
* we need a (singleton) class that collects all available
transcoders, does the proper selection so we can move that switch
out of the MediaServer, and provides the available urls for the
DIDLLite Resource creation
2009-08-27 18:24 dev
* Coherence.egg-info/entry_points.txt, coherence/dispatcher.py,
coherence/extern/simple_config.py: do a lazy import of the
reactor to not have the default reactor installed before we have
the chance to change that
2009-08-23 15:28 philn
* coherence/dbus_service.py: dbus_device: get_markup_name() method,
needed since [1374]
2009-08-04 09:19 dev
* setup.py: make a setuptools based install more flexible and
detect distro versions of ConfigObj, Twisted and TwistedWeb
2009-08-03 14:39 dev
* coherence/upnp/core/action.py, coherence/upnp/core/soap_proxy.py:
correcting [1372] and make the whole thing work below Python 2.6
again - thx lightyear
2009-07-30 17:38 lightyear
* coherence/base.py, coherence/dbus_service.py,
coherence/extern/telepathy/mirabeau_tube_publisher.py,
coherence/tube_service.py, coherence/upnp/core/device.py,
coherence/upnp/devices/binary_light_client.py,
coherence/upnp/devices/control_point.py,
coherence/upnp/devices/dimmable_light_client.py,
coherence/upnp/devices/media_renderer_client.py,
coherence/upnp/devices/media_server_client.py,
coherence/web/ui.py, mirabeau_client.py, tw_mirabeau_test.py:
nice device type and version helpers
From ea4155ed98daef846fe9895cdefdcc98a8f089b2 Mon Sep 17 00:00:00
2001
From: Benjamin Kampmann <ben.kampmann@googlemail.com>
Date: Tue, 21 Jul 2009 20:42:49 +0200
Subject: [PATCH] add
- friendly_device_type to device
- device_type_version
- get_device_markup
---
coherence/upnp/core/device.py | 20 +++++++++++++++++++-
coherence/web/ui.py | 34 ++++++++++++++++++-------------
2009-07-27 18:46 jmsizun
* coherence/backends/playlist_storage.py: playlist: differentiate
audio and video items
2009-07-26 12:03 dev
* coherence/upnp/core/action.py: preserve the order of input
arguments when doing a client-side action call - thanks again
David Liu for spotting this
2009-07-21 20:25 philn
* coherence/extern/telepathy/mirabeau_tube_consumer.py,
coherence/extern/telepathy/tube.py: mirabeau: pass initiator
address in tube params and reimplemented roster filter (on
consumer side)
2009-07-20 17:44 zaheerm
* coherence/transcoder.py: Don't reuse pipeline after setting state
to NULL
2009-07-20 17:27 zaheerm
* coherence/transcoder.py: Handle eos to finish requests and
cleanup pipeline
2009-07-20 16:41 zaheerm
* Coherence.egg-info/entry_points.txt, setup.py: Revert my local
changes that were not meant to be committed
2009-07-20 16:35 zaheerm
* Coherence.egg-info/entry_points.txt, coherence/transcoder.py,
coherence/upnp/devices/control_point.py, setup.py: Move
GStreamerPipeline to use appsink instead of custom sink.
Allow multiple requests to be served by GStreamerPipeline.
Create pipeline in constructor of GStreamerPipeline rather than
in start.
2009-07-15 10:59 dev
* coherence/backends/fs_storage.py: add a mimetype for Matroska
containers with a .mkv extension
2009-07-14 21:19 jmsizun
* coherence/backends/dvbd_storage.py: DVBD: added items for live tv
channels (exposed via rtsp by dvb-daemon)
2009-07-12 17:05 dev
* coherence/dbus_service.py: fix unicode error in dbus pontoon, thx
Alfonso - closes #237
2009-07-12 17:01 dev
* coherence/upnp/core/event.py: workaround for devices that won't
let us subscribe to events, closes #210
2009-07-04 19:42 philn
* docs/mirabeau.xml: sample mirabeau config file
2009-07-02 18:57 philn
* coherence/extern/telepathy/client.py,
coherence/extern/telepathy/mirabeau_tube_consumer.py,
coherence/extern/telepathy/mirabeau_tube_publisher.py,
coherence/extern/telepathy/tube.py: mirabeau: refactored
publisher/consumer in mixins, code is now more reusable
2009-06-30 07:54 dev
* coherence/dbus_service.py, coherence/tube_service.py: correcting
some xml-namespace issue due to the fromString/toString cycle
2009-06-29 22:13 jmsizun
* coherence/backends/itv_storage.py: ITV: return of "why not having
this backend to work, for a change..."
2009-06-29 21:55 jmsizun
* coherence/backends/dvbd_storage.py: dvbd: in my config,
dvb_daemon returns file URIs for recordings instead of local
pathes
2009-06-28 21:26 philn
* misc/Rhythmbox-Plugin/upnp_coherence/__init__.py: rhythmbox
plugin: use interface option when starting coherence
2009-06-28 14:29 philn
* coherence/extern/telepathy/client.py,
coherence/extern/telepathy/connect.py,
coherence/extern/telepathy/mirabeau_tube_consumer.py,
coherence/extern/telepathy/mirabeau_tube_publisher.py,
coherence/extern/telepathy/tube.py,
coherence/extern/telepathy/tubeconn.py: merged the tube
publisher/consumer inside a single client instead of mixing 2
clients
2009-06-27 09:53 philn
* coherence/dbus_service.py: dbus_pontoon: implement
get_devices_async with a coiterator
2009-06-27 09:48 philn
* coherence/base.py: fix typo
2009-06-26 21:53 jmsizun
* coherence/backends/iradio_storage.py: iRadio: replaced prints by
proper logs and other small fixes
2009-06-26 21:26 jmsizun
* coherence/backends/itv_storage.py: ITV: why not having this
backend work, for a change...
2009-06-26 20:47 jmsizun
* coherence/backends/playlist_storage.py: playlist backend: updated
list of potential source protocols
2009-06-26 19:58 dev
* coherence/base.py, coherence/dbus_service.py,
coherence/tube_service.py, coherence/upnp/core/DIDLLite.py,
coherence/upnp/devices/control_point.py: adding the missing
pieces to allow access from outside the local lan to MediaServer
items exported via MiraBeau
For now we need an element
''<external_address>ip:port</external_address>'' in the mirabeau
config section. This will in a next phase be extended with UPnP
and ICE NAT-traversal techniques.
2009-06-26 19:53 dev
* coherence/extern/telepathy/client.py: create the muc_id right
when using local-xmpp
2009-06-25 21:32 philn
* coherence/extern/telepathy/client.py,
coherence/extern/telepathy/mirabeau_tube_consumer.py,
coherence/extern/telepathy/mirabeau_tube_publisher.py,
coherence/extern/telepathy/tube.py: mirabeau: complete support
for muc p2p media-server browsing
2009-06-25 19:50 philn
* coherence/base.py, coherence/extern/telepathy/client.py,
coherence/extern/telepathy/connect.py,
coherence/extern/telepathy/mirabeau_tube_consumer.py,
coherence/extern/telepathy/mirabeau_tube_publisher.py,
coherence/extern/telepathy/tube.py,
coherence/extern/telepathy/tubeconn.py: mirabeau: various
adaptations to latest Telepathy interface requests API
2009-06-23 22:14 jmsizun
* coherence/upnp/core/device.py: clarified warning message
2009-06-23 22:13 jmsizun
* coherence/backends/youtube_storage.py: fix string name for
backend store class
2009-06-23 22:10 jmsizun
* coherence/backends/playlist_storage.py: publish resource with
protocol http-get instead of rtsp-rtp-udp when relevant
2009-06-23 22:08 jmsizun
* coherence/backends/miroguide_storage.py: fix string name for
backend store class
2009-06-23 22:07 jmsizun
* coherence/backends/itv_storage.py: ITV: retry later when
connection to Shoutcast server fails
2009-06-23 20:05 jmsizun
* coherence/backends/itv_storage.py: ITV: replaced prints by proper
logs
2009-06-23 14:25 philn
* coherence/extern/louie.py: extern.louie: make the dispatcher a
global variable and the deprecation warning more developer
friendly
2009-06-21 20:29 philn
* coherence/extern/telepathy/mirabeau_tube_consumer.py,
coherence/extern/telepathy/tube.py,
coherence/extern/telepathy/tubeconn.py: mirabeau: various code
cleanups and debug msgs fixes
2009-06-21 20:26 philn
* coherence/dbus_service.py: mirabeau: fix StateVariableChanged in
dbus service object (take 2)
2009-06-21 20:06 philn
* coherence/dbus_service.py: mirabeau: fix StateVariableChanged in
dbus service object
2009-06-21 15:58 philn
* coherence/extern/telepathy/mirabeau_tube_publisher.py,
coherence/extern/telepathy/tube.py, coherence/tube_service.py:
mirabeau: some jabber related fixes
2009-06-21 15:07 philn
* coherence/extern/telepathy/client.py: mirabeau client: fixed text
messages acknoledgement
2009-06-21 14:23 philn
* coherence/base.py: mirabeau: plug found remote devices to tube
proxies
2009-06-21 13:06 dev
* Coherence.egg-info/entry_points.txt, coherence/dbus_service.py,
coherence/tube_service.py, coherence/upnp/core/service.py,
mirabeau_client.py, tw_mirabeau_test.py: exposing now TubeDevice
and TubeService proxies, plain communication is possible now
2009-06-20 16:02 philn
* coherence/base.py, coherence/extern/telepathy/client.py,
coherence/extern/telepathy/mirabeau_tube_consumer.py,
coherence/extern/telepathy/mirabeau_tube_publisher.py,
coherence/extern/telepathy/tube.py,
coherence/extern/telepathy/tubeconn.py, mirabeau_client.py:
mirabeau: Coherence can now publish tubes and listen for tubes
from other peers within the same instance
2009-06-20 12:34 lightyear
* coherence/extern/louie.py: using save_emit instead of emit
because we rely on the bad reactor
based implementation louie had before.
2009-06-20 11:57 lightyear
* coherence/extern/louie.py: small syntax fix in the louie wrapper
2009-06-20 11:38 dev
* coherence/upnp/core/service.py,
coherence/upnp/services/servers/av_transport_server.py: * added
''register_vendor_action'' and ''register_vendor_variable''
methods
* delayed creation of the service XML file
2009-06-20 11:36 dev
* coherence/upnp/core/variable.py: rearrangements and naming
correction
2009-06-20 11:35 dev
* coherence/backends/gstreamer_renderer.py: small fix re 'Next'
TransportAction
2009-06-20 11:33 dev
* coherence/backends/flickr_storage.py: add lazy DIDLLite item
creation and dlna-playcontainer support
2009-06-20 11:23 philn
* coherence/backends/lastfm_storage.py: use hashlib if available
2009-06-20 10:36 lightyear
* coherence/dispatcher.py, coherence/extern/louie.py,
coherence/test/test_dispatching.py: You shall not commit when you
are not done adding:
Replacing louie with the new signaling dispatching system of pure
AWESOMENESS
2009-06-20 10:34 lightyear
* coherence/base.py, coherence/extern/louie,
coherence/upnp/core/device.py: Re
2009-06-17 21:38 jmsizun
* Coherence.egg-info/entry_points.txt,
coherence/backends/playlist_storage.py, setup.py: Added new
backend for web tv playlists (used in France by Free and Neuf
ISPs)
2009-06-17 21:35 jmsizun
* Coherence.egg-info/entry_points.txt,
coherence/backends/miro_storage.py,
coherence/backends/miroguide_storage.py, setup.py: rename Miro
Backend into MiroGuide backend
2009-06-17 21:33 jmsizun
* coherence/backends/miroguide_storage.py: renamed backend
2009-06-17 21:04 jmsizun
* coherence/backends/miro_storage.py: add thumbnail as albumArtURI
2009-06-13 18:06 philn
* coherence/extern/telepathy/mirabeau_tube_consumer.py,
coherence/extern/telepathy/tube.py: mirabeau: don't accept muc
tubes if they are not offered by a member of my roster
2009-06-13 18:03 philn
* coherence/extern/telepathy/client.py: mirabeau telepathy client:
roster retrieval support
2009-06-10 19:08 dev
* coherence/upnp/core/event.py, coherence/upnp/core/ssdp.py: fix
the wrong creation of a rfc-1123 date, e.g. the date-string was
localized ''DATE: å…, 06 6月 2009 05:50:58 GMT'' as reported by
liuran - thx for spotting this!
2009-06-10 17:05 dev
* coherence/upnp/core/service.py,
coherence/upnp/core/xml-service-descriptions/AVTransport1.xml,
coherence/upnp/core/xml-service-descriptions/AVTransport2.xml:
add the necessary code to enforce that a backend has implemented
all actions that Coherence can't handle itself
2009-06-10 16:48 dev
* coherence/upnp/core/DIDLLite.py: modify the
find-matching-res-entries method and allow check against a
partial localcontent-format string ('image/' or 'audio/') only
2009-06-10 16:44 dev
* coherence/extern/telepathy/tube.py, mirabeau_client.py: cosmetic
changes
2009-06-10 16:40 dev
* coherence/dbus_service.py: in an object coming from the tubes the
''device'' parameter is None
2009-06-10 16:36 dev
* coherence/backends/test_storage.py: document 'title' and added a
new 'extension' attribute to an item in the TestStore
2009-06-10 16:31 dev
* coherence/base.py: reverting [1303] - this doesn't work here, and
we need to find the root cause anyway, addresses #112
2009-06-04 20:58 dev
* misc/Rhythmbox-Plugin/upnp_coherence/MediaPlayer.py: added a
missing import
2009-06-03 22:03 jmsizun
* coherence/base.py: #112 : return 404 error when requesting an URI
with erroneous device UUID.
This includes a hack to overcome some strange behavior with
Twisted and HTTP request with non-standard methods.
2009-06-03 08:59 lightyear
* misc/Rhythmbox-Plugin/upnp_coherence/__init__.py: cleanup,
simplification and pep8-ing
2009-06-02 18:51 dev
* coherence/dbus_service.py: * explicitly remove DBus object,
currently they seem to stay around without that, maybe the
objects have some references lingering around
2009-06-02 18:25 philn
* coherence/extern/telepathy/mirabeau_tube_consumer.py,
coherence/extern/telepathy/mirabeau_tube_publisher.py: mirabeau:
use of logging system and other cleanups after dev :)
2009-06-02 18:23 philn
* coherence/base.py: comments about telepathy account
2009-06-02 10:12 dev
* coherence/base.py, coherence/dbus_service.py,
coherence/extern/telepathy/mirabeau_tube_consumer.py,
coherence/extern/telepathy/mirabeau_tube_publisher.py,
mirabeau_client.py: mirabeau related cleanups
2009-06-02 10:11 dev
* coherence/transcoder.py: typo fix
2009-06-01 19:20 dev
* misc/Rhythmbox-Plugin/coherence.rb-plugin.in,
misc/Rhythmbox-Plugin/upnp_coherence/MediaPlayer.py,
misc/Rhythmbox-Plugin/upnp_coherence/MediaStore.py,
misc/Rhythmbox-Plugin/upnp_coherence/__init__.py: * merging mine
and lightyears gconf changes
* an initial version of a configuration dialog
* seeking fixes in the Rhythmbox MediaRenderer
* better StateVariable settings for local initiated playback in
the Rhythmbox MediaRenderer
* first steps to dlna-playcontainer support in the Rhythmbox
MediaServer
2009-06-01 19:10 dev
* coherence/upnp/devices/media_renderer.py,
coherence/upnp/devices/media_server.py: some fixes re icon
handling
2009-06-01 19:07 dev
* coherence/upnp/devices/basics.py: some fixes re icon handling
2009-06-01 19:06 dev
* coherence/upnp/core/variable.py: one more detail for the
Inspector
2009-06-01 19:02 dev
* coherence/backends/gstreamer_renderer.py: fix re 'REL_TIME'
seeking
2009-06-01 18:57 dev
* coherence/upnp/core/xml-service-descriptions/AVTransport1.xml:
fix re vendor values
2009-06-01 14:19 philn
* coherence/extern/telepathy/mirabeau_tube_publisher.py: mirabeau:
react on pontoon MS detected/removed signals
2009-06-01 14:18 philn
* coherence/dbus_service.py: dbus: remove devices from cache after
_removed signals have been called, it'd be better to hold the
device object during signal emission. for now wait a second and
clean cache
2009-05-30 18:15 philn
* coherence/base.py,
coherence/extern/telepathy/mirabeau_tube_publisher.py: mirabeau:
uuid based devices filtering (on tube publisher side)
2009-05-30 18:15 philn
* coherence/dbus_service.py: new dbus device attribute: uuid
2009-05-30 10:26 jmsizun
* coherence/backends/youtube_storage.py: add youtube thumbnail as
AlbumArtURI
2009-05-29 23:08 jmsizun
* coherence/backends/itv_storage.py: fixed iTV items beeing
erroneously advertised as audio items instead of video items
2009-05-29 23:04 jmsizun
* coherence/backends/flickr_storage.py: #234 : authenticate call to
flickr.photos.getSizes
2009-05-29 13:06 lightyear
* misc/Rhythmbox-Plugin/upnp_coherence/MediaPlayer.py,
misc/Rhythmbox-Plugin/upnp_coherence/MediaStore.py,
misc/Rhythmbox-Plugin/upnp_coherence/__init__.py: clean up, typo
and name-setting support
2009-05-29 12:48 lightyear
* misc/Rhythmbox-Plugin/upnp_coherence/__init__.py: use gconf so
save uuid and allow settings, refs #232
2009-05-28 13:18 lightyear
* misc/Rhythmbox-Plugin/upnp_coherence/MediaPlayer.py: ref #189 :
adding Next/Previous to rb player
2009-05-28 12:48 lightyear
* misc/Rhythmbox-Plugin/upnp_coherence/MediaPlayer.py: small fix
for rb-plugin: allow to start playback when rb didn't play before
2009-05-28 12:13 lightyear
* misc/Rhythmbox-Plugin/upnp_coherence/MediaStore.py: fix the
rb-media-store: backend store wasn't initialized
2009-05-24 08:03 philn
* coherence/extern/telepathy/client.py,
coherence/extern/telepathy/stream.py,
coherence/extern/telepathy/tube.py: stream tubes support in
Tube{Publisher,Consumer}
2009-05-20 23:15 lightyear
* misc/media_server_observer.py: example script as test helper
2009-05-17 15:22 philn
* coherence/base.py: mirabeau: store settings in config
2009-05-12 21:35 philn
* coherence/base.py, coherence/dbus_constants.py,
coherence/dbus_service.py, coherence/extern/telepathy,
coherence/extern/telepathy/__init__.py,
coherence/extern/telepathy/client.py,
coherence/extern/telepathy/connect.py,
coherence/extern/telepathy/mirabeau_tube_consumer.py,
coherence/extern/telepathy/mirabeau_tube_publisher.py,
coherence/extern/telepathy/tube.py,
coherence/extern/telepathy/tubeconn.py, mirabeau_client.py:
initial Mirabeau super-bridge bases checkin
2009-05-12 20:45 dev
* Coherence.egg-info/PKG-INFO, coherence/__init__.py: bumping
version to 0.6.5
2009-05-12 20:37 dev
* ChangeLog, NEWS, coherence/__init__.py, setup.py: New in this -
Pont Mirabeau - release:
* new MediaServer backends that allow access to
* Picasa Web Albums (http://picasa.google.com)
* a TestServer to easily serve and test interaction with
* one or more items and adjust 'upnp_class', 'mimetype' and
'DLNA-flags',
* items that are a GStreamer pipeline or an external program
* a new - used in parallel - D-Bus API with an 'org.DLNA'
interface
with the goal to create a common API for all UPnP/DNLA frameworks
* support for the dlna-playcontainer URI
(http://netzflocken.de/2009/4/23/media-collection-playing-the-dlna-way)
* enchancements to the GStreamer MediaRenderer, supporting now
dlna-playcontainer and SetNextAVTransportURI, and jumping to
previous
and next tracks
* support for video items served by Ampache (http://ampache.org)
* base classes for a ScheduledRecording service
* some 'compatibility' adjustments for different devices
* and - as every time - the usual bugfixes and enhancements
Kudos go to jmsizun, Stecchino, cjsmo, chewi, and lightyear.
2009-05-12 20:08 dev
* coherence/backends/test_storage.py: small typo in docstring
2009-05-12 20:08 dev
* coherence/backends/ampache_storage.py: * make ''password'' and
''key'' equivalent in the config
* some preparations for dlna-playcontainer uri
2009-05-12 20:03 dev
* coherence/upnp/devices/media_server.py: rearranging the order of
the device description elements for UPnP 1.1
2009-05-11 09:14 dev
* coherence/dbus_service.py: more updates on the org.DLNA DBus API,
now with all methods for the DMS.CDS interface (no checking for
not implemented optional methods yet)
2009-05-10 15:30 dev
* coherence/dbus_service.py: added the org.DLNA interfaces
2009-05-10 09:41 dev
* coherence/dbus_service.py: fixing a DBus error, returning the
object path now, not the object
2009-05-09 22:12 jmsizun
* coherence/backends/itv_storage.py: small corrections
2009-05-09 13:12 dev
* coherence/base.py: activate the ControlPoint automatically if the
DBus interface is used
2009-05-09 10:29 lightyear
* coherence/backends/lolcats_storage.py: fix the lolcats example
plugin
2009-05-04 19:21 dev
* coherence/backends/gstreamer_renderer.py,
coherence/upnp/core/DIDLLite.py,
coherence/upnp/services/servers/connection_manager_server.py: *
support for skipping backward and forward, and seeking inside the
track-list
* adding the dlna-playcontainer flag to the SinkProtocolnfo
values
2009-04-28 20:54 dev
* coherence/backends/test_storage.py: don't make a trancoder
ImportError let the TestStore fail
2009-04-27 09:23 dev
* coherence/upnp/core/utils.py: hmm, no callback/errback attached
2009-04-27 09:13 dev
* coherence/upnp/devices/basics.py,
coherence/upnp/devices/binary_light.py,
coherence/upnp/devices/dimmable_light.py,
coherence/upnp/devices/media_renderer.py,
coherence/upnp/devices/media_server.py: * making device xml
generation more flexible - thx Caleb
* check for icon file existence before announcing and registering
it
2009-04-26 15:44 dev
* coherence/backends/gstreamer_renderer.py: moving a lot of noisy
prints into log messages
2009-04-26 12:03 dev
* coherence/backends/gstreamer_renderer.py,
coherence/backends/mediadb_storage.py,
coherence/upnp/core/DIDLLite.py,
coherence/upnp/devices/basics.py,
coherence/upnp/devices/media_renderer.py: adding support for
''dlna-playcontainer://'' to the MediaDB MediaServer and the
GStreamer MediaRenderer backend
2009-04-20 19:50 dev
* coherence/upnp/core/soap_proxy.py: adding debug output to find
xml parsing issues
2009-04-19 19:56 dev
* coherence/upnp/core/service.py: expose the ServiceId to the
Inspector
2009-04-19 17:38 dev
* coherence/backends/gstreamer_renderer.py: changes for
SetNextAVTransportURI support (thx chewi) - addresses #197
2009-04-18 16:00 dev
* coherence/backends/fs_storage.py: ignore FIFO files, closes #184
2009-04-18 10:49 dev
* coherence/backend.py, coherence/backends/ampache_storage.py,
coherence/backends/appletrailers_storage.py,
coherence/backends/axiscam_storage.py,
coherence/backends/bbc_storage.py,
coherence/backends/dvbd_storage.py,
coherence/backends/flickr_storage.py,
coherence/backends/fs_storage.py,
coherence/backends/gallery2_storage.py,
coherence/backends/iradio_storage.py,
coherence/backends/itv_storage.py,
coherence/backends/lastfm_storage.py,
coherence/backends/lolcats_storage.py,
coherence/backends/mediadb_storage.py,
coherence/backends/swr3_storage.py,
coherence/backends/ted_storage.py,
coherence/backends/test_storage.py,
coherence/backends/tracker_storage.py: cleaning up the backend
inheritage a bit and moving wmc_mapping from class to instance
2009-04-14 21:37 dev
* coherence/backends/ampache_storage.py: more work on the Ampache
video items, re #201
2009-04-14 19:43 dev
* coherence/upnp/core/DIDLLite.py: a little helper method
2009-04-14 11:36 dev
* coherence/backends/fs_storage.py,
coherence/backends/gstreamer_renderer.py,
docs/test-store-example.xml: inquire the ignore pattern first
before reacting upon an inotify event and adding a new file
closes #203
2009-04-14 11:32 dev
* coherence/base.py: move the warning message to the proper place
2009-04-14 10:38 dev
* coherence/base.py, coherence/web/static/Coherence.Base.js,
coherence/web/static/Coherence.Devices.js,
coherence/web/static/Coherence.Logging.js,
coherence/web/static/Coherence.js,
coherence/web/static/MochiKit.js, coherence/web/static/main.css:
disabling Web UI for the moment and removing obsolete JS files
and MochiKit library
2009-04-13 11:59 dev
* coherence/backends/test_storage.py, docs/test-store-example.xml:
some fixes for the TestStore and a configurable fourth_field of
the protocolInfo element
2009-04-10 20:10 dev
* docs/man, docs/man/coherence.1,
misc/Desktop-Applet/applet-coherence.1: man-pages for
/usr/bin/coherence and /usr/bin/applet-coherence - thx cjsmo!
The is a new docs/man folder for the coherence.1 file, maybe
we'll have some time some more there.
The applet-coherence.1 file is included in the
misc/Desktop-Applet folder, doesn't make sense to install it
without the applet itself.
Closes #199
2009-04-09 20:31 jmsizun
* coherence/backends/picasa_storage.py: corrected problem with
get_item
2009-04-06 09:15 dev
* coherence/backends/miro_storage.py,
coherence/backends/picasa_storage.py,
coherence/backends/youtube_storage.py: establishing
parent<->child relationship again
2009-04-06 09:11 dev
* coherence/base.py, coherence/upnp/core/utils.py: switching in
utils.get_host_address from popen to getProcessOutput and handle
the deferred properly
2009-04-05 14:31 jmsizun
* coherence/backends/miro_storage.py,
coherence/backends/picasa_storage.py,
coherence/backends/youtube_storage.py: partial fix to problem
with ids and parent ids in UpnP XML items
2009-04-02 07:50 dev
* coherence/backends/test_storage.py: fixed typo in docstring and
extended it a bit
2009-03-31 21:09 dev
* coherence/backends/ampache_storage.py: requesting Ampache video
files, not looking at the tags yet, addresses #201
2009-03-26 22:21 jmsizun
* coherence/backend.py: forgot this commit yesterday
2009-03-25 22:46 jmsizun
* coherence/backends/gallery2_storage.py,
coherence/backends/itv_storage.py: Updated gallery2/iTV backend
to use factorized ReversedProxyUriResource class
2009-03-25 22:01 jmsizun
* coherence/backends/picasa_storage.py,
coherence/backends/youtube_storage.py,
coherence/upnp/core/utils.py: Factorize Uri splitting code from
ReverseProxyResource subclasses into a common
ReverseProxyUriResource class
2009-03-25 21:05 jmsizun
* coherence/backends/test_storage.py: Remove useless import for
coherence.upnp.core.utils.ReverseProxyResource
2009-03-25 19:18 jmsizun
* coherence/backends/miro_storage.py,
coherence/backends/picasa_storage.py,
coherence/backends/youtube_storage.py: Factorize common
backendStore functionnalities into ABstractBackendStore for
Picasa/Youtube/Miro backends
2009-03-23 23:54 jmsizun
* coherence/upnp/devices/media_server.py: change prints into log
messages
2009-03-23 23:45 jmsizun
* coherence/backends/picasa_storage.py: change prints into log
messages
2009-03-22 18:16 jmsizun
* coherence/backends/itv_storage.py,
coherence/backends/miro_storage.py,
coherence/backends/picasa_storage.py,
coherence/backends/youtube_storage.py: Update listings after
"refresh" minutes - phase 2
2009-03-20 11:01 dev
* coherence/upnp/services/servers/scheduled_recording_server.py:
the missing file
2009-03-19 16:08 dev
* coherence/base.py: a fix for the wrong fix in [1209]
2009-03-17 19:20 dev
* coherence/upnp/core/service.py,
coherence/upnp/core/xml-service-descriptions/ScheduledRecording1.xml,
coherence/upnp/devices/media_server.py,
coherence/upnp/services/servers/media_receiver_registrar_server.py:
the base classes needed to implement a MediaServer with a
ScheduledRecording service
2009-03-17 14:00 dev
* coherence/base.py: fixing an error with the logfile directive in
the XMLConfig
2009-03-15 18:51 dev
* coherence/backends/test_storage.py: now with the actual backend
2009-03-15 18:49 dev
* Coherence.egg-info/entry_points.txt, bin/coherence,
coherence/dbus_service.py, coherence/transcoder.py,
coherence/upnp/devices/media_server.py, setup.py: new TestStore
backend
2009-03-13 12:19 dev
* misc/Rhythmbox-Plugin/upnp_coherence/__init__.py: change UPnP
version to :1 for the Rhythmbox MediaServer and the
MediaRenderer, so they are detected by <censored> clients like
the Nokia NSeries phones or XBMC
2009-03-13 09:45 dev
* coherence/upnp/core/DIDLLite.py: fix for XML parser oddness is
Python2.4
2009-03-11 17:58 dev
* coherence/upnp/core/utils.py: trying to find a more generic
solution for detection of the IP address to use, re #194
2009-03-09 09:13 dev
* coherence/backends/gstreamer_renderer.py: update GStreamer
MediaRenderer to not propagate Seeking-capability when handling a
http-stream
2009-03-05 19:01 jmsizun
* coherence/backends/miro_storage.py: Update listings after
"refresh" minutes
2009-02-25 23:25 jmsizun
* coherence/backends/miro_storage.py: small corrections to
MiroGuide backend
2009-02-25 23:14 jmsizun
* Coherence.egg-info/entry_points.txt,
coherence/backends/picasa_storage.py, setup.py: New backend for
Picasa Web Albums
2009-02-24 17:34 dev
* Coherence.egg-info/PKG-INFO, Coherence.egg-info/entry_points.txt,
coherence/__init__.py: bump up version number to 0.6.3
2009-02-23 20:35 dev
* ChangeLog, Coherence.egg-info/PKG-INFO, MANIFEST.in, NEWS,
coherence/__init__.py, setup.py: New in this 0.6.2 - Rosenmontag
- release
* new MediaServer backends that allow access to
* YouTube videos (http://youtube.com)
* the MiroGuide for online videos (https://www.miroguide.com)
* the videos provided by Shoutcast TV (http://www.shoutcast.com)
* the SWR3 podcasts, a German radio station (http://swr3.de)
* adjustments to the Ampache backend to work with newer Ampache
versions (http://ampache.org)
* a lot of 'compatibility' enhancements for different devices
* a 'port' to the OpenEmbedded platform
(http://www.openembedded.org/),
bringing Coherence to the BeagleBoard (http://beagleboard.org/)
* and - as every time - the usual bugfixes and enhancements
Kudos go especially to jmsizun for his work on the new backends!
2009-02-23 19:54 dev
* coherence/backends/axiscam_storage.py,
coherence/backends/swr3_storage.py: some minor adjustments
2009-02-23 19:52 dev
* coherence/backends/youtube_storage.py,
coherence/extern/youtubedl/youtubedl.py,
coherence/upnp/core/utils.py: * some last-minute YouTube related
fixes, where we had GET instead of HEAD requests :-/
* changing prints to log-output
2009-02-19 21:06 jmsizun
* coherence/backends/miro_storage.py: MiroGuide: added new
directories (Top Rated, Most Popular, Recent Videos)
2009-02-18 23:44 jmsizun
* coherence/backends/miro_storage.py,
coherence/backends/youtube_storage.py: connect Miro backend to
correct proxy class
2009-02-18 21:34 jmsizun
* coherence/backends/miro_storage.py,
coherence/backends/youtube_storage.py: LazyContainer/MiroGuide:
allow retrieving full listings instead of only first page
2009-02-18 19:28 jmsizun
* coherence/backends/miro_storage.py,
coherence/backends/youtube_storage.py: Removed children classes
from LazyContainer
2009-02-17 23:12 jmsizun
* coherence/backends/miro_storage.py: MiroGuide: correctly retrieve
list of channels for categories with space and other special
characters
2009-02-17 14:27 dev
* coherence/backends/youtube_storage.py,
coherence/upnp/core/utils.py, docs/coherence.conf.example: * more
cleanups, seems to work now in 'buffer' mode with Totem and the
PS3
* there are probably still some unnecessary code pieces in there,
need to get rid of them in the next step
2009-02-16 21:36 dev
* coherence/backends/youtube_storage.py,
coherence/upnp/core/utils.py: some more cleanups
2009-02-16 20:30 dev
* coherence/backends/youtube_storage.py,
coherence/upnp/core/utils.py: cleaning up things a bit
2009-02-16 17:35 dev
* MANIFEST.in, setup.py: and the corresponding changes in the
setup/dist related files, re #190
2009-02-16 17:31 dev
* coherence/upnp/devices/media_server.py, misc/Desktop Applet,
misc/Desktop-Applet, misc/EOG Plugin, misc/EOG-Plugin,
misc/Rhythmbox Plugin, misc/Rhythmbox-Plugin, misc/Totem Plugin,
misc/Totem-Plugin, misc/device icons, misc/device-icons: replace
'space' characters in folder names with dashes, addresses #190
2009-02-15 14:29 dev
* coherence/backends/youtube_storage.py: making the YouTubeStore a
bit more XBox friendly
2009-02-15 11:57 dev
* coherence/backends/youtube_storage.py,
coherence/upnp/core/utils.py: rework of the YouTube
VideoProxyItem, now works with the PS3 but we seem to have some
severe memory leakage
2009-02-14 12:04 dev
* coherence/backends/itv_storage.py: fixing some UPnP related
lapses
2009-02-13 23:25 jmsizun
* coherence/backends/youtube_storage.py: Corrected cache purge
method (took most recent files first)
2009-02-13 23:24 jmsizun
* coherence/backends/youtube_storage.py: Youtube entries: Add mp4
extension to URL
2009-02-13 22:58 jmsizun
* Coherence.egg-info/entry_points.txt,
coherence/backends/itv_storage.py, setup.py: Added new backend
(ITVStore) to stream Shoutcast TV
2009-02-13 22:57 jmsizun
* coherence/upnp/core/DIDLLite.py: Corrected syntax for AudioItem
parameter
2009-02-13 20:44 dev
* coherence/backends/miro_storage.py: minor fix
2009-02-13 20:40 dev
* Coherence.egg-info/entry_points.txt, setup.py: putting the
MiroStore entrypoint at the right place
2009-02-13 20:35 dev
* setup.py: fixing not-having-setuptools, this time hopefully for
real
2009-02-13 17:40 jmsizun
* Coherence.egg-info/entry_points.txt: removed erroneous "w"
character
2009-02-12 22:18 jmsizun
* Coherence.egg-info/entry_points.txt,
coherence/backends/miro_storage.py: New media backend: MIRO Guide
Catalog for on-line videos
2009-02-12 22:16 jmsizun
* coherence/backends/youtube_storage.py: minor corrections to Proxy
class
2009-02-12 22:14 jmsizun
* coherence/backend.py: small syntax correction in commentary
message
2009-02-10 23:36 jmsizun
* coherence/backends/youtube_storage.py: Added new option
"standard_feeds" to show/hide standard feeds
2009-02-10 23:30 jmsizun
* coherence/upnp/core/utils.py: Avoid error in Windows as iface is
actually a dict object
2009-02-10 23:28 jmsizun
* coherence/upnp/core/utils.py: postpone seek beyond current size
of the buffer file
2009-02-10 19:02 jmsizun
* coherence/upnp/core/utils.py: Oups: missing class again (edited
directly in Twisted)
2009-02-10 17:34 dev
* coherence/backends/fs_storage.py: more debug output to catch
issues during folder walk
2009-02-10 07:27 jmsizun
* coherence/upnp/core/utils.py: Missing file for "youtube proxy:
manage file download to cache & buffering"
2009-02-09 21:18 jmsizun
* coherence/backends/youtube_storage.py: youtube proxy: manage file
download to cache & buffering
2009-02-09 20:30 dev
* coherence/backends/fs_storage.py: cushion the non-existence of
ctypes
2009-02-06 10:48 dev
* coherence/upnp/core/action.py: be sure our InstanceID is an int
2009-02-05 16:05 dev
* coherence/transcoder.py, coherence/upnp/devices/media_server.py:
a little more of logging
2009-02-05 16:04 dev
* coherence/upnp/core/device.py: prepare device icons for the
inspector
2009-02-03 18:21 jmsizun
* coherence/backends/youtube_storage.py: Added param "proxy-mode":
foreseen values are redirect, cache, buffered-cache, ...
2009-02-02 23:59 jmsizun
* coherence/backends/youtube_storage.py: Moved Youtube specific
code (extraction of video from web page) out of Proxy class (to
get a generic Proxy class)
2009-02-02 10:16 dev
* coherence/upnp/core/DIDLLite.py,
coherence/upnp/core/soap_service.py: treat the Philips-TV a
little bit different
2009-02-02 00:11 jmsizun
* coherence/backends/youtube_storage.py,
coherence/extern/youtubedl/youtubedl.py: Youtube: added support
for HD video + merged youtube-dl version 09.01.31
2009-01-31 13:58 dev
* coherence/backends/mediadb_storage.py: return path as utf-8
2009-01-31 12:35 dev
* coherence/backends/mediadb_storage.py: appending the extension to
the url
2009-01-31 12:34 dev
* coherence/upnp/core/DIDLLite.py: removing duplicate element and
fixing DLNA flags bug
2009-01-31 12:27 dev
* coherence/transcoder.py: don't just stop without a reason
2009-01-31 11:03 dev
* coherence/upnp/core/device.py,
coherence/upnp/devices/media_server.py: more url related
corrections
2009-01-30 23:30 jmsizun
* coherence/backends/youtube_storage.py: Youtube: added support for
playlists, subscriptions and localisation of standard feeds.
2009-01-30 22:29 jmsizun
* coherence/upnp/devices/media_server.py: small protection when an
item children list is None
2009-01-30 21:43 dev
* coherence/upnp/core/device.py, coherence/upnp/core/service.py,
coherence/upnp/devices/basics.py,
coherence/upnp/devices/media_server.py: cleaning up some url
issues
2009-01-30 20:06 dev
* coherence/backends/fs_storage.py: fixing reaction upon inotify
re-/moves
2009-01-30 20:05 dev
* coherence/extern/inotify.py: just for convenience
2009-01-30 20:03 dev
* bin/coherence: ignore any config file when called with the new
'--noconfig' option
2009-01-29 20:44 dev
* coherence/backends/flickr_storage.py: adding a 'limit' option for
images per folder, 100 is the default
2009-01-29 16:52 dev
* coherence/backends/ampache_storage.py: fixing cut 'n paste error,
new try
2009-01-28 21:55 dev
* coherence/extern/youtubedl/__init__.py,
coherence/extern/youtubedl/youtubedl.py: missing files
2009-01-28 21:29 dev
* coherence/backends/ampache_storage.py: using the proper element
attribute
2009-01-28 09:16 dev
* coherence/backends/youtube_storage.py: fix for empty containers
2009-01-28 09:16 dev
* coherence/backends/fs_storage.py: warn about having a
non-existent content path
2009-01-25 18:13 dev
* coherence/backends/ampache_storage.py: get the mimetype from
ampache when provided
2009-01-25 17:23 dev
* misc/device icons/youtube-icon.png: a device-icon for the new
YouTube backend
2009-01-25 15:38 dev
* coherence/backends/ampache_storage.py: try a bit harder for the
proper mimetype
2009-01-25 12:39 dev
* coherence/upnp/core/DIDLLite.py: let's remove the irritating DLNA
tags for 'video/*'
2009-01-25 11:37 dev
* coherence/backends/youtube_storage.py: do the YouTube redirect
retrieval now on our side and cache the final location
2009-01-25 11:34 dev
* coherence/transcoder.py: make the lpcm transcoder read from an
http uri to
2009-01-24 22:06 dev
* coherence/backends/youtube_storage.py: 'userid' or 'login' - we
need to find a consistent language
2009-01-24 21:21 dev
* coherence/backends/youtube_storage.py: one more typo
2009-01-24 20:30 dev
* coherence/backends/youtube_storage.py: typo fix
2009-01-24 18:38 dev
* coherence/backends/youtube_storage.py: proper
'we-have-a-user-login' detection
2009-01-24 16:23 dev
* Coherence.egg-info/entry_points.txt,
coherence/backends/youtube_storage.py,
coherence/extern/youtubedl, coherence/upnp/core/utils.py,
setup.py: a modified version of [ticket:173 jmsizuns YouTube
backend], only partial working atm
needs a current version of
[http://code.google.com/p/gdata-python-client Google Data APIs
Python Client Library]
2009-01-24 16:18 dev
* coherence/upnp/core/msearch.py, coherence/upnp/core/ssdp.py:
something for the Inspector
2009-01-24 16:18 dev
* coherence/base.py: precaution
2009-01-24 16:16 dev
* bin/coherence, misc/Desktop Applet/applet-coherence: fix
regarding distutils/setuptools
2009-01-23 17:29 dev
* bin/coherence, coherence/base.py, misc/Desktop
Applet/applet-coherence, setup.py: enable installation without
setuptools again
2009-01-23 13:26 dev
* coherence/backends/axiscam_storage.py: bug-fix - thx tororo
2009-01-22 13:41 dev
* coherence/backend.py, coherence/backends/swr3_storage.py: updated
version of the SWR3Store
2009-01-22 11:43 dev
* coherence/base.py: a stupid one
2009-01-22 10:08 dev
* bin/coherence, coherence/base.py,
coherence/extern/simple_config.py: solving improper placement of
logging related options in the new XMLConfig
2009-01-21 18:12 dev
* coherence/upnp/core/DIDLLite.py: of course _only_ for containers
2009-01-21 18:09 dev
* coherence/backends/lolcats_storage.py: fixing id extraction when
called from the XBox
2009-01-21 16:17 dev
* Coherence.egg-info/requires.txt, setup.py: adding Twisted to the
dependencies in setup.py, it will be now downloaded automatically
from pypi.python.org
2009-01-21 16:12 dev
* coherence/upnp/devices/basics.py,
coherence/upnp/services/servers/media_receiver_registrar_server.py:
hiding the MediaReceiverRegistrar a bit more
2009-01-21 16:11 dev
* coherence/upnp/core/DIDLLite.py: this does look better
2009-01-18 13:16 dev
* coherence/upnp/core/DIDLLite.py: and again
2009-01-18 12:44 dev
* coherence/upnp/core/DIDLLite.py: and again one for the XBox
2009-01-18 12:36 dev
* coherence/backends/fs_storage.py: once more the wmc-hints
2009-01-18 12:19 dev
* coherence/upnp/core/DIDLLite.py: more XBox adjustments
2009-01-18 12:07 dev
* coherence/backends/flickr_storage.py: adjusting wrong wmc-hint
2009-01-18 11:22 dev
* coherence/upnp/core/DIDLLite.py: fixing inconsistency re
root-container id
2009-01-18 11:21 dev
* coherence/backends/appletrailers_storage.py,
coherence/backends/lolcats_storage.py: adding wmc-hints
2009-01-17 14:41 dev
* coherence/upnp/core/DIDLLite.py: more DLNA related cleanups
2009-01-17 14:01 dev
* coherence/upnp/core/DIDLLite.py,
coherence/upnp/devices/media_server.py: more DLNA flag related
adjustments
2009-01-16 21:01 dev
* coherence/backends/mediadb_storage.py: react on more filetypes
and put them at one place
2009-01-15 09:30 dev
* coherence/backends/fs_storage.py: adding the filename extension
to the resource data to test some client behaviour
2009-01-14 20:04 dev
* coherence/upnp/core/event.py: apply the 'right' empty value to an
evented StateVariable - thx hugolp for spotting this
2009-01-13 19:22 dev
* coherence/extern/inotify.py, coherence/extern/test_inotify.py:
revert 'flag_to_human' change that broke the API
2009-01-13 15:42 dev
* coherence/extern/test_inotify.py: the trial tests for inotify.py
2009-01-13 15:40 dev
* coherence/extern/inotify.py: wrap the callback loop in a
try-except clause, so it isn't aborted by a faulty callback
2009-01-13 15:36 dev
* coherence/extern/inotify.py: incorporating dialtones changes and
tests - thx!
Closes #180
2009-01-13 15:33 dev
* coherence/upnp/devices/control_point.py: just for safety reasons
2009-01-12 10:59 dev
* coherence/upnp/devices/media_server.py: only add the
'X_MS_MediaReceiverRegistrar' to the device description.xml when
we talk to an XBox
2009-01-12 10:57 dev
* coherence/backends/appletrailers_storage.py,
coherence/backends/fs_storage.py,
coherence/upnp/core/DIDLLite.py: more 'ordering' related fixes
2009-01-11 16:42 dev
* coherence/extern/inotify.py: missing '()'s
2009-01-11 16:38 dev
* coherence/backends/fs_storage.py, coherence/extern/inotify.py:
only use fallback of inotify system-call when we are on a Linux
kernel
2009-01-11 14:27 dev
* Coherence.egg-info/PKG-INFO, coherence/__init__.py,
coherence/upnp/core/DIDLLite.py, coherence/upnp/core/service.py,
coherence/upnp/core/soap_lite.py,
coherence/upnp/devices/control_point.py,
coherence/upnp/devices/media_server.py: * merging all
Coherence-Samsung changes 1073:1081 back into trunk
2009-01-04 13:03 dev
* ., ChangeLog, Coherence.egg-info, LICENCE, MANIFEST.in, NEWS,
README, bin, coherence, docs, misc, setup.py, tests: rearranging
layout
|