forked from paramiko/paramiko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.1
2928 lines (1952 loc) · 82.2 KB
/
ChangeLog.1
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# do not edit -- automatically generated by arch changelog
# arch-tag: [email protected]/secsh--dev--1.0
#
2005-04-18 00:53:57 GMT Robey Pointer <[email protected]> patch-164
Summary:
fix some docs
Revision:
secsh--dev--1.0--patch-164
remove some epydoc comments about fileno() being non-portable.
modified files:
paramiko/channel.py
2005-04-18 00:30:52 GMT Robey Pointer <[email protected]> patch-163
Summary:
add SFTPClient.close()
Revision:
secsh--dev--1.0--patch-163
add SFTPClient.close() and add a simple little unit test for it.
modified files:
paramiko/sftp_client.py tests/test_sftp.py
2005-04-18 00:11:34 GMT Robey Pointer <[email protected]> patch-162
Summary:
avoid os.environ['HOME'] in the demos
Revision:
secsh--dev--1.0--patch-162
avoid using os.environ['HOME'], which will never work on windows, and
use os.path.expanduser() instead. it's semi-moot because windows doesn't
have a standard location for ssh files, but i think paramiko should set a
good example anyway.
modified files:
demo.py demo_simple.py
2005-04-16 23:38:22 GMT Robey Pointer <[email protected]> patch-161
Summary:
integrated laptop work (test commit)
Revision:
secsh--dev--1.0--patch-161
Patches applied:
* [email protected]/secsh--dev--1.0--base-0
tag of [email protected]/secsh--dev--1.0--patch-160
* [email protected]/secsh--dev--1.0--patch-1
test commit
* [email protected]/secsh--dev--1.0--base-0
initial import
* [email protected]/secsh--dev--1.0--patch-1
no changes
modified files:
README paramiko/server.py
new patches:
[email protected]/secsh--dev--1.0--base-0
[email protected]/secsh--dev--1.0--patch-1
2005-04-10 00:46:41 GMT Robey Pointer <[email protected]> patch-160
Summary:
1.3 marowak
Revision:
secsh--dev--1.0--patch-160
bump version to 1.3 / marowak
modified files:
Makefile README paramiko/__init__.py paramiko/transport.py
setup.py
2005-04-10 00:39:18 GMT Robey Pointer <[email protected]> patch-159
Summary:
clean up SFTPAttributes.__repr__
Revision:
secsh--dev--1.0--patch-159
clean up SFTPAttributes repr() a bit.
modified files:
paramiko/sftp_attr.py
2005-04-10 00:13:54 GMT Robey Pointer <[email protected]> patch-158
Summary:
remove ChangeLog from MANIFEST.in
Revision:
secsh--dev--1.0--patch-158
remove ChangeLog from the dist list.
modified files:
MANIFEST.in
2005-04-06 07:24:28 GMT Robey Pointer <[email protected]> patch-157
Summary:
change SubsystemHandler/SFTPServerInterface API
Revision:
secsh--dev--1.0--patch-157
change the API of SubsystemHandler to accept a reference to the
ServerInstance object during construction. this will break all code
that currently creates subsystem handlers (like sftp servers) -- sorry!
lots of little doc fixups (mostly indenting).
modified files:
paramiko/server.py paramiko/sftp_server.py paramiko/sftp_si.py
paramiko/transport.py tests/stub_sftp.py
2005-03-26 05:53:00 GMT Robey Pointer <[email protected]> patch-156
Summary:
rewrite channel pipes to work on windows
Revision:
secsh--dev--1.0--patch-156
the pipe system i was using for simulating an os-level FD (for select) was
retarded. i realized this week that i could just use a single byte in the
pipe to signal "data is ready" and not try to feed all incoming data thru
the pipe -- and then i don't have to try to make the pipe non-blocking (which
should make it work on windows). a lot of duplicate code got removed and now
it's all going thru the same code-path on read.
there's still a slight penalty on incoming feeds and calling 'recv' when a
pipe has been opened (by calling 'fileno'), but it's tiny.
removed a bunch of documentation and comments about things not working on
windows, since i think they probably do now.
removed files:
.arch-ids/demo_windows.py.id demo_windows.py
modified files:
MANIFEST.in README paramiko/channel.py
2005-03-25 20:06:56 GMT Robey Pointer <[email protected]> patch-155
Summary:
fix sending of large sftp packet sizes
Revision:
secsh--dev--1.0--patch-155
fix a bug where packets larger than about 12KB would cause the session to
die on platforms other than osx. turns out that on most platforms, setting a
socket timeout also causes timeouts to occur on writes (but not on osx). so
on a huge write, once the os buffers were full, paramiko would get a
socket.timeout exception when writing, and bail.
since the timeout is primarily so we can periodically poll to see if the
session has been killed from elsewhere, do that on a timeout but otherwise
continue trying to write. large packet sizes (in sftp) should now work.
modified files:
paramiko/transport.py
2005-02-28 08:06:08 GMT Robey Pointer <[email protected]> patch-154
Summary:
even better 1.2 lapras
Revision:
secsh--dev--1.0--patch-154
re-bump the version # to 1.2 (with a new date since i added more stuff).
add 2005 to the copyright date in a bunch of files.
modified files:
Makefile README demo.py demo_server.py demo_simple.py
demo_windows.py forward.py paramiko/__init__.py
paramiko/auth_transport.py paramiko/ber.py paramiko/channel.py
paramiko/common.py paramiko/dsskey.py paramiko/file.py
paramiko/kex_gex.py paramiko/kex_group1.py
paramiko/logging22.py paramiko/message.py paramiko/pkey.py
paramiko/primes.py paramiko/rsakey.py paramiko/server.py
paramiko/sftp.py paramiko/sftp_attr.py paramiko/sftp_client.py
paramiko/sftp_handle.py paramiko/sftp_server.py
paramiko/sftp_si.py paramiko/ssh_exception.py
paramiko/transport.py paramiko/util.py setup.py test.py
tests/loop.py tests/stub_sftp.py tests/test_file.py
tests/test_kex.py tests/test_message.py tests/test_pkey.py
tests/test_sftp.py tests/test_transport.py
2005-02-28 07:49:56 GMT Robey Pointer <[email protected]> patch-153
Summary:
tweak sftp_file write behavior on large blocks of data
Revision:
secsh--dev--1.0--patch-153
BufferedFile.write() wasn't correctly dealing with the possibility that the
underlying write might not write the entire data block at once (even though
the docs said it would). now that it's working, make sftp_file take
advantage of it in order to chop up blocks larger than 32kB (the max allowed
on sftp) and add a unit test for it.
modified files:
paramiko/file.py paramiko/sftp_file.py tests/test_sftp.py
2005-02-28 07:17:21 GMT Robey Pointer <[email protected]> patch-152
Summary:
little doc fixes
Revision:
secsh--dev--1.0--patch-152
stupid little doc fixups that didn't fit with the other patches.
modified files:
paramiko/auth_transport.py tests/loop.py
2005-02-28 07:16:22 GMT Robey Pointer <[email protected]> patch-151
Summary:
fix race in transport thread startup
Revision:
secsh--dev--1.0--patch-151
set active=True from the methods that start the main transport thread, right
before actually starting the thread. this avoids a race where the main
thread could be started, but the original thread could wake up from the
event.wait(0.1) before the new thread actually set the transport active.
impossible, you say? no machines so slow exist? au contraire, my sad
little linux box faced this problem earlier today.
modified files:
paramiko/transport.py
2005-02-28 07:14:11 GMT Robey Pointer <[email protected]> patch-150
Summary:
when combining stderr with stdout on a channel, merge the buffers too
Revision:
secsh--dev--1.0--patch-150
when turning on combine-stderr mode on a channel, grab the channel lock and
feed any existing stderr buffer into the normal buffer. this should help
applications (and my unit tests) avoid races between data coming in over
stderr and setting combine-stderr.
_send_eof is now slightly safer too, although i don't think that really fixed
anything. it just makes me feel better.
modified files:
paramiko/channel.py
2005-02-28 07:09:02 GMT Robey Pointer <[email protected]> patch-149
Summary:
add thread ids to logs
Revision:
secsh--dev--1.0--patch-149
add a logging filter that reports the thread-id of the logger, and use
that for all paramiko logging. since thread-local stuff didn't appear
until python 2.4, i hacked up my own little version to assign incrementing
numbers to threads as they log.
modified files:
paramiko/channel.py paramiko/sftp.py paramiko/sftp_client.py
paramiko/sftp_server.py paramiko/transport.py paramiko/util.py
2005-02-26 21:12:43 GMT Robey Pointer <[email protected]> patch-148
Summary:
forgot to check in stub_sftp
Revision:
secsh--dev--1.0--patch-148
yikes! don't forget to check this in: needed for unit tests.
new files:
tests/.arch-ids/stub_sftp.py.id tests/stub_sftp.py
2005-02-26 21:11:04 GMT Robey Pointer <[email protected]> patch-147
Summary:
1.2 (lapras)
Revision:
secsh--dev--1.0--patch-147
bump version stuff to 1.2 / lapras.
modified files:
Makefile README paramiko/__init__.py paramiko/transport.py
setup.py
2005-02-15 15:48:47 GMT Robey Pointer <[email protected]> patch-146
Summary:
raise better exception on empty key
Revision:
secsh--dev--1.0--patch-146
raise a clearer exception when trying to create an empty key.
modified files:
README paramiko/dsskey.py paramiko/rsakey.py
tests/test_transport.py
2005-02-15 15:47:02 GMT Robey Pointer <[email protected]> patch-145
Summary:
add methods for sending/receiving a channel's exit status
Revision:
secsh--dev--1.0--patch-145
track a channel's exit status and provide a method (recv_exit_status) to
block waiting for it to arrive. also provide a convenience method for
servers to send it (send_exit_status). add shutdown_read and shutdown_write.
fix a bug in sending window change requests.
modified files:
README paramiko/channel.py paramiko/transport.py
2005-02-06 23:32:22 GMT Robey Pointer <[email protected]> patch-144
Summary:
fix docs
Revision:
secsh--dev--1.0--patch-144
clean up some of the docs.
modified files:
README paramiko/pkey.py paramiko/sftp_attr.py
2005-02-06 23:30:40 GMT Robey Pointer <[email protected]> patch-143
Summary:
fix an sftp unit test
Revision:
secsh--dev--1.0--patch-143
fix one of the sftp unit tests to actually work.
modified files:
tests/test_sftp.py
2005-02-05 07:45:20 GMT Robey Pointer <[email protected]> patch-142
Summary:
fix windows sample script's HOME
Revision:
secsh--dev--1.0--patch-142
fix the HOME environ var to work on windows too.
modified files:
demo_windows.py
2005-01-25 05:17:55 GMT Robey Pointer <[email protected]> patch-141
Summary:
misc logging fixes
Revision:
secsh--dev--1.0--patch-141
change the level of some log messages so interesting stuff gets logged at
info instead of debug. fix an oops where channels defaulted to being in
ultra debug mode, and make this mode depend on a new Transport method:
"set_hexdump".
modified files:
paramiko/auth_transport.py paramiko/channel.py
paramiko/sftp.py paramiko/sftp_client.py
paramiko/sftp_server.py paramiko/transport.py
2005-01-17 10:09:09 GMT Robey Pointer <[email protected]> patch-140
Summary:
more flexible logging
Revision:
secsh--dev--1.0--patch-140
some tweaks to make channels etc follow the logger setting of their parent
transport, so that setting the log channel for a paramiko transport will
cause all sub-logging to branch out from that channel.
also, close all open file handles when the sftp server ends.
modified files:
paramiko/channel.py paramiko/sftp_attr.py
paramiko/sftp_client.py paramiko/sftp_handle.py
paramiko/sftp_server.py paramiko/transport.py
2005-01-16 21:03:15 GMT Robey Pointer <[email protected]> patch-139
Summary:
make loopback sftp tests the default
Revision:
secsh--dev--1.0--patch-139
change the unit tests to default to always running the sftp tests locally,
and make a -R option to force the tests to run against a remote server.
the tests seem to work fine locally, and it helps test out server mode,
even though there's a danger that they could get isolated from reality
and only test that paramiko can talk to itself.
modified files:
test.py
2005-01-16 20:14:07 GMT Robey Pointer <[email protected]> patch-138
Summary:
doc fixups
Revision:
secsh--dev--1.0--patch-138
little doc fixups that i did obsessively on the train one morning.
modified files:
paramiko/file.py
2005-01-09 05:27:07 GMT Robey Pointer <[email protected]> patch-137
Summary:
added listdir_attr()
Revision:
secsh--dev--1.0--patch-137
add SFTPClient.listdir_attr() to fetch a list of files & their attributes,
instead of just their filenames. artur piwko would find this useful.
modified files:
paramiko/sftp_attr.py paramiko/sftp_client.py
2004-12-19 19:56:48 GMT Robey Pointer <[email protected]> patch-136
Summary:
loopback sftp test
Revision:
secsh--dev--1.0--patch-136
add ability to turn off more tests, and a secret (for now) -X option to do
the sftp tests via loopback socket. added another symlink sftp test to see
what happens with absolute symlinks.
modified files:
test.py tests/test_sftp.py
2004-12-19 19:50:00 GMT Robey Pointer <[email protected]> patch-135
Summary:
more sftp cleanup
Revision:
secsh--dev--1.0--patch-135
oops, this should've been part of the last patch.
modified files:
paramiko/sftp_si.py
2004-12-19 19:43:27 GMT Robey Pointer <[email protected]> patch-134
Summary:
cleanup & docs in sftp
Revision:
secsh--dev--1.0--patch-134
add some more docs to SFTPHandle, and give a default implementation for
close() that's usually right. add a flush() to the default implementation
of write(). document that symlink's args in the sftp protocol are out of
order (the spec is wrong).
modified files:
paramiko/sftp_handle.py paramiko/sftp_server.py
2004-12-13 07:32:14 GMT Robey Pointer <[email protected]> patch-133
Summary:
unit test madness
Revision:
secsh--dev--1.0--patch-133
add some more testy bits and fix up some other bits.
modified files:
tests/test_transport.py
2004-12-13 07:31:01 GMT Robey Pointer <[email protected]> patch-132
Summary:
oops (continued)
Revision:
secsh--dev--1.0--patch-132
er, part 2 of that.
modified files:
paramiko/server.py
2004-12-13 07:29:38 GMT Robey Pointer <[email protected]> patch-131
Summary:
move check_global_request
Revision:
secsh--dev--1.0--patch-131
move check_global_request into the server interface -- i missed it during
the initial move (oops).
modified files:
paramiko/transport.py
2004-12-13 07:27:39 GMT Robey Pointer <[email protected]> patch-130
Summary:
small fixups
Revision:
secsh--dev--1.0--patch-130
move _wait_for_send_window into the right place in Channel. remove outdated
note from auth_transport. fix download url in setup.py.
modified files:
paramiko/auth_transport.py paramiko/channel.py setup.py
2004-12-12 09:58:40 GMT Robey Pointer <[email protected]> patch-129
Summary:
1.1 (kabuto)
Revision:
secsh--dev--1.0--patch-129
edit various files to bump the version to 1.1.
also fix to point to the new url.
modified files:
Makefile README paramiko/__init__.py paramiko/transport.py
setup.py
2004-12-12 09:38:24 GMT Robey Pointer <[email protected]> patch-128
Summary:
more unit tests
Revision:
secsh--dev--1.0--patch-128
added unit tests for multi-part auth, exec_command, and invoke_shell.
modified files:
tests/test_transport.py
2004-12-12 09:32:17 GMT Robey Pointer <[email protected]> patch-127
Summary:
doc fixups
Revision:
secsh--dev--1.0--patch-127
fix some typos in sftp_client docs
modified files:
paramiko/sftp_client.py
2004-12-12 09:25:15 GMT Robey Pointer <[email protected]> patch-126
Summary:
server support for stderr & exec_command
Revision:
secsh--dev--1.0--patch-126
for the server side of my stderr blunder, add send_stderr & sendall_stderr,
and make the sending side of makefile_stderr work correctly.
also, call check_channel_exec_request on a server object for exec requests
on a channel.
modified files:
paramiko/channel.py paramiko/server.py
2004-12-12 09:16:03 GMT Robey Pointer <[email protected]> patch-125
Summary:
add client-side multi-part auth support
Revision:
secsh--dev--1.0--patch-125
added support for multi-part authentication (even though nobody supports it
that i've seen). on a successful "partial" auth, the auth_* method will
return a list of acceptable means to continue authenticating.
modified files:
paramiko/auth_transport.py paramiko/ssh_exception.py
2004-12-11 03:44:33 GMT Robey Pointer <[email protected]> patch-124
Summary:
docs fixup
Revision:
secsh--dev--1.0--patch-124
fix a comment typo, and add @since designators to a couple of new methods.
modified files:
paramiko/channel.py paramiko/sftp_server.py
2004-12-11 03:43:18 GMT Robey Pointer <[email protected]> patch-123
Summary:
clean up authentication
Revision:
secsh--dev--1.0--patch-123
add new exception "BadAuthenticationType", which is raised when auth fails
because your auth type (password or public-key) isn't valid on the server.
used this as an excuse to clean up auth_password and auth_publickey so their
'event' arg is optional, and if missing, they block until auth is finished,
raising an exception on error.
also, don't close the session on failed auth -- the server may let you try
again.
added some test cases for failed auth.
modified files:
paramiko/__init__.py paramiko/auth_transport.py
paramiko/ssh_exception.py paramiko/transport.py
tests/test_transport.py
2004-12-10 08:30:44 GMT Robey Pointer <[email protected]> patch-122
Summary:
symlink, readlink
Revision:
secsh--dev--1.0--patch-122
add support for symlink command, and finish support for readlink. (i guess
i started readlink a while ago but forgot to add the right method to the
SFTPServerInterface class.)
modified files:
paramiko/sftp_server.py paramiko/sftp_si.py tests/test_sftp.py
2004-12-10 08:27:43 GMT Robey Pointer <[email protected]> patch-121
Summary:
other part of that last patch
Revision:
secsh--dev--1.0--patch-121
oops, forgot this part.
modified files:
paramiko/transport.py
2004-12-10 08:25:28 GMT Robey Pointer <[email protected]> patch-120
Summary:
add stderr support methods
Revision:
secsh--dev--1.0--patch-120
big embarrassment: i didn't read the ssh2 docs close enough, and all this
time paramiko wasn't handling "extended_data" packets, which contain stderr
output.
so now, several new functions: recv_stderr_ready() and recv_stderr() to
mirror recv_ready() and recv(), and set_combined_stderr() to force stderr
to be combined into stdout. also, makefile_stderr() to create a fake file
object to represent stderr.
modified files:
paramiko/channel.py
2004-12-10 07:55:33 GMT Robey Pointer <[email protected]> patch-119
Summary:
reformat README
Revision:
secsh--dev--1.0--patch-119
reformatted the README to a slightly smaller margin, just because.
modified files:
README
2004-12-09 04:15:12 GMT Robey Pointer <[email protected]> patch-118
Summary:
fix SFTPFile gettimeout/settimeout
Revision:
secsh--dev--1.0--patch-118
i don't think the gettimeout/settimeout calls on SFTPFile ever worked.
also, simplify the implementation of _get_size() since it's nearly
identical to stat().
modified files:
paramiko/sftp_file.py
2004-12-09 02:42:36 GMT Robey Pointer <[email protected]> patch-117
Summary:
readme comments
Revision:
secsh--dev--1.0--patch-117
add another fixme to the readme
modified files:
README
2004-11-26 22:07:31 GMT Robey Pointer <[email protected]> patch-116
Summary:
doc fixups
Revision:
secsh--dev--1.0--patch-116
explain "recv_ready" better, and add debug descriptions for the kex codes.
modified files:
README paramiko/channel.py paramiko/common.py
2004-11-25 19:39:34 GMT Robey Pointer <[email protected]> patch-115
Summary:
fix CONNECTION_FAILED_CODE
Revision:
secsh--dev--1.0--patch-115
oops, fix typo in channel request failed.
modified files:
paramiko/transport.py
2004-11-22 07:40:39 GMT Robey Pointer <[email protected]> patch-114
Summary:
fix typo in channel
Revision:
secsh--dev--1.0--patch-114
fix typo that alain found: pipd_wfd -> pipe_wfd.
modified files:
paramiko/channel.py
2004-11-22 07:27:21 GMT Robey Pointer <[email protected]> patch-113
Summary:
sftp server support!
Revision:
secsh--dev--1.0--patch-113
finally check in sftp_handle (file handle abstraction), sftp_si (server
interface), and sftp_server (server implementation) -- all of which make
a roughly 90% implementation of server-side sftp.
new files:
paramiko/.arch-ids/sftp_handle.py.id
paramiko/.arch-ids/sftp_server.py.id
paramiko/.arch-ids/sftp_si.py.id paramiko/sftp_handle.py
paramiko/sftp_server.py paramiko/sftp_si.py
modified files:
README demo_windows.py paramiko/__init__.py
2004-11-22 07:07:08 GMT Robey Pointer <[email protected]> patch-112
Summary:
add finish_subsystem()
Revision:
secsh--dev--1.0--patch-112
when a SubsystemHandler is being decomissioned (the client has closed the
channel or transport, or the socket went away), make a callback to let the
handler do any shutdown it needs to.
modified files:
paramiko/server.py
2004-11-22 07:04:31 GMT Robey Pointer <[email protected]> patch-111
Summary:
fix extremely unlikely channel counter wrapping
Revision:
secsh--dev--1.0--patch-111
Transport's channel counter can overflow after 4 billion some channels are
created. make it wrap back around after 16 million instead. also allow the
logging channel to be set manually. fix some comments elsewhere.
modified files:
paramiko/channel.py paramiko/primes.py paramiko/transport.py
2004-11-22 07:01:43 GMT Robey Pointer <[email protected]> patch-110
Summary:
fix Transport.get_username() to work in server mode too
Revision:
secsh--dev--1.0--patch-110
whenever i split the 'username' field into username and auth_username,
i guess that made get_username() stop working for server mode (because the
username was stored in a different field). this should fix it.
modified files:
paramiko/auth_transport.py
2004-11-07 03:10:53 GMT Robey Pointer <[email protected]> patch-109
Summary:
v1.0 (jigglypuff)
Revision:
secsh--dev--1.0--patch-109
bump all the version numbers up to 1.0 (jigglypuff).
modified files:
Makefile README paramiko/__init__.py paramiko/transport.py
setup.py
2004-11-07 02:51:42 GMT Robey Pointer <[email protected]> patch-108
Summary:
add filename to SFTPAttributes
Revision:
secsh--dev--1.0--patch-108
add filename to the attributes stored in an SFTPAttributes object.
modified files:
paramiko/sftp_attr.py
2004-11-07 02:31:48 GMT Robey Pointer <[email protected]> patch-107
Summary:
fix kex_gex
Revision:
secsh--dev--1.0--patch-107
fix kex_gex (group-exchange key exchange) to, *cough*, work again, and also
layout kex_group1 a little more sanely.
modified files:
paramiko/kex_gex.py paramiko/kex_group1.py
2004-11-07 02:29:54 GMT Robey Pointer <[email protected]> patch-106
Summary:
fix chmod +x on demo_windows.py
Revision:
secsh--dev--1.0--patch-106
forgot to make demo_windows +x
2004-11-07 02:29:20 GMT Robey Pointer <[email protected]> patch-105
Summary:
move ChangeLog
Revision:
secsh--dev--1.0--patch-105
move ChangeLog out of the way because tla can autogenerate any useful
ChangeLog.
renamed files:
.arch-ids/ChangeLog.id
==> .arch-ids/ChangeLog-old.id
ChangeLog
==> ChangeLog-old
2004-11-07 02:28:33 GMT Robey Pointer <[email protected]> patch-104
Summary:
fix location of SFTPError
Revision:
secsh--dev--1.0--patch-104
fix location of SFTPError.
modified files:
paramiko/__init__.py paramiko/sftp_client.py
2004-11-07 02:17:18 GMT Robey Pointer <[email protected]> patch-103
Summary:
rename sftp constants
Revision:
secsh--dev--1.0--patch-103