* Re: GNOME Settings Schemas - How are they searched for? [not found] <mailman.41.1477238408.24358.guix-devel@gnu.org> @ 2016-10-23 19:02 ` rennes 2016-10-24 6:32 ` Pjotr Prins 0 siblings, 1 reply; 9+ messages in thread From: rennes @ 2016-10-23 19:02 UTC (permalink / raw) To: guix-devel Hello, I use gnumeric-1.12.31 on GNOME, and i don't have this problem. > I am hitting a similar problem with gnumeric. Install latest, open > spreadsheet, hit 'safe as' and you get: > > (gnumeric:1974): GLib-GIO-ERROR **: Settings schema > 'org.gtk.Settings.FileChooser' is not installed > > (bit annoying as some work got lost) but easy to reproduce. > > This issue suggests a solution: > > > http://stackoverflow.com/questions/9678301/can-not-use-gtk3-filechooser-on-mac-osx#9684626 > > i.e., the builder needs to run glib-compile-schemas [path to > org.gtk.Settings.FileChooser.gschema]. There is a compiled schema in > the path, but maybe not for FileChooser and others. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: GNOME Settings Schemas - How are they searched for? 2016-10-23 19:02 ` GNOME Settings Schemas - How are they searched for? rennes @ 2016-10-24 6:32 ` Pjotr Prins 2016-10-24 11:33 ` 宋文武 2017-03-13 14:54 ` org.gtk.Settings.FileChooser bomb out fix (aka GNOME Settings Schemas) Pjotr Prins 0 siblings, 2 replies; 9+ messages in thread From: Pjotr Prins @ 2016-10-24 6:32 UTC (permalink / raw) To: rennes; +Cc: guix-devel I installed the same version on Guix on top of Debian - but I use i3wm. No dbus - so maybe that is the root of the problem? Pj. On Sun, Oct 23, 2016 at 02:02:52PM -0500, rennes@openmailbox.org wrote: > Hello, > > I use gnumeric-1.12.31 on GNOME, and i don't have this problem. > > > I am hitting a similar problem with gnumeric. Install latest, open > > spreadsheet, hit 'safe as' and you get: > > > > (gnumeric:1974): GLib-GIO-ERROR **: Settings schema > > 'org.gtk.Settings.FileChooser' is not installed > > > > (bit annoying as some work got lost) but easy to reproduce. > > > > This issue suggests a solution: > > > > > > http://stackoverflow.com/questions/9678301/can-not-use-gtk3-filechooser-on-mac-osx#9684626 > > > > i.e., the builder needs to run glib-compile-schemas [path to > > org.gtk.Settings.FileChooser.gschema]. There is a compiled schema in > > the path, but maybe not for FileChooser and others. > -- ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: GNOME Settings Schemas - How are they searched for? 2016-10-24 6:32 ` Pjotr Prins @ 2016-10-24 11:33 ` 宋文武 2017-03-13 14:54 ` org.gtk.Settings.FileChooser bomb out fix (aka GNOME Settings Schemas) Pjotr Prins 1 sibling, 0 replies; 9+ messages in thread From: 宋文武 @ 2016-10-24 11:33 UTC (permalink / raw) To: Pjotr Prins; +Cc: guix-devel, rennes Pjotr Prins <pjotr.public12@thebird.nl> writes: > I installed the same version on Guix on top of Debian - but I use > i3wm. No dbus - so maybe that is the root of the problem? > GSettings search its 'gschemas.compiled' files under environment variable `$GSETTINGS_SCHEMA_DIR` and then under each directory of `$XDG_DATA_DIRS/share/glib-2.0/schemas`. The file can contain multiple entries, compiled from XML gsettings schemas files provided by applications. We don't have profile hook to build 'gschemas.compiled', so the one in profile only can contains one package's schemas, which is not helpful as schemas from other (particularly gtk+) are required too. Current way to handle this is to wrap binaries using gsettings with XDG_DATA_DIRS, as does by `glib-or-gtk-build-system`. ^ permalink raw reply [flat|nested] 9+ messages in thread
* org.gtk.Settings.FileChooser bomb out fix (aka GNOME Settings Schemas) 2016-10-24 6:32 ` Pjotr Prins 2016-10-24 11:33 ` 宋文武 @ 2017-03-13 14:54 ` Pjotr Prins 2017-03-13 16:12 ` Catonano 2017-03-13 16:25 ` ng0 1 sibling, 2 replies; 9+ messages in thread From: Pjotr Prins @ 2017-03-13 14:54 UTC (permalink / raw) To: guix-devel; +Cc: rennes I finally found a way of getting around the feared (gnumeric:1974): GLib-GIO-ERROR **: Settings schema 'org.gtk.Settings.FileChooser' is not installed by setting XDG_DATA_DIRS before running a GTK tool (gnumeric, gnucash, some browsers): env XDG_DATA_DIRS=/usr/local/share:/usr/share ~/.guix-profile/bin/gnumeric This is on a Debian base distribution. Not sure what package is missing on Guix, but there appears to be a missing dependency. Pj. On Mon, Oct 24, 2016 at 06:32:56AM +0000, Pjotr Prins wrote: > I installed the same version on Guix on top of Debian - but I use > i3wm. No dbus - so maybe that is the root of the problem? > > Pj. > > On Sun, Oct 23, 2016 at 02:02:52PM -0500, rennes@openmailbox.org wrote: > > Hello, > > > > I use gnumeric-1.12.31 on GNOME, and i don't have this problem. > > > > > I am hitting a similar problem with gnumeric. Install latest, open > > > spreadsheet, hit 'safe as' and you get: > > > > > > (gnumeric:1974): GLib-GIO-ERROR **: Settings schema > > > 'org.gtk.Settings.FileChooser' is not installed > > > > > > (bit annoying as some work got lost) but easy to reproduce. > > > > > > This issue suggests a solution: > > > > > > > > > http://stackoverflow.com/questions/9678301/can-not-use-gtk3-filechooser-on-mac-osx#9684626 > > > > > > i.e., the builder needs to run glib-compile-schemas [path to > > > org.gtk.Settings.FileChooser.gschema]. There is a compiled schema in > > > the path, but maybe not for FileChooser and others. > > > > -- > -- ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: org.gtk.Settings.FileChooser bomb out fix (aka GNOME Settings Schemas) 2017-03-13 14:54 ` org.gtk.Settings.FileChooser bomb out fix (aka GNOME Settings Schemas) Pjotr Prins @ 2017-03-13 16:12 ` Catonano 2017-03-13 17:36 ` Pjotr Prins 2017-03-13 16:25 ` ng0 1 sibling, 1 reply; 9+ messages in thread From: Catonano @ 2017-03-13 16:12 UTC (permalink / raw) To: Pjotr Prins; +Cc: guix-devel, rennes [-- Attachment #1: Type: text/plain, Size: 663 bytes --] 2017-03-13 15:54 GMT+01:00 Pjotr Prins <pjotr.public12@thebird.nl>: > I finally found a way of getting around the feared > > (gnumeric:1974): GLib-GIO-ERROR **: Settings schema > 'org.gtk.Settings.FileChooser' is not installed > > by setting XDG_DATA_DIRS before running a GTK tool (gnumeric, gnucash, > some browsers): > > env XDG_DATA_DIRS=/usr/local/share:/usr/share > ~/.guix-profile/bin/gnumeric > > This is on a Debian base distribution. Not sure what package is > missing on Guix, but there appears to be a missing dependency. > > Could this be related to this (occurring on GuixSD) ? https://lists.gnu.org/archive/html/bug-guix/2017-03/msg00032.html [-- Attachment #2: Type: text/html, Size: 1138 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: org.gtk.Settings.FileChooser bomb out fix (aka GNOME Settings Schemas) 2017-03-13 16:12 ` Catonano @ 2017-03-13 17:36 ` Pjotr Prins 2017-03-14 8:54 ` Pjotr Prins 0 siblings, 1 reply; 9+ messages in thread From: Pjotr Prins @ 2017-03-13 17:36 UTC (permalink / raw) To: Catonano; +Cc: guix-devel, rennes On Mon, Mar 13, 2017 at 05:12:44PM +0100, Catonano wrote: > 2017-03-13 15:54 GMT+01:00 Pjotr Prins <[1]pjotr.public12@thebird.nl>: > > I finally found a way of getting around the feared > > (gnumeric:1974): GLib-GIO-ERROR **: Settings schema > 'org.gtk.Settings.FileChooser' is not installed > > by setting XDG_DATA_DIRS before running a GTK tool (gnumeric, gnucash, > some browsers): > > env XDG_DATA_DIRS=/usr/local/share:/usr/share > ~/.guix-profile/bin/gnumeric > > This is on a Debian base distribution. Not sure what package is > missing on Guix, but there appears to be a missing dependency. > > Could this be related to this (occurring on GuixSD) ? > [2]https://lists.gnu.org/archive/html/bug-guix/2017-03/msg00032.html I think so. The missing icons are also reproducible in gnumeric. Pj. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: org.gtk.Settings.FileChooser bomb out fix (aka GNOME Settings Schemas) 2017-03-13 17:36 ` Pjotr Prins @ 2017-03-14 8:54 ` Pjotr Prins 0 siblings, 0 replies; 9+ messages in thread From: Pjotr Prins @ 2017-03-14 8:54 UTC (permalink / raw) To: Pjotr Prins; +Cc: guix-devel, rennes Here is another for icecat: (icecat:9674): Gtk-WARNING **: Could not find the icon 'gtk-go-back-ltr'. The 'hicolor' theme was not found either, perhaps you need to install it. I guess it ought to go into debbugs. - ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: org.gtk.Settings.FileChooser bomb out fix (aka GNOME Settings Schemas) 2017-03-13 14:54 ` org.gtk.Settings.FileChooser bomb out fix (aka GNOME Settings Schemas) Pjotr Prins 2017-03-13 16:12 ` Catonano @ 2017-03-13 16:25 ` ng0 2017-03-13 15:24 ` Pjotr Prins 1 sibling, 1 reply; 9+ messages in thread From: ng0 @ 2017-03-13 16:25 UTC (permalink / raw) To: Pjotr Prins; +Cc: guix-devel, rennes Pjotr Prins transcribed 1.5K bytes: > I finally found a way of getting around the feared > > (gnumeric:1974): GLib-GIO-ERROR **: Settings schema 'org.gtk.Settings.FileChooser' is not installed > > by setting XDG_DATA_DIRS before running a GTK tool (gnumeric, gnucash, > some browsers): > > env XDG_DATA_DIRS=/usr/local/share:/usr/share ~/.guix-profile/bin/gnumeric > > This is on a Debian base distribution. Not sure what package is > missing on Guix, but there appears to be a missing dependency. > > Pj. > > On Mon, Oct 24, 2016 at 06:32:56AM +0000, Pjotr Prins wrote: > > I installed the same version on Guix on top of Debian - but I use > > i3wm. No dbus - so maybe that is the root of the problem? > > > > Pj. > > > > On Sun, Oct 23, 2016 at 02:02:52PM -0500, rennes@openmailbox.org wrote: > > > Hello, > > > > > > I use gnumeric-1.12.31 on GNOME, and i don't have this problem. > > > > > > > I am hitting a similar problem with gnumeric. Install latest, open > > > > spreadsheet, hit 'safe as' and you get: > > > > > > > > (gnumeric:1974): GLib-GIO-ERROR **: Settings schema > > > > 'org.gtk.Settings.FileChooser' is not installed > > > > > > > > (bit annoying as some work got lost) but easy to reproduce. > > > > > > > > This issue suggests a solution: > > > > > > > > > > > > http://stackoverflow.com/questions/9678301/can-not-use-gtk3-filechooser-on-mac-osx#9684626 > > > > > > > > i.e., the builder needs to run glib-compile-schemas [path to > > > > org.gtk.Settings.FileChooser.gschema]. There is a compiled schema in > > > > the path, but maybe not for FileChooser and others. > > > > > > > -- > > > > -- > This bumped the whole thread of 'Ring' for me back into presence. What happened to it? Which difficulties are there? left? ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: org.gtk.Settings.FileChooser bomb out fix (aka GNOME Settings Schemas) 2017-03-13 16:25 ` ng0 @ 2017-03-13 15:24 ` Pjotr Prins 0 siblings, 0 replies; 9+ messages in thread From: Pjotr Prins @ 2017-03-13 15:24 UTC (permalink / raw) To: Pjotr Prins, guix-devel, rennes This might also be related to some of the browser crashes people reported when (for example) hitting Ctrl-S. Pj. ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2017-03-14 8:58 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <mailman.41.1477238408.24358.guix-devel@gnu.org> 2016-10-23 19:02 ` GNOME Settings Schemas - How are they searched for? rennes 2016-10-24 6:32 ` Pjotr Prins 2016-10-24 11:33 ` 宋文武 2017-03-13 14:54 ` org.gtk.Settings.FileChooser bomb out fix (aka GNOME Settings Schemas) Pjotr Prins 2017-03-13 16:12 ` Catonano 2017-03-13 17:36 ` Pjotr Prins 2017-03-14 8:54 ` Pjotr Prins 2017-03-13 16:25 ` ng0 2017-03-13 15:24 ` Pjotr Prins
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/guix.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.