~ubuntu-branches/ubuntu/raring/vino/raring-proposed

« back to all changes in this revision

Viewing changes to .pc/git_auth_methods_setting.patch/common/org.gnome.Vino.gschema.xml

  • Committer: Package Import Robot
  • Author(s): Ritesh Khadgaray
  • Date: 2013-03-20 22:12:06 UTC
  • Revision ID: package-import@ubuntu.com-20130320221206-my0ztfmn9esw59p8
Tags: 3.6.2-0ubuntu3
* debian/patches/git_auth_methods_setting.patch:  
  - incorrect schema setting used for authentication-methods in 
    vino server ( lp: #1027086)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<schemalist>
 
2
  <schema id='org.gnome.Vino' path='/desktop/gnome/remote-access/'>
 
3
    <key name='enabled' type='b'>
 
4
      <summary>Enable remote access to the desktop</summary>
 
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>
 
9
      <default>false</default>
 
10
    </key>
 
11
 
 
12
    <key name='prompt-enabled' type='b'>
 
13
      <summary>Prompt the user before completing a connection</summary>
 
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>
 
20
      <default>true</default>
 
21
    </key>
 
22
 
 
23
    <key name='view-only' type='b'>
 
24
      <summary>Only allow remote users to view the desktop</summary>
 
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>
 
30
      <default>false</default>
 
31
    </key>
 
32
 
 
33
    <key name='network-interface' type='s'>
 
34
      <summary>Network interface for listening</summary>
 
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>
 
41
      <default>''</default>
 
42
    </key>
 
43
 
 
44
    <key name='use-alternative-port' type='b'>
 
45
      <summary>Listen on an alternative port</summary>
 
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>
 
51
      <default>false</default>
 
52
    </key>
 
53
 
 
54
    <key name='alternative-port' type='q'>
 
55
      <summary>Alternative port number</summary>
 
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>
 
61
      <default>5900</default>
 
62
    </key>
 
63
 
 
64
    <key name='require-encryption' type='b'>
 
65
      <summary>Require encryption</summary>
 
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>
 
72
      <default>false</default>
 
73
    </key>
 
74
 
 
75
    <key name='authentication-methods' type='as'>
 
76
      <summary>Allowed authentication methods</summary>
 
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>
 
86
      <choices>
 
87
        <choice value='none'/>
 
88
        <choice value='vnc'/>
 
89
      </choices>
 
90
      <default>['none']</default>
 
91
    </key>
 
92
 
 
93
    <key name='vnc-password' type='s'>
 
94
      <summary>Password required for "vnc" authentication</summary>
 
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>
 
103
      <default>'keyring'</default>
 
104
    </key>
 
105
 
 
106
    <key name='mailto' type='s'>
 
107
      <summary>E-mail address to which the remote desktop URL should be sent</summary>
 
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>
 
113
      <default>''</default>
 
114
    </key>
 
115
 
 
116
    <key name='lock-screen-on-disconnect' type='b'>
 
117
      <summary>Lock the screen when last user disconnect</summary>
 
118
      <description>
 
119
        If true, screen will be locked after the last remote client
 
120
        disconnect.
 
121
      </description>
 
122
      <default>false</default>
 
123
    </key>
 
124
 
 
125
    <key name='icon-visibility' enum="org.gnome.Vino.VinoIconVisibility">
 
126
      <summary>When the status icon should be shown</summary>
 
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>
 
134
      <default>'client'</default>
 
135
    </key>
 
136
 
 
137
    <key name='disable-background' type='b'>
 
138
      <summary>When true, disable the background on receive valid session</summary>
 
139
      <description>
 
140
        When true, disable the background on receive valid session
 
141
      </description>
 
142
      <default>false</default>
 
143
    </key>
 
144
 
 
145
    <key name='use-upnp' type='b'>
 
146
      <summary>Whether we should use UPNP to forward the port in routers</summary>
 
147
      <description>
 
148
        If true, we will use UPNP protocol to automatically forward the
 
149
        port used by vino in the router.
 
150
      </description>
 
151
      <default>false</default>
 
152
    </key>
 
153
 
 
154
    <key name='disable-xdamage' type='b'>
 
155
      <summary>Whether we should disable the XDamage extension of X.org</summary>
 
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>
 
162
      <default>false</default>
 
163
    </key>
 
164
 
 
165
    <key name='notify-on-connect' type='b'>
 
166
      <summary>Notify on connect</summary>
 
167
      <description>
 
168
        If true, we will notify, when the user connects to the system.
 
169
      </description>
 
170
      <default>true</default>
 
171
    </key>
 
172
  </schema>
 
173
</schemalist>
 
174