-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathh3270-config.xml
78 lines (69 loc) · 2.98 KB
/
h3270-config.xml
1
2
3
4
5
6
7
8
9
10
11
12
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="ISO-8859-1" ?>
<h3270>
<!-- path used to locate the s3270 executable -->
<exec-path>/usr/bin</exec-path>
<!-- path to style directory -->
<!-- it is assumed that the directory contains the files -->
<!-- head.jsp, navbar.jsp and stylesheet.jsp -->
<!-- uncomment the following property as example and check -->
<!-- the contents of webapp/it-fws -->
<!-- try "h3270" as a different example -->
<!-- defaults to NO style -->
<!--
<style>it-fws</style>
-->
<!--
<s3270-options>
<charset>german</charset>
<model>3</model>
</s3270-options>
-->
<!-- Use this to let users connect only to a single host -->
<!--
<target-host autoconnect="false">your.host.here</target-host>
-->
<!-- list of available fonts -->
<fonts default="courier">
<font name="courier" description="Courier" />
<font name="freemono" description="Free Mono" />
<font name="terminal" description="Terminal" />
<font name="couriernew" description="Courier New" />
<font name="monospace" description="Monospace" />
</fonts>
<!-- list of available colorschemes -->
<!-- {p|u}: protected/unprotected -->
<!-- {n|i|h}: normal/intensified/hidden -->
<!-- {fg|bg}: foreground/background -->
<!-- example: pifg means protected intensified foreground -->
<colorschemes default="White Background">
<scheme name="White Background" pnfg="black" pnbg="white"
pifg="blue" pibg="white" phfg="white" phbg="white" unfg="green"
unbg="lightgrey" uifg="red" uibg="lightgrey" uhfg="red"
uhbg="lightgrey" />
<scheme name="Dark Background" pnfg="cyan" pnbg="black"
pifg="white" pibg="black" phfg="black" phbg="black" unfg="lime"
unbg="#282828" uifg="red" uibg="#282828" uhfg="red"
uhbg="#282828" />
<scheme name="Amber" pnfg="orange" pnbg="black" pifg="white"
pibg="black" phfg="black" phbg="black" unfg="white"
unbg="#282828" uifg="red" uibg="#282828" uhfg="orange"
uhbg="#282828" />
<scheme name="Black and White" pnfg="black" pnbg="white"
pifg="black" pibg="white" phfg="white" phbg="white"
unfg="black" unbg="lightgrey" uifg="black" uibg="lightgrey"
uhfg="black" uhbg="lightgrey" />
<!--
Will soon rework the scheme element so that it optionally
supports the following format as well, AS.
<scheme name="Amber">
<protected>
<normal background="black" foreground="orange"/>
<hidden background="black" foreground="black"/>
<intensified background="black" foreground="white"/>
</protected>
<unprotected>
</unprotected>
</scheme>
-->
</colorschemes>
</h3270>