summaryrefslogtreecommitdiff
path: root/defaults/gconf-defaults.xml
diff options
context:
space:
mode:
Diffstat (limited to 'defaults/gconf-defaults.xml')
-rw-r--r--defaults/gconf-defaults.xml110
1 files changed, 0 insertions, 110 deletions
diff --git a/defaults/gconf-defaults.xml b/defaults/gconf-defaults.xml
deleted file mode 100644
index 03340bd4..00000000
--- a/defaults/gconf-defaults.xml
+++ /dev/null
@@ -1,110 +0,0 @@
-<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
-<node name="/">
- <interface name="org.gnome.GConf.Defaults">
- <!--
- includes: an array of GConf paths to copy from the
- callers GConf database to the system database
- excludes: an array of GConf paths to omit
-
- Copies values from the callers GConf database to the system-wide
- database. The subtree below each included path is copied recursively,
- skipping the excluded subtrees.
- To decide which PolicyKit privilege to require for the copying of
- each path in includes, the mechanism looks for a privilege with an
- annotation with key org.gnome.gconf.defaults.set-system.prefix whose
- value is a prefix of the path. If no privilege is found this way, the
- org.gnome.gconf.defaults.set-system privilege is required.
- -->
- <method name="SetSystem">
- <annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
- <arg name="includes" direction="in" type="as"/>
- <arg name="excludes" direction="in" type="as"/>
- </method>
-
- <!--
- path: a path to a gconf key
- value: a value, as encoded by gconf_value_encode
-
- Sets the key at path to value in the system-wide database.
- To decide which PolicyKit privilege to require for the copying of
- each path in includes, the mechanism looks for a privilege with an
- annotation with key org.gnome.gconf.defaults.set-system.prefix whose
- value is a prefix of the path. If no privilege is found this way, the
- org.gnome.gconf.defaults.set-system privilege is required.
- -->
- <method name="SetSystemValue">
- <annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
- <arg name="path" direction="in" type="s"/>
- <arg name="value" direction="in" type="s"/>
- </method>
-
- <method name="CanSetSystem">
- <annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
- <arg name="includes" direction="in" type="as"/>
- <arg name="result" direction="out" type="u"/>
- </method>
-
- <signal name="SystemSet">
- <arg name="keys" type="as"/>
- </signal>
- <!--
- includes: an array of GConf paths to copy from the
- callers GConf database to the mandatory database
- excludes: an array of GConf paths to omit
-
- Copies values from the callers GConf database to the system-wide
- mandatory database. The subtree below each included path is copied
- recursively, skipping the excluded subtrees.
- To decide which PolicyKit privilege to require for the copying of
- each path in includes, the mechanism looks for a privilege with an
- annotation with key org.gnome.gconf.defaults.set-mandatory.prefix whose
- value is a prefix of the path. If no privilege is found this way, the
- org.gnome.gconf.defaults.set-mandatory privilege is required.
- -->
- <method name="SetMandatory">
- <annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
- <arg name="includes" direction="in" type="as"/>
- <arg name="excludes" direction="in" type="as"/>
- </method>
-
- <!--
- path: a path to a gconf key
- value: a value, as encoded by gconf_value_encode
-
- Sets the key at path to value in the system-wide mandatory database.
- To decide which PolicyKit privilege to require for the copying of
- each path in includes, the mechanism looks for a privilege with an
- annotation with key org.gnome.gconf.defaults.set-mandatory.prefix whose
- value is a prefix of the path. If no privilege is found this way, the
- org.gnome.gconf.defaults.set-mandatory privilege is required.
- -->
- <method name="SetMandatoryValue">
- <annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
- <arg name="path" direction="in" type="s"/>
- <arg name="value" direction="in" type="s"/>
- </method>
-
- <!--
- Unsets keys in the system-wide mandatory GConf database, making the
- keys writable again. The subtree below each included path is copied
- recursively, skipping the excluded subtrees.
- To decide which PolicyKit privilege to require for the copying of
- each path in includes, the mechanism looks for a privilege with an
- annotation with key org.gnome.gconf.defaults.set-mandatory.prefix whose
- value is a prefix of the path. If no privilege is found this way, the
- org.gnome.gconf.defaults.set-mandatory privilege is required.
- -->
- <method name="UnsetMandatory">
- <annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
- <arg name="includes" direction="in" type="as"/>
- <arg name="excludes" direction="in" type="as"/>
- </method>
-
- <method name="CanSetMandatory">
- <annotation name="org.freedesktop.DBus.GLib.Async" value=""/>
- <arg name="includes" direction="in" type="as"/>
- <arg name="result" direction="out" type="u"/>
- </method>
-
- </interface>
-</node>