remove missing recent files
svn: r6279
This commit is contained in:
parent
0c0ac91881
commit
bc96c75e39
@ -1,4 +1,10 @@
|
|||||||
|
2006-04-06 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/RecentFiles.py: check for a files' existence before adding
|
||||||
|
to the list.
|
||||||
|
|
||||||
2006-04-05 Don Allingham <don@gramps-project.org>
|
2006-04-05 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/Editors/_EditFamily.py: add lds tab
|
||||||
|
* src/Editors/_EditLdsOrd.py: save place information, family support
|
||||||
* src/SelectFamily.py: added
|
* src/SelectFamily.py: added
|
||||||
* src/GrampsDb/_ReadXML.py: support new lds stuff
|
* src/GrampsDb/_ReadXML.py: support new lds stuff
|
||||||
* src/GrampsDb/_WriteXML.py: support new lds stuff
|
* src/GrampsDb/_WriteXML.py: support new lds stuff
|
||||||
@ -10,7 +16,7 @@
|
|||||||
* src/BaseDoc.py: pylint
|
* src/BaseDoc.py: pylint
|
||||||
* src/DisplayTabs.py: handle temple not set for LdsOrd, provide list of
|
* src/DisplayTabs.py: handle temple not set for LdsOrd, provide list of
|
||||||
default types
|
default types
|
||||||
* src/RelLib/_LdsOrd.py: unserialize returns self
|
* src/RelLib/_LdsOrd.py: unserialize returns self, fix serialize
|
||||||
* src/RelLib/_LdsOrdBase.py: variable name change
|
* src/RelLib/_LdsOrdBase.py: variable name change
|
||||||
|
|
||||||
2006-04-04 Brian Matherly <pez4brian@users.sourceforge.net>
|
2006-04-04 Brian Matherly <pez4brian@users.sourceforge.net>
|
||||||
|
@ -384,7 +384,8 @@ class GrampsRecentParser:
|
|||||||
text = ''.join(self.tlist)
|
text = ''.join(self.tlist)
|
||||||
|
|
||||||
if tag == "RecentItem":
|
if tag == "RecentItem":
|
||||||
self.recent_files.append(self.item)
|
if os.path.isfile(self.item.get_path()):
|
||||||
|
self.recent_files.append(self.item)
|
||||||
elif tag == "Path":
|
elif tag == "Path":
|
||||||
self.item.set_path(text)
|
self.item.set_path(text)
|
||||||
elif tag == "Mime-Type":
|
elif tag == "Mime-Type":
|
||||||
|
Loading…
x
Reference in New Issue
Block a user