This file is indexed.

/usr/share/pype/plugins/todo.py is in pype 2.9.4-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
'''
This software is licensed under the GPL (GNU General Public License) version 2
as it appears here: http://www.gnu.org/copyleft/gpl.html
It is also included with this archive as `gpl.txt <gpl.txt>`_.
'''


#site-packages imports
import wx

#local imports
from findinfiles import FoundTable

class vTodo(FoundTable):
    if 1:
        _col = 0
    def OnGetItemText(self, item, col):
        return "%s" % (self.data[item][col],)
    
    def SortItems(self, *args, **kwargs):
        # Override listctrl mixin
        col=self._col
        ascending = self._colSortFlag[col]
        
        if ascending:
            fcn = lambda a,b:cmp(a[col], b[col])
        else:
            fcn = lambda a,b:-cmp(a[col], b[col])
        
        self.data.sort(fcn)
        self.Refresh()
    
    def setData(self, data, copy=1, sort=0):
        FoundTable.setData(self, data, copy=copy)
        if sort:
            self.SortItems()

columns = (
    (0, "Category", 100, 0),
    (1, "Line", 60, wx.LIST_FORMAT_RIGHT),
    (2, "!", 25, wx.LIST_FORMAT_RIGHT),
    (3, "Todo", 5, 0)
)

option = 1

class VirtualTodo(wx.Panel):
    def __init__(self, parent, root):
        wx.Panel.__init__(self, parent, -1, style=wx.WANTS_CHARS)
        self.root = root
        self.parent = parent
        
        self.cb = wx.CheckBox(self, -1, "Include Tags")
        
        self.data = []
        
        self.vtd = vTodo(self, columns)
        
        self.vtd.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnItemActivated)
        self.cb.Bind(wx.EVT_CHECKBOX, self.OnCheck)
        
        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(self.cb, 0, wx.EXPAND|wx.ALL|wx.ALIGN_CENTRE, 5)
        sizer.Add(self.vtd, 1, wx.EXPAND)
        self.SetSizer(sizer)
        
    def NewItemList(self, items, sort=0):
        self.data = items
        if not self.cb.GetValue():
            self.vtd.setData([i for i in items if i[0] != 'tags'], copy=0, sort=sort)
        else:
            self.vtd.setData(items, copy=0, sort=sort)
    
    def OnItemActivated(self, event):
        num, win = self.root.getNumWin(event)
        sel = self.vtd.data[event.m_itemIndex][1]
        if sel < win.GetLineCount():
            sel -= 1
            linepos = win.GetLineEndPosition(sel)
            win.EnsureVisible(sel)
            win.SetSelection(linepos-len(win.GetLine(sel))+len(win.format), linepos)
            win.ScrollToColumn(0)
    
    def OnCheck(self, e):
        global option
        self.Freeze()
        option = self.cb.GetValue()
        self.NewItemList(self.data, 1)
        self.Thaw()
        e.Skip()
    
    def Show(self):
        self.Freeze()
        self.cb.SetValue(option)
        self.NewItemList(self.data)
        self.Thaw()
        wx.Panel.Show(self)