~attente/gsettings-desktop-schemas/indicator-keyboard

« back to all changes in this revision

Viewing changes to schemas/org.gnome.system.proxy.gschema.xml

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya
  • Date: 2010-11-05 17:22:35 UTC
  • Revision ID: james.westby@ubuntu.com-20101105172235-u437mwd7vsog01vc
Tags: upstream-0.1.0
ImportĀ upstreamĀ versionĀ 0.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<schemalist gettext-domain="gsettings-desktop-schemas">
 
2
  <schema id="org.gnome.system.proxy" path="/system/proxy/">
 
3
    <child name="http" schema="org.gnome.system.proxy.http"/>
 
4
    <child name="https" schema="org.gnome.system.proxy.https"/>
 
5
    <child name="ftp" schema="org.gnome.system.proxy.ftp"/>
 
6
    <child name="socks" schema="org.gnome.system.proxy.socks"/>
 
7
    <key name="mode" enum="org.gnome.desktop.GDesktopProxyMode">
 
8
      <default>'none'</default>
 
9
      <summary>Proxy configuration mode</summary>
 
10
      <description>
 
11
        Select the proxy configuration mode. Supported values are "none", 
 
12
        "manual", "auto".
 
13
      </description>
 
14
    </key>
 
15
    <key name="autoconfig-url" type="s">
 
16
      <default>''</default>
 
17
      <summary>Automatic proxy configuration URL</summary>
 
18
      <description>
 
19
        URL that provides proxy configuration values.
 
20
      </description>
 
21
    </key>
 
22
    <key name="ignore-hosts" type="as">
 
23
      <default>[ 'localhost', '127.0.0.0/8' ]</default>
 
24
      <summary>Non-proxy hosts</summary>
 
25
      <description>
 
26
        This key contains a list of hosts which are connected to directly, 
 
27
        rather than via the proxy (if it is active). The values can be 
 
28
        hostnames, domains (using an initial wildcard like *.foo.com), IP host 
 
29
        addresses (both IPv4 and IPv6) and network addresses with a netmask 
 
30
        (something like 192.168.0.0/24).
 
31
      </description>
 
32
    </key>
 
33
    <key name="use-same-proxy" type="b">
 
34
      <default>true</default>
 
35
      <summary>Use same proxy for all protocols</summary>
 
36
      <description>Whether to use the same proxy for all protocols or not.</description>
 
37
    </key>
 
38
  </schema>
 
39
  <schema id="org.gnome.system.proxy.http" path="/system/proxy/http/">
 
40
    <key name="enabled" type="b">
 
41
      <default>false</default>
 
42
      <summary>Use HTTP proxy</summary>
 
43
      <description>
 
44
        Enables the proxy settings when accessing HTTP over the Internet.
 
45
      </description>
 
46
    </key>
 
47
    <key name="host" type="s">
 
48
      <default>''</default>
 
49
      <summary>HTTP proxy host name</summary>
 
50
      <description>
 
51
        The machine name to proxy HTTP through.
 
52
      </description>
 
53
    </key>
 
54
    <key name="port" type="i">
 
55
      <range min="0" max="65535"/>
 
56
      <default>8080</default>
 
57
      <summary>HTTP proxy port</summary>
 
58
      <description>
 
59
        The port on the machine defined by "/system/proxy/http/host" that you 
 
60
        proxy through.
 
61
      </description>
 
62
    </key>
 
63
    <key name="use-authentication" type="b">
 
64
      <default>false</default>
 
65
      <summary>Authenticate proxy server connections</summary>
 
66
      <description>
 
67
        If true, then connections to the proxy server require authentication. 
 
68
        The username/password combo is defined by 
 
69
        "/system/proxy/http/authentication-user" and 
 
70
        "/system/proxy/http/authentication-password".
 
71
      </description>
 
72
    </key>
 
73
    <key name="authentication-user" type="s">
 
74
      <default>''</default>
 
75
      <summary>HTTP proxy username</summary>
 
76
      <description>
 
77
        User name to pass as authentication when doing HTTP proxying.
 
78
      </description>
 
79
    </key>
 
80
    <key name="authentication-password" type="s">
 
81
      <default>''</default>
 
82
      <summary>HTTP proxy password</summary>
 
83
      <description>
 
84
        Password to pass as authentication when doing HTTP proxying.
 
85
      </description>
 
86
    </key>
 
87
  </schema>
 
88
  <schema id="org.gnome.system.proxy.https" path="/system/proxy/https/">
 
89
    <key name="host" type="s">
 
90
      <default>''</default>
 
91
      <summary>Secure HTTP proxy host name</summary>
 
92
      <description>
 
93
        The machine name to proxy secure HTTP through.
 
94
      </description>
 
95
    </key>
 
96
    <key name="port" type="i">
 
97
      <range min="0" max="65535"/>
 
98
      <default>0</default>
 
99
      <summary>Secure HTTP proxy port</summary>
 
100
      <description>
 
101
        The port on the machine defined by "/system/proxy/https/host" that you 
 
102
        proxy through.
 
103
      </description>
 
104
    </key>
 
105
  </schema>
 
106
  <schema id="org.gnome.system.proxy.ftp" path="/system/proxy/ftp/">
 
107
    <key name="host" type="s">
 
108
      <default>''</default>
 
109
      <summary>FTP proxy host name</summary>
 
110
      <description>
 
111
        The machine name to proxy FTP through.
 
112
      </description>
 
113
    </key>
 
114
    <key name="port" type="i">
 
115
      <range min="0" max="65535"/>
 
116
      <default>0</default>
 
117
      <summary>FTP proxy port</summary>
 
118
      <description>
 
119
        The port on the machine defined by "/system/proxy/ftp/host" that you 
 
120
        proxy through.
 
121
      </description>
 
122
    </key>
 
123
  </schema>
 
124
  <schema id="org.gnome.system.proxy.socks" path="/system/proxy/socks/">
 
125
    <key name="host" type="s">
 
126
      <default>''</default>
 
127
      <summary>SOCKS proxy host name</summary>
 
128
      <description>
 
129
        The machine name to proxy socks through.
 
130
      </description>
 
131
    </key>
 
132
    <key name="port" type="i">
 
133
      <range min="0" max="65535"/>
 
134
      <default>0</default>
 
135
      <summary>SOCKS proxy port</summary>
 
136
      <description>
 
137
        The port on the machine defined by "/system/proxy/socks/host" that you 
 
138
        proxy through.
 
139
      </description>
 
140
    </key>
 
141
  </schema>
 
142
</schemalist>