This file is indexed.

/usr/share/pyshared/bzrlib/plugins/gtk/notify.py is in bzr-gtk 0.103.0+bzr792-3.

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
# Copyright (C) 2007 by Robert Collins
#                       Jelmer Vernooij
#
# 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
"""Notification area icon and notification for Bazaar."""

from gi.repository import Gtk
import bzrlib


def has_dbus():
    return (getattr(bzrlib.plugins, "dbus", None) is not None)


def has_avahi():
    return (getattr(bzrlib.plugins, "avahi", None) is not None)


class NotifyPopupMenu(Gtk.Menu):

    SHOW_WIDGETS = True

    def __init__(self):
        super(NotifyPopupMenu, self).__init__()
        self.create_items()

    def create_items(self):
        from bzrlib import errors
        item = Gtk.CheckMenuItem.new_with_mnemonic('_Gateway to LAN')
        item.connect('toggled', self.toggle_lan_gateway)
        self.append(item)
        self.append(Gtk.SeparatorMenuItem())
        try:
            from bzrlib.plugins.dbus.activity import LanGateway
            self.langateway = LanGateway()
        except ImportError:
            item.set_sensitive(False)
        except errors.BzrError:
            # FIXME: Should only catch errors that indicate a lan-notify
            # process is already running.
            item.set_sensitive(False)

        item = Gtk.CheckMenuItem.new_with_mnemonic(
            'Announce _branches on LAN')
        item.connect('toggled', self.toggle_announce_branches)
        self.append(item)
        self.append(Gtk.SeparatorMenuItem())
        try:
            from bzrlib.plugins.avahi.share import ZeroConfServer
            from bzrlib import urlutils
            self.zeroconfserver = ZeroConfServer(urlutils.normalize_url('.'))
        except ImportError:
            item.set_sensitive(False)

        item = Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_PREFERENCES, None)
        item.connect('activate', self.show_preferences)
        self.append(item)
        item = Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_ABOUT, None)
        item.connect('activate', self.show_about)
        self.append(item)
        self.append(Gtk.SeparatorMenuItem())
        item = Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_QUIT, None)
        item.connect('activate', Gtk.main_quit)
        self.append(item)
        if self.SHOW_WIDGETS:
            self.show_all()

    def display(self, icon, event_button, event_time):
        self.popup(None, None, Gtk.status_icon_position_menu,
               event_button, event_time, icon)

    def toggle_lan_gateway(self, item):
        if item.get_active():
            self.langateway.start()
        else:
            self.langateway.stop()

    def toggle_announce_branches(self, item):
        if item.get_active():
            self.zeroconfserver.start()
        else:
            self.zeroconfserver.close()

    def show_about(self, item):
        from bzrlib.plugins.gtk.about import AboutDialog
        dialog = AboutDialog()
        dialog.run()

    def show_preferences(self, item):
        from bzrlib.plugins.gtk.preferences import PreferencesWindow
        prefs = PreferencesWindow()
        prefs.run()