2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2002 Donald N. Allingham
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Standard python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import cStringIO
|
|
|
|
import traceback
|
|
|
|
import sys
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GTK/GNOME modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import gtk.glade
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import const
|
2002-11-25 10:00:36 +05:30
|
|
|
from intl import gettext as _
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# DisplayTrace
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class DisplayTrace:
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
data = sys.exc_info()
|
|
|
|
msg = cStringIO.StringIO()
|
2002-11-19 09:45:02 +05:30
|
|
|
msg.write(_('GRAMPS %s has encountered an internal error.\n'
|
2002-10-20 19:55:16 +05:30
|
|
|
'Please copy the message below and post a bug report '
|
|
|
|
'at http://sourceforge.net/projects/gramps or send an '
|
2002-11-19 09:45:02 +05:30
|
|
|
'email message to gramps-users@lists.sourceforge.net\n\n')
|
|
|
|
% const.version)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
traceback.print_exception(data[0],data[1],data[2],None,msg)
|
|
|
|
|
|
|
|
self.glade = gtk.glade.XML(const.pluginsFile,"plugstat")
|
|
|
|
self.top = self.glade.get_widget("plugstat")
|
|
|
|
window = self.glade.get_widget("text")
|
|
|
|
self.top.set_title(_('Internal Error - GRAMPS'))
|
|
|
|
|
|
|
|
window.get_buffer().set_text(msg.getvalue())
|
2002-10-28 19:06:39 +05:30
|
|
|
self.glade.signal_autoconnect({'on_close_clicked':self.close})
|
2002-10-27 09:50:45 +05:30
|
|
|
|
|
|
|
def close(self,obj):
|
|
|
|
self.top.destroy()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
|
|
|
|
|