This file is indexed.

/usr/share/backintime/gnome/gnometools.py is in backintime-gnome 1.0.34-0.1.

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
#    Back In Time
#    Copyright (C) 2008-2009 Oprea Dan, Bart de Koning, Richard Bailey
#
#    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; either version 2 of the License, or
#    (at your option) any later version.
#
#    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.,
#    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


import gtk
import glib
import gettext
import restoredialog
import tools


_=gettext.gettext


def get_snapshot_display_markup( snapshots, snapshot_id ):
    display_name = snapshots.get_snapshot_display_id( snapshot_id )

    name = snapshots.get_snapshot_name( snapshot_id )
    if len( name ) > 0:
        display_name = display_name + ' - <b>' + glib.markup_escape_text( name ) + '</b>'
    
    if snapshots.is_snapshot_failed( snapshot_id ):
        display_name = display_name + " (<b>%s</b>)" % _("WITH ERRORS !")

    return display_name


def run_gtk_update_loop():
    gtk.gdk.window_process_all_updates()
        
    while gtk.events_pending():
        gtk.main_iteration( False )


def new_menu_item(icon, label, callback):
    menu_item = gtk.ImageMenuItem()
    menu_item.set_label(label)
    
    if isinstance(icon, str):
        icon = gtk.image_new_from_stock( icon, gtk.ICON_SIZE_MENU )
    
    if not icon is None:
        menu_item.set_image(icon)
    
    menu_item.connect( 'activate', callback )
    return menu_item


def restore(parent, snapshot_id, path, ask_where = False):
    where = ''
    if ask_where:
        where = None
        fcd = gtk.FileChooserDialog( _('Restore to ...'), parent.window, gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER, (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_OPEN, gtk.RESPONSE_OK) )
        if gtk.RESPONSE_OK == fcd.run():
            where = tools.prepare_path( fcd.get_filename() )
        fcd.destroy()
        if where is None:
            return
    
    print("Where: %s" % where)
    restoredialog.restore(parent, snapshot_id, path, where )

def equal_indent(*args):
    width = 0
    for widget in args:
        widget.set_size_request(-1, -1)
        width = max(width, widget.size_request()[0] )
    if len(args) > 1:
        for widget in args:
            widget.set_size_request(width, -1)