402
403
404
405
406
407
408
409
410
411
412
413
414
415
|
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
|
+
+
|
def prepare_filter_icons(self, row):
if conf.show_bookmarks:
# and "bookmarks" in self.parent.channels:
row["favourite"] = self.parent.bookmarks.is_in(row.get("url", "file:///tmp/none"))
# this should really go into bookmarks plugin itself,
# disadvantage: would decelerate processing loop further
if not row.get("state"):
if row.get("url", "").find(" ") > 0:
row["state"] = gtk.STOCK_UNINDENT
if row.get("favourite"):
row["state"] = gtk.STOCK_ABOUT
if row.get("deleted"):
row["state"] = gtk.STOCK_DELETE
# Stream list cleanup - invoked directly after reload(),
|