/usr/share/konversation/scripts/bug is in konversation-data 1.6-0ubuntu1.
This file is owned by root:root, with mode 0o755.
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 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# 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) version 3 or any later version
# accepted by the membership of KDE e.V. (or its successor appro-
# ved by the membership of KDE e.V.), which shall act as a proxy
# defined in Section 14 of version 3 of the license.
#
# 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, see http://www.gnu.org/licenses/.
#
# Copyright (C) 2012 Kristopher Kerwin <kkerwin1@gmail.com>
# Copyright (C) 2012 Eike Hein <hein@kde.org>
"""
Used to search for a bug at bugs.kde.org.
"""
import subprocess
import sys
try:
import konversation.dbus
konversation.dbus.default_message_prefix = 'bug: '
import konversation.i18n
konversation.i18n.init()
except ImportError:
sys.exit("This script is intended to be run from within Konversation.")
try:
bug = int(sys.argv[3].strip())
except IndexError:
konversation.dbus.error(i18n("You forgot the bug number."), exit=True)
except ValueError:
konversation.dbus.error(i18n("Please search by bug number."), exit=True)
try:
url = 'https://bugs.kde.org/buglist.cgi?quicksearch={0}'.format(bug)
subprocess.call(['xdg-open', url])
except OSError:
konversation.dbus.error(i18n("xdg-open not found."), exit=True)
except subprocess.CalledProcessError:
konversation.dbus.error(i18n("xdg-open failed."), exit=True)
|