Diff
Differences From Artifact [76451770e4]:
- File channels/__init__.py — part of check-in [4fb2d74c67] at 2017-01-01 15:25:27 on branch trunk — Prevent .row() - row["url"]/urn_resolve from crashing for homepage-only entries (from e.g. links channel). (user: mario, size: 31508) [annotate] [blame] [check-ins using]
To Artifact [c58402c723]:
- File channels/__init__.py — part of check-in [8b13ba0189] at 2017-01-03 20:11:34 on branch trunk — Introduce statusbar_img and GenericChannel.warn() function; albeit it allows any stock icon to be used. (May introduce a generalized background/foreground color wrapping.) (user: mario, size: 31601) [annotate] [blame] [check-ins using]
︙ | |||
195 196 197 198 199 200 201 202 203 204 205 206 207 208 | 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | + + | # no longer using `conf.show_favicons` # Statusbar stub (defers to parent/main window, if in GUI mode) def status(self, *args, **kw): if self.parent: self.parent.status(*args, **kw) else: log.INFO("status():", *v) def warn(self, *args, **kw): self.status(*args, icon="gtk-dialog-warning", **kw) #--------------------- streams/model data accesss --------------------------- # Traverse category TreeModel to set current, expand parent nodes |
︙ |