Mercurial > 510Connectbot
annotate res/xml/host_prefs.xml @ 219:c438c2ff0052
remove unnecessary socket run dry flagging
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 08 Jul 2014 10:46:40 -0700 |
parents | 446dbcf606eb |
children | dc6e53600ae2 |
rev | line source |
---|---|
0 | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- | |
3 /* | |
4 * ConnectBot: simple, powerful, open-source SSH client for Android | |
5 * Copyright 2007 Kenny Root, Jeffrey Sharkey | |
6 * | |
7 * Licensed under the Apache License, Version 2.0 (the "License"); | |
8 * you may not use this file except in compliance with the License. | |
9 * You may obtain a copy of the License at | |
10 * | |
11 * http://www.apache.org/licenses/LICENSE-2.0 | |
12 * | |
13 * Unless required by applicable law or agreed to in writing, software | |
14 * distributed under the License is distributed on an "AS IS" BASIS, | |
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
16 * See the License for the specific language governing permissions and | |
17 * limitations under the License. | |
18 */ | |
19 --> | |
20 | |
21 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> | |
22 | |
61 | 23 <EditTextPreference |
24 android:key="nickname" | |
25 android:title="@string/hostpref_nickname_title" | |
26 android:singleLine="true" | |
27 /> | |
0 | 28 |
61 | 29 <ListPreference |
30 android:key="color" | |
31 android:title="@string/hostpref_color_title" | |
32 android:entries="@array/list_colors" | |
33 android:entryValues="@array/list_color_values" | |
34 /> | |
0 | 35 |
61 | 36 <EditTextPreference |
37 android:key="fontsize" | |
38 android:title="@string/hostpref_fontsize_title" | |
39 android:inputType="number" | |
40 android:singleLine="true" | |
41 /> | |
0 | 42 |
43 <!-- | |
61 | 44 <CheckBoxPreference |
45 android:key="usekeys" | |
46 android:title="Use SSH keys" | |
47 /> | |
0 | 48 --> |
49 | |
61 | 50 <ListPreference |
51 android:key="pubkeyid" | |
52 android:title="@string/hostpref_pubkeyid_title" | |
53 android:entries="@array/list_pubkeyids" | |
54 android:entryValues="@array/list_pubkeyids_value" | |
55 /> | |
0 | 56 |
61 | 57 <ListPreference |
58 android:key="useauthagent" | |
59 android:title="@string/hostpref_authagent_title" | |
60 android:entries="@array/list_authagent" | |
61 android:entryValues="@array/list_authagent_values" | |
62 /> | |
0 | 63 |
61 | 64 <EditTextPreference |
65 android:key="postlogin" | |
66 android:title="@string/hostpref_postlogin_title" | |
67 android:summary="@string/hostpref_postlogin_summary" | |
68 /> | |
0 | 69 |
61 | 70 <CheckBoxPreference |
71 android:key="compression" | |
72 android:title="@string/hostpref_compression_title" | |
73 android:summary="@string/hostpref_compression_summary" | |
74 /> | |
0 | 75 |
61 | 76 <EditTextPreference |
77 android:key="httpproxy" | |
78 android:title="@string/hostpref_httpproxy_title" | |
79 android:summary="@string/hostpref_httpproxy_summary" | |
80 android:inputType="textUri" | |
81 /> | |
0 | 82 |
61 | 83 <CheckBoxPreference |
84 android:key="wantsession" | |
85 android:title="@string/hostpref_wantsession_title" | |
86 android:summary="@string/hostpref_wantsession_summary" | |
87 /> | |
0 | 88 |
61 | 89 <CheckBoxPreference |
90 android:key="stayconnected" | |
91 android:title="@string/hostpref_stayconnected_title" | |
92 android:summary="@string/hostpref_stayconnected_summary" | |
93 /> | |
0 | 94 |
61 | 95 <ListPreference |
96 android:key="delkey" | |
97 android:title="@string/hostpref_delkey_title" | |
98 android:summary="@string/hostpref_delkey_summary" | |
99 android:entries="@array/list_delkey" | |
100 android:entryValues="@array/list_delkey_values" | |
101 /> | |
102 | |
103 <ListPreference | |
104 android:key="encoding" | |
105 android:title="@string/hostpref_encoding_title" | |
106 android:summary="@string/hostpref_encoding_summary" | |
107 /> | |
108 | |
109 <PreferenceCategory | |
110 android:title="@string/hostpref_connection_category"> | |
0 | 111 |
61 | 112 <EditTextPreference |
113 android:key="username" | |
114 android:title="@string/hostpref_username_title" | |
115 android:singleLine="true" | |
116 /> | |
0 | 117 |
61 | 118 <EditTextPreference |
119 android:key="hostname" | |
120 android:title="@string/hostpref_hostname_title" | |
121 android:singleLine="true" | |
122 /> | |
0 | 123 |
61 | 124 <EditTextPreference |
125 android:key="port" | |
126 android:title="@string/hostpref_port_title" | |
127 android:numeric="integer" | |
128 /> | |
0 | 129 |
61 | 130 <EditTextPreference |
131 android:key="monitor" | |
132 android:title="@string/hostpref_monitor_title" | |
90
3f587bd647a5
convert ctrl keys to virtual keys; use proper android home directory
Carl Byington <carl@five-ten-sg.com>
parents:
64
diff
changeset
|
133 android:summary="@string/hostpref_monitor_summary" |
61 | 134 android:singleLine="true" |
135 /> | |
0 | 136 |
61 | 137 <EditTextPreference |
64
c8f45608d94c
add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents:
62
diff
changeset
|
138 android:key="emulation" |
61 | 139 android:title="@string/hostpref_emulation_title" |
62
aac8e0496ef9
add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
140 android:summary="@string/hostpref_emulation_summary" |
61 | 141 android:singleLine="true" |
142 /> | |
123
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
143 </PreferenceCategory> |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
144 |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
145 |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
146 <PreferenceCategory |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
147 android:key="5250" |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
148 android:title="@string/hostpref_5250_settings"> |
0 | 149 |
61 | 150 <ListPreference |
151 android:key="encryption5250" | |
152 android:title="@string/hostpref_5250_encryption_title" | |
153 android:entries="@array/list_5250_encryption_modes" | |
154 android:entryValues="@array/list_5250_encryption_modes" | |
155 /> | |
123
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
156 |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
157 <EditTextPreference |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
158 android:key="library5250" |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
159 android:title="@string/hostpref_5250_library_title" |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
160 android:singleLine="true" |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
161 /> |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
162 |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
163 <EditTextPreference |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
164 android:key="menu5250" |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
165 android:title="@string/hostpref_5250_menu_title" |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
166 android:singleLine="true" |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
167 /> |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
168 |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
169 <EditTextPreference |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
170 android:key="program5250" |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
171 android:title="@string/hostpref_5250_program_title" |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
172 android:singleLine="true" |
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
173 /> |
61 | 174 </PreferenceCategory> |
0 | 175 |
61 | 176 |
177 <PreferenceCategory | |
123
446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
178 android:key="x11" |
61 | 179 android:title="@string/hostpref_x11_forwarding"> |
0 | 180 |
61 | 181 <CheckBoxPreference |
182 android:key="wantx11forward" | |
183 android:title="@string/hostpref_wantx11forward_title" | |
184 android:summary="@string/hostpref_wantx11forward_summary" | |
185 /> | |
0 | 186 |
61 | 187 <EditTextPreference |
188 android:key="x11host" | |
189 android:title="@string/hostpref_x11host_title" | |
190 android:singleLine="true" | |
191 /> | |
0 | 192 |
61 | 193 <EditTextPreference |
194 android:key="x11port" | |
195 android:title="@string/hostpref_x11port_title" | |
196 android:numeric="integer" | |
197 /> | |
0 | 198 |
61 | 199 </PreferenceCategory> |
0 | 200 |
201 </PreferenceScreen> |