Source code for Gramps Genealogical program
1021a5ef65
on_edit_clicked): Pass parent window to the child dialog. * src/Sources.py (add_src_clicked): Likewise. * src/EditSource.py (__init__): Add optional parent_window argument. Make dialog modal and transient for its parent. * src/gramps.glade (sourceEditor dialog): Delete unneeded handlers for buttons. * src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog, ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status if parent is given. * src/EventEdit.py (__init__): Make dialog modal and transient for its parent. * src/Witness.py: Make WittnessEditor dialog modal and transient for its parent. Call SelectPerson with itself as a parent. * src/SelectPerson.py (__init__): Make dialog transient for its parent. * src/imagesel.glade: Define proper responses and delete unneeded handlers for buttons. Make gtkFileEntry modal. * src/dialog.glade (all dialogs): Define proper responses for buttons. * src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked): Call NameEdit with itself as a parent; (on_add_attr_clicked, on_update_attr_clicked): Call AttributeEditor with itself as a parent; (on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call UrlEditor with itself as a parent; (on_name_note_clicked, on_ldsbap_note_clicked,on_ldsendow_note_clicked, on_ldsseal_note_clicked): Call NoteEditor with itself as a parent. * src/NameEdit.py (__init__): Make dialog modal and transient for its parent. * src/AttrEdit.py (__init__): Likewise. * src/AddrEdit.py (__init__): Likewise. * src/UrlEdit.py (__init__): Likewise. * src/NoteEdit.py (__init__): Likewise. svn: r2131 |
||
---|---|---|
doc | ||
example | ||
src | ||
.cvsignore | ||
aclocal.m4 | ||
AUTHORS | ||
autogen.sh | ||
ChangeLog | ||
configure | ||
configure.in | ||
COPYING | ||
COPYING-DOCS | ||
gramps.sh.in | ||
gramps.spec | ||
gramps.spec.in | ||
INSTALL | ||
install-sh | ||
Makefile.am | ||
Makefile.comm | ||
Makefile.in | ||
NEWS | ||
py-compile | ||
README | ||
TODO |
Please read the COPYING file first. If building from source, also read the INSTALL file (at least through the "SUPER-SHORT VERSION") before going further. Requirements -------------------------------- The following packages *MUST* be installed in order for Gramps to work: Python 2.2 or greater Gnome 2.0 or greater PyGTK2 1.99.14 or greater Gnome-python 1.99.14 or greater PyXML 0.7.1 or greater Many distributions already provide PyXML, but if your installation does not have it, you can get it from http://sourceforge.net/project/showfiles.php?group_id=6473 The following packages are *STRONGLY RECOMMENDED* to be installed: Reportlab Enable creation of PDF documents http://www.reportlab.com Python Imaging Library (PIL) Enable generation of thumbnails for images http://www.pythonware.com/products/pil If, for some reason, you can't/don't want to install PIL, at least make sure that ImageMagick is available on your system: http://www.imagemagick.org WITHOUT eithr PIL or ImageMagick *YOU WILL NOT BE ABLE TO USE THUMBNAILS* for any of your images. Documentation --------------------------------- Gramps documentation is supplied in the form of XML files, which will be installed in the GNOME help path(*). Gnome help browser (Yelp) uses these (properly installed) XML files to display the documentation. Of course, current HTML documentation can also be found on the gramps website, http://gramps.sourceforge.net/help.html (*) More precisely, they are installed in ${prefix}/share/gramps/gnome/help/gramps, where ${prefix} is given by the --prefix= option to configure (defaults to /usr). Building on non-Linux systems: i18n support and GNU make -------------------------------------------------------- Linux has libintl (GNU gettext) built-in the C library. Other systems are likely to have libintl as a separate or optional library. Also, other systems may have a different make utility. On those systems, like FreeBSD, you must tell configure where to find the libintl library and the libintl.h include file: CPPFLAGS="-I/usr/local/include -L/usr/local/lib" ./configure --prefix=/usr/local Once you have done this, if make fails, use gmake (the name FreeBSD gives to GNU make) instead. -------------------------------- Donald Allingham dallingham@users.sourceforge.net