This file is indexed.

/usr/share/pyshared/gquilt_pkg/diff.py is in gquilt 0.25-2build1.

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
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
### Copyright (C) 2010 Peter Williams <peter_ono@users.sourceforge.net>

### This program is free software; you can redistribute it and/or modify
### it under the terms of the GNU General Public License as published by
### the Free Software Foundation; version 2 of the License only.

### This program is distributed in the hope that it will be useful,
### but WITHOUT ANY WARRANTY; without even the implied warranty of
### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
### GNU General Public License for more details.

### You should have received a copy of the GNU General Public License
### along with this program; if not, write to the Free Software
### Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

import gtk, re, pango

from gquilt_pkg import ifce, sourceview, dialogue, utils, gutils
from gquilt_pkg import putils

STATES = [gtk.STATE_NORMAL, gtk.STATE_ACTIVE, gtk.STATE_PRELIGHT, gtk.STATE_INSENSITIVE]

class tws_line_count_display(gtk.HBox):
    def __init__(self):
        gtk.HBox.__init__(self)
        self.pack_start(gtk.Label("Added TWS lines:"), expand=False, fill=False)
        self._entry = gtk.Entry()
        self._entry.set_width_chars(1)
        self._entry.set_text(str(0))
        self._entry.set_editable(False)
        self.pack_start(self._entry, expand=False, fill=False)
        self.show_all()
    def set_value(self, val):
        sval = str(val)
        self._entry.set_width_chars(len(sval))
        self._entry.set_text(sval)
        if val:
            for state in STATES:
                self._entry.modify_base(state, gtk.gdk.color_parse("#FF0000"))
        else:
            for state in STATES:
                self._entry.modify_base(state, gtk.gdk.color_parse("#00FF00"))

