* src/GrampsIniKeys.py: provide support for the default schema
* src/GrampsKeys.py: select appropriate backend * various: switch from GrampsGconfKeys to GrampsKeys for normal usage * src/GrampsIniKeys.py: Alternate backend using .ini files instead of gconf svn: r3873
This commit is contained in:
parent
f0032a4c59
commit
5cb6bd08d5
@ -1,3 +1,13 @@
|
|||||||
|
2005-01-06 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
|
* const.py.in: add support for overriding gconf usage
|
||||||
|
* src/GrampsIniKeys.py: provide support for the default schema
|
||||||
|
* src/GrampsKeys.py: select appropriate backend
|
||||||
|
* various: switch from GrampsGconfKeys to GrampsKeys for normal usage
|
||||||
|
|
||||||
|
2005-01-05 Douglas S. Blank <dblank@brynmawr.edu>
|
||||||
|
* src/GrampsIniKeys.py: Alternate backend using .ini files instead
|
||||||
|
of gconf
|
||||||
|
|
||||||
2005-01-05 Don Allingham <dallingham@users.sourceforge.net>
|
2005-01-05 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
* src/gramps_main.py: detect pygtk_version before passing
|
* src/gramps_main.py: detect pygtk_version before passing
|
||||||
False for markup on MenuItem
|
False for markup on MenuItem
|
||||||
|
@ -46,7 +46,7 @@ import ReadXML
|
|||||||
import GrampsMime
|
import GrampsMime
|
||||||
import DbPrompter
|
import DbPrompter
|
||||||
import QuestionDialog
|
import QuestionDialog
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import RecentFiles
|
import RecentFiles
|
||||||
import PluginMgr
|
import PluginMgr
|
||||||
import Report
|
import Report
|
||||||
@ -324,8 +324,8 @@ class ArgHandler:
|
|||||||
|
|
||||||
if self.imports:
|
if self.imports:
|
||||||
self.parent.import_tool_callback()
|
self.parent.import_tool_callback()
|
||||||
elif GrampsGconfKeys.get_lastfile() and GrampsGconfKeys.get_autoload():
|
elif GrampsKeys.get_lastfile() and GrampsKeys.get_autoload():
|
||||||
if self.auto_save_load(GrampsGconfKeys.get_lastfile()) == 0:
|
if self.auto_save_load(GrampsKeys.get_lastfile()) == 0:
|
||||||
DbPrompter.DbPrompter(self.parent,0)
|
DbPrompter.DbPrompter(self.parent,0)
|
||||||
else:
|
else:
|
||||||
DbPrompter.DbPrompter(self.parent,0)
|
DbPrompter.DbPrompter(self.parent,0)
|
||||||
|
@ -123,8 +123,8 @@ except:
|
|||||||
parser = DateParser.DateParser()
|
parser = DateParser.DateParser()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
val = GrampsGconfKeys.get_date_format(_lang_to_display[_lang].formats)
|
val = GrampsKeys.get_date_format(_lang_to_display[_lang].formats)
|
||||||
except:
|
except:
|
||||||
val = 0
|
val = 0
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ import PluginMgr
|
|||||||
import GrampsBSDDB
|
import GrampsBSDDB
|
||||||
import GrampsXMLDB
|
import GrampsXMLDB
|
||||||
import GrampsGEDDB
|
import GrampsGEDDB
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import RecentFiles
|
import RecentFiles
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
@ -162,11 +162,11 @@ class ExistingDbPrompter:
|
|||||||
|
|
||||||
# Suggested folder: try last open file, last import, last export,
|
# Suggested folder: try last open file, last import, last export,
|
||||||
# then home.
|
# then home.
|
||||||
default_dir = os.path.split(GrampsGconfKeys.get_lastfile())[0] + os.path.sep
|
default_dir = os.path.split(GrampsKeys.get_lastfile())[0] + os.path.sep
|
||||||
if len(default_dir)<=1:
|
if len(default_dir)<=1:
|
||||||
default_dir = GrampsGconfKeys.get_last_import_dir()
|
default_dir = GrampsKeys.get_last_import_dir()
|
||||||
if len(default_dir)<=1:
|
if len(default_dir)<=1:
|
||||||
default_dir = GrampsGconfKeys.get_last_export_dir()
|
default_dir = GrampsKeys.get_last_export_dir()
|
||||||
if len(default_dir)<=1:
|
if len(default_dir)<=1:
|
||||||
default_dir = '~/'
|
default_dir = '~/'
|
||||||
|
|
||||||
@ -257,11 +257,11 @@ class ImportDbPrompter:
|
|||||||
|
|
||||||
# Suggested folder: try last open file, import, then last export,
|
# Suggested folder: try last open file, import, then last export,
|
||||||
# then home.
|
# then home.
|
||||||
default_dir = GrampsGconfKeys.get_last_import_dir()
|
default_dir = GrampsKeys.get_last_import_dir()
|
||||||
if len(default_dir)<=1:
|
if len(default_dir)<=1:
|
||||||
default_dir = os.path.split(GrampsGconfKeys.get_lastfile())[0] + os.path.sep
|
default_dir = os.path.split(GrampsKeys.get_lastfile())[0] + os.path.sep
|
||||||
if len(default_dir)<=1:
|
if len(default_dir)<=1:
|
||||||
default_dir = GrampsGconfKeys.get_last_export_dir()
|
default_dir = GrampsKeys.get_last_export_dir()
|
||||||
if len(default_dir)<=1:
|
if len(default_dir)<=1:
|
||||||
default_dir = '~/'
|
default_dir = '~/'
|
||||||
|
|
||||||
@ -278,7 +278,7 @@ class ImportDbPrompter:
|
|||||||
# return True
|
# return True
|
||||||
|
|
||||||
(the_path,the_file) = os.path.split(filename)
|
(the_path,the_file) = os.path.split(filename)
|
||||||
GrampsGconfKeys.save_last_import_dir(the_path)
|
GrampsKeys.save_last_import_dir(the_path)
|
||||||
for (importData,mime_filter,mime_type,native_format) in PluginMgr.import_list:
|
for (importData,mime_filter,mime_type,native_format) in PluginMgr.import_list:
|
||||||
if filetype == mime_type or the_file == mime_type:
|
if filetype == mime_type or the_file == mime_type:
|
||||||
choose.destroy()
|
choose.destroy()
|
||||||
@ -335,11 +335,11 @@ class NewNativeDbPrompter:
|
|||||||
|
|
||||||
# Suggested folder: try last open file, import, then last export,
|
# Suggested folder: try last open file, import, then last export,
|
||||||
# then home.
|
# then home.
|
||||||
default_dir = os.path.split(GrampsGconfKeys.get_lastfile())[0] + os.path.sep
|
default_dir = os.path.split(GrampsKeys.get_lastfile())[0] + os.path.sep
|
||||||
if len(default_dir)<=1:
|
if len(default_dir)<=1:
|
||||||
default_dir = GrampsGconfKeys.get_last_import_dir()
|
default_dir = GrampsKeys.get_last_import_dir()
|
||||||
if len(default_dir)<=1:
|
if len(default_dir)<=1:
|
||||||
default_dir = GrampsGconfKeys.get_last_export_dir()
|
default_dir = GrampsKeys.get_last_export_dir()
|
||||||
if len(default_dir)<=1:
|
if len(default_dir)<=1:
|
||||||
default_dir = '~/'
|
default_dir = '~/'
|
||||||
|
|
||||||
@ -379,7 +379,7 @@ def open_native(parent,filename,filetype):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
(the_path,the_file) = os.path.split(filename)
|
(the_path,the_file) = os.path.split(filename)
|
||||||
GrampsGconfKeys.save_last_import_dir(the_path)
|
GrampsKeys.save_last_import_dir(the_path)
|
||||||
|
|
||||||
success = False
|
success = False
|
||||||
if filetype == const.app_gramps:
|
if filetype == const.app_gramps:
|
||||||
|
@ -48,7 +48,7 @@ from gtk.gdk import ACTION_COPY, BUTTON1_MASK, INTERP_BILINEAR, pixbuf_new_from_
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
import const
|
import const
|
||||||
import Utils
|
import Utils
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import GrampsCfg
|
import GrampsCfg
|
||||||
import GrampsMime
|
import GrampsMime
|
||||||
import ImageSelect
|
import ImageSelect
|
||||||
@ -331,7 +331,7 @@ class EditPerson:
|
|||||||
self.lds_endowment = RelLib.LdsOrd(self.person.get_lds_endowment())
|
self.lds_endowment = RelLib.LdsOrd(self.person.get_lds_endowment())
|
||||||
self.lds_sealing = RelLib.LdsOrd(self.person.get_lds_sealing())
|
self.lds_sealing = RelLib.LdsOrd(self.person.get_lds_sealing())
|
||||||
|
|
||||||
if GrampsGconfKeys.get_uselds() \
|
if GrampsKeys.get_uselds() \
|
||||||
or (not self.lds_baptism.is_empty()) \
|
or (not self.lds_baptism.is_empty()) \
|
||||||
or (not self.lds_endowment.is_empty()) \
|
or (not self.lds_endowment.is_empty()) \
|
||||||
or (not self.lds_sealing.is_empty()):
|
or (not self.lds_sealing.is_empty()):
|
||||||
@ -1146,7 +1146,7 @@ class EditPerson:
|
|||||||
"""If the data has changed, give the user a chance to cancel
|
"""If the data has changed, give the user a chance to cancel
|
||||||
the close window"""
|
the close window"""
|
||||||
|
|
||||||
if self.did_data_change() and not GrampsGconfKeys.get_dont_ask():
|
if self.did_data_change() and not GrampsKeys.get_dont_ask():
|
||||||
n = "<i>%s</i>" % self.person.get_primary_name().get_regular_name()
|
n = "<i>%s</i>" % self.person.get_primary_name().get_regular_name()
|
||||||
SaveDialog(_('Save changes to %s?') % n,
|
SaveDialog(_('Save changes to %s?') % n,
|
||||||
_('If you close without saving, the changes you '
|
_('If you close without saving, the changes you '
|
||||||
@ -1162,7 +1162,7 @@ class EditPerson:
|
|||||||
def on_delete_event(self,obj,b):
|
def on_delete_event(self,obj,b):
|
||||||
"""If the data has changed, give the user a chance to cancel
|
"""If the data has changed, give the user a chance to cancel
|
||||||
the close window"""
|
the close window"""
|
||||||
if self.did_data_change() and not GrampsGconfKeys.get_dont_ask():
|
if self.did_data_change() and not GrampsKeys.get_dont_ask():
|
||||||
n = "<i>%s</i>" % self.person.get_primary_name().get_regular_name()
|
n = "<i>%s</i>" % self.person.get_primary_name().get_regular_name()
|
||||||
SaveDialog(_('Save Changes to %s?') % n,
|
SaveDialog(_('Save Changes to %s?') % n,
|
||||||
_('If you close without saving, the changes you '
|
_('If you close without saving, the changes you '
|
||||||
|
@ -51,7 +51,7 @@ import const
|
|||||||
import Utils
|
import Utils
|
||||||
import Plugins
|
import Plugins
|
||||||
import QuestionDialog
|
import QuestionDialog
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@ -205,7 +205,7 @@ class Exporter:
|
|||||||
Depending on the success status, set the text for the final page.
|
Depending on the success status, set the text for the final page.
|
||||||
"""
|
"""
|
||||||
filename = self.chooser.get_filename()
|
filename = self.chooser.get_filename()
|
||||||
GrampsGconfKeys.save_last_export_dir(os.path.split(filename)[0])
|
GrampsKeys.save_last_export_dir(os.path.split(filename)[0])
|
||||||
ix = self.get_selected_format_index()
|
ix = self.get_selected_format_index()
|
||||||
if self.exports[ix][3]:
|
if self.exports[ix][3]:
|
||||||
success = self.exports[ix][0](self.parent.db,filename,self.person,
|
success = self.exports[ix][0](self.parent.db,filename,self.person,
|
||||||
@ -334,9 +334,9 @@ class Exporter:
|
|||||||
ext = self.exports[ix][4]
|
ext = self.exports[ix][4]
|
||||||
|
|
||||||
# Suggested folder: try last export, then last import, then home.
|
# Suggested folder: try last export, then last import, then home.
|
||||||
default_dir = GrampsGconfKeys.get_last_export_dir()
|
default_dir = GrampsKeys.get_last_export_dir()
|
||||||
if len(default_dir)<=1:
|
if len(default_dir)<=1:
|
||||||
default_dir = GrampsGconfKeys.get_last_import_dir()
|
default_dir = GrampsKeys.get_last_import_dir()
|
||||||
if len(default_dir)<=1:
|
if len(default_dir)<=1:
|
||||||
default_dir = '~/'
|
default_dir = '~/'
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ from gtk.gdk import ACTION_COPY, BUTTON1_MASK
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
import const
|
import const
|
||||||
import Utils
|
import Utils
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import GrampsCfg
|
import GrampsCfg
|
||||||
import AddSpouse
|
import AddSpouse
|
||||||
import SelectChild
|
import SelectChild
|
||||||
@ -183,7 +183,7 @@ class FamilyView:
|
|||||||
self.sp_drag_data_received)
|
self.sp_drag_data_received)
|
||||||
|
|
||||||
def init_interface(self):
|
def init_interface(self):
|
||||||
fv = GrampsGconfKeys.get_family_view()
|
fv = GrampsKeys.get_family_view()
|
||||||
self.set_widgets(fv)
|
self.set_widgets(fv)
|
||||||
|
|
||||||
already_init = self.cadded[fv]
|
already_init = self.cadded[fv]
|
||||||
@ -710,7 +710,7 @@ class FamilyView:
|
|||||||
return
|
return
|
||||||
|
|
||||||
person = RelLib.Person()
|
person = RelLib.Person()
|
||||||
autoname = GrampsGconfKeys.get_lastnamegen()
|
autoname = GrampsKeys.get_lastnamegen()
|
||||||
|
|
||||||
if autoname == 0:
|
if autoname == 0:
|
||||||
name = self.north_american(0)
|
name = self.north_american(0)
|
||||||
|
@ -43,7 +43,7 @@ import gnome
|
|||||||
# gramps modules
|
# gramps modules
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import RelLib
|
import RelLib
|
||||||
import const
|
import const
|
||||||
import Utils
|
import Utils
|
||||||
@ -82,12 +82,12 @@ panellist = [
|
|||||||
# Not exactly gconf keys, but the functions directly dependent on them
|
# Not exactly gconf keys, but the functions directly dependent on them
|
||||||
|
|
||||||
def get_toolbar_style():
|
def get_toolbar_style():
|
||||||
saved_toolbar = GrampsGconfKeys.get_toolbar()
|
saved_toolbar = GrampsKeys.get_toolbar()
|
||||||
if saved_toolbar in range(4):
|
if saved_toolbar in range(4):
|
||||||
return saved_toolbar
|
return saved_toolbar
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
gnome_toolbar_str = GrampsGconfKeys.client.get_string("/desktop/gnome/interface/toolbar_style")
|
gnome_toolbar_str = GrampsKeys.client.get_string("/desktop/gnome/interface/toolbar_style")
|
||||||
gnome_toolbar = eval("gtk.TOOLBAR_%s" %
|
gnome_toolbar = eval("gtk.TOOLBAR_%s" %
|
||||||
gnome_toolbar_str.replace('-','_').upper())
|
gnome_toolbar_str.replace('-','_').upper())
|
||||||
except:
|
except:
|
||||||
@ -96,7 +96,7 @@ def get_toolbar_style():
|
|||||||
|
|
||||||
def set_calendar_date_format():
|
def set_calendar_date_format():
|
||||||
format_list = DateHandler.get_date_formats()
|
format_list = DateHandler.get_date_formats()
|
||||||
DateHandler.set_format(GrampsGconfKeys.get_date_format(format_list))
|
DateHandler.set_format(GrampsKeys.get_date_format(format_list))
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@ -131,14 +131,14 @@ def loadConfig():
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
def get_researcher():
|
def get_researcher():
|
||||||
n = GrampsGconfKeys.get_researcher_name()
|
n = GrampsKeys.get_researcher_name()
|
||||||
a = GrampsGconfKeys.get_researcher_addr()
|
a = GrampsKeys.get_researcher_addr()
|
||||||
c = GrampsGconfKeys.get_researcher_city()
|
c = GrampsKeys.get_researcher_city()
|
||||||
s = GrampsGconfKeys.get_researcher_state()
|
s = GrampsKeys.get_researcher_state()
|
||||||
ct = GrampsGconfKeys.get_researcher_country()
|
ct = GrampsKeys.get_researcher_country()
|
||||||
p = GrampsGconfKeys.get_researcher_postal()
|
p = GrampsKeys.get_researcher_postal()
|
||||||
ph = GrampsGconfKeys.get_researcher_phone()
|
ph = GrampsKeys.get_researcher_phone()
|
||||||
e = GrampsGconfKeys.get_researcher_email()
|
e = GrampsKeys.get_researcher_email()
|
||||||
|
|
||||||
owner = RelLib.Researcher()
|
owner = RelLib.Researcher()
|
||||||
owner.set(n,a,c,s,ct,p,ph,e)
|
owner.set(n,a,c,s,ct,p,ph,e)
|
||||||
@ -194,73 +194,73 @@ class GrampsPreferences:
|
|||||||
def build(self):
|
def build(self):
|
||||||
|
|
||||||
auto = self.top.get_widget("autoload")
|
auto = self.top.get_widget("autoload")
|
||||||
auto.set_active(GrampsGconfKeys.get_autoload())
|
auto.set_active(GrampsKeys.get_autoload())
|
||||||
auto.connect('toggled',
|
auto.connect('toggled',
|
||||||
lambda obj: GrampsGconfKeys.save_autoload(obj.get_active()))
|
lambda obj: GrampsKeys.save_autoload(obj.get_active()))
|
||||||
|
|
||||||
lds = self.top.get_widget("uselds")
|
lds = self.top.get_widget("uselds")
|
||||||
lds.set_active(GrampsGconfKeys.get_uselds())
|
lds.set_active(GrampsKeys.get_uselds())
|
||||||
lds.connect('toggled',
|
lds.connect('toggled',
|
||||||
lambda obj: GrampsGconfKeys.save_uselds(obj.get_active()))
|
lambda obj: GrampsKeys.save_uselds(obj.get_active()))
|
||||||
|
|
||||||
ipr = self.top.get_widget("iprefix")
|
ipr = self.top.get_widget("iprefix")
|
||||||
ipr.set_text(GrampsGconfKeys.get_person_id_prefix())
|
ipr.set_text(GrampsKeys.get_person_id_prefix())
|
||||||
ipr.connect('changed',
|
ipr.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_iprefix(obj.get_text()))
|
lambda obj: GrampsKeys.save_iprefix(obj.get_text()))
|
||||||
opr = self.top.get_widget("oprefix")
|
opr = self.top.get_widget("oprefix")
|
||||||
opr.set_text(GrampsGconfKeys.get_object_id_prefix())
|
opr.set_text(GrampsKeys.get_object_id_prefix())
|
||||||
opr.connect('changed',
|
opr.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_oprefix(obj.get_text()))
|
lambda obj: GrampsKeys.save_oprefix(obj.get_text()))
|
||||||
fpr = self.top.get_widget("fprefix")
|
fpr = self.top.get_widget("fprefix")
|
||||||
fpr.set_text(GrampsGconfKeys.get_family_id_prefix())
|
fpr.set_text(GrampsKeys.get_family_id_prefix())
|
||||||
fpr.connect('changed',
|
fpr.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_fprefix(obj.get_text()))
|
lambda obj: GrampsKeys.save_fprefix(obj.get_text()))
|
||||||
spr = self.top.get_widget("sprefix")
|
spr = self.top.get_widget("sprefix")
|
||||||
spr.set_text(GrampsGconfKeys.get_source_id_prefix())
|
spr.set_text(GrampsKeys.get_source_id_prefix())
|
||||||
spr.connect('changed',
|
spr.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_sprefix(obj.get_text()))
|
lambda obj: GrampsKeys.save_sprefix(obj.get_text()))
|
||||||
ppr = self.top.get_widget("pprefix")
|
ppr = self.top.get_widget("pprefix")
|
||||||
ppr.set_text(GrampsGconfKeys.get_place_id_prefix())
|
ppr.set_text(GrampsKeys.get_place_id_prefix())
|
||||||
ppr.connect('changed',
|
ppr.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_pprefix(obj.get_text()))
|
lambda obj: GrampsKeys.save_pprefix(obj.get_text()))
|
||||||
|
|
||||||
sb2 = self.top.get_widget("stat2")
|
sb2 = self.top.get_widget("stat2")
|
||||||
sb3 = self.top.get_widget("stat3")
|
sb3 = self.top.get_widget("stat3")
|
||||||
if GrampsGconfKeys.get_statusbar() == 0 or GrampsGconfKeys.get_statusbar() == 1:
|
if GrampsKeys.get_statusbar() == 0 or GrampsKeys.get_statusbar() == 1:
|
||||||
sb2.set_active(1)
|
sb2.set_active(1)
|
||||||
else:
|
else:
|
||||||
sb3.set_active(1)
|
sb3.set_active(1)
|
||||||
sb2.connect('toggled',
|
sb2.connect('toggled',
|
||||||
lambda obj: GrampsGconfKeys.save_statusbar(2-obj.get_active()))
|
lambda obj: GrampsKeys.save_statusbar(2-obj.get_active()))
|
||||||
|
|
||||||
toolbarmenu = self.top.get_widget("tooloptmenu")
|
toolbarmenu = self.top.get_widget("tooloptmenu")
|
||||||
toolbarmenu.set_active(GrampsGconfKeys.get_toolbar()-1)
|
toolbarmenu.set_active(GrampsKeys.get_toolbar()-1)
|
||||||
print GrampsGconfKeys.get_toolbar()
|
print GrampsKeys.get_toolbar()
|
||||||
toolbarmenu.connect('changed',
|
toolbarmenu.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_toolbar(obj.get_active()+1))
|
lambda obj: GrampsKeys.save_toolbar(obj.get_active()+1))
|
||||||
|
|
||||||
pvbutton = self.top.get_widget('pvbutton')
|
pvbutton = self.top.get_widget('pvbutton')
|
||||||
fvbutton = self.top.get_widget('fvbutton')
|
fvbutton = self.top.get_widget('fvbutton')
|
||||||
if GrampsGconfKeys.get_default_view() == 0:
|
if GrampsKeys.get_default_view() == 0:
|
||||||
pvbutton.set_active(1)
|
pvbutton.set_active(1)
|
||||||
else:
|
else:
|
||||||
fvbutton.set_active(1)
|
fvbutton.set_active(1)
|
||||||
fvbutton.connect('toggled',
|
fvbutton.connect('toggled',
|
||||||
lambda obj: GrampsGconfKeys.save_default_view(obj.get_active()))
|
lambda obj: GrampsKeys.save_default_view(obj.get_active()))
|
||||||
|
|
||||||
familyview1 = self.top.get_widget('familyview1')
|
familyview1 = self.top.get_widget('familyview1')
|
||||||
familyview2 = self.top.get_widget('familyview2')
|
familyview2 = self.top.get_widget('familyview2')
|
||||||
if GrampsGconfKeys.get_family_view() == 0:
|
if GrampsKeys.get_family_view() == 0:
|
||||||
familyview1.set_active(1)
|
familyview1.set_active(1)
|
||||||
else:
|
else:
|
||||||
familyview2.set_active(1)
|
familyview2.set_active(1)
|
||||||
familyview2.connect('toggled',
|
familyview2.connect('toggled',
|
||||||
lambda obj: GrampsGconfKeys.save_family_view(obj.get_active()))
|
lambda obj: GrampsKeys.save_family_view(obj.get_active()))
|
||||||
|
|
||||||
usetips = self.top.get_widget('usetips')
|
usetips = self.top.get_widget('usetips')
|
||||||
usetips.set_active(GrampsGconfKeys.get_usetips())
|
usetips.set_active(GrampsKeys.get_usetips())
|
||||||
usetips.connect('toggled',
|
usetips.connect('toggled',
|
||||||
lambda obj: GrampsGconfKeys.save_usetips(obj.get_active()))
|
lambda obj: GrampsKeys.save_usetips(obj.get_active()))
|
||||||
|
|
||||||
lastnamegen_obj = self.top.get_widget("lastnamegen")
|
lastnamegen_obj = self.top.get_widget("lastnamegen")
|
||||||
menu = gtk.Menu()
|
menu = gtk.Menu()
|
||||||
@ -270,11 +270,11 @@ class GrampsPreferences:
|
|||||||
item.set_data(DATA,index)
|
item.set_data(DATA,index)
|
||||||
item.show()
|
item.show()
|
||||||
menu.append(item)
|
menu.append(item)
|
||||||
menu.set_active(GrampsGconfKeys.get_lastnamegen(_surname_styles))
|
menu.set_active(GrampsKeys.get_lastnamegen(_surname_styles))
|
||||||
lastnamegen_obj.set_menu(menu)
|
lastnamegen_obj.set_menu(menu)
|
||||||
lastnamegen_obj.connect("changed",
|
lastnamegen_obj.connect("changed",
|
||||||
lambda obj:
|
lambda obj:
|
||||||
GrampsGconfKeys.save_lastnamegen(obj.get_menu().get_active().get_data(DATA),_surname_styles)
|
GrampsKeys.save_lastnamegen(obj.get_menu().get_active().get_data(DATA),_surname_styles)
|
||||||
)
|
)
|
||||||
|
|
||||||
date_option = self.top.get_widget("date_format")
|
date_option = self.top.get_widget("date_format")
|
||||||
@ -288,48 +288,48 @@ class GrampsPreferences:
|
|||||||
try:
|
try:
|
||||||
# Technically, a selected format might be out of range
|
# Technically, a selected format might be out of range
|
||||||
# for this locale's format list.
|
# for this locale's format list.
|
||||||
date_menu.set_active(GrampsGconfKeys.get_date_format(dlist))
|
date_menu.set_active(GrampsKeys.get_date_format(dlist))
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
date_option.set_menu(date_menu)
|
date_option.set_menu(date_menu)
|
||||||
date_option.connect("changed",
|
date_option.connect("changed",
|
||||||
lambda obj:
|
lambda obj:
|
||||||
GrampsGconfKeys.save_date_format(obj.get_menu().get_active().get_data(INDEX),dlist)
|
GrampsKeys.save_date_format(obj.get_menu().get_active().get_data(INDEX),dlist)
|
||||||
)
|
)
|
||||||
|
|
||||||
resname = self.top.get_widget("resname")
|
resname = self.top.get_widget("resname")
|
||||||
resname.set_text(GrampsGconfKeys.get_researcher_name())
|
resname.set_text(GrampsKeys.get_researcher_name())
|
||||||
resname.connect('changed',
|
resname.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_researcher_name(obj.get_text()))
|
lambda obj: GrampsKeys.save_researcher_name(obj.get_text()))
|
||||||
resaddr = self.top.get_widget("resaddr")
|
resaddr = self.top.get_widget("resaddr")
|
||||||
resaddr.set_text(GrampsGconfKeys.get_researcher_addr())
|
resaddr.set_text(GrampsKeys.get_researcher_addr())
|
||||||
resaddr.connect('changed',
|
resaddr.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_researcher_addr(obj.get_text()))
|
lambda obj: GrampsKeys.save_researcher_addr(obj.get_text()))
|
||||||
rescity = self.top.get_widget("rescity")
|
rescity = self.top.get_widget("rescity")
|
||||||
rescity.set_text(GrampsGconfKeys.get_researcher_city())
|
rescity.set_text(GrampsKeys.get_researcher_city())
|
||||||
rescity.connect('changed',
|
rescity.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_researcher_city(obj.get_text()))
|
lambda obj: GrampsKeys.save_researcher_city(obj.get_text()))
|
||||||
resstate = self.top.get_widget("resstate")
|
resstate = self.top.get_widget("resstate")
|
||||||
resstate.set_text(GrampsGconfKeys.get_researcher_state())
|
resstate.set_text(GrampsKeys.get_researcher_state())
|
||||||
resstate.connect('changed',
|
resstate.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_researcher_state(obj.get_text()))
|
lambda obj: GrampsKeys.save_researcher_state(obj.get_text()))
|
||||||
rescountry = self.top.get_widget("rescountry")
|
rescountry = self.top.get_widget("rescountry")
|
||||||
rescountry.set_text(GrampsGconfKeys.get_researcher_country())
|
rescountry.set_text(GrampsKeys.get_researcher_country())
|
||||||
rescountry.connect('changed',
|
rescountry.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_researcher_country(obj.get_text()))
|
lambda obj: GrampsKeys.save_researcher_country(obj.get_text()))
|
||||||
respostal = self.top.get_widget("respostal")
|
respostal = self.top.get_widget("respostal")
|
||||||
respostal.set_text(GrampsGconfKeys.get_researcher_postal())
|
respostal.set_text(GrampsKeys.get_researcher_postal())
|
||||||
respostal.connect('changed',
|
respostal.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_researcher_postal(obj.get_text()))
|
lambda obj: GrampsKeys.save_researcher_postal(obj.get_text()))
|
||||||
resphone = self.top.get_widget("resphone")
|
resphone = self.top.get_widget("resphone")
|
||||||
resphone.set_text(GrampsGconfKeys.get_researcher_phone())
|
resphone.set_text(GrampsKeys.get_researcher_phone())
|
||||||
resphone.connect('changed',
|
resphone.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_researcher_phone(obj.get_text()))
|
lambda obj: GrampsKeys.save_researcher_phone(obj.get_text()))
|
||||||
resemail = self.top.get_widget("resemail")
|
resemail = self.top.get_widget("resemail")
|
||||||
resemail.set_text(GrampsGconfKeys.get_researcher_email())
|
resemail.set_text(GrampsKeys.get_researcher_email())
|
||||||
resemail.connect('changed',
|
resemail.connect('changed',
|
||||||
lambda obj: GrampsGconfKeys.save_researcher_email(obj.get_text()))
|
lambda obj: GrampsKeys.save_researcher_email(obj.get_text()))
|
||||||
|
|
||||||
def select(self,obj):
|
def select(self,obj):
|
||||||
store,node = self.selection.get_selected()
|
store,node = self.selection.get_selected()
|
||||||
|
@ -41,7 +41,7 @@ import os
|
|||||||
import md5
|
import md5
|
||||||
import gtk
|
import gtk
|
||||||
|
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import Utils
|
import Utils
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
@ -123,12 +123,12 @@ class GrampsDbBase:
|
|||||||
self.lmap_index = 0
|
self.lmap_index = 0
|
||||||
self.omap_index = 0
|
self.omap_index = 0
|
||||||
|
|
||||||
self.set_person_id_prefix(GrampsGconfKeys.get_person_id_prefix())
|
self.set_person_id_prefix(GrampsKeys.get_person_id_prefix())
|
||||||
self.set_object_id_prefix(GrampsGconfKeys.get_object_id_prefix())
|
self.set_object_id_prefix(GrampsKeys.get_object_id_prefix())
|
||||||
self.set_family_id_prefix(GrampsGconfKeys.get_family_id_prefix())
|
self.set_family_id_prefix(GrampsKeys.get_family_id_prefix())
|
||||||
self.set_source_id_prefix(GrampsGconfKeys.get_source_id_prefix())
|
self.set_source_id_prefix(GrampsKeys.get_source_id_prefix())
|
||||||
self.set_place_id_prefix(GrampsGconfKeys.get_place_id_prefix())
|
self.set_place_id_prefix(GrampsKeys.get_place_id_prefix())
|
||||||
self.set_event_id_prefix(GrampsGconfKeys.get_event_id_prefix())
|
self.set_event_id_prefix(GrampsKeys.get_event_id_prefix())
|
||||||
|
|
||||||
self.open = 0
|
self.open = 0
|
||||||
self.genderStats = GenderStats()
|
self.genderStats = GenderStats()
|
||||||
|
@ -48,7 +48,7 @@ import gtk.glade
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
import const
|
import const
|
||||||
import Utils
|
import Utils
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import NameDisplay
|
import NameDisplay
|
||||||
import Plugins
|
import Plugins
|
||||||
import RelLib
|
import RelLib
|
||||||
@ -470,12 +470,12 @@ class Gallery(ImageSelect):
|
|||||||
(root,ext) = os.path.splitext(basename)
|
(root,ext) = os.path.splitext(basename)
|
||||||
photo.set_description(root)
|
photo.set_description(root)
|
||||||
self.savephoto(photo)
|
self.savephoto(photo)
|
||||||
if GrampsGconfKeys.get_media_reference() == 0:
|
if GrampsKeys.get_media_reference() == 0:
|
||||||
self.db.set_thumbnail_image(photo.get_handle(),
|
self.db.set_thumbnail_image(photo.get_handle(),
|
||||||
self.path)
|
self.path)
|
||||||
photo.set_path(name)
|
photo.set_path(name)
|
||||||
self.parent.lists_changed = 1
|
self.parent.lists_changed = 1
|
||||||
if GrampsGconfKeys.get_media_global():
|
if GrampsKeys.get_media_global():
|
||||||
GlobalMediaProperties(self.db,photo,None,
|
GlobalMediaProperties(self.db,photo,None,
|
||||||
self,self.parent_window)
|
self,self.parent_window)
|
||||||
elif protocol != "":
|
elif protocol != "":
|
||||||
@ -505,7 +505,7 @@ class Gallery(ImageSelect):
|
|||||||
return
|
return
|
||||||
self.add_thumbnail(oref)
|
self.add_thumbnail(oref)
|
||||||
self.parent.lists_changed = 1
|
self.parent.lists_changed = 1
|
||||||
if GrampsGconfKeys.get_media_global():
|
if GrampsKeys.get_media_global():
|
||||||
GlobalMediaProperties(self.db,photo,None,
|
GlobalMediaProperties(self.db,photo,None,
|
||||||
self,self.parent_window)
|
self,self.parent_window)
|
||||||
else:
|
else:
|
||||||
@ -535,7 +535,7 @@ class Gallery(ImageSelect):
|
|||||||
self.dataobj.add_media_reference(oref)
|
self.dataobj.add_media_reference(oref)
|
||||||
self.add_thumbnail(oref)
|
self.add_thumbnail(oref)
|
||||||
self.parent.lists_changed = 1
|
self.parent.lists_changed = 1
|
||||||
if GrampsGconfKeys.get_media_global():
|
if GrampsKeys.get_media_global():
|
||||||
LocalMediaProperties(oref,self.path,self,self.parent_window)
|
LocalMediaProperties(oref,self.path,self,self.parent_window)
|
||||||
|
|
||||||
def on_photolist_drag_data_get(self,w, context, selection_data, info, time):
|
def on_photolist_drag_data_get(self,w, context, selection_data, info, time):
|
||||||
|
@ -47,7 +47,7 @@ import RelLib
|
|||||||
import ImageSelect
|
import ImageSelect
|
||||||
import DateHandler
|
import DateHandler
|
||||||
import Sources
|
import Sources
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import NameDisplay
|
import NameDisplay
|
||||||
|
|
||||||
from QuestionDialog import QuestionDialog, WarningDialog, SaveDialog
|
from QuestionDialog import QuestionDialog, WarningDialog, SaveDialog
|
||||||
@ -556,7 +556,7 @@ class Marriage:
|
|||||||
self.close(0)
|
self.close(0)
|
||||||
|
|
||||||
def on_cancel_edit(self,obj):
|
def on_cancel_edit(self,obj):
|
||||||
if self.did_data_change() and not GrampsGconfKeys.get_dont_ask():
|
if self.did_data_change() and not GrampsKeys.get_dont_ask():
|
||||||
global quit
|
global quit
|
||||||
self.quit = obj
|
self.quit = obj
|
||||||
SaveDialog(_('Save Changes?'),
|
SaveDialog(_('Save Changes?'),
|
||||||
|
@ -43,7 +43,7 @@ import gtk.gdk
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
import RelLib
|
import RelLib
|
||||||
import Utils
|
import Utils
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import const
|
import const
|
||||||
import ImageSelect
|
import ImageSelect
|
||||||
import RelImage
|
import RelImage
|
||||||
@ -389,13 +389,13 @@ class MediaView:
|
|||||||
photo.set_description(description)
|
photo.set_description(description)
|
||||||
trans = self.db.transaction_begin()
|
trans = self.db.transaction_begin()
|
||||||
self.db.add_object(photo,trans)
|
self.db.add_object(photo,trans)
|
||||||
if GrampsGconfKeys.get_media_reference() == 0:
|
if GrampsKeys.get_media_reference() == 0:
|
||||||
self.db.set_thumbnail_image(photo.get_handle(),name)
|
self.db.set_thumbnail_image(photo.get_handle(),name)
|
||||||
|
|
||||||
self.db.commit_media_object(photo,trans)
|
self.db.commit_media_object(photo,trans)
|
||||||
self.db.transaction_commit(trans,_("Add Media Object"))
|
self.db.transaction_commit(trans,_("Add Media Object"))
|
||||||
self.build_tree()
|
self.build_tree()
|
||||||
if GrampsGconfKeys.get_media_global():
|
if GrampsKeys.get_media_global():
|
||||||
ImageSelect.GlobalMediaProperties(self.db,photo,
|
ImageSelect.GlobalMediaProperties(self.db,photo,
|
||||||
self.update_display,
|
self.update_display,
|
||||||
self,self.topWindow)
|
self,self.topWindow)
|
||||||
@ -427,7 +427,7 @@ class MediaView:
|
|||||||
self.db.commit_media_object(photo,trans)
|
self.db.commit_media_object(photo,trans)
|
||||||
self.db.transaction_commit(trans,_("Add Media Object"))
|
self.db.transaction_commit(trans,_("Add Media Object"))
|
||||||
|
|
||||||
if GrampsGconfKeys.get_media_global():
|
if GrampsKeys.get_media_global():
|
||||||
ImageSelect.GlobalMediaProperties(self.db,photo,None,
|
ImageSelect.GlobalMediaProperties(self.db,photo,None,
|
||||||
self,self.topWindow)
|
self,self.topWindow)
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ from gettext import gettext as _
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
import const
|
import const
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import Errors
|
import Errors
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
@ -133,7 +133,7 @@ def load_plugins(direct):
|
|||||||
except:
|
except:
|
||||||
failmsg_list.append((filename,sys.exc_info()))
|
failmsg_list.append((filename,sys.exc_info()))
|
||||||
|
|
||||||
if GrampsGconfKeys.get_pop_plugin_status() and len(expect_list)+len(failmsg_list):
|
if GrampsKeys.get_pop_plugin_status() and len(expect_list)+len(failmsg_list):
|
||||||
PluginStatus()
|
PluginStatus()
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
@ -199,7 +199,7 @@ def reload_plugins(obj=None,junk1=None,junk2=None,junk3=None):
|
|||||||
except:
|
except:
|
||||||
failmsg_list.append((filename,sys.exc_info()))
|
failmsg_list.append((filename,sys.exc_info()))
|
||||||
|
|
||||||
if GrampsGconfKeys.get_pop_plugin_status():
|
if GrampsKeys.get_pop_plugin_status():
|
||||||
global status_up
|
global status_up
|
||||||
if len(failmsg_list):
|
if len(failmsg_list):
|
||||||
PluginStatus()
|
PluginStatus()
|
||||||
|
@ -57,7 +57,7 @@ from gettext import gettext as _
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
import const
|
import const
|
||||||
import Utils
|
import Utils
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import Errors
|
import Errors
|
||||||
import Report
|
import Report
|
||||||
import PluginMgr
|
import PluginMgr
|
||||||
@ -361,13 +361,13 @@ class PluginStatus:
|
|||||||
self.top.set_title("%s - GRAMPS" % _('Plugin status'))
|
self.top.set_title("%s - GRAMPS" % _('Plugin status'))
|
||||||
window = self.glade.get_widget("text")
|
window = self.glade.get_widget("text")
|
||||||
self.pop_button = self.glade.get_widget("pop_button")
|
self.pop_button = self.glade.get_widget("pop_button")
|
||||||
if GrampsGconfKeys.get_pop_plugin_status():
|
if GrampsKeys.get_pop_plugin_status():
|
||||||
self.pop_button.set_active(1)
|
self.pop_button.set_active(1)
|
||||||
else:
|
else:
|
||||||
self.pop_button.set_active(0)
|
self.pop_button.set_active(0)
|
||||||
self.pop_button.connect('toggled',
|
self.pop_button.connect('toggled',
|
||||||
lambda obj: GrampsGconfKeys.save_pop_plugin_status(self.pop_button.get_active()))
|
lambda obj: GrampsKeys.save_pop_plugin_status(self.pop_button.get_active()))
|
||||||
GrampsGconfKeys.client.notify_add("/apps/gramps/behavior/pop-plugin-status",
|
GrampsKeys.client.notify_add("/apps/gramps/behavior/pop-plugin-status",
|
||||||
self.pop_button_update)
|
self.pop_button_update)
|
||||||
self.glade.signal_autoconnect({
|
self.glade.signal_autoconnect({
|
||||||
'on_close_clicked' : self.close,
|
'on_close_clicked' : self.close,
|
||||||
@ -408,7 +408,7 @@ class PluginStatus:
|
|||||||
gnome.help_display('gramps-manual','gramps-getting-started')
|
gnome.help_display('gramps-manual','gramps-getting-started')
|
||||||
|
|
||||||
def pop_button_update(self, client,cnxn_id,entry,data):
|
def pop_button_update(self, client,cnxn_id,entry,data):
|
||||||
self.pop_button.set_active(GrampsGconfKeys.get_pop_plugin_status())
|
self.pop_button.set_active(GrampsKeys.get_pop_plugin_status())
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@ -509,7 +509,7 @@ class GrampsTextFormatComboBox(gtk.ComboBox):
|
|||||||
self.pack_start(cell,True)
|
self.pack_start(cell,True)
|
||||||
self.add_attribute(cell,'text',0)
|
self.add_attribute(cell,'text',0)
|
||||||
|
|
||||||
out_pref = GrampsGconfKeys.get_output_preference()
|
out_pref = GrampsKeys.get_output_preference()
|
||||||
index = 0
|
index = 0
|
||||||
_textdoc.sort()
|
_textdoc.sort()
|
||||||
active_index = 0
|
active_index = 0
|
||||||
@ -554,7 +554,7 @@ class GrampsDrawFormatComboBox(gtk.ComboBox):
|
|||||||
self.pack_start(cell,True)
|
self.pack_start(cell,True)
|
||||||
self.add_attribute(cell,'text',0)
|
self.add_attribute(cell,'text',0)
|
||||||
|
|
||||||
out_pref = GrampsGconfKeys.get_output_preference()
|
out_pref = GrampsKeys.get_output_preference()
|
||||||
index = 0
|
index = 0
|
||||||
_drawdoc.sort()
|
_drawdoc.sort()
|
||||||
active_index = 0
|
active_index = 0
|
||||||
@ -599,7 +599,7 @@ class GrampsBookFormatComboBox(gtk.ComboBox):
|
|||||||
self.pack_start(cell,True)
|
self.pack_start(cell,True)
|
||||||
self.add_attribute(cell,'text',0)
|
self.add_attribute(cell,'text',0)
|
||||||
|
|
||||||
out_pref = GrampsGconfKeys.get_output_preference()
|
out_pref = GrampsKeys.get_output_preference()
|
||||||
index = 0
|
index = 0
|
||||||
_drawdoc.sort()
|
_drawdoc.sort()
|
||||||
active_index = 0
|
active_index = 0
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
import gtk
|
import gtk
|
||||||
import gtk.glade
|
import gtk.glade
|
||||||
import const
|
import const
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
|
|
||||||
from gettext import gettext as _
|
from gettext import gettext as _
|
||||||
|
|
||||||
@ -50,7 +50,7 @@ class SaveDialog:
|
|||||||
elif response == gtk.RESPONSE_YES:
|
elif response == gtk.RESPONSE_YES:
|
||||||
self.task2()
|
self.task2()
|
||||||
|
|
||||||
GrampsGconfKeys.save_dont_ask(self.dontask.get_active())
|
GrampsKeys.save_dont_ask(self.dontask.get_active())
|
||||||
self.top.destroy()
|
self.top.destroy()
|
||||||
|
|
||||||
class QuestionDialog:
|
class QuestionDialog:
|
||||||
|
@ -52,7 +52,7 @@ import Utils
|
|||||||
import Plugins
|
import Plugins
|
||||||
import BaseDoc
|
import BaseDoc
|
||||||
import StyleEditor
|
import StyleEditor
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import PaperMenu
|
import PaperMenu
|
||||||
import Errors
|
import Errors
|
||||||
import GenericFilter
|
import GenericFilter
|
||||||
@ -962,7 +962,7 @@ class ReportDialog(BareReportDialog):
|
|||||||
"""Get the name of the directory to which the target dialog
|
"""Get the name of the directory to which the target dialog
|
||||||
box should default. This value can be set in the preferences
|
box should default. This value can be set in the preferences
|
||||||
panel."""
|
panel."""
|
||||||
return GrampsGconfKeys.get_report_dir()
|
return GrampsKeys.get_report_dir()
|
||||||
|
|
||||||
def set_default_directory(self, value):
|
def set_default_directory(self, value):
|
||||||
"""Save the name of the current directory, so that any future
|
"""Save the name of the current directory, so that any future
|
||||||
@ -972,7 +972,7 @@ class ReportDialog(BareReportDialog):
|
|||||||
This means that the last directory used will only be
|
This means that the last directory used will only be
|
||||||
remembered for this session of gramps unless the user saves
|
remembered for this session of gramps unless the user saves
|
||||||
his/her preferences."""
|
his/her preferences."""
|
||||||
GrampsGconfKeys.save_report_dir(value)
|
GrampsKeys.save_report_dir(value)
|
||||||
|
|
||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
|
@ -49,7 +49,7 @@ except:
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
import const
|
import const
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import Utils
|
import Utils
|
||||||
import BaseDoc
|
import BaseDoc
|
||||||
|
|
||||||
@ -188,7 +188,7 @@ class OptionListCollection:
|
|||||||
|
|
||||||
# Default values for common options
|
# Default values for common options
|
||||||
default_style_name = "default"
|
default_style_name = "default"
|
||||||
default_paper_name = GrampsGconfKeys.get_paper_preference()
|
default_paper_name = GrampsKeys.get_paper_preference()
|
||||||
default_template_name = ""
|
default_template_name = ""
|
||||||
default_orientation = BaseDoc.PAPER_PORTRAIT
|
default_orientation = BaseDoc.PAPER_PORTRAIT
|
||||||
default_format_name = _('Print...')
|
default_format_name = _('Print...')
|
||||||
|
@ -26,12 +26,12 @@ import gtk.glade
|
|||||||
import gnome
|
import gnome
|
||||||
import gnome.ui
|
import gnome.ui
|
||||||
|
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
|
|
||||||
from gettext import gettext as _
|
from gettext import gettext as _
|
||||||
|
|
||||||
def need_to_run():
|
def need_to_run():
|
||||||
val = GrampsGconfKeys.get_startup()
|
val = GrampsKeys.get_startup()
|
||||||
if val < const.startup:
|
if val < const.startup:
|
||||||
return 1
|
return 1
|
||||||
return 0
|
return 0
|
||||||
@ -95,18 +95,19 @@ class StartupDialog:
|
|||||||
return p
|
return p
|
||||||
|
|
||||||
def complete(self,obj,obj2):
|
def complete(self,obj,obj2):
|
||||||
GrampsGconfKeys.save_researcher_name(unicode(self.name.get_text()))
|
GrampsKeys.save_researcher_name(unicode(self.name.get_text()))
|
||||||
GrampsGconfKeys.save_researcher_addr(unicode(self.addr.get_text()))
|
GrampsKeys.save_researcher_addr(unicode(self.addr.get_text()))
|
||||||
GrampsGconfKeys.save_researcher_city(unicode(self.city.get_text()))
|
GrampsKeys.save_researcher_city(unicode(self.city.get_text()))
|
||||||
GrampsGconfKeys.save_researcher_state(unicode(self.state.get_text()))
|
GrampsKeys.save_researcher_state(unicode(self.state.get_text()))
|
||||||
GrampsGconfKeys.save_researcher_postal(unicode(self.postal.get_text()))
|
GrampsKeys.save_researcher_postal(unicode(self.postal.get_text()))
|
||||||
GrampsGconfKeys.save_researcher_country(unicode(self.country.get_text()))
|
GrampsKeys.save_researcher_country(unicode(self.country.get_text()))
|
||||||
GrampsGconfKeys.save_researcher_phone(unicode(self.phone.get_text()))
|
GrampsKeys.save_researcher_phone(unicode(self.phone.get_text()))
|
||||||
GrampsGconfKeys.save_researcher_email(unicode(self.email.get_text()))
|
GrampsKeys.save_researcher_email(unicode(self.email.get_text()))
|
||||||
|
|
||||||
GrampsGconfKeys.save_uselds(self.lds.get_active())
|
GrampsKeys.save_uselds(self.lds.get_active())
|
||||||
GrampsGconfKeys.save_startup(const.startup)
|
GrampsKeys.save_startup(const.startup)
|
||||||
self.w.destroy()
|
self.w.destroy()
|
||||||
|
GrampsKeys.sync()
|
||||||
self.task(self.args)
|
self.task(self.args)
|
||||||
|
|
||||||
def build_page2(self):
|
def build_page2(self):
|
||||||
@ -143,7 +144,7 @@ class StartupDialog:
|
|||||||
box.add(table)
|
box.add(table)
|
||||||
box.show_all()
|
box.show_all()
|
||||||
|
|
||||||
name = GrampsGconfKeys.get_researcher_name()
|
name = GrampsKeys.get_researcher_name()
|
||||||
if not name or name.strip() == "":
|
if not name or name.strip() == "":
|
||||||
import pwd
|
import pwd
|
||||||
import os
|
import os
|
||||||
@ -154,13 +155,13 @@ class StartupDialog:
|
|||||||
name = ""
|
name = ""
|
||||||
|
|
||||||
self.name.set_text(name)
|
self.name.set_text(name)
|
||||||
self.addr.set_text(GrampsGconfKeys.get_researcher_addr())
|
self.addr.set_text(GrampsKeys.get_researcher_addr())
|
||||||
self.city.set_text(GrampsGconfKeys.get_researcher_city())
|
self.city.set_text(GrampsKeys.get_researcher_city())
|
||||||
self.state.set_text(GrampsGconfKeys.get_researcher_state())
|
self.state.set_text(GrampsKeys.get_researcher_state())
|
||||||
self.postal.set_text(GrampsGconfKeys.get_researcher_postal())
|
self.postal.set_text(GrampsKeys.get_researcher_postal())
|
||||||
self.country.set_text(GrampsGconfKeys.get_researcher_country())
|
self.country.set_text(GrampsKeys.get_researcher_country())
|
||||||
self.phone.set_text(GrampsGconfKeys.get_researcher_phone())
|
self.phone.set_text(GrampsKeys.get_researcher_phone())
|
||||||
self.email.set_text(GrampsGconfKeys.get_researcher_email())
|
self.email.set_text(GrampsKeys.get_researcher_email())
|
||||||
|
|
||||||
return p
|
return p
|
||||||
|
|
||||||
@ -188,7 +189,7 @@ class StartupDialog:
|
|||||||
|
|
||||||
self.lds = gtk.CheckButton(label=_("Enable LDS ordinance support"))
|
self.lds = gtk.CheckButton(label=_("Enable LDS ordinance support"))
|
||||||
|
|
||||||
self.lds.set_active(GrampsGconfKeys.get_uselds())
|
self.lds.set_active(GrampsKeys.get_uselds())
|
||||||
|
|
||||||
align.add(self.lds)
|
align.add(self.lds)
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ import gtk.glade
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
import const
|
import const
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@ -58,7 +58,7 @@ class TipOfDay:
|
|||||||
|
|
||||||
tp = TipParser()
|
tp = TipParser()
|
||||||
tip_list = tp.get()
|
tip_list = tp.get()
|
||||||
use.set_active(GrampsGconfKeys.get_usetips())
|
use.set_active(GrampsKeys.get_usetips())
|
||||||
|
|
||||||
new_index = range(len(tip_list))
|
new_index = range(len(tip_list))
|
||||||
Random().shuffle(new_index)
|
Random().shuffle(new_index)
|
||||||
@ -74,7 +74,7 @@ class TipOfDay:
|
|||||||
else:
|
else:
|
||||||
index += 1
|
index += 1
|
||||||
|
|
||||||
GrampsGconfKeys.save_usetips(use.get_active())
|
GrampsKeys.save_usetips(use.get_active())
|
||||||
top.destroy()
|
top.destroy()
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
@ -224,9 +224,9 @@ def view_photo(photo):
|
|||||||
os.execvp(args[0],args)
|
os.execvp(args[0],args)
|
||||||
|
|
||||||
def nautilus_icon(icon,mime_type):
|
def nautilus_icon(icon,mime_type):
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
|
|
||||||
theme = GrampsGconfKeys.client.get_string("/desktop/gnome/file_views/icon_theme")
|
theme = GrampsKeys.client.get_string("/desktop/gnome/file_views/icon_theme")
|
||||||
|
|
||||||
if icon :
|
if icon :
|
||||||
newicon = "%s/%s/%s.png" % (const.nautdir,theme,icon)
|
newicon = "%s/%s/%s.png" % (const.nautdir,theme,icon)
|
||||||
|
@ -60,6 +60,14 @@ nautdir = "/usr/share/pixmaps/nautilus"
|
|||||||
|
|
||||||
prefixdir = "@GPREFIX@"
|
prefixdir = "@GPREFIX@"
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Configuration database options - True means drop down to .INI files
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
|
no_gconf = False
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# Paths to files - assumes that files reside in the same directory as
|
# Paths to files - assumes that files reside in the same directory as
|
||||||
|
@ -66,7 +66,7 @@ import Plugins
|
|||||||
import PluginMgr
|
import PluginMgr
|
||||||
import Utils
|
import Utils
|
||||||
import Bookmarks
|
import Bookmarks
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import GrampsCfg
|
import GrampsCfg
|
||||||
import EditPerson
|
import EditPerson
|
||||||
import DbPrompter
|
import DbPrompter
|
||||||
@ -133,13 +133,14 @@ class Gramps:
|
|||||||
|
|
||||||
GrampsCfg.loadConfig()
|
GrampsCfg.loadConfig()
|
||||||
|
|
||||||
if GrampsGconfKeys.get_betawarn() == 0:
|
if GrampsKeys.get_betawarn() == 0:
|
||||||
WarningDialog(_("Use at your own risk"),
|
WarningDialog(_("Use at your own risk"),
|
||||||
_("This is an unstable development version of GRAMPS. "
|
_("This is an unstable development version of GRAMPS. "
|
||||||
"It is intended as a technology preview. Do not trust your "
|
"It is intended as a technology preview. Do not trust your "
|
||||||
"family database to this development version. This version may "
|
"family database to this development version. This version may "
|
||||||
"contain bugs which could corrupt your database."))
|
"contain bugs which could corrupt your database."))
|
||||||
GrampsGconfKeys.save_betawarn(1)
|
GrampsKeys.save_betawarn(1)
|
||||||
|
GrampsKeys.sync()
|
||||||
|
|
||||||
self.RelClass = PluginMgr.relationship_class
|
self.RelClass = PluginMgr.relationship_class
|
||||||
self.relationship = self.RelClass(self.db)
|
self.relationship = self.RelClass(self.db)
|
||||||
@ -151,27 +152,27 @@ class Gramps:
|
|||||||
# Don't show main window until ArgHandler is done.
|
# Don't show main window until ArgHandler is done.
|
||||||
# This prevents a window from annoyingly popping up when
|
# This prevents a window from annoyingly popping up when
|
||||||
# the command line args are sufficient to operate without it.
|
# the command line args are sufficient to operate without it.
|
||||||
GrampsGconfKeys.client.notify_add("/apps/gramps/researcher",
|
GrampsKeys.client.notify_add("/apps/gramps/researcher",
|
||||||
self.researcher_key_update)
|
self.researcher_key_update)
|
||||||
GrampsGconfKeys.client.notify_add("/apps/gramps/interface/statusbar",
|
GrampsKeys.client.notify_add("/apps/gramps/interface/statusbar",
|
||||||
self.statusbar_key_update)
|
self.statusbar_key_update)
|
||||||
GrampsGconfKeys.client.notify_add("/apps/gramps/interface/toolbar",
|
GrampsKeys.client.notify_add("/apps/gramps/interface/toolbar",
|
||||||
self.toolbar_key_update)
|
self.toolbar_key_update)
|
||||||
GrampsGconfKeys.client.notify_add("/apps/gramps/interface/toolbar-on",
|
GrampsKeys.client.notify_add("/apps/gramps/interface/toolbar-on",
|
||||||
self.toolbar_on_key_update)
|
self.toolbar_on_key_update)
|
||||||
GrampsGconfKeys.client.notify_add("/apps/gramps/interface/filter",
|
GrampsKeys.client.notify_add("/apps/gramps/interface/filter",
|
||||||
self.filter_key_update)
|
self.filter_key_update)
|
||||||
GrampsGconfKeys.client.notify_add("/apps/gramps/interface/view",
|
GrampsKeys.client.notify_add("/apps/gramps/interface/view",
|
||||||
self.sidebar_key_update)
|
self.sidebar_key_update)
|
||||||
GrampsGconfKeys.client.notify_add("/apps/gramps/interface/familyview",
|
GrampsKeys.client.notify_add("/apps/gramps/interface/familyview",
|
||||||
self.familyview_key_update)
|
self.familyview_key_update)
|
||||||
GrampsGconfKeys.client.notify_add("/apps/gramps/preferences/name-format",
|
GrampsKeys.client.notify_add("/apps/gramps/preferences/name-format",
|
||||||
self.familyview_key_update)
|
self.familyview_key_update)
|
||||||
GrampsGconfKeys.client.notify_add("/apps/gramps/preferences/date-format",
|
GrampsKeys.client.notify_add("/apps/gramps/preferences/date-format",
|
||||||
self.date_format_key_update)
|
self.date_format_key_update)
|
||||||
self.topWindow.show()
|
self.topWindow.show()
|
||||||
|
|
||||||
if GrampsGconfKeys.get_usetips():
|
if GrampsKeys.get_usetips():
|
||||||
TipOfDay.TipOfDay()
|
TipOfDay.TipOfDay()
|
||||||
|
|
||||||
self.db.set_researcher(GrampsCfg.get_researcher())
|
self.db.set_researcher(GrampsCfg.get_researcher())
|
||||||
@ -181,12 +182,12 @@ class Gramps:
|
|||||||
self.familyview_key_update(client,cnxn_id,entry,data)
|
self.familyview_key_update(client,cnxn_id,entry,data)
|
||||||
|
|
||||||
def researcher_key_update(self,client,cnxn_id,entry,data):
|
def researcher_key_update(self,client,cnxn_id,entry,data):
|
||||||
self.db.set_person_id_prefix(GrampsGconfKeys.get_person_id_prefix())
|
self.db.set_person_id_prefix(GrampsKeys.get_person_id_prefix())
|
||||||
self.db.set_family_id_prefix(GrampsGconfKeys.get_family_id_prefix())
|
self.db.set_family_id_prefix(GrampsKeys.get_family_id_prefix())
|
||||||
self.db.set_source_id_prefix(GrampsGconfKeys.get_source_id_prefix())
|
self.db.set_source_id_prefix(GrampsKeys.get_source_id_prefix())
|
||||||
self.db.set_object_id_prefix(GrampsGconfKeys.get_object_id_prefix())
|
self.db.set_object_id_prefix(GrampsKeys.get_object_id_prefix())
|
||||||
self.db.set_place_id_prefix(GrampsGconfKeys.get_place_id_prefix())
|
self.db.set_place_id_prefix(GrampsKeys.get_place_id_prefix())
|
||||||
self.db.set_event_id_prefix(GrampsGconfKeys.get_event_id_prefix())
|
self.db.set_event_id_prefix(GrampsKeys.get_event_id_prefix())
|
||||||
|
|
||||||
def statusbar_key_update(self,client,cnxn_id,entry,data):
|
def statusbar_key_update(self,client,cnxn_id,entry,data):
|
||||||
self.modify_statusbar()
|
self.modify_statusbar()
|
||||||
@ -195,17 +196,17 @@ class Gramps:
|
|||||||
self.toolbar.set_style(GrampsCfg.get_toolbar_style())
|
self.toolbar.set_style(GrampsCfg.get_toolbar_style())
|
||||||
|
|
||||||
def toolbar_on_key_update(self,client,cnxn_id,entry,data):
|
def toolbar_on_key_update(self,client,cnxn_id,entry,data):
|
||||||
is_on = GrampsGconfKeys.get_toolbar_on()
|
is_on = GrampsKeys.get_toolbar_on()
|
||||||
self.toolbar_btn.set_active(is_on)
|
self.toolbar_btn.set_active(is_on)
|
||||||
self.enable_toolbar(is_on)
|
self.enable_toolbar(is_on)
|
||||||
|
|
||||||
def filter_key_update(self,client,cnxn_id,entry,data):
|
def filter_key_update(self,client,cnxn_id,entry,data):
|
||||||
is_on = GrampsGconfKeys.get_filter()
|
is_on = GrampsKeys.get_filter()
|
||||||
self.filter_btn.set_active(is_on)
|
self.filter_btn.set_active(is_on)
|
||||||
self.enable_filter(is_on)
|
self.enable_filter(is_on)
|
||||||
|
|
||||||
def sidebar_key_update(self,client,cnxn_id,entry,data):
|
def sidebar_key_update(self,client,cnxn_id,entry,data):
|
||||||
is_on = GrampsGconfKeys.get_view()
|
is_on = GrampsKeys.get_view()
|
||||||
self.sidebar_btn.set_active(is_on)
|
self.sidebar_btn.set_active(is_on)
|
||||||
self.enable_sidebar(is_on)
|
self.enable_sidebar(is_on)
|
||||||
|
|
||||||
@ -387,25 +388,25 @@ class Gramps:
|
|||||||
"on_open_example" : self.open_example,
|
"on_open_example" : self.open_example,
|
||||||
})
|
})
|
||||||
|
|
||||||
self.filter_btn.set_active(GrampsGconfKeys.get_filter())
|
self.filter_btn.set_active(GrampsKeys.get_filter())
|
||||||
self.enable_filter(GrampsGconfKeys.get_filter())
|
self.enable_filter(GrampsKeys.get_filter())
|
||||||
self.toolbar_btn.set_active(GrampsGconfKeys.get_toolbar_on())
|
self.toolbar_btn.set_active(GrampsKeys.get_toolbar_on())
|
||||||
self.enable_toolbar(GrampsGconfKeys.get_toolbar_on())
|
self.enable_toolbar(GrampsKeys.get_toolbar_on())
|
||||||
|
|
||||||
if not GrampsGconfKeys.get_screen_size_checked():
|
if not GrampsKeys.get_screen_size_checked():
|
||||||
GrampsGconfKeys.save_screen_size_checked(1)
|
GrampsKeys.save_screen_size_checked(1)
|
||||||
if gtk.gdk.screen_width() <= 900:
|
if gtk.gdk.screen_width() <= 900:
|
||||||
GrampsGconfKeys.save_view(0)
|
GrampsKeys.save_view(0)
|
||||||
self.sidebar_btn.set_active(GrampsGconfKeys.get_view())
|
self.sidebar_btn.set_active(GrampsKeys.get_view())
|
||||||
self.enable_sidebar(GrampsGconfKeys.get_view())
|
self.enable_sidebar(GrampsKeys.get_view())
|
||||||
|
|
||||||
self.find_place = None
|
self.find_place = None
|
||||||
self.find_source = None
|
self.find_source = None
|
||||||
self.find_media = None
|
self.find_media = None
|
||||||
|
|
||||||
if GrampsGconfKeys.get_default_view() == 0:
|
if GrampsKeys.get_default_view() == 0:
|
||||||
self.views.set_current_page(PERSON_VIEW)
|
self.views.set_current_page(PERSON_VIEW)
|
||||||
elif GrampsGconfKeys.get_family_view() == 0:
|
elif GrampsKeys.get_family_view() == 0:
|
||||||
self.views.set_current_page(FAMILY_VIEW1)
|
self.views.set_current_page(FAMILY_VIEW1)
|
||||||
else:
|
else:
|
||||||
self.views.set_current_page(FAMILY_VIEW2)
|
self.views.set_current_page(FAMILY_VIEW2)
|
||||||
@ -789,7 +790,7 @@ class Gramps:
|
|||||||
|
|
||||||
def on_sidebar_activate(self,obj):
|
def on_sidebar_activate(self,obj):
|
||||||
self.enable_sidebar(obj.get_active())
|
self.enable_sidebar(obj.get_active())
|
||||||
GrampsGconfKeys.save_view(obj.get_active())
|
GrampsKeys.save_view(obj.get_active())
|
||||||
|
|
||||||
def enable_sidebar(self,val):
|
def enable_sidebar(self,val):
|
||||||
if val:
|
if val:
|
||||||
@ -806,10 +807,10 @@ class Gramps:
|
|||||||
self.filterbar.hide()
|
self.filterbar.hide()
|
||||||
|
|
||||||
def on_filter_activate(self,obj):
|
def on_filter_activate(self,obj):
|
||||||
GrampsGconfKeys.save_filter(obj.get_active())
|
GrampsKeys.save_filter(obj.get_active())
|
||||||
|
|
||||||
def on_toolbar_activate(self,obj):
|
def on_toolbar_activate(self,obj):
|
||||||
GrampsGconfKeys.save_toolbar_on(obj.get_active())
|
GrampsKeys.save_toolbar_on(obj.get_active())
|
||||||
|
|
||||||
def enable_toolbar(self,val):
|
def enable_toolbar(self,val):
|
||||||
if val:
|
if val:
|
||||||
@ -1102,7 +1103,7 @@ class Gramps:
|
|||||||
name = os.path.basename(filename)
|
name = os.path.basename(filename)
|
||||||
self.topWindow.set_title("%s - GRAMPS" % name)
|
self.topWindow.set_title("%s - GRAMPS" % name)
|
||||||
else:
|
else:
|
||||||
GrampsGconfKeys.save_last_file("")
|
GrampsKeys.save_last_file("")
|
||||||
ErrorDialog(_('Cannot open database'),
|
ErrorDialog(_('Cannot open database'),
|
||||||
_('The database file specified could not be opened file.'))
|
_('The database file specified could not be opened file.'))
|
||||||
return 0
|
return 0
|
||||||
@ -1376,7 +1377,7 @@ class Gramps:
|
|||||||
if self.active_person == None:
|
if self.active_person == None:
|
||||||
self.status_text("")
|
self.status_text("")
|
||||||
else:
|
else:
|
||||||
if GrampsGconfKeys.get_statusbar() <= 1:
|
if GrampsKeys.get_statusbar() <= 1:
|
||||||
pname = NameDisplay.displayer.display(self.active_person)
|
pname = NameDisplay.displayer.display(self.active_person)
|
||||||
name = "[%s] %s" % (self.active_person.get_gramps_id(),pname)
|
name = "[%s] %s" % (self.active_person.get_gramps_id(),pname)
|
||||||
else:
|
else:
|
||||||
@ -1425,7 +1426,7 @@ class Gramps:
|
|||||||
|
|
||||||
def on_family_activate(self,obj):
|
def on_family_activate(self,obj):
|
||||||
"""Switches to the family view"""
|
"""Switches to the family view"""
|
||||||
if GrampsGconfKeys.get_family_view() == 0:
|
if GrampsKeys.get_family_view() == 0:
|
||||||
self.on_family1_activate(obj)
|
self.on_family1_activate(obj)
|
||||||
else:
|
else:
|
||||||
self.on_family2_activate(obj)
|
self.on_family2_activate(obj)
|
||||||
@ -1563,7 +1564,7 @@ class Gramps:
|
|||||||
callback(_('Setting up bookmarks...'))
|
callback(_('Setting up bookmarks...'))
|
||||||
self.setup_bookmarks()
|
self.setup_bookmarks()
|
||||||
|
|
||||||
GrampsGconfKeys.save_last_file(name)
|
GrampsKeys.save_last_file(name)
|
||||||
self.gtop.get_widget("filter").set_text("")
|
self.gtop.get_widget("filter").set_text("")
|
||||||
|
|
||||||
if callback:
|
if callback:
|
||||||
|
@ -50,7 +50,7 @@ import RelLib
|
|||||||
import HtmlDoc
|
import HtmlDoc
|
||||||
import BaseDoc
|
import BaseDoc
|
||||||
import const
|
import const
|
||||||
import GrampsGconfKeys
|
import GrampsKeys
|
||||||
import GenericFilter
|
import GenericFilter
|
||||||
import DateHandler
|
import DateHandler
|
||||||
import Sort
|
import Sort
|
||||||
@ -1327,7 +1327,7 @@ class WebReportDialog(Report.ReportDialog):
|
|||||||
"""Get the name of the directory to which the target dialog
|
"""Get the name of the directory to which the target dialog
|
||||||
box should default. This value can be set in the preferences
|
box should default. This value can be set in the preferences
|
||||||
panel."""
|
panel."""
|
||||||
return GrampsGconfKeys.get_web_dir()
|
return GrampsKeys.get_web_dir()
|
||||||
|
|
||||||
def set_default_directory(self, value):
|
def set_default_directory(self, value):
|
||||||
"""Save the name of the current directory, so that any future
|
"""Save the name of the current directory, so that any future
|
||||||
@ -1337,7 +1337,7 @@ class WebReportDialog(Report.ReportDialog):
|
|||||||
This means that the last directory used will only be
|
This means that the last directory used will only be
|
||||||
remembered for this session of gramps unless the user saves
|
remembered for this session of gramps unless the user saves
|
||||||
his/her preferences."""
|
his/her preferences."""
|
||||||
GrampsGconfKeys.save_web_dir(value)
|
GrampsKeys.save_web_dir(value)
|
||||||
|
|
||||||
def make_default_style(self):
|
def make_default_style(self):
|
||||||
"""Make the default output style for the Web Pages Report."""
|
"""Make the default output style for the Web Pages Report."""
|
||||||
|
Loading…
Reference in New Issue
Block a user