From 768a1356aa6746214c74616188c77ed061c7ec87 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Fri, 21 Apr 2006 22:24:54 +0000 Subject: [PATCH] fix typos on XML import svn: r6405 --- ChangeLog | 3 +++ src/Editors/_EditRepoRef.py | 2 +- src/GrampsDb/_ReadXML.py | 15 +++++++++------ src/PluginUtils/_PluginMgr.py | 15 ++++++++++----- src/PluginUtils/_PluginStatus.py | 6 +++--- 5 files changed, 26 insertions(+), 15 deletions(-) diff --git a/ChangeLog b/ChangeLog index ce65a230c..34f68b0f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,7 @@ 2006-04-21 Don Allingham + * src/GrampsDb/_ReadXML.py: fix typos + * src/PluginUtils/_PluginMgr.py: handle module to description mapping + * src/Editors/_EditRepoRef.py: fix typos * src/Editors/_EditMediaRef.py: define warnbox * src/GrampsDb/_DbUtils.py: fix old call to get_child_handle_list * src/Editors/_EditSource.py: remove warnbox diff --git a/src/Editors/_EditRepoRef.py b/src/Editors/_EditRepoRef.py index 33e1fd25d..725982a68 100644 --- a/src/Editors/_EditRepoRef.py +++ b/src/Editors/_EditRepoRef.py @@ -137,7 +137,7 @@ class EditRepoRef(EditReference): self.backref_tab = self._add_tab( notebook_src, SourceBackRefList(self.dbstate, self.uistate, self.track, - self.db.find_backlink_handles(self.obj.handle), + self.db.find_backlink_handles(self.source.handle), self.enable_warnbox)) def build_menu_names(self,sourceref): diff --git a/src/GrampsDb/_ReadXML.py b/src/GrampsDb/_ReadXML.py index ea9d0ad19..7d81dd6c2 100644 --- a/src/GrampsDb/_ReadXML.py +++ b/src/GrampsDb/_ReadXML.py @@ -652,7 +652,7 @@ class GrampsParser: self.person.lds_ord_list.append(self.ord) elif self.family: if atype == "sealed_to_spouse": - self.ord.set_type(RelLib.LdsOrd.SEAL_TO_SPOUSES) + self.ord.set_type(RelLib.LdsOrd.SEAL_TO_SPOUSE) self.family.lds_ord_list.append(self.ord) def start_temple(self,attrs): @@ -704,7 +704,7 @@ class GrampsParser: loc.postal = attrs.get('postal','') loc.city = attrs.get('city','') loc.parish = attrs.get('parish','') - loc.state = attrs.bet('state','') + loc.state = attrs.get('state','') loc.county = attrs.get('county','') loc.country = attrs.get('country','') if self.locations > 0: @@ -919,8 +919,7 @@ class GrampsParser: self.family = self.find_family_by_gramps_id(gramps_id) # GRAMPS LEGACY: the type now belongs to tag # Here we need to support old format of - self.family.type = RelLib.FamilyRelType().set_from_xml_str( - attrs.get("type",'Unknown')) + self.family.type.set_from_xml_str(attrs.get("type",'Unknown')) # Old and new markers: complete=1 and marker=word both have to work if attrs.get('complete'): # this is only true for complete=1 @@ -952,8 +951,12 @@ class GrampsParser: # Here we are handling the old XML, in which # frel and mrel belonged to the "childof" tag - mrel = RelLib.ChildRefType().set_from_xml_str(attrs.get('mrel')) - frel = RelLib.ChildRefType().set_from_xml_str(attrs.get('frel')) + mrel = RelLib.ChildRefType() + frel = RelLib.ChildRefType() + if attrs.get('mrel'): + mrel.set_from_xml_str(attrs['mrel']) + if attrs.get('frel'): + frel.set_from_xml_str(attrs['frel']) childref = RelLib.ChildRef() childref.ref = self.person.handle diff --git a/src/PluginUtils/_PluginMgr.py b/src/PluginUtils/_PluginMgr.py index 89287992e..6fa82187b 100644 --- a/src/PluginUtils/_PluginMgr.py +++ b/src/PluginUtils/_PluginMgr.py @@ -54,7 +54,6 @@ report_list = [] tool_list = [] import_list = [] export_list = [] -expect_list = [] attempt_list = [] loaddir_list = [] textdoc_list = [] @@ -64,9 +63,10 @@ failmsg_list = [] bkitems_list = [] cl_list = [] cli_tool_list = [] - success_list = [] +mod2text = {} + #------------------------------------------------------------------------- # # Default relationship calculator @@ -126,12 +126,10 @@ def load_plugins(direct): try: a = __import__(plugin) success_list.append((filename,a)) - except Errors.PluginError, msg: - expect_list.append((filename,str(msg))) except: failmsg_list.append((filename,sys.exc_info())) - if len(expect_list)+len(failmsg_list): + if len(failmsg_list): return False else: return True @@ -155,6 +153,7 @@ def register_export(exportData,title,description='',config=None,filename=''): del export_list[del_index] export_list.append((exportData,title,description,config,filename)) + mod2text[exportData.__module__] = description def register_import(task, ffilter, mime=None, native_format=0, format_name=""): """Register an import filter, taking the task and file filter""" @@ -167,6 +166,7 @@ def register_import(task, ffilter, mime=None, native_format=0, format_name=""): del import_list[del_index] import_list.append((task, ffilter, mime, native_format, format_name)) + mod2text[task.__module__] = format_name #------------------------------------------------------------------------- # @@ -196,6 +196,7 @@ def register_tool( """ import _Tool + (junk,gui_task) = divmod(modes,2**_Tool.MODE_GUI) if gui_task: _register_gui_tool(tool_class,options_class,translated_name, @@ -221,6 +222,7 @@ def _register_gui_tool(tool_class,options_class,translated_name, del_index = i if del_index != -1: del tool_list[del_index] + mod2text[tool_class.__module__] = description tool_list.append((tool_class,options_class,translated_name, category,name,description,status, author_name,author_email,unsupported)) @@ -305,6 +307,7 @@ def _register_standalone(report_class, options_class, translated_name, report_list.append((report_class, options_class, translated_name, category, name, description, status, author_name, author_email, unsupported)) + mod2text[report_class.__module__] = description def register_book_item(translated_name, category, report_class, option_class, name, unsupported): @@ -355,6 +358,7 @@ def register_text_doc(name,classref, table, paper, style, ext, textdoc_list.append( (name, classref, table, paper, style, ext, print_report_label, clname)) + mod2text[classref.__module__] = name #------------------------------------------------------------------------- # @@ -394,6 +398,7 @@ def register_draw_doc(name,classref,paper,style, ext, clname = ext[1:] drawdoc_list.append((name, classref, paper,style, ext, print_report_label, clname)) + mod2text[classref.__module__] = name #------------------------------------------------------------------------- # diff --git a/src/PluginUtils/_PluginStatus.py b/src/PluginUtils/_PluginStatus.py index 9f1362ba5..5506a2634 100644 --- a/src/PluginUtils/_PluginStatus.py +++ b/src/PluginUtils/_PluginStatus.py @@ -97,10 +97,11 @@ class PluginStatus(ManagedWindow.ManagedWindow): i[0], str(i[1][1]), i[1]]) for i in PluginMgr.success_list: + modname = i[1].__name__ + descr = PluginMgr.mod2text.get(modname,'') self.model.append(row=[ '%s' % _("OK"), - i[0], '', None]) - + i[0], descr, None]) def button_press(self, obj, event): if event.type == gtk.gdk._2BUTTON_PRESS and event.button == 1: @@ -118,7 +119,6 @@ class PluginTrace(ManagedWindow.ManagedWindow): def __init__(self, uistate, track, data): self.title = _("Plugin Status Details") - print uistate, track, data ManagedWindow.ManagedWindow.__init__(self, uistate, track, self) self.set_window(