class DiffTextBuffer(sourceview.SourceBuffer):
    def __init__(self, file_list=None, table=None):
        if not table:
            table = sourceview.SourceTagTable()
        sourceview.SourceBuffer.__init__(self, table)
        if file_list is None:
            self._file_list = []
        else:
            self._file_list = file_list
        self._tws_change_cbs = []
        self.tws_check = re.compile('^(\+.*\S)(\s+\n)$')
        self.tws_list = []
        self.tws_index = 0
        self._action_group = gtk.ActionGroup("diff_text")
        self._action_group.add_actions(
            [
                ("diff_save", gtk.STOCK_SAVE, "_Save", None,
                 "Save the diff to previously nominated file", self._save_acb),
                ("diff_save_as", gtk.STOCK_SAVE_AS, "Save _as", None,
                 "Save the diff to a nominated file", self._save_as_acb),
                ("diff_refresh", gtk.STOCK_REFRESH, "_Refresh", None,
                 "Refresh contents of the diff", self._refresh_acb),
            ])
        self._save_file = None
        self.check_set_save_sensitive()
        self.tws_display = tws_line_count_display()
        self.index_tag = self.create_tag("INDEX", weight=pango.WEIGHT_BOLD, foreground="#0000AA", family="monospace")
        self.sep_tag = self.create_tag("SEP", weight=pango.WEIGHT_BOLD, foreground="#0000AA", family="monospace")
        self.minus_tag = self.create_tag("MINUS", foreground="#AA0000", family="monospace")
        self.lab_tag = self.create_tag("LAB", foreground="#AA0000", family="monospace")
        self.plus_tag = self.create_tag("PLUS", foreground="#006600", family="monospace")
        self.added_tws_tag = self.create_tag("ADDED_TWS", background="#006600", family="monospace")
        self.star_tag = self.create_tag("STAR", foreground="#006600", family="monospace")
        self.rab_tag = self.create_tag("RAB", foreground="#006600", family="monospace")
        self.change_tag = self.create_tag("CHANGED", foreground="#AA6600", family="monospace")
        self.stats_tag = self.create_tag("STATS", foreground="#AA00AA", family="monospace")
        self.func_tag = self.create_tag("FUNC", foreground="#00AAAA", family="monospace")
        self.unchanged_tag = self.create_tag("UNCHANGED", foreground="black", family="monospace")
    def register_tws_change_cb(self, func):
        self._tws_change_cbs.append(func)
    def _append_tagged_text(self, text, tag):
        self.insert_with_tags(self.get_end_iter(), text, tag)
    def _append_patch_line(self, line):
        first_char = line[0]
        if first_char == " ":
            self._append_tagged_text(line, self.unchanged_tag)
        elif first_char == "+":
            match = self.tws_check.match(line)
            if match:
                self._append_tagged_text(match.group(1), self.plus_tag)
                self._append_tagged_text(match.group(2), self.added_tws_tag)
                return len(match.group(1))
            else:
                self._append_tagged_text(line, self.plus_tag)
        elif first_char == "-":
            self._append_tagged_text(line, self.minus_tag)
        elif first_char == "!":
            self._append_tagged_text(line, self.change_tag)
        elif first_char == "@":
            i = line.find("@@", 2)
            if i == -1:
                self._append_tagged_text(line, self.stats_tag)
            else:
                self._append_tagged_text(line[:i+2], self.stats_tag)
                self._append_tagged_text(line[i+2:], self.func_tag)
        elif first_char == "=":
            self._append_tagged_text(line, self.sep_tag)
        elif first_char == "*":
            self._append_tagged_text(line, self.star_tag)
        elif first_char == "<":
            self._append_tagged_text(line, self.lab_tag)
        elif first_char == ">":
            self._append_tagged_text(line, self.rab_tag)
        else:
            self._append_tagged_text(line, self.index_tag)
        return 0
    def _get_diff_text(self):
        return ""
    def set_contents(self):
        text = self._get_diff_text()
        old_count = len(self.tws_list)
        self.begin_not_undoable_action()
        self.set_text("")
        self.tws_list = []
        line_no = 0
        for line in text.splitlines():
            offset = self._append_patch_line(line + '\n')
            if offset:
                self.tws_list.append((line_no, offset - 2))
            line_no += 1
        self.end_not_undoable_action()
        new_count = len(self.tws_list)
        self.tws_display.set_value(new_count)
        if not (new_count == old_count):
            for func in self._tws_change_cbs:
                func(new_count)
    def _tws_index_iter(self):
        pos = self.tws_list[self.tws_index]
        model_iter = self.get_iter_at_line_offset(pos[0], pos[1])
        self.place_cursor(model_iter)
        return model_iter
    def get_tws_first_iter(self):
        self.tws_index = 0
        return self._tws_index_iter()
    def get_tws_prev_iter(self):
        if self.tws_index:
            self.tws_index -= 1
        return self._tws_index_iter()
    def get_tws_next_iter(self):
        self.tws_index += 1
        if self.tws_index >= len(self.tws_list):
            self.tws_index = len(self.tws_list) - 1
        return self._tws_index_iter()
    def get_tws_last_iter(self):
        self.tws_index = len(self.tws_list) - 1
        return self._tws_index_iter()
    def _save_to_file(self):
        if not self._save_file:
            return
        try:
            fobj = open(self._save_file, 'w')
        except IOError as edata:
            strerror = edata[1]
            dialogue.report_any_problems((cmd_result.ERROR, "", strerror))
            self.check_set_save_sensitive()
            return
        text = self.get_text(self.get_start_iter(), self.get_end_iter())
        fobj.write(text)
        fobj.close()
        self.check_set_save_sensitive()
    def check_save_sensitive(self):
        return self._save_file is not None and os.path.exists(self._save_file)
    def check_set_save_sensitive(self):
        set_sensitive = self.check_save_sensitive()
        self._action_group.get_action("diff_save").set_sensitive(set_sensitive)
    def _refresh_acb(self, _action):
        self.set_contents()
    def _save_acb(self, _action):
        self._save_to_file()
    def _save_as_acb(self, _action):
        if self._save_file:
            suggestion = self._save_file
        else:
            suggestion = os.getcwd()
        self._save_file = dialogue.ask_file_name("Save as ...", suggestion=suggestion, existing=False)
        self._save_to_file()
    def get_action_button_box(self):
        return gutils.ActionHButtonBox([self._action_group], action_name_list=self.a_name_list)

