* src/GrampsLocale: set svn:ignore propery
	* src/BasicUtils: set svn:ignore propery
	* src/GrampsDbUtils: set svn:ignore propery
	* src/RelLib/_Researcher.py: add missing get/set methods
	* src/GrampsDbUtils/_WriteGedcom.py: db owner handling, warn for missing
	* src/GrampsCfg.py: db owner handling, new warning pref
	* src/Config/_GrampsConfigKeys.py: db owner handling, new warning pref
	* data/gramps.schemas.in: db owner handling, new warning pref
	* src/plugins/OwnerEditor.py: db owner handling, plugin tool
	* src/plugins/ownereditor.glade: db owner handling, plugin tool



svn: r8051
This commit is contained in:
Zsolt Foldvari
2007-02-04 17:37:36 +00:00
parent 45a2cfaced
commit 63614a2740
8 changed files with 848 additions and 20 deletions

View File

@@ -163,7 +163,7 @@ class GrampsPreferences(ManagedWindow.ManagedWindow):
return table
def add_advanced_panel(self):
table = gtk.Table(3,8)
table = gtk.Table(4,8)
table.set_border_width(12)
table.set_col_spacings(6)
table.set_row_spacings(6)
@@ -175,9 +175,14 @@ class GrampsPreferences(ManagedWindow.ManagedWindow):
table, _('Suppress warning when cancelling with changed data'),
1, Config.DONT_ASK)
self.add_checkbox(
table, _('Suppress warning about missing researcher when'
' exporting to GEDCOM'),
2, Config.OWNER_WARN)
self.add_checkbox(
table, _('Show plugin status dialog on plugin load error'),
2, Config.POP_PLUGIN_STATUS)
3, Config.POP_PLUGIN_STATUS)
return table