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:
Don Allingham 2007-02-25 15:07:24 +00:00
parent ac3e84d207
commit 30e58297bd
5 changed files with 14 additions and 2 deletions

View File

@ -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> 2007-02-25 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/DataViews/_NoteView.py: Enable filter editor * src/DataViews/_NoteView.py: Enable filter editor
* src/FilterEditor/_FilterEditor.py: Note Filter Editor * src/FilterEditor/_FilterEditor.py: Note Filter Editor

View File

@ -15,6 +15,7 @@ pkgdata_PYTHON = \
_SourceView.py\ _SourceView.py\
_PlaceView.py\ _PlaceView.py\
_MediaView.py\ _MediaView.py\
_NoteView.py\
_RepositoryView.py _RepositoryView.py
# _MapView.py # _MapView.py

View File

@ -29,6 +29,7 @@ pkgdata_PYTHON = \
_NameEmbedList.py \ _NameEmbedList.py \
_NameModel.py \ _NameModel.py \
_NoteTab.py \ _NoteTab.py \
_NoteModel.py \
_TextTab.py \ _TextTab.py \
_PersonBackRefList.py \ _PersonBackRefList.py \
_PersonEventEmbedList.py \ _PersonEventEmbedList.py \

View File

@ -9,8 +9,9 @@ pkgdata_PYTHON = \
_GedcomInfo.py\ _GedcomInfo.py\
_GedcomTokens.py\ _GedcomTokens.py\
_GedcomParser.py\ _GedcomParser.py\
_GedcomChar.py\
_GedcomUtils.py\ _GedcomUtils.py\
_GedcomLexer.py\ _GedcomLex.py\
__init__.py\ __init__.py\
_ReadGedcom.py\ _ReadGedcom.py\
_ReadGrdb.py\ _ReadGrdb.py\

View File

@ -143,7 +143,7 @@ class IdMapper:
def clean(self, gid): def clean(self, gid):
temp = gid.strip() temp = gid.strip()
if temp[0] == '@' and temp[-1] == '@': if len(temp) > 1 and temp[0] == '@' and temp[-1] == '@':
temp = temp[1:-1] temp = temp[1:-1]
return temp return temp