class DiffTextView(sourceview.SourceView):
    def __init__(self, buffer):
        sourceview.SourceView.__init__(self, buffer)
        fdesc = pango.FontDescription("mono, 10")
        self.modify_font(fdesc)
        self.set_margin(81)
        self.set_show_margin(True)
        context = self.get_pango_context()
        metrics = context.get_metrics(fdesc)
        width = pango.PIXELS(metrics.get_approximate_char_width() * 85)
        self.set_size_request(width, width / 2)
        self.set_cursor_visible(False)
        self.set_editable(False)
        self._action_group = gtk.ActionGroup("diff_tws_nav")
        self._action_group.add_actions(
            [
                ("tws_nav_first", gtk.STOCK_GOTO_TOP, "_First", None,
                 "Scroll to first line with added trailing white space",
                 self._tws_nav_first_acb),
                ("tws_nav_prev", gtk.STOCK_GO_UP, "_Prev", None,
                 "Scroll to previous line with added trailing white space",
                 self._tws_nav_prev_acb),
                ("tws_nav_next", gtk.STOCK_GO_DOWN, "_Next", None,
                 "Scroll to next line with added trailing white space",
                 self._tws_nav_next_acb),
                ("tws_nav_last", gtk.STOCK_GOTO_BOTTOM, "_Last", None,
                 "Scroll to last line with added trailing white space",
                 self._tws_nav_last_acb),
            ])
        self.tws_nav_buttonbox = gutils.ActionHButtonBox([self._action_group],
            ["tws_nav_first", "tws_nav_prev", "tws_nav_next", "tws_nav_last"])
    def _tws_nav_first_acb(self, _action):
        self.scroll_to_iter(self.get_buffer().get_tws_first_iter(), 0.01, True)
    def _tws_nav_prev_acb(self, _action):
        self.scroll_to_iter(self.get_buffer().get_tws_prev_iter(), 0.01, True)
    def _tws_nav_next_acb(self, _action):
        self.scroll_to_iter(self.get_buffer().get_tws_next_iter(), 0.01, True)
    def _tws_nav_last_acb(self, _action):
        self.scroll_to_iter(self.get_buffer().get_tws_last_iter(), 0.01, True)

class DiffTextWidget(gtk.VBox):
    def __init__(self, diff_view):
        gtk.VBox.__init__(self)
        self.diff_view = diff_view
        self.pack_start(gutils.wrap_in_scrolled_window(self.diff_view))
        self._tws_nav_buttons_packed = False
        buffer = self.diff_view.get_buffer()
        buffer.register_tws_change_cb(self._tws_change_cb)
        buffer.set_contents()
        self.show_all()
    def _tws_change_cb(self, new_count):
        if self._tws_nav_buttons_packed and not new_count:
            self.remove(self.diff_view.tws_nav_buttonbox)
            self.diff_view.set_cursor_visible(False)
            self._tws_nav_buttons_packed = False
        elif not self._tws_nav_buttons_packed and new_count:
            self.pack_start(self.diff_view.tws_nav_buttonbox, expand=False, fill=True)
            self.diff_view.set_cursor_visible(True)
            self._tws_nav_buttons_packed = True

class PmDiffTextBuffer(DiffTextBuffer):
    def __init__(self, file_list=None, patch=None, table=None):
        DiffTextBuffer.__init__(self, file_list=file_list, table=table)
        self._patch = patch
        if not patch:
            self.a_name_list = ["diff_save", "diff_save_as", "diff_refresh"]
        else:
            # the diff between two revs is immutable so refresh is redundant
            self.a_name_list = ["diff_save", "diff_save_as"]
        self.diff_buttons = gutils.ActionButtonList([self._action_group], self.a_name_list)
    def _get_diff_text(self):
        res, text, serr = ifce.ifce.get_diff_for_files(self._file_list, self._patch)
        dialogue.report_any_problems((res, text, serr))
        return text

