Check-in [4b66ed9ef8]
Overview
| Comment: | Remove force= parameter from update_streams |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
4b66ed9ef8e22fb54945299add5cbc7f |
| User & Date: | mario on 2014-06-02 01:43:34 |
| Other Links: | manifest | tags |
Context
|
2014-06-02
| ||
| 01:43 | Add server-search, slim down search dialog. check-in: bd29eb4ee9 user: mario tags: trunk | |
| 01:43 | Remove force= parameter from update_streams check-in: 4b66ed9ef8 user: mario tags: trunk | |
| 01:42 | Allow repainting bookmarks categories after channel init check-in: f17890596d user: mario tags: trunk | |
Changes
Added channels/icast.png version [22dae14bc0].
cannot compute difference between binary files
Modified channels/internet_radio.py from [fff2459591] to [b9fa0242be].
| ︙ | |||
65 66 67 68 69 70 71 | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | - + |
html = http.get(self.homepage)
rx = re.compile("""<option[^>]+value="/stations/[-+&.\w\s%]+/">([^<]+)</option>""")
self.categories = rx.findall(html)
# fetch station lists
|
| ︙ |
Added channels/itunes.png version [890e4b0fbd].
cannot compute difference between binary files
Modified channels/jamendo.py from [4d9a276a72] to [8860de0fa3].
| ︙ | |||
273 274 275 276 277 278 279 | 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | - + |
"soft",
]
]
return self.categories
# retrieve category or search
|
| ︙ |
Modified channels/modarchive.py from [fad6b89c33] to [2d0aeb3385].
| ︙ | |||
100 101 102 103 104 105 106 | 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | - + |
cache = conf.load("cache/catmap_" + self.module)
if (cache):
self.catmap = cache
pass
# download links from dmoz listing
|
| ︙ |
Modified channels/myoggradio.py from [75bad296bf] to [bf19ca282c].
| ︙ | |||
69 70 71 72 73 74 75 | 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | - + |
# this is simple, there are no categories
def update_categories(self):
pass
# download links from dmoz listing
|
| ︙ |
Modified channels/punkcast.py from [0e12904925] to [31af6f440a].
| ︙ | |||
54 55 56 57 58 59 60 | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | - + |
# don't do anything
def update_categories(self):
pass
# get list
|
| ︙ |
Modified channels/surfmusik.py from [38f14e35ce] to [02e3c00437].
| ︙ | |||
102 103 104 105 106 107 108 | 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | - + |
subcats = [x.replace("+", " ").title() for x in subcats]
r.append(sorted(subcats))
self.categories = r
# summarize links from surfmusik
|
| ︙ |
Modified channels/xiph.py from [921a2a9392] to [97b65b9a1c].
| ︙ | |||
99 100 101 102 103 104 105 | 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | - + |
data = http.get(self.json_url, params=params)
#__print__(dbg.DATA, data)
#-- extract
l = []
__print__( dbg.PROC, "processing api.dir.xiph.org JSON (via api.include-once.org cache)" )
data = json.loads(data)
|
| ︙ |