Mercurial > 510Connectbot
annotate res/xml/host_prefs.xml @ 72:8181cb01c64d tn5250
use 5250 encryption config entry
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 13 Jun 2014 19:15:26 -0700 |
parents | c8f45608d94c |
children | 3f587bd647a5 |
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" | |
133 android:singleLine="true" | |
134 /> | |
0 | 135 |
61 | 136 <EditTextPreference |
64
c8f45608d94c
add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents:
62
diff
changeset
|
137 android:key="emulation" |
61 | 138 android:title="@string/hostpref_emulation_title" |
62
aac8e0496ef9
add 5250 config entries
Carl Byington <carl@five-ten-sg.com>
parents:
61
diff
changeset
|
139 android:summary="@string/hostpref_emulation_summary" |
61 | 140 android:singleLine="true" |
141 /> | |
0 | 142 |
61 | 143 <ListPreference |
144 android:key="encryption5250" | |
145 android:title="@string/hostpref_5250_encryption_title" | |
146 android:entries="@array/list_5250_encryption_modes" | |
147 android:entryValues="@array/list_5250_encryption_modes" | |
148 /> | |
149 </PreferenceCategory> | |
0 | 150 |
61 | 151 |
152 <PreferenceCategory | |
153 android:title="@string/hostpref_x11_forwarding"> | |
0 | 154 |
61 | 155 <CheckBoxPreference |
156 android:key="wantx11forward" | |
157 android:title="@string/hostpref_wantx11forward_title" | |
158 android:summary="@string/hostpref_wantx11forward_summary" | |
159 /> | |
0 | 160 |
61 | 161 <EditTextPreference |
162 android:key="x11host" | |
163 android:title="@string/hostpref_x11host_title" | |
164 android:singleLine="true" | |
165 /> | |
0 | 166 |
61 | 167 <EditTextPreference |
168 android:key="x11port" | |
169 android:title="@string/hostpref_x11port_title" | |
170 android:numeric="integer" | |
171 /> | |
0 | 172 |
61 | 173 </PreferenceCategory> |
0 | 174 |
175 </PreferenceScreen> |