~ubuntu-branches/ubuntu/trusty/vino/trusty-proposed

« back to all changes in this revision

Viewing changes to common/org.gnome.Vino.gschema.xml

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-06-06 13:22:46 UTC
  • mfrom: (1.1.62)
  • Revision ID: package-import@ubuntu.com-20120606132246-v70ea0dyx3p3l05v
Tags: 3.5.2-0ubuntu1
* New upstream release
* debian/control:
  - Bump build-depends on intltool

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="UTF-8"?>
2
1
<schemalist>
3
 
  <schema path='/desktop/gnome/remote-access/' id='org.gnome.Vino'>
4
 
    <key type='b' name='enabled'>
 
2
  <schema id='org.gnome.Vino' path='/desktop/gnome/remote-access/'>
 
3
    <key name='enabled' type='b'>
5
4
      <summary>Enable remote access to the desktop</summary>
6
 
      <description>If true, allows remote access to the desktop via the RFB protocol. Users on remote machines may then connect to the desktop using a VNC viewer.</description>
 
5
      <description>
 
6
        If true, allows remote access to the desktop via the RFB
 
7
        protocol. Users on remote machines may then connect to the
 
8
        desktop using a VNC viewer.</description>
7
9
      <default>false</default>
8
10
    </key>
9
11
 
10
 
    <key type='b' name='prompt-enabled'>
 
12
    <key name='prompt-enabled' type='b'>
11
13
      <summary>Prompt the user before completing a connection</summary>
12
 
      <description>If true, remote users accessing the desktop are not allowed access until the user on the host machine approves the connection. Recommended especially when access is not password protected.</description>
 
14
      <description>
 
15
        If true, remote users accessing the desktop are not allowed
 
16
        access until the user on the host machine approves the
 
17
        connection.  Recommended especially when access is not password
 
18
        protected.
 
19
      </description>
13
20
      <default>true</default>
14
21
    </key>
15
22
 
16
 
    <key type='b' name='view-only'>
 
23
    <key name='view-only' type='b'>
17
24
      <summary>Only allow remote users to view the desktop</summary>
18
 
      <description>If true, remote users accessing the desktop are only allowed to view the desktop. Remote users will not be able to use the mouse or keyboard.</description>
 
25
      <description>
 
26
        If true, remote users accessing the desktop are only allowed to
 
27
        view the desktop. Remote users will not be able to use the mouse
 
28
        or keyboard.
 
29
      </description>
19
30
      <default>false</default>
20
31
    </key>
21
32
 
22
 
    <key type='s' name='network-interface'>
 
33
    <key name='network-interface' type='s'>
23
34
      <summary>Network interface for listening</summary>
24
 
      <description>If not set, the server will listen on all network interfaces. Set this if you want that accept connections only from some specific network interface. eg: eth0, wifi0, lo, ...</description>
 
35
      <description>
 
36
        If not set, the server will listen on all network interfaces.
 
37
 
 
38
        Set this if you want that accept connections only from some
 
39
        specific network interface. eg: eth0, wifi0, lo, ...
 
40
      </description>
25
41
      <default>''</default>
26
42
    </key>
27
43
 
28
 
    <key type='b' name='use-alternative-port'>
 
44
    <key name='use-alternative-port' type='b'>
29
45
      <summary>Listen on an alternative port</summary>
30
 
      <description>If true, the server will listen to another port, instead of the default (5900). The port must be specified in the 'alternative-port' key.</description>
 
46
      <description>
 
47
        If true, the server will listen to another port, instead of the
 
48
        default (5900). The port must be specified in the
 
49
        'alternative-port' key.
 
50
      </description>
31
51
      <default>false</default>
32
52
    </key>
33
53
 
34
 
    <key type='q' name='alternative-port'>
 
54
    <key name='alternative-port' type='q'>
35
55
      <summary>Alternative port number</summary>
36
 
      <description>The port which the server will listen to if the 'use-alternative-port' key is set to true. Valid values are in the range from 5000 to 50000.</description>
 
56
      <description>
 
57
        The port which the server will listen to if the
 
58
        'use-alternative-port' key is set to true.  Valid values are in
 
59
        the range from 5000 to 50000.
 
60
      </description>
37
61
      <default>5900</default>
38
62
    </key>
39
63
 
40
 
    <key type='b' name='require-encryption'>
 
64
    <key name='require-encryption' type='b'>
41
65
      <summary>Require encryption</summary>
42
 
      <description>If true, remote users accessing the desktop are required to support encryption. It is highly recommended that you use a client which supports encryption unless the intervening network is trusted.</description>
 
66
      <description>
 
67
        If true, remote users accessing the desktop are required to
 
68
        support encryption. It is highly recommended that you use a
 
69
        client which supports encryption unless the intervening network
 
70
        is trusted.
 
71
      </description>
43
72
      <default>false</default>
44
73
    </key>
45
74
 
46
 
    <key type='as' name='authentication-methods'>
 
75
    <key name='authentication-methods' type='as'>
47
76
      <summary>Allowed authentication methods</summary>
48
 
      <description>Lists the authentication methods with which remote users may access the desktop. There are two possible authentication methods; "vnc" causes the remote user to be prompted for a password (the password is specified by the vnc-password key) before connecting and "none" which allows any remote user to connect.</description>
 
77
      <description>
 
