2007-02-25 Don Allingham <don@gramps-project.org>
* src/DataViews/Makefile.am: install _NoteView.py * src/DisplayTabs/Makefile.am: install NoteModel.py * src/GrampsDbUtils/Makefile.am: install _GedcomChar.py and _GedcomLex.py 2007-02-25 Kees Bakker <kees.bakker@xs4all.nl> * src/GrampsDbUtils/_GedcomUtils.py: Fix index checking on IDs svn: r8233
This commit is contained in:
parent
ac3e84d207
commit
30e58297bd
@ -1,3 +1,12 @@
|
||||
2007-02-25 Don Allingham <don@gramps-project.org>
|
||||
* src/DataViews/Makefile.am: install _NoteView.py
|
||||
* src/DisplayTabs/Makefile.am: install NoteModel.py
|
||||
* src/GrampsDbUtils/Makefile.am: install _GedcomChar.py and
|
||||
_GedcomLex.py
|
||||
|
||||
2007-02-25 Kees Bakker <kees.bakker@xs4all.nl>
|
||||
* src/GrampsDbUtils/_GedcomUtils.py: Fix index checking on IDs
|
||||
|
||||
2007-02-25 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
||||
* src/DataViews/_NoteView.py: Enable filter editor
|
||||
* src/FilterEditor/_FilterEditor.py: Note Filter Editor
|
||||
|
@ -15,6 +15,7 @@ pkgdata_PYTHON = \
|
||||
_SourceView.py\
|
||||
_PlaceView.py\
|
||||
_MediaView.py\
|
||||
_NoteView.py\
|
||||
_RepositoryView.py
|
||||
|
||||
# _MapView.py
|
||||
|
@ -29,6 +29,7 @@ pkgdata_PYTHON = \
|
||||
_NameEmbedList.py \
|
||||
_NameModel.py \
|
||||
_NoteTab.py \
|
||||
_NoteModel.py \
|
||||
_TextTab.py \
|
||||
_PersonBackRefList.py \
|
||||
_PersonEventEmbedList.py \
|
||||
|
@ -9,8 +9,9 @@ pkgdata_PYTHON = \
|
||||
_GedcomInfo.py\
|
||||
_GedcomTokens.py\
|
||||
_GedcomParser.py\
|
||||
_GedcomChar.py\
|
||||
_GedcomUtils.py\
|
||||
_GedcomLexer.py\
|
||||
_GedcomLex.py\
|
||||
__init__.py\
|
||||
_ReadGedcom.py\
|
||||
_ReadGrdb.py\
|
||||
|
@ -143,7 +143,7 @@ class IdMapper:
|
||||
|
||||
def clean(self, gid):
|
||||
temp = gid.strip()
|
||||
if temp[0] == '@' and temp[-1] == '@':
|
||||
if len(temp) > 1 and temp[0] == '@' and temp[-1] == '@':
|
||||
temp = temp[1:-1]
|
||||
return temp
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user