1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 """\
21 L{X2GoSessionProfiles} class - managing x2goclient session profiles.
22
23 L{X2GoSessionProfiles} is a public API class. Use this class in your Python X2Go based
24 applications.
25
26 """
27 __NAME__ = 'x2gosessionprofiles-pylib'
28
29
30 import copy
31
32
33 from x2go.defaults import X2GO_SESSIONPROFILE_DEFAULTS
34 import x2go.backends.profiles.base as base
35 import x2go.log as log
36
37 from x2go.x2go_exceptions import X2GoNotImplementedYetException
38
40
41 defaultSessionProfile = copy.deepcopy(X2GO_SESSIONPROFILE_DEFAULTS)
42 _non_profile_sections = ('embedded')
43
45 """\
46 Retrieve X2Go session profiles from the Windows registry.
47
48 @param session_profile_defaults: a default session profile
49 @type session_profile_defaults: C{dict}
50 @param logger: you can pass an L{X2GoLogger} object to the
51 L{X2GoSessionProfilesWINREG} constructor
52 @type logger: L{X2GoLogger} instance
53 @param loglevel: if no L{X2GoLogger} object has been supplied a new one will be
54 constructed with the given loglevel
55 @type loglevel: C{int}
56
57 """
58 raise X2GoNotImplementedYetException('WINREG backend support is not implemented yet')
59