This file is indexed.

/usr/lib/python2.7/dist-packages/spectlib/about.py is in specto 0.3.1-0ubuntu3.

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
# -*- coding: UTF8 -*-

# Specto , Unobtrusive event notifier
#
#       about.py
#
# See the AUTHORS file for copyright ownership information

# 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., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.

import os
import pygtk
pygtk.require("2.0")
import gtk
import spectlib.util
from spectlib.i18n import _


class About:
    """
    Class to create a window with the credits
    and licensing information about Specto.
    """

    def __init__(self, specto):
        self.specto = specto
        version_file_path = (os.path.join(spectlib.util.get_path(category="doc"), "VERSION"))
        version_file = open(version_file_path, 'r')
        version = str(version_file.readline()[:-1])
        version_file.close

        license_file_path = '/usr/share/common-licenses/GPL-2'
        license_file = open(license_file_path, "r")
        license = license_file.read()
        license_file.close()
        license = str(license)

        authors_file_path = (os.path.join(spectlib.util.get_path(category="doc"), "AUTHORS"))
        authors_file = open(authors_file_path, "r")
        # this is a hack, because gtk.AboutDialog expects a list, not a file
        authors = authors_file.readlines()
        authors_file.close()

        logo = gtk.gdk.pixbuf_new_from_file(os.path.join(self.specto.PATH, "icons/specto_about.png"))

        # gtk.AboutDialog will detect if "translator-credits" is untranslated,
        # and hide the tab.
        translator_credits = _("translator-credits")

        #create tree
        self.about = gtk.AboutDialog()

        self.about.set_name("Specto")
        self.about.set_version(version)
        self.about.set_copyright("Copyright © Jean-François Fortin Tam & Wout Clymans")
        #self.wTree.set_comments(comments)
        self.about.set_license(license)
        #self.wTree.set_wrap_license(license)
        gtk.about_dialog_set_url_hook(lambda about, url: self.url_show(url))
        self.about.set_website("http://specto.sourceforge.net")
        self.about.set_website_label(_("Specto's Website"))
        self.about.set_authors(authors)
        #self.about.set_documenters(documenters)
        #self.about.set_artists(artists)
        self.about.set_translator_credits(translator_credits)
        self.about.set_logo(logo)

        icon = gtk.gdk.pixbuf_new_from_file(os.path.join(self.specto.PATH, "icons/specto_window_icon.png"))
        self.about.set_icon(icon)

        self.about.connect("response", lambda d, r: self.close())

        self.about.show_all()

    def url_show(self, url):
        os.system(spectlib.util.return_webpage(url) + " &")

    def close(self):
        self.about.destroy()


if __name__ == "__main__":
    #run the gui
    app = About()
    gtk.main()