* src/DbPrompter.py (ImportDbPrompter.chooser): Explicitly
import XML and GEDCOM. * src/plugins/FilterEditor.py (MySelect.get_text): Typo. svn: r4108
This commit is contained in:
@@ -293,11 +293,21 @@ class ImportDbPrompter:
|
||||
if filetype == 'auto':
|
||||
filetype = get_mime_type(filename)
|
||||
|
||||
if filetype == 'application/x-gramps':
|
||||
if filetype == const.app_gramps:
|
||||
choose.destroy()
|
||||
ReadGrdb.importData(self.parent.db,filename)
|
||||
self.parent.import_tool_callback()
|
||||
return True
|
||||
elif filetype == const.app_gramps_xml:
|
||||
choose.destroy()
|
||||
import ReadXML
|
||||
ReadXML.importData(self.parent.db,filename)
|
||||
return True
|
||||
elif filetype == const.app_gramps_gedcom:
|
||||
choose.destroy()
|
||||
import ReadGedcom
|
||||
ReadGedcom.importData(self.parent.db,filename)
|
||||
return True
|
||||
|
||||
(the_path,the_file) = os.path.split(filename)
|
||||
GrampsKeys.save_last_import_dir(the_path)
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# Gramps - a GTK+/GNOME based genealogy program
|
||||
#
|
||||
# Copyright (C) 2000-2004 Donald N. Allingham
|
||||
# Copyright (C) 2000-2005 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
|
||||
@@ -200,6 +200,7 @@ class MySelect(gtk.ComboBoxEntry):
|
||||
|
||||
def __init__(self,transtable):
|
||||
gtk.ComboBoxEntry.__init__(self)
|
||||
self.transtable = transtable
|
||||
AutoComp.fill_combo(self,transtable.get_values())
|
||||
self.show()
|
||||
|
||||
|
Reference in New Issue
Block a user