Check-in [8a77525fb0]
Overview
| Comment: | new plugin: script stations, for single-station extractiong/user scripts |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
8a77525fb0a2517104b5d10333a80cc7 |
| User & Date: | mario on 2016-12-17 11:14:01 |
| Other Links: | manifest | tags |
Context
|
2016-12-17
| ||
| 11:22 | Set Frequence3 as new default bookmark (curb the finder song) check-in: 0e8c56d915 user: mario tags: trunk | |
| 11:14 | new plugin: script stations, for single-station extractiong/user scripts check-in: 8a77525fb0 user: mario tags: trunk | |
| 11:01 | Adapt urn_resolve() invocation. Most handlers update the dict in place. A few will return a new row however. (This can be utilized to return a copy, instead of changing station entries → menat for user "script stations" plugin.) check-in: 0a425cfb5d user: mario tags: trunk | |
Changes
Modified channels/bookmarks.py from [767c735b6c] to [e1104d7956].
| ︙ | |||
38 39 40 41 42 43 44 45 46 47 48 49 50 51 | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | + |
# content
listformat = "any"
categories = ["favourite", ] # timer, links, search, and links show up as needed
finder_song = { "genre": "Youtube ", "format": "video/youtube", "playing": "current_", "title": "The Finder song", "url": "http://youtube.com/v/omyZy4H8y9M", "homepage": "http://youtu.be/omyZy4H8y9M" }
streams = {"favourite":[finder_song], "search":[], "scripts":[], "timer":[], "history":[], }
default = "favourite"
fixed_size = [32,24]
# cache list, to determine if a PLS url is bookmarked
urls = []
def gui(self, parent):
parent.notebook_channels.set_menu_label_text(parent.v_bookmarks, "bookmarks")
|
| ︙ |
Added contrib/scripts.py version [d8221b6773].