mercurial/wireprotoframing.py
Mon, 21 Feb 2022 13:08:28 -0700 Gregory Szorc py3: use class X: instead of class X(object):
Thu, 03 Mar 2022 18:28:30 -0800 Gregory Szorc global: bulk replace simple pycompat.iteritems(x) with x.items()
Mon, 21 Feb 2022 10:39:09 -0700 Gregory Szorc wireprotoframing: remove Python 2 support code
Thu, 03 Mar 2022 17:34:00 +0100 Gregory Szorc py2: remove simple from __future__ statements
Fri, 27 Nov 2020 17:03:29 -0500 Augie Fackler formating: upgrade to black 20.8b1
Fri, 08 Nov 2019 11:19:20 -0800 Augie Fackler cleanup: remove pointless r-prefixes on single-quoted strings
Tue, 08 Oct 2019 15:06:18 -0700 Martin von Zweigbergk cleanup: join string literals that are already on one line
Mon, 07 Oct 2019 00:04:04 -0400 Gregory Szorc py3: finish porting iteritems() to pycompat and remove source transformer
Sun, 06 Oct 2019 16:55:18 -0400 Gregory Szorc py3: manually import getattr where it is needed
Sun, 06 Oct 2019 09:48:39 -0400 Augie Fackler formatting: byteify all mercurial/ and hgext/ string literals
Sun, 06 Oct 2019 09:45:02 -0400 Augie Fackler formatting: blacken the codebase
Tue, 16 Oct 2018 21:35:33 +0200 Gregory Szorc wireprotov2: add response type that serializes to indefinite length bytestring
Mon, 08 Oct 2018 17:24:28 -0700 Gregory Szorc wireprotov2: send content encoded frames from server
Fri, 05 Oct 2018 23:49:18 +0000 Gregory Szorc wireprotov2: don't emit empty frames
Fri, 05 Oct 2018 10:29:36 -0700 Gregory Szorc wireprotov2: remove functions for creating response frames from bytes
Mon, 08 Oct 2018 17:00:16 -0700 Gregory Szorc wireprotov2: send protocol settings frame from client
Mon, 08 Oct 2018 17:10:59 -0700 Gregory Szorc wireprotov2: define and use stream encoders
Thu, 04 Oct 2018 17:39:16 -0700 Gregory Szorc wireprotov2: establish dedicated classes for input and output streams
Thu, 04 Oct 2018 17:17:57 -0700 Gregory Szorc wireprotov2: pass ui into clientreactor and serverreactor
Thu, 04 Oct 2018 16:44:21 -0700 Gregory Szorc wireprotov2: handle stream encoding settings frames
Thu, 04 Oct 2018 15:43:21 -0700 Gregory Szorc wireprotov2: document client reactor actions
Thu, 04 Oct 2018 16:26:45 -0700 Gregory Szorc wireprotov2: handle sender protocol settings frames
Thu, 04 Oct 2018 14:05:16 -0700 Gregory Szorc wireprotov2: update stream encoding specification
Wed, 26 Sep 2018 18:07:55 -0700 Gregory Szorc wireprotov2: server support for sending content redirects
Wed, 26 Sep 2018 15:02:19 -0700 Gregory Szorc wireprotov2: client support for advertising redirect targets
Wed, 26 Sep 2018 17:16:27 -0700 Gregory Szorc wireprotov2: define type to represent pre-encoded object
Tue, 25 Sep 2018 18:59:04 -0700 Gregory Szorc py3: cast exception to bytes
Wed, 29 Aug 2018 16:43:17 -0700 Gregory Szorc wireprotoframing: buffer emitted data to reduce frame count
Wed, 05 Sep 2018 09:06:40 -0700 Gregory Szorc wireprotov2: implement commands as a generator of objects
Wed, 05 Sep 2018 09:04:40 -0700 Gregory Szorc wireprotov2peer: properly format errors
Tue, 28 Aug 2018 18:05:08 -0700 Gregory Szorc wireprotoframing: use our CBOR module
Sun, 15 Apr 2018 10:37:29 -0700 Gregory Szorc wireprotov2: add support for more response types
Sat, 14 Apr 2018 15:36:12 -0700 Gregory Szorc wireprotov2: change behavior of error frame
Sat, 14 Apr 2018 15:19:36 -0700 Gregory Szorc wireprotov2: change command response protocol to include a leading map
Sat, 14 Apr 2018 14:37:23 -0700 Gregory Szorc wireprotov2: change frame type and name for command response
Sat, 14 Apr 2018 12:11:24 -0700 Gregory Szorc wireprotov2: change frame type value for command data
Sat, 14 Apr 2018 12:07:31 -0700 Gregory Szorc wireprotov2: define response data as CBOR
Fri, 13 Apr 2018 12:49:47 -0700 Gregory Szorc wireprotoframing: record when new stream is encountered
Thu, 12 Apr 2018 13:11:29 -0700 Gregory Szorc wireprotoframing: use value passed into function
Mon, 09 Apr 2018 16:54:20 -0700 Gregory Szorc wireproto: client reactor support for receiving frames
Mon, 09 Apr 2018 15:32:01 -0700 Gregory Szorc wireproto: introduce a reactor for client-side state
Wed, 28 Mar 2018 14:55:13 -0700 Gregory Szorc wireproto: port heads command to wire protocol v2
Sun, 08 Apr 2018 11:55:46 +0900 Yuya Nishihara wireproto: convert python literal to object without using unsafe eval()
Sun, 08 Apr 2018 11:23:55 +0900 Yuya Nishihara py3: system-stringify repr(frame)
Sun, 08 Apr 2018 11:21:58 +0900 Yuya Nishihara wireproto: show unknown id and flags in repr(frame)
Sun, 08 Apr 2018 11:14:47 +0900 Yuya Nishihara wireproto: fix repr(frame) to not crash by unknown type id
Fri, 30 Mar 2018 14:52:32 -0700 Gregory Szorc wireproto: convert human output frames to CBOR
Wed, 28 Mar 2018 13:30:24 -0700 Gregory Szorc wireproto: add frame flag to denote payloads as CBOR
Wed, 28 Mar 2018 13:01:28 -0700 Gregory Szorc wireproto: implement custom __repr__ for frame
Mon, 26 Mar 2018 14:34:32 -0700 Gregory Szorc wireproto: use CBOR for command requests
Mon, 26 Mar 2018 10:50:36 -0700 Gregory Szorc wireproto: define frame to represent progress updates
Wed, 28 Mar 2018 15:05:39 -0700 Gregory Szorc wireproto: syntax for encoding CBOR into frames
Mon, 26 Mar 2018 13:59:56 -0700 Gregory Szorc wireproto: explicit API to create outgoing streams
Mon, 26 Mar 2018 11:00:16 -0700 Gregory Szorc wireproto: add streams to frame-based protocol
Mon, 26 Mar 2018 13:57:22 -0700 Gregory Szorc wireproto: start to associate frame generation with a stream
Thu, 22 Mar 2018 21:56:20 +0900 Yuya Nishihara stringutil: bulk-replace call sites to point to new module
Thu, 15 Mar 2018 18:05:49 -0700 Gregory Szorc wireproto: explicitly track which requests are active
Thu, 15 Mar 2018 16:09:58 -0700 Gregory Szorc wireproto: use named arguments when passing around frame data
Thu, 15 Mar 2018 16:03:14 -0700 Gregory Szorc wireproto: define attr-based classes for representing frames
Wed, 14 Mar 2018 22:19:00 -0700 Gregory Szorc wireproto: define human output side channel frame
less more (0) -60 tip