net-ssh 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +15 -0
- data/NEWS +3 -0
- data/bin/rb-keygen +0 -0
- data/lib/net/ssh/transport/packet-stream.rb +20 -7
- data/lib/net/ssh/version.rb +1 -1
- data/test/transport/tc_packet_stream.rb +1 -0
- metadata +49 -54
- data/doc/manual-html/chapter-1.html +0 -388
- data/doc/manual-html/chapter-2.html +0 -552
- data/doc/manual-html/chapter-3.html +0 -470
- data/doc/manual-html/chapter-4.html +0 -413
- data/doc/manual-html/chapter-5.html +0 -525
- data/doc/manual-html/chapter-6.html +0 -456
- data/doc/manual-html/chapter-7.html +0 -343
- data/doc/manual-html/index.html +0 -235
- data/doc/manual-html/stylesheets/manual.css +0 -270
- data/doc/manual-html/stylesheets/ruby.css +0 -17
|
@@ -1,270 +0,0 @@
|
|
|
1
|
-
body {
|
|
2
|
-
background: #FFF;
|
|
3
|
-
font-family: sans-serif;
|
|
4
|
-
color: #000;
|
|
5
|
-
margin: 0px;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
a {
|
|
9
|
-
color: #00F;
|
|
10
|
-
text-decoration: none;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
a:hover {
|
|
14
|
-
text-decoration: underline;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.product-manual {
|
|
18
|
-
text-align: center;
|
|
19
|
-
font-size: x-large;
|
|
20
|
-
font-variant: small-caps;
|
|
21
|
-
font-weight: bold;
|
|
22
|
-
color: #005;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.copyright {
|
|
26
|
-
text-align: center;
|
|
27
|
-
font-size: small;
|
|
28
|
-
font-style: italic;
|
|
29
|
-
color: #005;
|
|
30
|
-
margin-top: 1in;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
#banner {
|
|
34
|
-
background: #005;
|
|
35
|
-
color: #FFF;
|
|
36
|
-
border-bottom: 1px solid #000;
|
|
37
|
-
padding-top: 0.5em;
|
|
38
|
-
padding-bottom: 0.5em;
|
|
39
|
-
padding-left: 1em;
|
|
40
|
-
margin-bottom: 1em;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
#banner .title {
|
|
44
|
-
font-size: x-large;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
#banner .title:first-letter {
|
|
48
|
-
font-size: 250%;
|
|
49
|
-
font-weight: normal;
|
|
50
|
-
float: left;
|
|
51
|
-
margin-top: -7px;
|
|
52
|
-
margin-bottom: -7px;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
#banner .product {
|
|
56
|
-
font-weight: bold;
|
|
57
|
-
color: #FF7;
|
|
58
|
-
letter-spacing: 0.5em;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
#banner .tagline {
|
|
62
|
-
font-style: italic;
|
|
63
|
-
font-size: large;
|
|
64
|
-
letter-spacing: 0.1em;
|
|
65
|
-
color: #FFF;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
#banner .info {
|
|
69
|
-
color: white;
|
|
70
|
-
font-size: small;
|
|
71
|
-
padding-right: 1em;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
#content {
|
|
75
|
-
margin-left: 0cm;
|
|
76
|
-
margin-right: 1cm;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
#navigation {
|
|
80
|
-
font-size: x-small;
|
|
81
|
-
border-right: 2px groove black;
|
|
82
|
-
border-top: 2px groove black;
|
|
83
|
-
margin-right: 1em;
|
|
84
|
-
width: 200px;
|
|
85
|
-
height: 100%;
|
|
86
|
-
background: #FFD;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
#navigation ul, #navigation ol {
|
|
90
|
-
margin-left: 1.2em;
|
|
91
|
-
padding-left: 1.2em;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
#navigation .license {
|
|
95
|
-
font-size: x-small;
|
|
96
|
-
text-align: center;
|
|
97
|
-
border-top: 1px dashed #005;
|
|
98
|
-
margin-top: 2em;
|
|
99
|
-
padding: 1em;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.section {
|
|
103
|
-
margin-bottom: 1em;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.section p {
|
|
107
|
-
text-align: justify;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
#content h1 {
|
|
111
|
-
background: #005;
|
|
112
|
-
color: #FFF;
|
|
113
|
-
font-size: x-large;
|
|
114
|
-
font-weight: bold;
|
|
115
|
-
font-variant: small-caps;
|
|
116
|
-
padding: 0.5em;
|
|
117
|
-
border: 1px solid #000;
|
|
118
|
-
margin-top: 0px;
|
|
119
|
-
margin-bottom: 1em;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
#content h2 {
|
|
123
|
-
background: #005;
|
|
124
|
-
color: #FFF;
|
|
125
|
-
font-size: large;
|
|
126
|
-
font-weight: bold;
|
|
127
|
-
font-variant: small-caps;
|
|
128
|
-
padding: 0.25em;
|
|
129
|
-
padding-left: 0.5em;
|
|
130
|
-
border: 1px solid #000;
|
|
131
|
-
margin-bottom: 1em;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
#content h3 {
|
|
135
|
-
background: #FFD;
|
|
136
|
-
color: #000;
|
|
137
|
-
font-size: normal;
|
|
138
|
-
font-weight: bold;
|
|
139
|
-
font-variant: small-caps;
|
|
140
|
-
padding: 0.25em;
|
|
141
|
-
padding-left: 0.5em;
|
|
142
|
-
border: 1px dotted #000;
|
|
143
|
-
margin-bottom: 1em;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
#content h4 {
|
|
147
|
-
background: #FFE;
|
|
148
|
-
color: #000;
|
|
149
|
-
font-size: normal;
|
|
150
|
-
font-weight: bold;
|
|
151
|
-
font-variant: small-caps;
|
|
152
|
-
padding: 0.25em;
|
|
153
|
-
padding-left: 0.5em;
|
|
154
|
-
border: 1px dotted #777;
|
|
155
|
-
margin-bottom: 1em;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
#navigation h1 {
|
|
159
|
-
margin: 0px;
|
|
160
|
-
padding: 1em;
|
|
161
|
-
color: #005;
|
|
162
|
-
background: transparent;
|
|
163
|
-
font-weight: bold;
|
|
164
|
-
font-size: 150%;
|
|
165
|
-
font-variant: small-caps;
|
|
166
|
-
text-align: center;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
#navigation h2 {
|
|
170
|
-
margin: 0px;
|
|
171
|
-
margin-bottom: 1em;
|
|
172
|
-
padding: 0.5em;
|
|
173
|
-
border-top: 1px dashed #005;
|
|
174
|
-
border-bottom: 1px dashed #005;
|
|
175
|
-
color: #005;
|
|
176
|
-
background: transparent;
|
|
177
|
-
font-weight: bold;
|
|
178
|
-
font-size: 125%;
|
|
179
|
-
font-variant: small-caps;
|
|
180
|
-
text-align: center;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
table.list {
|
|
184
|
-
margin: 2em;
|
|
185
|
-
border: 1px solid black;
|
|
186
|
-
background: #FFD;
|
|
187
|
-
padding: 0px;
|
|
188
|
-
border-spacing: 0px;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
table.list th {
|
|
192
|
-
border-bottom: 1px solid #005;
|
|
193
|
-
padding-bottom: 5px;
|
|
194
|
-
background: #008;
|
|
195
|
-
color: white;
|
|
196
|
-
padding: 0.5em;
|
|
197
|
-
text-align: left;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
table.list td {
|
|
201
|
-
padding: 0.2em;
|
|
202
|
-
text-align: left;
|
|
203
|
-
vertical-align: top;
|
|
204
|
-
border-bottom: 1px solid;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
.prevnext {
|
|
208
|
-
padding: 0.5em 1em 0.5em 1em;
|
|
209
|
-
background: #557;
|
|
210
|
-
color: #FFF;
|
|
211
|
-
font-size: small;
|
|
212
|
-
font-weight: bold;
|
|
213
|
-
border: 1px solid #000;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.prevnext a {
|
|
217
|
-
color: #FF0;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
.top .prevnext {
|
|
221
|
-
margin: 0 0 1em 0;
|
|
222
|
-
text-align: left;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
.bottom .prevnext {
|
|
226
|
-
margin: 1em 0 0 0;
|
|
227
|
-
text-align: right;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
.figure {
|
|
231
|
-
border: 1px solid black;
|
|
232
|
-
line-height: normal;
|
|
233
|
-
background: #FFD;
|
|
234
|
-
margin: 2em;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
.figure .caption {
|
|
238
|
-
background: #008;
|
|
239
|
-
color: white;
|
|
240
|
-
font-weight: bold;
|
|
241
|
-
font-size: small;
|
|
242
|
-
padding: 4px 24px 4px 8px;
|
|
243
|
-
margin-left: -4px;
|
|
244
|
-
border: 1px dotted #77F;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.figure table {
|
|
248
|
-
padding-top: 0.8em;
|
|
249
|
-
padding-bottom: 0.5em;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.figure .body {
|
|
253
|
-
padding-left: 1em;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
.figure pre {
|
|
257
|
-
padding: 0px;
|
|
258
|
-
background: transparent;
|
|
259
|
-
border: none;
|
|
260
|
-
font-size: small;
|
|
261
|
-
font-family: monospace;
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
.figure .lineno {
|
|
265
|
-
text-align: right;
|
|
266
|
-
color: #B00;
|
|
267
|
-
font-family: monospace;
|
|
268
|
-
font-size: small;
|
|
269
|
-
padding-right: 1em;
|
|
270
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
.ruby .normal {}
|
|
2
|
-
.ruby .comment { color: #005; font-style: italic; }
|
|
3
|
-
.ruby .keyword { color: #A00; font-weight: bold; }
|
|
4
|
-
.ruby .method { color: #077; }
|
|
5
|
-
.ruby .class { color: #074; }
|
|
6
|
-
.ruby .module { color: #050; }
|
|
7
|
-
.ruby .punct { color: #447; font-weight: bold; }
|
|
8
|
-
.ruby .symbol { color: #099; }
|
|
9
|
-
.ruby .string { color: #944; }
|
|
10
|
-
.ruby .char { color: #F07; }
|
|
11
|
-
.ruby .ident { color: #004; }
|
|
12
|
-
.ruby .constant { color: #07F; }
|
|
13
|
-
.ruby .regex { color: #B66; }
|
|
14
|
-
.ruby .number { color: #D55; }
|
|
15
|
-
.ruby .attribute { color: #377; }
|
|
16
|
-
.ruby .global { color: #3B7; }
|
|
17
|
-
.ruby .expr { color: #227; }
|