aboutsummaryrefslogtreecommitdiff
path: root/src/org.gnome.KrbAuthDialog.gschema.xml
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2013-03-31 16:24:35 +0200
committerGuido Günther <agx@sigxcpu.org>2013-03-31 16:24:35 +0200
commit6c66f3c0bfc6c655c53e552ba8ef487700a6e0bc (patch)
treeec0da0d6be6e02f3e237ec35743f213df218f7d2 /src/org.gnome.KrbAuthDialog.gschema.xml
parentNew upstream version 3.2.1 (diff)
downloadkrb5-auth-dialog-6c66f3c0bfc6c655c53e552ba8ef487700a6e0bc.tar.gz
krb5-auth-dialog-6c66f3c0bfc6c655c53e552ba8ef487700a6e0bc.tar.bz2
krb5-auth-dialog-6c66f3c0bfc6c655c53e552ba8ef487700a6e0bc.zip
New upstream version 3.8.0
Diffstat (limited to 'src/org.gnome.KrbAuthDialog.gschema.xml')
-rw-r--r--src/org.gnome.KrbAuthDialog.gschema.xml70
1 files changed, 70 insertions, 0 deletions
diff --git a/src/org.gnome.KrbAuthDialog.gschema.xml b/src/org.gnome.KrbAuthDialog.gschema.xml
new file mode 100644
index 0000000..4764744
--- /dev/null
+++ b/src/org.gnome.KrbAuthDialog.gschema.xml
@@ -0,0 +1,70 @@
+<schemalist>
+ <schema id="org.gnome.KrbAuthDialog" path="/apps/krb5-auth-dialog/">
+ <key name="principal" type="s">
+ <default>''</default>
+ <summary>Kerberos principal</summary>
+ <description>The Kerberos principal to acquire the ticket for</description>
+ </key>
+ <key name="pk-userid" type="s">
+ <default>''</default>
+ <summary>PKINIT identifier</summary>
+ <description>The principal's public/private/certificate identifier when using PKINIT</description>
+ </key>
+ <key name="pk-anchors" type="s">
+ <default>''</default>
+ <summary>PKINIT trust anchors</summary>
+ <description>PKINIT CA certificates</description>
+ </key>
+ <key name="prompt-minutes" type="i">
+ <default>30</default>
+ <summary>Prompt minutes before expiry</summary>
+ <description>Start prompting/displaying notifications that many minutes before expiry</description>
+ </key>
+ <key name="forwardable" type="b">
+ <default>false</default>
+ <summary>Forwardable ticket</summary>
+ <description>Requested tickets should be forwardable</description>
+ </key>
+ <key name="renewable" type="b">
+ <default>false</default>
+ <summary>Renewable ticket</summary>
+ <description>Requested tickets should be renewable</description>
+ </key>
+ <key name="proxiable" type="b">
+ <default>false</default>
+ <summary>Proxiable ticket</summary>
+ <description>Requested tickets should be proxiable</description>
+ </key>
+ <key name="conf-tickets" type="b">
+ <default>false</default>
+ <summary>Configuration tickets</summary>
+ <description>Show configuration tickets</description>
+ </key>
+ <child name="notify" schema="org.gnome.KrbAuthDialog.notify"/>
+ <child name="plugins" schema="org.gnome.KrbAuthDialog.plugins"/>
+ </schema>
+ <schema id="org.gnome.KrbAuthDialog.notify" path="/apps/krb5-auth-dialog/notify/">
+ <key name="valid" type="b">
+ <default>true</default>
+ <summary>valid ticket notification</summary>
+ <description>Notify user when ticket becomes valid</description>
+ </key>
+ <key name="expiring" type="b">
+ <default>true</default>
+ <summary>ticket expiring notification</summary>
+ <description>Notify user when ticket is about to expire</description>
+ </key>
+ <key name="expired" type="b">
+ <default>true</default>
+ <summary>ticket expired notification</summary>
+ <description>Notify user when ticket has expired</description>
+ </key>
+ </schema>
+ <schema id="org.gnome.KrbAuthDialog.plugins" path="/apps/krb5-auth-dialog/plugins/">
+ <key name="enabled" type="as">
+ <default>[]</default>
+ <summary>Enabled plugins</summary>
+ <description>List of plugins that should be loaded and activated on startup.</description>
+ </key>
+ </schema>
+</schemalist>
bgstack15