So that they're together with the other resources instead of in
site-package/gramps. Aside from a better source and installation
layout, this makes it easier to bundle them.
svn: r22576
Uses GRAMPS_RESOURCES to override the root location of the Gramps data files (which would normally be $(prefix)/share).
In setup.py install, writes $(prefix)/share to gen/utils/resource-path, installs that file, then deletes it again from the source tree. The presence or absence determines whether Gramps is running from the source directory or from an installation.
Const.py is now a static file; const.py.in is no longer used. Note that because importing const into setup tried to initialize things that we don't want initialized, VERSION is removed, and imported from gramps.version -- a file which will be added in the next change. Consequently, this commit will not run.
svn: r21613
NOTE: This uses the unstable modulesets which build the Gtk stack from the
current git masters. Builds may fail from time to time because of bad
commits. I'll fix this in a week or two after I've updated the stable
moduleset for Gnome 3.6.
svn: r20484
Make Arial Unicode MS the default face for OSX
Supports East Asian, Semitic, and European scripts, but not Indic
(Hindi, Telugu, Tamil, Thai, etc.). Since Pango's ATSUI backend doesn't
support fallback, users of these scripts will have to override the
default face in their ~/.gtkrc-2.0
svn: r18790
Importing gramps at the end of rungramps causes threading deadlocks because of a lock (held by the main thread as long as Gramps is running) on import.
svn: r17706
Rewrote the launcher in python with much improved language handling;
renamed it to rungramps.py, and replaced launcher.sh with a minimal
shell launcher.
Any english selection will now have $LANG set to "C", while $LC_ALL will
be set to whatever english variant the user selected (and en_US if she
specified just "en"). For languages other than English, $LC_ALL will be
set to xx_XX if the language selection had no region (e.g., if the
language selection is de, $LANG will be de and $LC_ALL will be de_DE.
$LANG will be truncated if the language selection has a region that
Gramps doesn't support, but does support the bare language (e.g., if the
language selection is de_DE, $LANG will be de because there is no de_DE
translation. Gettext is smart enough to get this right without the help,
but the check is necessary to ensure that we don't skip over a supported
generic language.
The language settings can now be overridden for gramps by using the
defaults system.
svn: r17342