summaryrefslogtreecommitdiffhomepage
path: root/README
AgeCommit message (Collapse)Author
2007-02-13[project @ robey@lag.net-20070213191706-v8djxd4jiunb3his]Robey Pointer
bump copyright year to 2007
2006-11-19[project @ robey@lag.net-20061119205558-p5p2tmqx0xt7hq9r]Robey Pointer
bump version to 1.6.4 (yanma) and trim the README changes-history a bit
2006-10-14[project @ robey@lag.net-20061015015628-371a037b5165d634]Robey Pointer
bump version to 1.6.3
2006-08-29[project @ robey@lag.net-20060829181836-1cd17df7729c4db8]Robey Pointer
remove usage of has_key, which is dangerous and deprecated
2006-08-16[project @ robey@lag.net-20060816213132-2e094c077d22dc50]Robey Pointer
bump version to 1.6.2
2006-07-30[project @ robey@lag.net-20060731065604-ec418957546f7ec9]Robey Pointer
explain about the new launchpad site
2006-07-13[project @ robey@lag.net-20060713194617-35597c20a6b3bc59]Robey Pointer
bump version to 1.6 (oops, forgot to check this in a few days ago)
2006-05-10[project @ robey@lag.net-20060511013755-ab5fc64a30791cac]Robey Pointer
trim more of the history
2006-05-10[project @ robey@lag.net-20060511013313-411d1524da3b53f0]Robey Pointer
bump version to 1.6, fix up docs a little bit
2006-05-07[project @ robey@lag.net-20060508005224-a8a04cd59f9fa016]Robey Pointer
pulled out openssh config parsing into its own class
2006-05-07[project @ robey@lag.net-20060508002320-d6e64e96f913febd]Robey Pointer
check off a few readme items
2006-04-23[project @ robey@lag.net-20060424011141-18957fe09447af6b]Robey Pointer
more README
2006-03-11[project @ robey@lag.net-20060312042905-752c324bdc1ac2cf]Robey Pointer
bump version to 1.5.4
2006-02-19[project @ robey@lag.net-20060220072303-cdc3bc647d5732b0]Robey Pointer
bump version to 1.5.3
2006-02-19[project @ robey@lag.net-20060220003513-aa54e3e771a530fd]Robey Pointer
add HostKeys, a helper for reading/parsing openssh known_hosts files, including hashed-host support
2006-01-26[project @ robey@master-shake.local-20060127035453-c91a77a5aa6d2136]Robey Pointer
a few more pychecker warning fixups
2006-01-14[project @ robey@master-shake.local-20060115063008-4f68552398868788]Robey Pointer
fix a bunch of pychecker warnings, some of which were actual (but unlikely) bugs
2005-12-16[project @ robey@lag.net-20051216175905-c3477e2ec74db4d9]Robey Pointer
add setuptools/easy_setup support
2005-12-04[project @ robey@lag.net-20051204092822-69155fa5abbc4637]Robey Pointer
bump version to 1.5.2
2005-12-03[project @ robey@ralph.lag.net-20051204045002-f1d13a4bc1351090]Robey Pointer
remove pre-1.0 news, bzr will preserve it for future archivists ;)
2005-12-03[project @ robey@ralph.lag.net-20051204044921-ae847bf450372ff5]Robey Pointer
add comments to demo and demo_simple explaining that they don't work on windows
2005-12-02[project @ robey@lag.net-20051202211544-900e02e2693d4a92]Robey Pointer
add tentative compression support (off by default)
2005-10-31[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-77]Robey Pointer
bump up version to 1.5.1
2005-10-02[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-62]Robey Pointer
readme comments, bump version to 1.5 paras
2005-09-25[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-60]Robey Pointer
add file pipelining for writes
2005-08-09[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-53]Robey Pointer
more todo...
2005-07-18[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-47]Robey Pointer
bump version number to 1.4 oddish
2005-07-18[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-46]Robey Pointer
add SFTPFile.check and server support (and test) -- it's an sftp extension that allows a client to retrieve the hash of part or all of a file without downloading it. we're probably the only ones who implement it yet
2005-07-17[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-44]Robey Pointer
try to handle utf8 paths in a sane way in SFTPClient: assume incoming strings are already utf8, and encode incoming unicodes -- for return values, use str if an ascii encoding will work, otherwise return a unicode
2005-07-13[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-33]Robey Pointer
add SFTPClient.put and SFTPClient.get, and make sftp file objects auto-close on del
2005-06-28[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-20]Robey Pointer
fix docs and update version to 1.3.1
2005-06-28[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-12]Robey Pointer
add notes about next version
2005-05-10[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-8]Robey Pointer
add unit tests for the packetizer, and fix a little locking bug where i think more of the packetizer write function should be inside a lock
2005-05-01[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-5]Robey Pointer
split out Packetizer, fix banner detection bug, new unit test split out a chunk of BaseTransport into a Packetizer class, which handles the in/out packet data, ciphers, etc. it didn't make the code any smaller (transport.py is still close to 1500 lines, which is awful) but it did split out a coherent chunk of functionality into a discrete unit. in the process, fixed a bug that alain spineux pointed out: the banner check was too forgiving and would block forever waiting for an SSH banner. now it waits 5 seconds for the first line, and 2 seconds for each subsequent line, before giving up. added a unit test to test keepalive, since i wasn't sure that was still working after pulling out Packetizer.
2005-04-16[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-161]Robey Pointer
integrated laptop work (test commit) Patches applied: * robey@lag.net--2003-public-master-shake/secsh--dev--1.0--base-0 tag of robey@lag.net--2003-public/secsh--dev--1.0--patch-160 * robey@lag.net--2003-public-master-shake/secsh--dev--1.0--patch-1 test commit * robey@lag.net--2003-public/secsh--dev--1.0--base-0 initial import * robey@lag.net--2003-public/secsh--dev--1.0--patch-1 no changes
2005-04-10[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-160]Robey Pointer
1.3 marowak bump version to 1.3 / marowak
2005-03-26[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-156]Robey Pointer
rewrite channel pipes to work on windows 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.
2005-02-28[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-154]Robey Pointer
even better 1.2 lapras 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.
2005-02-26[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-147]Robey Pointer
1.2 (lapras) bump version stuff to 1.2 / lapras.
2005-02-15[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-146]Robey Pointer
raise better exception on empty key raise a clearer exception when trying to create an empty key.
2005-02-15[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-145]Robey Pointer
add methods for sending/receiving a channel's exit status 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.
2005-02-06[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-144]Robey Pointer
fix docs clean up some of the docs.
2004-12-12[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-129]Robey Pointer
1.1 (kabuto) edit various files to bump the version to 1.1. also fix to point to the new url.
2004-12-10[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-119]Robey Pointer
reformat README reformatted the README to a slightly smaller margin, just because.
2004-12-09[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-117]Robey Pointer
readme comments add another fixme to the readme
2004-11-26[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-116]Robey Pointer
doc fixups explain "recv_ready" better, and add debug descriptions for the kex codes.
2004-11-22[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-113]Robey Pointer
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.
2004-11-07[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-109]Robey Pointer
v1.0 (jigglypuff) bump all the version numbers up to 1.0 (jigglypuff).
2004-11-06[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-100]Robey Pointer
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. demo_windows.py doesn't need to call get_pty() (in fact, i think that's blowing openssh's mind) and was executing the wrong command.
2004-10-23[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-95]Robey Pointer
ivysaur 0.9 update ivysaur release date, and add the list of changes to the README file.