Mercurial > 510Connectbot
annotate 510Connectbot.connections @ 519:609c9990c9fb
add more debug code
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 31 May 2024 14:35:00 -0600 |
parents | e1dd1fd46e18 |
children | b61919d8a701 |
rev | line source |
---|---|
132
265a4733edcb
read deployment.connections on startup for new host entries
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
1 # |
202
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
2 # available host keys: |
132
265a4733edcb
read deployment.connections on startup for new host entries
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
3 # |
202
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
4 # nickname (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
5 # color (string) ("red", "green", "blue", "gray") |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
6 # fontsize (float) |
244
32737a428805
add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents:
202
diff
changeset
|
7 # fixed_size (boolean) |
32737a428805
add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents:
202
diff
changeset
|
8 # fixed_width (integer) |
32737a428805
add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents:
202
diff
changeset
|
9 # fixed_height (integer) |
202
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
10 # pubkeyid (integer) (-2, -1) -2=none, -1=any |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
11 # useauthagent (string) ("no", "confirm", "yes") |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
12 # postlogin (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
13 # compression (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
14 # httpproxy (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
15 # wantsession (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
16 # stayconnected (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
17 # delkey (string) ("del", "backspace") |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
18 # encoding (string) ("UTF-8", etc) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
19 # username (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
20 # hostname (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
21 # port (integer) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
22 # monitor (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
23 # emulation (string) ("xterm-color", "xterm-256color", "xterm", "vt100", "ansi", "screen", or other answerback string) |
509
2eb4fa13b9ef
update 5250 encryption to allow TLS1.3, remove old SSLv2 and SSLv3 methods
Carl Byington <carl@five-ten-sg.com>
parents:
473
diff
changeset
|
24 # encryption5250 (string) ("NONE", "TLSv1.2", "TLSv1.3") |
202
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
25 # library5250 (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
26 # menu5250 (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
27 # program5250 (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
28 # wantx11forward (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
29 # x11host (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
30 # x11port (integer) |
473
ece82b571900
add fg/bg color setting to global:// section of deployment.connections file
Carl Byington <carl@five-ten-sg.com>
parents:
359
diff
changeset
|
31 # autolaunch (boolean) |
132
265a4733edcb
read deployment.connections on startup for new host entries
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
32 |
265a4733edcb
read deployment.connections on startup for new host entries
Carl Byington <carl@five-ten-sg.com>
parents:
diff
changeset
|
33 |
202
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
34 # |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
35 # global settings are under global:// tag |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
36 # |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
37 # available global keys: |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
38 # |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
39 # memkeys (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
40 # connPersist (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
41 # emulation (string) ("xterm-color", "xterm-256color", "xterm", "vt100", "ansi", "screen") |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
42 # scrollback (integer) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
43 # rotation (string) ("Default", "Force landscape", "Force portrait", "Automatic") |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
44 # shiftfkeys (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
45 # ctrlfkeys (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
46 # keymode (string) ("Use right-side keys", "Use left-side keys", "none") |
244
32737a428805
add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents:
202
diff
changeset
|
47 # camera (string) ("CTRL", "Esc", "Tab", "Screen Capture", "Ctrl+A then Space", "Ctrl+A", "Esc+A", "Monitor Key", "Soft Function Keypad", "Increase Font Size", "Decrease Font Size", "None") |
32737a428805
add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents:
202
diff
changeset
|
48 # volup (string) ("CTRL", "Esc", "Tab", "Screen Capture", "Ctrl+A then Space", "Ctrl+A", "Esc+A", "Monitor Key", "Soft Function Keypad", "Increase Font Size", "Decrease Font Size", "None") |
32737a428805
add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents:
202
diff
changeset
|
49 # voldn (string) ("CTRL", "Esc", "Tab", "Screen Capture", "Ctrl+A then Space", "Ctrl+A", "Esc+A", "Monitor Key", "Soft Function Keypad", "Increase Font Size", "Decrease Font Size", "None") |
32737a428805
add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents:
202
diff
changeset
|
50 # search (string) ("CTRL", "Esc", "Tab", "Screen Capture", "Ctrl+A then Space", "Ctrl+A", "Esc+A", "Monitor Key", "Soft Function Keypad", "Increase Font Size", "Decrease Font Size", "None") |
32737a428805
add host preference for fixed screen size
Carl Byington <carl@five-ten-sg.com>
parents:
202
diff
changeset
|
51 # ptt (string) ("CTRL", "Esc", "Tab", "Screen Capture", "Ctrl+A then Space", "Ctrl+A", "Esc+A", "Monitor Key", "Soft Function Keypad", "Increase Font Size", "Decrease Font Size", "None") |
202
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
52 # keepalive (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
53 # wifilock (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
54 # bumpyarrows (boolean) |
359
93621e963303
allow eula agreement to be set from deployment.connections
Carl Byington <carl@five-ten-sg.com>
parents:
272
diff
changeset
|
55 # eula (boolean) |
202
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
56 # extended_longpress (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
57 # ctrl_string (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
58 # picker_string (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
59 # picker_keep_open (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
60 # list_custom_keymap (string) ("none", "full", "asus_tf", "sgh_i927", "sgh_i927_ics", "se_xppro") |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
61 # bell (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
62 # bellVolume (float) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
63 # bellVibrate (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
64 # bellNotification (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
65 # screen_capture_folder (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
66 # screen_capture_popup (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
67 # file_dialog (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
68 # download_folder (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
69 # remote_upload_folder (string) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
70 # upload_dest_prompt (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
71 # background_file_transfer (boolean) |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
72 # debug_keycodes (boolean) |
473
ece82b571900
add fg/bg color setting to global:// section of deployment.connections file
Carl Byington <carl@five-ten-sg.com>
parents:
359
diff
changeset
|
73 # delete_deployment (boolean) |
ece82b571900
add fg/bg color setting to global:// section of deployment.connections file
Carl Byington <carl@five-ten-sg.com>
parents:
359
diff
changeset
|
74 # fg_color (integer) (1 based just as shown by color activity) |
ece82b571900
add fg/bg color setting to global:// section of deployment.connections file
Carl Byington <carl@five-ten-sg.com>
parents:
359
diff
changeset
|
75 # bg_color (integer) (1 based just as shown by color activity) |
202
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
76 # |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
77 |
511
6dbddfa27f6c
update connections file
Carl Byington <carl@five-ten-sg.com>
parents:
509
diff
changeset
|
78 |
6dbddfa27f6c
update connections file
Carl Byington <carl@five-ten-sg.com>
parents:
509
diff
changeset
|
79 tn5250://pub400.com:23#pub400 |
6dbddfa27f6c
update connections file
Carl Byington <carl@five-ten-sg.com>
parents:
509
diff
changeset
|
80 encryption5250=TLSv1.3 |
6dbddfa27f6c
update connections file
Carl Byington <carl@five-ten-sg.com>
parents:
509
diff
changeset
|
81 fontsize=20 |
6dbddfa27f6c
update connections file
Carl Byington <carl@five-ten-sg.com>
parents:
509
diff
changeset
|
82 fixed_size=true |
6dbddfa27f6c
update connections file
Carl Byington <carl@five-ten-sg.com>
parents:
509
diff
changeset
|
83 fixed_width=40 |
6dbddfa27f6c
update connections file
Carl Byington <carl@five-ten-sg.com>
parents:
509
diff
changeset
|
84 fixed_height=25 |
6dbddfa27f6c
update connections file
Carl Byington <carl@five-ten-sg.com>
parents:
509
diff
changeset
|
85 |
202
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
86 global:// |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
87 emulation=xterm-256color |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
88 scrollback=200 |
511
6dbddfa27f6c
update connections file
Carl Byington <carl@five-ten-sg.com>
parents:
509
diff
changeset
|
89 rotation=Force portrait |
202
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
90 camera=None |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
91 volup=Soft Function Keypad |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
92 voldn=Tab |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
93 search=None |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
94 ptt=Monitor Key |
359
93621e963303
allow eula agreement to be set from deployment.connections
Carl Byington <carl@five-ten-sg.com>
parents:
272
diff
changeset
|
95 eula=true |
511
6dbddfa27f6c
update connections file
Carl Byington <carl@five-ten-sg.com>
parents:
509
diff
changeset
|
96 delete_deployment=false |
473
ece82b571900
add fg/bg color setting to global:// section of deployment.connections file
Carl Byington <carl@five-ten-sg.com>
parents:
359
diff
changeset
|
97 fg_color=11 |
ece82b571900
add fg/bg color setting to global:// section of deployment.connections file
Carl Byington <carl@five-ten-sg.com>
parents:
359
diff
changeset
|
98 bg_color=1 |
202
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
99 |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
100 # |
b16288cbad37
configure hardware buttons for showing soft function keypad
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
101 # end |