2006-08-04  Alex Roitman  <shura@gramps-project.org>
	* src/DataViews/_MediaView.py (row_change): Work around older pygtk.
	* src/Filters/Rules/Family/Makefile.am (pkgdata_PYTHON): Ship new
	files. 
	* src/Filters/Rules/Makefile.am (pkgdata_PYTHON): Ship new file.

In po:
2006-08-04  Alex Roitman  <shura@gramps-project.org>
	* POTFILES.in: Unlist plugins that are not shipped.



svn: r7120
This commit is contained in:
Alex Roitman 2006-08-04 19:36:18 +00:00
parent bbdb648dec
commit 49d002f75c
6 changed files with 26 additions and 9 deletions

View File

@ -1,3 +1,9 @@
2006-08-04 Alex Roitman <shura@gramps-project.org>
* src/DataViews/_MediaView.py (row_change): Work around older pygtk.
* src/Filters/Rules/Family/Makefile.am (pkgdata_PYTHON): Ship new
files.
* src/Filters/Rules/Makefile.am (pkgdata_PYTHON): Ship new file.
2006-08-04 Zsolt Foldvari <zfoldvar@users.sourceforge.net>
* src/DataViews/_PersonView.py (__init__): connection to "active-
person-changed" signal moved to set_active()

View File

@ -1,3 +1,6 @@
2006-08-04 Alex Roitman <shura@gramps-project.org>
* POTFILES.in: Unlist plugins that are not shipped.
2006-08-03 Alex Roitman <shura@gramps-project.org>
* POTFILES.in: Add new files.

View File

@ -230,9 +230,7 @@ src/Selectors/_SelectorExceptions.py
src/Selectors/_SelectorFactory.py
src/Selectors/__init__.py
src/plugins/AncestorChart2.py
src/plugins/AncestorChart.py
src/plugins/AncestorReport.py
src/plugins/Ancestors.py
src/plugins/BookReport.py
src/plugins/Calendar.py
src/plugins/ChangeNames.py
@ -244,7 +242,6 @@ src/plugins/CustomBookText.py
src/plugins/Desbrowser.py
src/plugins/DescendChart.py
src/plugins/DescendReport.py
src/plugins/DesGraph.py
src/plugins/DetAncestralReport.py
src/plugins/DetDescendantReport.py
src/plugins/Eval.py
@ -253,13 +250,10 @@ src/plugins/ExportVCalendar.py
src/plugins/ExportVCard.py
src/plugins/FamilyGroup.py
src/plugins/FanChart.py
src/plugins/FtmStyleAncestors.py
src/plugins/FtmStyleDescendants.py
src/plugins/GraphViz.py
src/plugins/ImportGeneWeb.py
src/plugins/ImportvCard.py
src/plugins/IndivComplete.py
src/plugins/IndivSummary.py
src/plugins/Leak.py
src/plugins/FindDupes.py
src/plugins/NarrativeWeb.py

View File

@ -130,7 +130,12 @@ class MediaView(PageView.ListView):
def row_change(self,obj):
handle = self.first_selected()
if not handle:
self.image.clear()
try:
self.image.clear()
except AttributeError:
# Working around the older pygtk
# that lacks clear() method for gtk.Image()
self.image.set_from_file(None)
else:
obj = self.dbstate.db.get_object_from_handle(handle)
pix = ImgManip.get_thumbnail_image(obj.get_path())

View File

@ -11,7 +11,15 @@ pkgdata_PYTHON = \
_HasNoteRegexp.py\
_HasRelType.py\
__init__.py\
_RegExpIdOf.py
_RegExpIdOf.py\
_MatchesFilter.py\
_FatherHasNameOf.py\
_FatherHasIdOf.py\
_MotherHasNameOf.py\
_MotherHasIdOf.py\
_ChildHasNameOf.py\
_ChildHasIdOf.py
pkgpyexecdir = @pkgpyexecdir@/Filters/Rules/Family
pkgpythondir = @pkgpythondir@/Filters/Rules/Family

View File

@ -16,7 +16,8 @@ pkgdata_PYTHON = \
_IsPrivate.py\
_RegExpIdBase.py\
_Rule.py\
_RuleUtils.py
_RuleUtils.py\
_MatchesFilterBase.py
pkgpyexecdir = @pkgpyexecdir@/Filters/Rules
pkgpythondir = @pkgpythondir@/Filters/Rules