class PmDiffTextView(DiffTextView):
    def __init__(self, file_list=None, patch=None):
        buffer = PmDiffTextBuffer(file_list, patch=patch)
        DiffTextView.__init__(self, buffer=buffer)

class PmDiffTextWidget(DiffTextWidget):
    def __init__(self, file_list=None, patch=None):
        diff_view = PmDiffTextView(file_list=file_list, patch=patch)
        DiffTextWidget.__init__(self, diff_view=diff_view)

class PmDiffTextDialog(dialogue.AmodalDialog):
    def __init__(self, parent, file_list=None, patch=None):
        flags = gtk.DIALOG_DESTROY_WITH_PARENT
        dialogue.AmodalDialog.__init__(self, None, parent, flags, ())
        title = 'diff: %s' % utils.cwd_rel_home()
        if patch:
            title += " Patch: %s" % patch
        else:
            title += " Patch: []"
        self.set_title(title)
        dtw = PmDiffTextWidget(file_list, patch=patch)
        self.vbox.pack_start(dtw)
        tws_display = dtw.diff_view.get_buffer().tws_display
        self.action_area.pack_end(tws_display, expand=False, fill=False)
        for button in dtw.diff_view.get_buffer().diff_buttons.list:
            self.action_area.pack_start(button)
        self.add_buttons(gtk.STOCK_CLOSE, gtk.RESPONSE_CLOSE)
        self.connect("response", self._close_cb)
        self.show_all()
    def _close_cb(self, dialog, response_id):
        dialog.destroy()

class CombinedDiffTextBuffer(DiffTextBuffer):
    def __init__(self, start_patch=None, end_patch=None, table=None):
        DiffTextBuffer.__init__(self, file_list=None, table=table)
        self.start_patch = start_patch
        self.end_patch = end_patch
        self.a_name_list = ["diff_save", "diff_save_as", "diff_refresh"]
        self.diff_buttons = gutils.ActionButtonList([self._action_group], self.a_name_list)
    def _get_diff_text(self):
        res, text, serr = ifce.ifce.get_combined_diff(self.start_patch, self.end_patch)
        dialogue.report_any_problems((res, text, serr))
        return text

class CombinedDiffTextView(DiffTextView):
    def __init__(self, start_patch=None, end_patch=None):
        buffer = CombinedDiffTextBuffer(start_patch=start_patch, end_patch=end_patch)
        DiffTextView.__init__(self, buffer=buffer)

class CombinedDiffTextWidget(DiffTextWidget):
    def __init__(self, start_patch=None, end_patch=None):
        diff_view = CombinedDiffTextView(start_patch=start_patch, end_patch=end_patch)
        DiffTextWidget.__init__(self, diff_view=diff_view)

class CombinedDiffTextDialog(dialogue.AmodalDialog):
    def __init__(self, parent, start_patch=None, end_patch=None):
        flags = gtk.DIALOG_DESTROY_WITH_PARENT
        dialogue.AmodalDialog.__init__(self, None, parent, flags, ())
        title = 'combined diff: '
        if start_patch is None:
            if end_patch is None:
                title += ' (all applied patches)'
        else:
            title += ' from patch "' + end_patch + '"'
        if end_patch is not None:
            title += ' to patch "' + end_patch + '"'
        self.set_title(title)
        dtw = CombinedDiffTextWidget(start_patch=start_patch, end_patch=end_patch)
        self.vbox.pack_start(dtw)
        tws_display = dtw.diff_view.get_buffer().tws_display
        self.action_area.pack_end(tws_display, expand=False, fill=False)
        for button in dtw.diff_view.get_buffer().diff_buttons.list:
            self.action_area.pack_start(button)
        self.add_buttons(gtk.STOCK_CLOSE, gtk.RESPONSE_CLOSE)
        self.connect("response", self._close_cb)
        self.show_all()
    def _close_cb(self, dialog, response_id):
        dialog.destroy()