summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2012-11-28Bump dev version to 1.10Jeff Forcier
2012-11-28Make docs target build whenever Paramiko files changeJeff Forcier
2012-11-06Git ignore built docs dirJeff Forcier
2012-11-06Merge branch '1.8' into 1.9Jeff Forcier
2012-11-06Tweak travis configJeff Forcier
2012-11-06Update changelog date for 1.9.0Jeff Forcier
2012-11-06Merge branch '1.8'Jeff Forcier
Conflicts: NEWS paramiko/__init__.py setup.py
2012-11-06Cut 1.8.1Jeff Forcier
2012-11-06Bump to 1.9.0 for releaseJeff Forcier
2012-11-05Python 2.5 compatJeff Forcier
2012-11-05Fix broken importJeff Forcier
2012-11-05Add ProxyCommand classes to top level APIJeff Forcier
2012-11-05Changelog re #97Jeff Forcier
2012-11-05One more patch from @clarete's workJeff Forcier
2012-11-05Implement (& test for) ProxyCommand interpolation.Jeff Forcier
Forgot this earlier.
2012-11-05FormattingJeff Forcier
2012-11-05Bubble up ProxyCommandFailure in packetizerJeff Forcier
2012-11-05Post-import editsJeff Forcier
2012-11-05Import BadProxyCommandJeff Forcier
2012-11-05Post-import editsJeff Forcier
2012-11-05Initial port of ProxyCommand class from @clareteJeff Forcier
2012-11-05Fix ProxyCommand equals splitting.Jeff Forcier
Uses regex approach from @lndbrg
2012-11-05Add failing test(s) re ProxyCommand config parsingJeff Forcier
2012-11-05More attributionsJeff Forcier
2012-11-05Add in big attribution big in prep for having ProxyCommand doneJeff Forcier
2012-11-05Changelog re #77Jeff Forcier
2012-11-05Tweak docstring re #77Jeff Forcier
2012-11-05SSHClient: add 'sock' parameter to connect() for tunnelingSteven Noonan
Re #77 This parameter, if set, can be used to make Paramiko wrap an existing socket connected to a remote SSH server. For instance, you could set up another SSHClient directly connected to a "gateway" host, and then create a direct-tcpip tunnel to a "target" host directly accessible from the gateway's perspective (e.g. think of trying to establish an SSH connection to hosts behind a NAT). The gateway host would then establish a TCP connection to the target host directly, and a channel is exposed on the client side. This channel could be wrapped by an SSHClient class using the connect() function, avoiding the need to establish a new TCP connnection. This effectively allows you to create tunneled SSH connections. Based on work by Oskari Saarenmaa <os@ohmu.fi>, in Paramiko pull request #39. Signed-off-by: Steven Noonan <steven@uplinklabs.net>
2012-11-05Somehow missed a pretty important change in the changelogJeff Forcier
2012-10-15Merge branch '1.8'Jeff Forcier
2012-10-15Refactoring: it's a thing. Re #85Jeff Forcier
2012-10-15Only override unittest assertions when absolutely necessary.Jeff Forcier
Fixes #85
2012-10-14Move SFTPClient.get() termination condition to loop end.Jeff Forcier
Ensures callback always executes even for zero-len files. Fixes #90
2012-10-14Merge branch '1.8'Jeff Forcier
Conflicts: NEWS
2012-10-14Meh fabfile for docs uploadingJeff Forcier
2012-10-14Add 1.9.0 to master NEWSJeff Forcier
2012-10-14Set up 1.8.1 chunk in NEWSJeff Forcier
2012-10-14Add missing release date to NEWS for 1.8.0Jeff Forcier
2012-09-2580-col fixJeff Forcier
2012-09-25Fix module import in testsJeff Forcier
2012-09-25Correct dev-installation doc in package metadataJeff Forcier
2012-09-25Whitespace + lang tweakJeff Forcier
2012-09-25Init header updateJeff Forcier
2012-09-24Nuke old copy of original READMEJeff Forcier
2012-09-24Transition back to Paramiko's readme; update to be currently accurateJeff Forcier
2012-09-24Remove extraneous changelog lines from 'ssh'Jeff Forcier
2012-09-24Namespace issue numbers appropriatelyJeff Forcier
2012-09-24For now, merge ssh CHANGES file into paramiko NEWSJeff Forcier
2012-09-24Bump to 0.8.x due to nontrivial changesJeff Forcier
(cherry picked from commit d7def60c4784fed39fc8714753304a150da131c7) Conflicts: setup.py
2012-09-24Fix #28: hide interpreter-death threading exceptionsJeff Forcier
(cherry picked from commit 3709d2e02bf67ccc272e1f2311e5db125a922ba0)