13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
def getOptions (sContext="Python"):
"returns dictionary of options"
if sContext in dOpt:
return dOpt[sContext]
return dOpt["Python"]
lStructOpt = ${lStructOpt}
dOpt = {
"Python": ${dOptPython},
"Server": ${dOptServer},
"Writer": ${dOptWriter}
}
_dOptLabel = ${dOptLabel}
|
>
>
>
>
>
>
>
>
>
>
>
>
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
def getOptions (sContext="Python"):
"returns dictionary of options"
if sContext in dOpt:
return dOpt[sContext]
return dOpt["Python"]
def getOptionsColors (sContext="Python"):
"returns dictionary of options"
if sContext in dOptColor:
return dOptColor[sContext]
return dOptColor["Python"]
lStructOpt = ${lStructOpt}
dOpt = {
"Python": ${dOptPython},
"Server": ${dOptServer},
"Writer": ${dOptWriter}
}
dOptColor = {
"Python": ${dOptColorPython},
"Server": ${dOptColorServer},
"Writer": ${dOptColorWriter}
}
_dOptLabel = ${dOptLabel}
|