This file is indexed.

/usr/share/guile-gnome-2/gnome/overrides/gconf.defs is in guile-gnome2-dev 2.16.1-6ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
;; -*- scheme -*-
;; guile-gnome
;; Copyright (C) 2004 Free Software Foundation, Inc.

;; This program is free software; you can redistribute it and/or    
;; modify it under the terms of the GNU General Public License as   
;; published by the Free Software Foundation; either version 2 of   
;; the License, or (at your option) any later version.              
;;                                                                  
;; This program is distributed in the hope that it will be useful,  
;; but WITHOUT ANY WARRANTY; without even the implied warranty of   
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    
;; GNU General Public License for more details.                     
;;                                                                  
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, contact:
;;
;; Free Software Foundation           Voice:  +1-617-542-5942
;; 59 Temple Place - Suite 330        Fax:    +1-617-542-2652
;; Boston, MA  02111-1307,  USA       gnu@gnu.org

;;; Commentary:
;;
;;Custom wrapper definitions.
;;
;;; Code:

(define-boxed Schema
  (c-name "GConfSchema")
  (gtype-id "_GCONF_TYPE_SCHEMA"))

(define-method notify_add
  (of-object "GConfClient")
  (c-name "_wrap_gconf_client_notify_add")
  (overrides "gconf_client_notify_add")
  (return-type "guint")
  (leave-guile-mode #f)
  (parameters
   '("const-gchar*" "namespace_section")
   '("SCM" "proc")
   '("GError**" "err")))

(define-method all_dirs
  (of-object "GConfClient")
  (c-name "gconf_client_all_dirs")
  (overrides "gconf_client_all_dirs")
  (return-type "GSList*-of-gchar*")
  (parameters
    '("const-gchar*" "dir")
    '("GError**" "err")
  )
)

(ignore-glob "*_set_int"
             "*_set_bool"
             "*_set_string"
             "*_set_float"
             "*_set_schema"
             "*_set_list"
             "*_set_list_nocopy"
             "*_set_pair"
             "*_get_int"
             "*_get_bool"
             "*_get_string"
             "*_get_float"
             "*_get_schema"
             "*_get_list"
             "*_get_pair"
             "gconf_value_*"
             "gconf_entry_*"
             "gconf_engine_*"
             "gconf_change_set_*"
             "gconf_listeners_*")


(ignore-glob  "*_get_type"
              "_*"
              "*_ref"
              "*_unref"
              "*_copy"
              "*_free"
              "*_newv"
              "*_valist"
              "*_setv"
              "*_foreach"
              "*_valist")

(ignore
 "gconf_init"
 "gconf_is_initialized"
 "gconf_error_quark"
 "gconf_debug_shutdown"
 "gconf_client_all_entries" ; GConfEntry*
 "gconf_client_get_for_engine" ; GConfEngine*
 "gconf_client_set_global_default_error_handler" ; GConfClientErrorHandlerFunc
 "gconf_client_get_entry" ; GConfEntry*
 "gconf_client_error" ; GError*
 "gconf_client_unreturned_error" ; GError*
 "gconf_client_commit_change_set" ; GConfChangeSet*
 "gconf_client_reverse_change_set" ; GConfChangeSet*
 "gconf_string_to_enum" ; GConfEnumStringPair*
 "gconf_enum_to_string" ; GConfEnumStringPair*
 "gconf_meta_info_get_mod_user" ; GConfMetaInfo*
 "gconf_meta_info_mod_time" ; GConfMetaInfo*
 "gconf_meta_info_new" ; GConfMetaInfo*
 "gconf_meta_info_set_mod_user" ; GConfMetaInfo*
 "gconf_meta_info_set_mod_time" ; GConfMetaInfo*


 "gconf_engine_get_for_addresses"
        "gconf_engine_get_local_for_addresses"
        "gconf_engine_change_set_from_currentv"
        "gconf_engine_notify_add"
        "gconf_client_change_set_from_currentv"
        "gconf_engine_get_local"
        "gconf_clear_cache"
        "gconf_synchronous_sync"
        "gconf_engine_get_full"
        "gconf_preinit"
        "gconf_postinit")