From 0a5b87ab4dae3ec4b47a47d505f89fc3e3e3055f Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Tue, 3 Mar 2009 21:04:08 +0100 Subject: Rename to abrt --- src/Gui/CCMainWindow.py | 2 +- src/Gui/CCReporterDialog.py | 2 +- src/Gui/Makefile.am | 4 ++-- src/Gui/abrt-gui | 4 ++++ src/Gui/abrt.desktop | 12 ++++++++++++ src/Gui/cc-gui | 4 ---- src/Gui/crash-catcher.desktop | 12 ------------ 7 files changed, 20 insertions(+), 20 deletions(-) create mode 100644 src/Gui/abrt-gui create mode 100644 src/Gui/abrt.desktop delete mode 100644 src/Gui/cc-gui delete mode 100644 src/Gui/crash-catcher.desktop (limited to 'src/Gui') diff --git a/src/Gui/CCMainWindow.py b/src/Gui/CCMainWindow.py index b622b9d0..0aad71f9 100644 --- a/src/Gui/CCMainWindow.py +++ b/src/Gui/CCMainWindow.py @@ -29,7 +29,7 @@ class MainWindow(): sys.exit() #Set the Glade file # FIXME add to PATH - self.gladefile = "/usr/share/crash-catcher/ccgui.glade" + self.gladefile = "/usr/share/abrt/ccgui.glade" self.wTree = gtk.glade.XML(self.gladefile) #Get the Main Window, and connect the "destroy" event diff --git a/src/Gui/CCReporterDialog.py b/src/Gui/CCReporterDialog.py index cd55daf8..cfe11c1f 100644 --- a/src/Gui/CCReporterDialog.py +++ b/src/Gui/CCReporterDialog.py @@ -13,7 +13,7 @@ class ReporterDialog(): self.report = report #Set the Glade file # FIXME add to path - self.gladefile = "/usr/share/crash-catcher/report.glade" + self.gladefile = "/usr/share/abrt/report.glade" self.wTree = gtk.glade.XML(self.gladefile) #Get the Main Window, and connect the "destroy" event self.window = self.wTree.get_widget("reporter_dialog") diff --git a/src/Gui/Makefile.am b/src/Gui/Makefile.am index 4162dcfc..21a4423e 100644 --- a/src/Gui/Makefile.am +++ b/src/Gui/Makefile.am @@ -1,12 +1,12 @@ #SUBDIRS=gui tui plugins tests conf -bin_SCRIPTS = cc-gui +bin_SCRIPTS = abrt-gui PYTHON_FILES = CCDBusBackend.py CCDumpList.py CCDump.py CC_gui_functions.py ccgui.glade report.glade CCReporterDialog.py CCReport.py CCMainWindow.py exception.py GLADE_FILES = ccgui.glade report.glade -EXTRA_DIST = $(PYTHON_FILES) $(GLADE_FILES) cc-gui crash-catcher.desktop +EXTRA_DIST = $(PYTHON_FILES) $(GLADE_FILES) abrt-gui abrt.desktop #ccguidir = $(pkgdatadir) pkgdata_PYTHON = $(PYTHON_FILES) diff --git a/src/Gui/abrt-gui b/src/Gui/abrt-gui new file mode 100644 index 00000000..dd0897c0 --- /dev/null +++ b/src/Gui/abrt-gui @@ -0,0 +1,4 @@ +#! /bin/sh +export PYTHONPATH=/usr/share/abrt +export XLOGNAME=$LOGNAME +exec /usr/bin/python /usr/share/abrt/CCMainWindow.py "$@" diff --git a/src/Gui/abrt.desktop b/src/Gui/abrt.desktop new file mode 100644 index 00000000..bf3df449 --- /dev/null +++ b/src/Gui/abrt.desktop @@ -0,0 +1,12 @@ + +[Desktop Entry] +Encoding=UTF-8 +Name=Automatic Bug Reporting Tool +Comment=Gui for abrt +Exec=abrt-gui +Icon= +Terminal=false +Type=Application +Categories=System;X-Red-Hat-Base; +StartupNotify=true +X-Desktop-File-Install-Version=0.15 diff --git a/src/Gui/cc-gui b/src/Gui/cc-gui deleted file mode 100644 index cd6339f4..00000000 --- a/src/Gui/cc-gui +++ /dev/null @@ -1,4 +0,0 @@ -#! /bin/sh -export PYTHONPATH=/usr/share/crash-catcher -export XLOGNAME=$LOGNAME -exec /usr/bin/python /usr/share/crash-catcher/CCMainWindow.py "$@" diff --git a/src/Gui/crash-catcher.desktop b/src/Gui/crash-catcher.desktop deleted file mode 100644 index 37db7ae8..00000000 --- a/src/Gui/crash-catcher.desktop +++ /dev/null @@ -1,12 +0,0 @@ - -[Desktop Entry] -Encoding=UTF-8 -Name=CrashCatcher -Comment=Gui for crash-catcher -Exec=cc-gui -Icon= -Terminal=false -Type=Application -Categories=System;X-Red-Hat-Base; -StartupNotify=true -X-Desktop-File-Install-Version=0.15 -- cgit