Diff
Differences From Artifact [e751e37b9b]:
- File channels/punkcast.py — part of check-in [fff3b62827] at 2014-05-13 16:23:02 on branch trunk — Completer plugin meta data blocks, now utilized in channel settings dialog for nicer descriptions. (user: mario, size: 2075) [annotate] [blame] [check-ins using]
To Artifact [0e12904925]:
- File channels/punkcast.py — part of check-in [220ee1286a] at 2014-05-13 21:00:06 on branch trunk — Exchange audio/mp3 for standard audio/mpeg MIME type. (user: mario, size: 2076) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
70 71 72 73 74 75 76 |
#-- all from frontpage
for uu in rx_link.findall(http.get(self.homepage)):
(homepage, id, title) = uu
entries.append({
"genre": "?",
"title": title,
"playing": "PUNKCAST #"+id,
| | | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
#-- all from frontpage
for uu in rx_link.findall(http.get(self.homepage)):
(homepage, id, title) = uu
entries.append({
"genre": "?",
"title": title,
"playing": "PUNKCAST #"+id,
"format": "audio/mpeg",
"homepage": homepage,
})
# done
return entries
|
| ︙ | ︙ |