Check-in [266321da13]
Overview
| Comment: | Fix missing .module property for add_plugin_defaults. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
266321da13a1899d60259ff7d258b000 |
| User & Date: | mario on 2015-04-21 22:00:34 |
| Other Links: | manifest | tags |
Context
|
2015-04-21
| ||
| 22:01 | Alias urllib*.unquote as urldecode() check-in: bd2ee4de96 user: mario tags: trunk | |
| 22:00 | Fix missing .module property for add_plugin_defaults. check-in: 266321da13 user: mario tags: trunk | |
| 06:05 | Replace old __print__/dbg.XYZ references with new log.XYZ() wrapper. check-in: ebae9e51ac user: mario tags: trunk | |
Changes
Modified channels/exportcat.py from [fa4b19ec2a] to [359b4701e7].
| ︙ | ︙ | |||
28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
import re
# provides another export window, and custom file generation - does not use action.save()
class exportcat():
meta = plugin_meta()
# Register callback
def __init__(self, parent):
conf.add_plugin_defaults(self.meta, self.module)
if parent:
self.parent = parent
uikit.add_menu([parent.extensions, parent.extensions_context], "Export all stations", self.savewindow)
| > | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
import re
# provides another export window, and custom file generation - does not use action.save()
class exportcat():
meta = plugin_meta()
module = "exportcat"
# Register callback
def __init__(self, parent):
conf.add_plugin_defaults(self.meta, self.module)
if parent:
self.parent = parent
uikit.add_menu([parent.extensions, parent.extensions_context], "Export all stations", self.savewindow)
|
| ︙ | ︙ |