0
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 17 hours ago. based on code collected about 17 hours ago.
Jul 24, 2024 — Jul 24, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-130] small fixups move _wait_for_send_window into the right place in Channel. remove outdated note from auth_transport. fix download url in setup.py. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-129] 1.1 (kabuto) edit various files to bump the version to 1.1. also fix to point to the new url. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-128] more unit tests added unit tests for multi-part auth, exec_command, and invoke_shell. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-127] doc fixups fix some typos in sftp_client docs More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-126] server support for stderr & exec_command for the server side of my stderr blunder, add send_stderr & sendall_stderr, and make the sending side of makefile_stderr work correctly. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-125] add client-side multi-part auth support 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. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-124] docs fixup fix a comment typo, and add @since designators to a couple of new methods. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-123] clean up authentication add new exception "BadAuthenticationType", which is raised when auth fails because your auth type (password or public-key) isn't valid on the server. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-122] symlink, readlink 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.) More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-121] other part of that last patch oops, forgot this part. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-120] add stderr support methods 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. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-119] reformat README reformatted the README to a slightly smaller margin, just because. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-118] fix SFTPFile gettimeout/settimeout 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(). More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-117] readme comments add another fixme to the readme More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-116] doc fixups explain "recv_ready" better, and add debug descriptions for the kex codes. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-115] fix CONNECTION_FAILED_CODE oops, fix typo in channel request failed. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-114] fix typo in channel fix typo that alain found: pipd_wfd -> pipe_wfd. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-113] sftp server support! 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. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-112] add finish_subsystem() 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. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-111] fix extremely unlikely channel counter wrapping 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. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-110] fix Transport.get_username() to work in server mode too 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. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-109] v1.0 (jigglypuff) bump all the version numbers up to 1.0 (jigglypuff). More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-108] add filename to SFTPAttributes add filename to the attributes stored in an SFTPAttributes object. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-107] fix kex_gex fix kex_gex (group-exchange key exchange) to, *cough*, work again, and also layout kex_group1 a little more sanely. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-105] move ChangeLog move ChangeLog out of the way because tla can autogenerate any useful ChangeLog. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-104] fix location of SFTPError fix location of SFTPError. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-103] rename sftp constants replace oddly named sftp constants (FX_OK for example) with names that make a bit more sense when sober (SFTP_OK). More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-102] add key exchange tests + 1 more sftp test add test suite for key-exchange protocols, since i apparently broke the "gex" protocol recently and never noticed. also add an sftp unit test for mkdir/rmdir. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-101] remove old demo keys the keys are in tests/ now. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-100] don't forget demo_windows.py update MANIFEST.in to include demo_windows.py and not include the demo keys (they're in tests/ now). clean up the README to explain the demo scripts better now, since there are so many of them. then fix up the demo scripts to look in tests/ for the keys. More... over 20 years ago