mercurial/wireprotoserver.py
Thu, 08 Mar 2018 17:57:07 -0800 Gregory Szorc hgweb: remove wsgirequest.read()
Thu, 08 Mar 2018 17:17:48 -0800 Gregory Szorc wireprotoserver: remove unused argument from _handlehttperror()
Sat, 10 Mar 2018 10:44:56 -0800 Gregory Szorc hgweb: store and use request method on parsed request
Sat, 10 Mar 2018 10:45:12 -0800 Gregory Szorc hgweb: handle CONTENT_LENGTH
Thu, 08 Mar 2018 16:38:01 -0800 Gregory Szorc wireprotoserver: access headers through parsed request
Thu, 08 Mar 2018 16:43:32 -0800 Gregory Szorc wireprotoserver: remove broken optimization for non-httplib client
Thu, 08 Mar 2018 15:58:52 -0800 Gregory Szorc wireprotoserver: move all wire protocol handling logic out of hgweb
Thu, 08 Mar 2018 11:33:33 -0800 Gregory Szorc hgweb: only recognize wire protocol commands from query string (BC)
Thu, 08 Mar 2018 15:15:59 -0800 Gregory Szorc hgweb: rename req to wsgireq
Wed, 07 Mar 2018 16:18:52 -0800 Gregory Szorc wireproto: formalize permissions checking as part of protocol interface
Wed, 07 Mar 2018 16:02:24 -0800 Gregory Szorc wireproto: declare permissions requirements in @wireprotocommand (API)
Tue, 06 Mar 2018 15:08:33 -0800 Gregory Szorc wireprotoserver: check permissions in main dispatch function
Tue, 06 Mar 2018 15:02:53 -0800 Gregory Szorc wireprotoserver: check if command available before calling it
Tue, 06 Mar 2018 14:32:14 -0800 Gregory Szorc merge with stable
Sun, 04 Mar 2018 13:03:22 -0500 Augie Fackler hgweb: convert req.form to bytes for all keys and values
Tue, 27 Feb 2018 16:24:02 -0800 Gregory Szorc wireproto: add transport specific capabilities in the transport
Tue, 27 Feb 2018 14:56:03 -0800 Gregory Szorc wireprotoserver: identify requests via version 2 of SSH protocol as such
Tue, 27 Feb 2018 14:26:00 -0800 Gregory Szorc wireprotoserver: move SSHV1 and SSHV2 constants to wireprototypes
Sun, 25 Feb 2018 11:16:09 -0800 Gregory Szorc wireprotoserver: support logging SSH server I/O to a file descriptor
Sat, 24 Feb 2018 12:07:21 -0800 Gregory Szorc wireprotoserver: ability to run an SSH server until an event is set
Wed, 21 Feb 2018 16:47:39 -0800 Gregory Szorc wireproto: document the wonky push protocol for SSH
Wed, 21 Feb 2018 14:21:05 -0800 Gregory Szorc wireprototypes: move baseprotocolhandler from wireprotoserver
Sun, 18 Feb 2018 00:02:33 -0500 Augie Fackler wireprotoserver: py3 helpfully calls adds HTTP_ to CONTENT_LENGTH
Sat, 17 Feb 2018 01:11:48 -0500 Augie Fackler py3: get bytes-repr of network errors portably
Thu, 15 Feb 2018 17:30:43 -0500 Augie Fackler wireprotoserver: return to using iscmd() method
Mon, 12 Feb 2018 17:20:20 -0800 Gregory Szorc wireprotoserver: add version to HTTP protocol name (API)
Mon, 12 Feb 2018 17:19:51 -0800 Gregory Szorc wireprotoserver: rename webproto to httpv1protocolhandler
Mon, 12 Feb 2018 16:33:54 -0800 Gregory Szorc wireprotoserver: handle SSH protocol version 2 upgrade requests
Thu, 08 Feb 2018 15:09:59 -0800 Gregory Szorc wireprotoserver: move SSH server operation to a standalone function
Wed, 14 Feb 2018 17:35:13 -0700 Gregory Szorc py3: stringify integer with %d instead of bytes()
Tue, 06 Feb 2018 18:13:15 -0800 Gregory Szorc wireprotoserver: define and use parse_qs from urllib
Wed, 07 Feb 2018 20:37:51 -0800 Gregory Szorc wireprotoserver: add version to SSH protocol names (API)
Wed, 07 Feb 2018 20:27:36 -0800 Gregory Szorc wireproto: introduce type for raw byte responses (API)
Wed, 07 Feb 2018 16:29:05 -0800 Gregory Szorc wireprototypes: move wire protocol response types to new module
Thu, 01 Feb 2018 16:59:18 -0800 Gregory Szorc wireprotoserver: move responsetype() out of http handler
Wed, 07 Feb 2018 20:22:44 -0800 Gregory Szorc wireproto: remove unused proto argument from supportedcompengines (API)
Thu, 01 Feb 2018 17:12:07 -0800 Gregory Szorc wireprotoserver: rename getfile() to forwardpayload() (API)
Wed, 07 Feb 2018 20:24:22 -0800 Gregory Szorc wireprotoserver: rename _client to client (API)
Wed, 07 Feb 2018 20:20:11 -0800 Gregory Szorc wireprotoserver: remove redirect() and restore() (API)
Wed, 07 Feb 2018 20:19:06 -0800 Gregory Szorc wireproto: use maybecapturestdio() for push responses (API)
Wed, 07 Feb 2018 20:17:47 -0800 Gregory Szorc wireprotoserver: add context manager mechanism for redirecting stdio
Wed, 07 Feb 2018 20:17:05 -0800 Gregory Szorc wireprotoserver: split ssh protocol handler and server
Wed, 07 Feb 2018 21:04:54 -0800 Gregory Szorc wireprotoserver: extract SSH response handling functions
Thu, 01 Feb 2018 08:54:48 -0800 Gregory Szorc wireprotoserver: rename abstractserverproto and improve docstring
Thu, 01 Feb 2018 16:11:54 -0800 Gregory Szorc wireprotoserver: document and improve the httplib workaround
Wed, 31 Jan 2018 17:34:45 -0800 Gregory Szorc wireprotoserver: move error response handling out of hgweb
Wed, 31 Jan 2018 16:21:43 -0800 Gregory Szorc wireprotoserver: move protocol parsing and dispatch out of hgweb
Tue, 30 Jan 2018 18:41:44 -0800 Gregory Szorc wireproto: function for testing if wire protocol command is available
Tue, 06 Feb 2018 11:08:36 -0800 Gregory Szorc sshpeer: initial definition and implementation of new SSH protocol
Sat, 27 Jan 2018 13:33:31 +0900 Yuya Nishihara py3: factor out helpers to apply string conversion recursively
Wed, 31 Jan 2018 11:32:21 -0800 Gregory Szorc wireprotoserver: make name part of protocol interface
Wed, 31 Jan 2018 11:30:16 -0800 Gregory Szorc wireprotoserver: make abstractserverproto a proper abstract base class
Wed, 31 Jan 2018 11:26:03 -0800 Gregory Szorc wireprotoserver: make response handling attributes private
Wed, 31 Jan 2018 11:24:44 -0800 Gregory Szorc wireprotoserver: make some instance attributes private
Wed, 31 Jan 2018 11:19:47 -0800 Gregory Szorc wireprotoserver: remove sshserver.getarg()
Wed, 31 Jan 2018 11:19:05 -0800 Gregory Szorc wireprotoserver: remove lock references
Wed, 31 Jan 2018 11:17:41 -0800 Gregory Szorc wireprotoserver: remove support for do_<command> handlers (API)
Wed, 31 Jan 2018 10:19:08 -0800 Gregory Szorc wireprotoserver: make attributes private
Wed, 31 Jan 2018 10:17:11 -0800 Gregory Szorc wireprotoserver: remove unused response attribute
Wed, 31 Jan 2018 10:09:41 -0800 Gregory Szorc wireprotoserver: rename p to proto
less more (0) -60 tip