78
        Lists the authentication methods with which remote users may
 
79
        access the desktop.
 
80
 
 
81
        There are two possible authentication methods; "vnc" causes the
 
82
        remote user to be prompted for a password (the password is
 
83
        specified by the vnc-password key) before connecting and "none"
 
84
        which allows any remote user to connect.
 
85
      </description>
49
86
      <choices>
50
87
        <choice value='none'/>
51
88
        <choice value='vnc'/>
53
90
      <default>['none']</default>
54
91
    </key>
55
92
 
56
 
    <key type='s' name='vnc-password'>
 
93
    <key name='vnc-password' type='s'>
57
94
      <summary>Password required for "vnc" authentication</summary>
58
 
      <description>The password which the remote user will be prompted for if the "vnc" authentication method is used. The password specified by the key is base64 encoded. The special value of 'keyring' (which is not valid base64) means that the password is stored in the GNOME keyring.</description>
 
95
      <description>
 
96
        The password which the remote user will be prompted for if the
 
97
        "vnc" authentication method is used. The password specified by
 
98
        the key is base64 encoded.
 
99
 
 
100
        The special value of 'keyring' (which is not valid base64) means
 
101
        that the password is stored in the GNOME keyring.
 
102
      </description>
59
103
      <default>'keyring'</default>
60
104
    </key>
61
105
 
62
 
    <key type='s' name='mailto'>
 
106
    <key name='mailto' type='s'>
63
107
      <summary>E-mail address to which the remote desktop URL should be sent</summary>
64
 
      <description>This key specifies the e-mail address to which the remote desktop URL should be sent if the user clicks on the URL in the Desktop Sharing preferences dialog.</description>
 
108
      <description>
 
109
        This key specifies the e-mail address to which the remote
 
110
        desktop URL should be sent if the user clicks on the URL in the
 
111
        Desktop Sharing preferences dialog.
 
112
      </description>
65
113
      <default>''</default>
66
114
    </key>
67
115
 
68
 
    <key type='b' name='lock-screen-on-disconnect'>
 
116
    <key name='lock-screen-on-disconnect' type='b'>
69
117
      <summary>Lock the screen when last user disconnect</summary>
70
 
      <description>If true, screen will be locked after the last remote client disconnect.</description>
 
118
      <description>
 
119
        If true, screen will be locked after the last remote client
 
120
        disconnect.
 
121
      </description>
71
122
      <default>false</default>
72
123
    </key>
73
124
 
74
125
    <key name='icon-visibility' enum="org.gnome.Vino.VinoIconVisibility">
75
126
      <summary>When the status icon should be shown</summary>
76
 
      <description>This key controls the behavior of the status icon. There are three options: "always" - The icon will be always there; "client" - You will see the icon only when there is someone connected, this is the default behavior; "never" - Never shows the icon.</description>
 
127
      <description>
 
128
        This key controls the behavior of the status icon. There are
 
129
        three options: "always" - The icon will be always there;
 
130
        "client" - You will see the icon only when there is someone
 
131
        connected, this is the default behavior; "never" - Never shows
 
132
        the icon.
 
133
      </description>
77
134
      <default>'client'</default>
78
135
    </key>
79
136
 
80
 
    <key type='b' name='disable-background'>
 
137
    <key name='disable-background' type='b'>
81
138
      <summary>When true, disable the background on receive valid session</summary>
82
 
      <description>When true, disable the background on receive valid session</description>
 
139
      <description>
 
140
        When true, disable the background on receive valid session
 
141
      </description>
83
142
      <default>false</default>
84
143
    </key>
85
144
 
86
 
    <key type='b' name='use-upnp'>
 
145
    <key name='use-upnp' type='b'>
87
146
      <summary>Whether we should use UPNP to forward the port in routers</summary>
88
 
      <description>If true, we will use UPNP protocol to automatically forward the port used by vino in the router.</description>
 
147
      <description>
 
148
        If true, we will use UPNP protocol to automatically forward the
 
149
        port used by vino in the router.
 
150
      </description>
89
151
      <default>false</default>
90
152
    </key>
91
153
 
92
 
    <key type='b' name='disable-xdamage'>
 
154
    <key name='disable-xdamage' type='b'>
93
155
      <summary>Whether we should disable the XDamage extension of X.org</summary>
94
 
      <description>If true, we will not use the XDamage extension of X.org. This extension does not work properly on some video drivers when using 3D effects. Disabling it will make vino work on these environments with a slower rendering as side effect.</description>
 
156
      <description>
 
157
        If true, we will not use the XDamage extension of X.org. This
 
158
        extension does not work properly on some video drivers when
 
159
        using 3D effects.  Disabling it will make vino work on these
 
160
        environments with a slower rendering as side effect.
 
161
      </description>
95
162
      <default>false</default>
96
163
    </key>
97
164
 
98
 
    <key type='b' name='notify-on-connect'>
 
165
    <key name='notify-on-connect' type='b'>
99
166
      <summary>Notify on connect</summary>
100
 
      <description>If true, we will notify, when the user connects to the system.</description>
 
167
      <description>
 
168
        If true, we will notify, when the user connects to the system.
 
169
      </description>
101
170
      <default>true</default>
102
171
    </key>
103
172
  </schema>
104
 
</schemalist>
 
 
b'\\ No newline at end of file'
 
173
</schemalist>
 
174