Check-in [be67f8f19a]
Overview
Comment: | Fix MyOggRadio.org homepage now also as API. Use new ahttp module (fixed again). |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
be67f8f19a74b261e567f8fccd715375 |
User & Date: | mario on 2014-06-30 17:40:02 |
Other Links: | manifest | tags |
Context
2014-07-06
| ||
01:42 | Live365 is currently broken, some retrieval URLs for documentation; albeit it's still unclear if direct streaming can be made working again. check-in: 38a62d9ca1 user: mario tags: trunk | |
2014-06-30
| ||
17:40 | Fix MyOggRadio.org homepage now also as API. Use new ahttp module (fixed again). check-in: be67f8f19a user: mario tags: trunk | |
17:39 | Copy() cache search rows (else channel entries got modified) check-in: a3fd4f7154 user: mario tags: trunk | |
Changes
Modified channels/myoggradio.py from [bf19ca282c] to [7d2a0014e3].
︙ | ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | from channels import * from config import conf from action import action from mygtk import mygtk import re import json from compat2and3 import StringIO import copy # open source radio sharing stie class myoggradio(ChannelPlugin): # description title = "MyOggRadio" module = "myoggradio" homepage = "http://www.myoggradio.org/" | > | | 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 | from channels import * from config import conf from action import action from mygtk import mygtk import ahttp as http import re import json from compat2and3 import StringIO import copy # open source radio sharing stie class myoggradio(ChannelPlugin): # description title = "MyOggRadio" module = "myoggradio" homepage = "http://www.myoggradio.org/" api = "http://www.myoggradio.org/" listformat = "url/direct" # config data config = [ {"name":"myoggradio_login", "type":"text", "value":"user:password", "description":"Account for storing personal favourites."}, {"name":"myoggradio_morph", "type":"boolean", "value":0, "description":"Convert pls/m3u into direct shoutcast url."}, ] |
︙ | ︙ |