* src/DbPrompter.py: remove unused functions

* src/DisplayModels.py: filtering support
* src/GenericFilter.py: filtering support
* src/PeopleModel.py: support for filtering
* src/PeopleView.py: support for filtering
* src/RelLib.py: filtering support
* src/Utils.py: filtering support
* src/gramps.glade: remove invert for filters
* src/gramps_main.py: filtering support


svn: r3114
This commit is contained in:
Don Allingham
2004-04-28 04:06:25 +00:00
parent 162ca85ba0
commit 4407b69063
32 changed files with 476 additions and 207 deletions

View File

@@ -54,26 +54,7 @@ def out(str):
"
dnl Check if python bindings for gtk are installed
AC_MSG_CHECKING(Python bindings for gtk)
cat > conftest.py <<EOF
$pygtk_require
try:
import gobject
out("YES")
except ImportError:
out("No")
EOF
$PYTHON conftest.py
has_pygtk=`cat conftest.out`
rm -f conftest.out conftest.py
if test YES != "$has_pygtk"
then
AC_MSG_ERROR([
**** The python bindings for gtk 2.0 (pygtk2) could not be found.])
fi
AC_MSG_RESULT(ok)
PKG_CHECK_MODULES(PYGTK,pygtk-2.0 >= 2.3.4)
AC_MSG_CHECKING(Python bindings for gnome)
cat > conftest.py <<EOF