From 5b7e45232e80321e9f472221c265539d657983f5 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Thu, 28 Mar 2002 15:02:14 +0000 Subject: [PATCH] break links svn: r868 --- gramps/src/plugins/ReadGedcom.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gramps/src/plugins/ReadGedcom.py b/gramps/src/plugins/ReadGedcom.py index fb48b16e6..e04e1aa4c 100644 --- a/gramps/src/plugins/ReadGedcom.py +++ b/gramps/src/plugins/ReadGedcom.py @@ -138,6 +138,7 @@ class GedcomParser: self.fmap = {} self.smap = {} self.nmap = {} + self.share_note = [] self.refn = {} self.added = {} self.gedmap = GedcomInfoDB() @@ -264,7 +265,12 @@ class GedcomParser: self.parse_trailer() self.update(self.families_obj,str(self.fam_count)) self.update(self.people_obj,str(self.indi_count)) + self.break_note_links() + def break_note_links(self): + for o in self.share_note: + o.unique_note() + def parse_trailer(self): matches = self.get_next() @@ -323,9 +329,11 @@ class GedcomParser: else: if self.nmap.has_key(matches[2]): self.source.setNoteObj(self.nmap[matches[2]]) + self.share_note.append(self.source) else: noteobj = Note() self.nmap[matches[2]] = noteobj + self.share_note.append(self.source) self.source.setNoteObj(noteobj) elif matches[1] == "TEXT": d = self.parse_continue_data(level+1) @@ -521,10 +529,12 @@ class GedcomParser: self.ignore_sub_junk(2) else: if self.nmap.has_key(matches[2]): + self.share_note(self.family) self.family.setNoteObj(self.nmap[matches[2]]) else: noteobj = Note() self.nmap[matches[2]] = noteobj + self.share_note(self.family) self.family.setNoteObj(noteobj) else: event = Event() @@ -595,9 +605,11 @@ class GedcomParser: self.ignore_sub_junk(2) else: if self.nmap.has_key(matches[2]): + self.share_note(self.person) self.person.setNoteObj(self.nmap[matches[2]]) else: noteobj = Note() + self.share_note(self.person) self.nmap[matches[2]] = noteobj self.person.setNoteObj(noteobj) elif matches[1] == "SEX": @@ -912,10 +924,12 @@ class GedcomParser: self.ignore_sub_junk(2) else: if self.nmap.has_key(matches[2]): + self.share_note(address) address.setNoteObj(self.nmap[matches[2]]) else: noteobj = Note() self.nmap[matches[2]] = noteobj + self.share_note(address) address.setNoteObj(noteobj) else: self.barf(level+1) @@ -990,10 +1004,12 @@ class GedcomParser: self.ignore_sub_junk(2) else: if self.nmap.has_key(matches[2]): + self.share_note(ord) ord.setNoteObj(self.nmap[matches[2]]) else: noteobj = Note() self.nmap[matches[2]] = noteobj + self.share_note(ord) ord.setNoteObj(noteobj) elif matches[1] == "STAT": if const.lds_status.has_key(matches[2]): @@ -1275,10 +1291,12 @@ class GedcomParser: self.ignore_sub_junk(2) else: if self.nmap.has_key(matches[2]): + self.share_note(event) event.setNoteObj(self.nmap[matches[2]]) else: noteobj = Note() self.nmap[matches[2]] = noteobj + self.share_note(event) event.setNoteObj(noteobj) else: self.barf(level+1) @@ -1314,10 +1332,12 @@ class GedcomParser: self.ignore_sub_junk(2) else: if self.nmap.has_key(matches[2]): + self.share_note(source) source.setNoteObj(self.nmap[matches[2]]) else: noteobj = Note() self.nmap[matches[2]] = noteobj + self.share_note(source) source.setNoteObj(noteobj) else: self.barf(level+1) @@ -1398,10 +1418,12 @@ class GedcomParser: self.ignore_sub_junk(2) else: if self.nmap.has_key(matches[2]): + self.share_note(name) name.setNoteObj(self.nmap[matches[2]]) else: noteobj = Note() self.nmap[matches[2]] = noteobj + self.share_note(name) name.setNoteObj(noteobj) else: self.barf(level+1)