Check-in [63798f88a3]
Overview
Comment: | Support literal references in text/uri-list per "srv" setting. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
63798f88a3789db6d8085e084482f06f |
User & Date: | mario on 2015-05-03 09:15:23 |
Other Links: | manifest | tags |
Context
2015-05-03
| ||
09:15 | Move parole behind vlc in setup alternatives. check-in: 7e68e1b770 user: mario tags: trunk | |
09:15 | Support literal references in text/uri-list per "srv" setting. check-in: 63798f88a3 user: mario tags: trunk | |
2015-05-02
| ||
23:44 | Better plugin comments for user interface. check-in: 85c2fd4f56 user: mario tags: trunk | |
Changes
Modified channels/dnd.py from [af2a92a118] to [f74a30909e].
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - + | # encoding: UTF-8 # api: streamtuner2 # title: Drag and Drop (experimental) # description: Copy streams/stations from and to other applications. # depends: uikit # version: 0.5 # type: feature # config: |
︙ | |||
200 201 202 203 204 205 206 207 208 209 210 211 212 213 | 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | + + + | elif info >= 10: urls = action.convert_playlist(r["url"], r["listformat"], "srv", False, r) #buf = 'uris', urls buf = 'text', urls[0] # Text sources are assumed to understand the literal URL or expect a description block elif info >= 5: buf = 'text', "{url}\n# Title: {title}\n# Homepage: {homepage}\n\n".format(**r) # Direct URL as text/uri-list elif conf.dnd_format == "srv": buf = 'uris', [self.row.get("url")] # Create temporary PLS file, because "text/uri-list" is widely misunderstood and just implemented for file:// IRLs else: title = re.sub("[^\w-]+", "_", r["title"]).strip() tmpfn = "{}/{}.{}".format(conf.tmp, title, conf.dnd_format) log.DND("tmpfn", tmpfn) cnv.file(rows=[r], dest=conf.dnd_format, fn=tmpfn) if info == 4: |
︙ |