Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-28 | Merge branch 'master' of github.com:paramiko/paramiko | Jeff Forcier | |
2013-04-28 | Merge branch '1.10' | Jeff Forcier | |
2013-04-28 | Add explicit link to updated API docs. Fixes #160 | Jeff Forcier | |
2013-04-28 | Merge pull request #155 from Baconator507/patch-1 | Jeff Forcier | |
Update demo.py | |||
2013-04-28 | Merge branch '1.10' | Jeff Forcier | |
2013-04-28 | Warn on parse failure when reading known_hosts | Ethan Glasser-Camp | |
2013-04-28 | Merge pull request #153 from glasserc/log_bad_hostkeys | Jeff Forcier | |
Warn on parse failure when reading known_hosts | |||
2013-04-28 | Warn on parse failure when reading known_hosts | Ethan Glasser-Camp | |
2013-04-27 | Merge branch '1.10' | Jeff Forcier | |
Conflicts: NEWS | |||
2013-04-27 | Changelog re #146 (also start 10.10.2 section) | Jeff Forcier | |
2013-04-27 | Fix indentation at few places. | Abhinav Upadhyay | |
2013-04-27 | Back out broken but non-required hostname hash change | Jeff Forcier | |
2013-04-27 | Changelog re #87 | Jeff Forcier | |
2013-04-27 | do not write ,,garbage'' to known_hosts file(s) | Mike Gabriel | |
2013-04-27 | Load host entries from the known_hosts file(s) before writing the file from ↵ | Mike Gabriel | |
RAM to disk. Avoids loss of host entries in case other SSH clients have written to the known_hosts file(s) meanwhile. | |||
2013-04-27 | Assure that host entries in known_hosts files do not duplicate endlessly if ↵ | Mike Gabriel | |
keys from known_hosts are loaded via HostKeys.load() more than once (e.g. for refreshing the list of known hosts during runtime). | |||
2013-04-27 | Store hostname hashes in memory rathen than the non-hashed host entries. ↵ | Mike Gabriel | |
Also assures that the host entries in known_hosts get saved in hashed format as it is currently standard in OpenSSH. | |||
2013-04-09 | Update demo.py | Ivan Barria | |
why import threading? | |||
2013-04-05 | Merge branch '1.10' | Jeff Forcier | |
Conflicts: NEWS | |||
2013-04-05 | Bump version to 1.10.1 | Jeff Forcier | |
2013-04-05 | Changelog re #154 | Jeff Forcier | |
2013-04-05 | Fix bug that leaves fds in select after EOF received | Kevin Tegtmeier | |
2013-04-05 | Merge branch '1.10' | Jeff Forcier | |
Conflicts: NEWS | |||
2013-04-05 | Dumb format tweak to NEWS | Jeff Forcier | |
2013-04-05 | Merge branch '1.10' into 143-int | Jeff Forcier | |
2013-04-05 | Merge branch '1.10' | Jeff Forcier | |
2013-04-05 | Merge branch '1.9' into 1.10 | Jeff Forcier | |
2013-04-05 | Remove pointless & outdated version/release crap from README | Jeff Forcier | |
2013-03-19 | Shuffle changelog | Jeff Forcier | |
2013-03-19 | Merge branch 'master' into 112-int | Jeff Forcier | |
Conflicts: paramiko/win_pageant.py | |||
2013-03-19 | Move changelog re #100 to new release chunk | Jeff Forcier | |
2013-03-19 | Updated NEWS | Jason R. Coombs | |
2013-03-19 | Remove dependency on pywin32. Just use ctypes for simplicity. | Jason R. Coombs | |
2013-03-19 | Remove test for presence of ctypes (assumed present in global imports). | Jason R. Coombs | |
2013-03-04 | Update NEWS per #142 | Jason R. Coombs | |
2013-03-04 | Remove 'file_size' check from tests. The docstring indicates this parameter ↵ | Jason R. Coombs | |
is to be passed to the callback, and there's no reason to think this parameter is relevant in affecting whether a useful stat object has been passed (especially when the 'confirm' parameter is explicitly supplied for that decision. This fixes #142. | |||
2013-03-04 | Adding test capturing desired behavior and demonstrating issue #142. | Jason R. Coombs | |
2013-03-04 | Delint test_sftp (remove unused imports and unused variables, remove excess ↵ | Jason R. Coombs | |
whitespace, move imports to top, remove semicolon terminator) --HG-- extra : source : 01df712a396de5fa7e1c0cc265411fdb2bbc5f41 | |||
2013-03-01 | Changelog re #66, re #141. Fixes #66 | Jeff Forcier | |
2013-03-01 | Speed up the write operation by bulk calling read. | Olle Lundberg | |
Bulk check the ACKs from the server every 32MB (or every write request). This way you gain speed but also making sure not to get the error too late in a large transfer. This works for smaller files too, since there is a cleanup routine being called when the file has been transfered. | |||
2013-03-01 | Changelog re #133, and date fix for 1.10 | Jeff Forcier | |
2013-03-01 | Added width_pixel and height_pixel parameters to Channel.get_pty() and | Phillip Heller | |
resize_pty(), and Client.invoke_shell(). Perhaps useless, but more RFC compliant. Updated methods to include these parameters in server messages. Adjusted Channel.resize_pty() to neither request nor wait for a response, as per RFC 4254 6.7 (A response SHOULD NOT be sent to this message.) This is necessary as certain hosts have been observed to not acknowledge this type of channel request (Cisco IOS XR), which causes paramiko to end the session. | |||
2013-03-01 | Changelog re #93 | Jeff Forcier | |
2013-02-28 | Pep8 fixes | Olle Lundberg | |
2013-02-28 | Merge branch 'openssh-compatibility' of github.com:lndbrg/paramiko into ↵ | Olle Lundberg | |
openssh-compatibility Conflicts: paramiko/config.py tests/test_util.py | |||
2013-02-28 | Pep8 fixes | Olle Lundberg | |
2013-02-28 | Fix argument passed to LazyFqdn | Olle Lundberg | |
2013-02-28 | Fix broken test. | Olle Lundberg | |
2013-02-28 | Create a copy of the identityfile list. | Olle Lundberg | |
The copy is needed else the original identityfile list is in the internal config list is updated when we modify the return dictionary. | |||
2013-02-28 | Add tests for identityfile parsing. | Olle Lundberg | |