Check-in [6cea64726f]
Overview
| Comment: | Fix cmd= parameter handling. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
6cea64726f037389ae4d61e602350ff7 |
| User & Date: | mario on 2018-12-16 20:06:07 |
| Other Links: | manifest | tags |
Context
|
2018-12-17
| ||
| 16:49 | Support for RT-NG direct bookmarks.json saving. check-in: b5f2654777 user: mario tags: trunk | |
|
2018-12-16
| ||
| 20:06 | Fix cmd= parameter handling. check-in: 6cea64726f user: mario tags: trunk | |
| 19:37 | Preliminary support for Radiotray-NG check-in: 0763c7e201 user: mario tags: trunk | |
Changes
Modified channels/specbuttons.py from [06e8ddd1d2] to [9ee8fca8b8].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 | - + | # encoding: utf-8 # title: Spec buttons for apps # description: Adds configurable mini toolbar buttons |
| ︙ | |||
126 127 128 129 130 131 132 | 126 127 128 129 130 131 132 133 134 135 136 | - - + + + |
conf.specbuttons = r
self.update_buttons(self.parent)
# Button callback, allow for %url/%title placeholders
def action(self, cmd):
if re.search("[%$]", cmd):
row = self.parent.channel().row()
|