This file is indexed.

/usr/share/avant-window-navigator/applets/stacks/stacks_gui_trasher.py is in awn-applet-stack 0.4.1~bzr1507-0ubuntu7.

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
#!/usr/bin/env python

# Copyright (c) 2007 Randal Barlow
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.

import gtk

from stacks_backend import *
from stacks_backend_file import *
from stacks_backend_folder import *
from stacks_config import StacksConfig
from stacks_launcher import LaunchManager
from stacks_icons import IconFactory
from stacks_vfs import VfsUri

from stacks_gui_dialog import StacksGuiDialog


class StacksGuiTrasher(StacksGuiDialog):

    bt_empty = None

    def __init__(self, applet):
        StacksGuiDialog.__init__(self, applet)


    def dialog_show_new(self, page=0):
        StacksGuiDialog.dialog_show_new(self, page)
        if self.navbuttons is None:
            self.navbuttons = gtk.HButtonBox()
            self.navbuttons.set_layout(gtk.BUTTONBOX_EDGE)
            self.navbuttons.show()
            self.dialog.add(self.navbuttons)

        if self.bt_empty is None:
            self.bt_empty = gtk.Button(stock=gtk.STOCK_DELETE)
            self.bt_empty.set_use_stock(True)
            self.bt_empty.set_relief(gtk.RELIEF_NONE)
            self.bt_empty.connect("clicked", self.empty_trash)
            self.bt_empty.show()
            self.navbuttons.add(self.bt_empty)
            self.navbuttons.reorder_child(self.bt_empty, 1)

    def empty_trash(self, widget):
        self.applet.backend.clear()