libpurple/data/im.pidgin.Purple.gschema.xml

Tue, 13 May 2025 14:29:06 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Tue, 13 May 2025 14:29:06 -0500
changeset 43251
8bd7eee2f178
parent 43054
ccd071e7cd83
permissions
-rw-r--r--

Create a Privacy preference page with the send typing notification preference

This only controls whether or not the conversation window will send typing
notifications, plugins can still do this on their own.

Testing Done:
Used ngrep to verify if the irc typing messages were being sent or not. Also manually modified the settings file and verified the ui update and vice versa.

Bugs closed: PIDGIN-17450

Reviewed at https://reviews.imfreedom.org/r/3999/

41660
6a4db60af05b Prepare GSettings schemas and a default settings backend
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
diff changeset
1 <?xml version="1.0" encoding="utf-8"?>
6a4db60af05b Prepare GSettings schemas and a default settings backend
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
diff changeset
2 <schemalist>
6a4db60af05b Prepare GSettings schemas and a default settings backend
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
diff changeset
3 <schema path="/" id="im.pidgin.Purple">
41661
d8a78f5c982d Port credential manager to GSettings
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 41660
diff changeset
4 <child name="credentials" schema="im.pidgin.Purple.Credentials"/>
d8a78f5c982d Port credential manager to GSettings
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 41660
diff changeset
5 </schema>
d8a78f5c982d Port credential manager to GSettings
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 41660
diff changeset
6
43054
ccd071e7cd83 Add a boolean setting for toggling developer mode
Gary Kramlich <grim@reaperworld.com>
parents: 42507
diff changeset
7 <schema path="/purple/core/" id="im.pidgin.Purple.Core">
ccd071e7cd83 Add a boolean setting for toggling developer mode
Gary Kramlich <grim@reaperworld.com>
parents: 42507
diff changeset
8 <key name="developer-mode" type="b">
ccd071e7cd83 Add a boolean setting for toggling developer mode
Gary Kramlich <grim@reaperworld.com>
parents: 42507
diff changeset
9 <default>false</default>
ccd071e7cd83 Add a boolean setting for toggling developer mode
Gary Kramlich <grim@reaperworld.com>
parents: 42507
diff changeset
10 <summary>Enables developer mode</summary>
ccd071e7cd83 Add a boolean setting for toggling developer mode
Gary Kramlich <grim@reaperworld.com>
parents: 42507
diff changeset
11 <description>
ccd071e7cd83 Add a boolean setting for toggling developer mode
Gary Kramlich <grim@reaperworld.com>
parents: 42507
diff changeset
12 Developer mode is a hint to other features to tell them to show options
ccd071e7cd83 Add a boolean setting for toggling developer mode
Gary Kramlich <grim@reaperworld.com>
parents: 42507
diff changeset
13 and information that is useful to developers but not normal users.
ccd071e7cd83 Add a boolean setting for toggling developer mode
Gary Kramlich <grim@reaperworld.com>
parents: 42507
diff changeset
14 </description>
ccd071e7cd83 Add a boolean setting for toggling developer mode
Gary Kramlich <grim@reaperworld.com>
parents: 42507
diff changeset
15 </key>
ccd071e7cd83 Add a boolean setting for toggling developer mode
Gary Kramlich <grim@reaperworld.com>
parents: 42507
diff changeset
16 </schema>
ccd071e7cd83 Add a boolean setting for toggling developer mode
Gary Kramlich <grim@reaperworld.com>
parents: 42507
diff changeset
17
41661
d8a78f5c982d Port credential manager to GSettings
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 41660
diff changeset
18 <schema path="/purple/credentials/" id="im.pidgin.Purple.Credentials">
d8a78f5c982d Port credential manager to GSettings
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 41660
diff changeset
19 <key name="active-provider" type="s">
d8a78f5c982d Port credential manager to GSettings
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 41660
diff changeset
20 <default>"noop-provider"</default>
d8a78f5c982d Port credential manager to GSettings
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 41660
diff changeset
21 <summary>Active credential provider</summary>
d8a78f5c982d Port credential manager to GSettings
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 41660
diff changeset
22 <description>
d8a78f5c982d Port credential manager to GSettings
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 41660
diff changeset
23 The credential provider that will be used to save credentials, i.e.,
d8a78f5c982d Port credential manager to GSettings
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 41660
diff changeset
24 passwords, tokens, etc.
d8a78f5c982d Port credential manager to GSettings
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 41660
diff changeset
25 </description>
d8a78f5c982d Port credential manager to GSettings
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 41660
diff changeset
26 </key>
41660
6a4db60af05b Prepare GSettings schemas and a default settings backend
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
diff changeset
27 </schema>
41770
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
28
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
29 <enum id="im.pidgin.Purple.Idle.Method">
42507
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
30 <value nick="none" value="0"/>
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
31 <value nick="purple" value="1"/>
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
32 <value nick="system" value="2"/>
41770
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
33 </enum>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
34 <schema path="/purple/idle/" id="im.pidgin.Purple.Idle">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
35 <key name="method" enum="im.pidgin.Purple.Idle.Method">
42507
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
36 <default>"system"</default>
41770
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
37 <summary>Idle reporting method</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
38 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
39 The method to use to report idle time.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
40 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
41 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
42
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
43 <key name="duration" type="i">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
44 <default>10</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
45 <summary>Number of minutes before being marked idle</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
46 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
47 The time in minutes, that must pass before the user will be marked as
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
48 idle.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
49 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
50 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
51
42507
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
52 <key name="change-presence" type="b">
41770
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
53 <default>false</default>
42507
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
54 <summary>Change presence when idle</summary>
41770
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
55 <description>
42507
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
56 When going idle switch presences.
41770
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
57 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
58 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
59
42507
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
60 <key name="saved-presence" type="s">
41770
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
61 <default>""</default>
42507
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
62 <summary>The saved presence to use when idle</summary>
41770
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
63 <description>
42507
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
64 The name of the saved presence to use when the user has gone idle.
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
65 </description>
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
66 </key>
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
67 </schema>
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
68
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
69 <schema path="/purple/startup/" id="im.pidgin.Purple.Startup">
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
70 <key name="use-previous-presence" type="b">
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
71 <default>true</default>
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
72 <summary>Use the saved presence from last exit</summary>
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
73 <description>
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
74 Use the saved presence that was in use the last time the application
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
75 was exited.
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
76 </description>
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
77 </key>
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
78
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
79 <key name="saved-presence" type="s">
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
80 <default>""</default>
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
81 <summary>The saved presence to use at startup</summary>
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
82 <description>
8e8f223cdd5a Port PidginAwayPrefs to PurpleSavedPresence and GSettings
Gary Kramlich <grim@reaperworld.com>
parents: 41770
diff changeset
83 The name of the saved presence to use at startup.
41770
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
84 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
85 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
86 </schema>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
87
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
88 <schema path="/purple/network/" id="im.pidgin.Purple.Network.IP">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
89 <key name="autodetect" type="b">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
90 <default>true</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
91 <summary>Auto-detect public IP address</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
92 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
93 Use the enabled network discovery methods to determine the external IP
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
94 address.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
95 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
96 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
97
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
98 <key name="address" type="s">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
99 <default>""</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
100 <summary>The external IP address</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
101 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
102 The auto-detected IP address if auto-detection is enabled, or a manually
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
103 specified external IP address if auto-detection is disabled.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
104 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
105 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
106 </schema>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
107
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
108 <schema path="/purple/network/" id="im.pidgin.Purple.Network.Discovery">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
109 <key name="upnp" type="b">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
110 <default>true</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
111 <summary>Use UPnP for discovery</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
112 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
113 Allow the use of Universal Plugin and Play for network discovery.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
114 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
115 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
116
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
117 <key name="nat-pmp" type="b">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
118 <default>true</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
119 <summary>Use NAT-PMP for discovery</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
120 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
121 Allow the use of NAT-PMP for network discovery.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
122 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
123 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
124
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
125 <key name="stun" type="b">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
126 <default>true</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
127 <summary>Use STUN for discovery</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
128 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
129 Allow the use of STUN for network discovery.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
130 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
131 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
132 </schema>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
133
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
134 <schema path="/purple/network/ports/" id="im.pidgin.Purple.Network.Ports">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
135 <key name="use-discovery" type="b">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
136 <default>true</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
137 <summary>Use network discovery to open ports</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
138 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
139 Use the network discovery protocols like NAT-PMP, STUN, and UPnP to open
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
140 ports.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
141 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
142 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
143 </schema>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
144
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
145 <schema path="/purple/network/ports/manual/" id="im.pidgin.Purple.Network.Ports.Manual">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
146 <key name="enabled" type="b">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
147 <default>false</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
148 <summary>Manually specify open ports</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
149 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
150 Manually specify a range of open ports to use.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
151 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
152 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
153
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
154 <key name="start" type="q">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
155 <default>1024</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
156 <summary>The first port of the range</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
157 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
158 The first port in the range of open ports.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
159 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
160 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
161
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
162 <key name="end" type="q">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
163 <default>2048</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
164 <summary>The last port of the range</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
165 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
166 The last port in the range of open ports.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
167 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
168 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
169 </schema>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
170
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
171 <schema path="/purple/network/stun/" id="im.pidgin.Purple.Network.Stun">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
172 <key name="server" type="s">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
173 <default>""</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
174 <summary>The STUN server to use</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
175 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
176 The hostname or IP address of the STUN server to use
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
177 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
178 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
179
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
180 <key name="use-udp" type="b">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
181 <default>true</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
182 <summary>Use UDP for STUN connections</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
183 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
184 Attempt to use UDP to connect to the STUN server.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
185 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
186 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
187
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
188 <key name="udp-port" type="q">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
189 <default>3478</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
190 <summary>The UDP port number</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
191 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
192 The UDP port number to use when connecting to the STUN server. Defaults
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
193 to 3478.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
194 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
195 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
196
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
197 <key name="use-tls" type="b">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
198 <default>false</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
199 <summary>Use TLS for TCP connections</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
200 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
201 Use TLS for connections over the TCP port.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
202 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
203 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
204
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
205 <key name="tcp-port" type="q">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
206 <default>3478</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
207 <summary>The TCP port number</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
208 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
209 The TCP port number to use when connection to the STUN server. Defaults
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
210 to 3478.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
211 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
212 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
213 </schema>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
214
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
215 <schema path="/purple/network/turn/" id="im.pidgin.Purple.Network.Turn">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
216 <key name="server" type="s">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
217 <default>""</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
218 <summary>The TURN server to use</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
219 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
220 The hostname or IP address of the TURN server to use.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
221 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
222 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
223
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
224 <key name="udp-port" type="q">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
225 <default>3478</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
226 <summary>The UDP port of the server</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
227 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
228 The UDP port of the TURN server. Defaults to 3478.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
229 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
230 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
231
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
232 <key name="tcp-port" type="q">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
233 <default>3478</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
234 <summary>The TCP port of the server</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
235 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
236 The TCP port of the TURN server. Defaults to 3478.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
237 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
238 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
239
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
240 <key name="username" type="s">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
241 <default>""</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
242 <summary>The username</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
243 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
244 If the TURN server requires authentication, this field represents the
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
245 username.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
246 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
247 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
248
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
249 <key name="password" type="s">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
250 <default>""</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
251 <summary>The password</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
252 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
253 If the TURN server requires authentication, this field represents the
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
254 password.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
255 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
256 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
257 </schema>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
258
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
259 <enum id="im.pidgin.Purple.Proxy.Type">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
260 <value nick="No Proxy" value="0"/>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
261 <value nick="HTTP" value="1"/>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
262 <value nick="SOCKS4" value="2"/>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
263 <value nick="SOCKS5" value="3"/>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
264 <value nick="Use Environmental Settings" value="4"/>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
265 <value nick="TOR" value="5"/>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
266 </enum>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
267 <schema path="/purple/proxy/" id="im.pidgin.Purple.Proxy">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
268 <key name="type" enum="im.pidgin.Purple.Proxy.Type">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
269 <default>"No Proxy"</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
270 <summary>The proxy type</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
271 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
272 The proxy type to use.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
273 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
274 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
275 <key name="host" type="s">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
276 <default>""</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
277 <summary>The hostname of the proxy server</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
278 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
279 The hostname or IP address of the proxy server.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
280 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
281 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
282
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
283 <key name="port" type="q">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
284 <default>8080</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
285 <summary>The port to use</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
286 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
287 The port that the proxy server is running on.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
288 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
289 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
290
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
291 <key name="username" type="s">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
292 <default>""</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
293 <summary>The username</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
294 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
295 If the proxy server requires authentication, this field represents the username.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
296 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
297 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
298
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
299 <key name="password" type="s">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
300 <default>""</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
301 <summary>The password</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
302 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
303 If the proxy server requires authentication, this field represents the password.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
304 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
305 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
306 </schema>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
307
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
308 <schema path="/purple/status/" id="im.pidgin.Purple.Status">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
309 <key name="recents" type="as">
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
310 <default>[]</default>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
311 <summary>The list of recent statuses</summary>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
312 <description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
313 The list of recent statuses sorted with the most recently used statuses
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
314 at the top.
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
315 </description>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
316 </key>
64287dd40326 Add all of the purple preferences to our gschema
Gary Kramlich <grim@reaperworld.com>
parents: 41661
diff changeset
317 </schema>
41660
6a4db60af05b Prepare GSettings schemas and a default settings backend
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
diff changeset
318 </schemalist>

mercurial